diff --git a/.drone.yml b/.drone.yml index 7f7dc18c..bd44aa9a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -62,7 +62,8 @@ steps: # Backup the original git configuration before changing attributes - export GIT_CONF=$PWD/.git/config - - cp $GIT_CONF /tmp/git.config.orig + - export TMP_GIT_CONF=/tmp/git.config.orig + - cp $GIT_CONF $TMP_GIT_CONF - git config --global --add safe.directory $PWD # Install the SSH and PGP keys @@ -95,7 +96,7 @@ steps: - git checkout master # Restore the original git configuration - - mv /tmp/git.config.orig $GIT_CONF + - mv $TMP_GIT_CONF $GIT_CONF when: event: @@ -114,8 +115,8 @@ steps: commands: - echo "Installing required build dependencies" - apk add --update --no-cache git make py3-sphinx py3-myst-parser py3-pip $(cat platypush/install/requirements/alpine.txt) - - pip install -U sphinx-rtd-theme sphinx-book-theme - - pip install . + - pip install -U sphinx-rtd-theme sphinx-book-theme --break-system-packages + - pip install . --break-system-packages - mkdir -p /docs/current - export APPDIR=$PWD - rm -rf "$APPDIR/docs/build" @@ -150,8 +151,8 @@ steps: image: alpine commands: - apk add --update --no-cache $(cat platypush/install/requirements/alpine.txt) - - pip install . - - pip install -r requirements-tests.txt + - pip install . --break-system-packages + - pip install -r requirements-tests.txt --break-system-packages - pytest tests ### @@ -181,11 +182,14 @@ steps: - tests commands: + - export SKIPCI="$PWD/.skipci" + - rm -rf "$SKIPCI" - apk add --update --no-cache git # Backup the original git configuration before changing attributes - export GIT_CONF=$PWD/.git/config - - cp $GIT_CONF /tmp/git.config.orig + - export TMP_GIT_CONF=/tmp/git.config.orig + - cp $GIT_CONF $TMP_GIT_CONF - git config --global --add safe.directory $PWD - cd platypush/backend/http/webapp @@ -201,7 +205,7 @@ steps: exit 0 fi - - rm -rf node_modules + - rm -rf dist node_modules - npm install - npm run build - | @@ -210,6 +214,10 @@ steps: exit 0 fi + # Create a .skipci file to mark the fact that the next steps should be skipped + # (we're going to do another push anyway, so another pipeline will be triggered) + - touch "$SKIPCI" + - apk add --update --no-cache bash gnupg openssh - mkdir -p ~/.ssh - | @@ -236,7 +244,95 @@ steps: - git push -f origin master # Restore the original git configuration - - mv /tmp/git.config.orig $GIT_CONF + - mv $TMP_GIT_CONF $GIT_CONF + +### +### Regenerate the components.json cache +### + +- name: update-components-cache + image: alpine + + environment: + SSH_PUBKEY: + from_secret: ssh_pubkey + SSH_PRIVKEY: + from_secret: ssh_privkey + PGP_KEY: + from_secret: pgp_key + PGP_KEY_ID: + from_secret: pgp_key_id + + when: + branch: + - master + event: + - push + + depends_on: + - build-ui + + commands: + - export SKIPCI="$PWD/.skipci" + - export CACHEFILE="$PWD/platypush/components.json.gz" + - | + [ -f "$SKIPCI" ] && exit 0 + + # Only regenerate the components cache if either the plugins, backends, + # events or schemas folders have some changes (excluding the webapp files). + - apk add --update --no-cache git + - | + if [ -z "$(git log --pretty=oneline $DRONE_COMMIT_AFTER...$DRONE_COMMIT_BEFORE -- platypush/backend platypush/plugins platypush/schemas platypush/message/event ':(exclude)platypush/backend/http/webapp')" ]; then + echo 'No changes to the components file' + exit 0 + fi + + - echo 'Updating components cache' + - apk add --update --no-cache bash gnupg openssh $(cat platypush/install/requirements/alpine.txt) + - pip install . --break-system-packages + - | + python - < ~/.ssh/id_rsa.pub + - | + cat < ~/.ssh/id_rsa + $SSH_PRIVKEY + EOF + - chmod 0600 ~/.ssh/id_rsa + - ssh-keyscan git.platypush.tech >> ~/.ssh/known_hosts 2>/dev/null + + - git config user.name "Platypush CI/CD Automation" + - git config user.email "admin@platypush.tech" + - git config commit.gpgsign true + - git config user.signingkey $PGP_KEY_ID + - git add "$CACHEFILE" + - git commit "$CACHEFILE" -S -m "[Automatic] Updated components cache" --no-verify + - git remote rm origin + - git remote add origin git@git.platypush.tech:platypush/platypush.git + - git push -f origin master + + # Restore the original git configuration + - mv $TMP_GIT_CONF $GIT_CONF ### ### Update the Arch packages @@ -258,9 +354,12 @@ steps: - push depends_on: - - build-ui + - update-components-cache commands: + - | + [ -f .skipci ] && exit 0 + - echo "-- Installing dependencies" - apk add --update --no-cache curl git openssh pacman sudo @@ -269,7 +368,7 @@ steps: - git pull --rebase origin master --tags - export VERSION=$(python setup.py --version) - export HEAD=$(git log --pretty=format:%h HEAD...HEAD~1 | head -1) - - export GIT_VERSION="$VERSION.r$(git log --pretty=oneline HEAD...v$VERSION | wc -l).$HEAD" + - export GIT_VERSION="$VERSION.r$(git log --pretty=oneline HEAD...v$VERSION | wc -l).g$${HEAD}" - export TAG_URL="https://git.platypush.tech/platypush/platypush/archive/v$VERSION.tar.gz" - echo "--- Preparing environment" @@ -355,9 +454,12 @@ steps: - push depends_on: - - build-ui + - update-components-cache commands: + - | + [ -f .skipci ] && exit 0 + - echo "-- Installing dependencies" - apt update - apt install -y curl dpkg-dev gpg git python3 python3-pip @@ -369,12 +471,13 @@ steps: - cd "$SRCDIR" - echo "--- Parsing metadata" - - git config --global --add safe.directory $PWD + - git config --global --add safe.directory "$PWD" - git pull --rebase origin master --tags - export VERSION=$(python3 setup.py --version) - - export GIT_VERSION="$VERSION-$(( $(git log --pretty=oneline HEAD...v$VERSION | wc -l) + 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" + - export POOL_PATH="$APT_ROOT/pool/$DEB_VERSION/dev" - echo "--- Building git package" - pip install --prefix="$GIT_BUILD_DIR/usr" --no-cache --no-deps . @@ -395,13 +498,17 @@ steps: Homepage: https://platypush.tech Description: Universal command executor and automation hub. EOF + - mkdir -p "$POOL_PATH" + - rm -f "$POOL_PATH/"*.deb - dpkg --build "$GIT_BUILD_DIR" - - echo "--- Copying package to the repo" - - mkdir -p "$APT_ROOT/pool/$DEB_VERSION/dev" - - cp "$GIT_DEB" "$APT_ROOT/pool/$DEB_VERSION/dev/" + - echo "--- Copying $GIT_DEB to $POOL_PATH" + - cp "$GIT_DEB" "$POOL_PATH" # If main/all/Packages doesn't exist, then we should create the first main release + - | + [ $(ls "$APT_ROOT/pool/$DEB_VERSION/main/$${PKG_NAME}_$${VERSION}-"*"_all.deb" 2>/dev/null | wc -l) -eq 0 ] && export UPDATE_STABLE_PKG=1 + - export PKGURL="https://apt.platypush.tech/dists/$DEB_VERSION/main/all/Packages" - | [ -z "$UPDATE_STABLE_PKG" ] && @@ -446,9 +553,12 @@ steps: - push depends_on: - - build-ui + - update-components-cache commands: + - | + [ -f .skipci ] && exit 0 + - echo "-- Copying source directory" - mkdir -p "$WORKDIR" - export SRCDIR="$WORKDIR/src" @@ -460,12 +570,13 @@ steps: - apt install -y curl dpkg-dev gpg git python3 python3-pip - echo "--- Parsing metadata" - - git config --global --add safe.directory $PWD + - git config --global --add safe.directory "$PWD" - git pull --rebase origin master --tags - export VERSION=$(python3 setup.py --version) - - export GIT_VERSION="$VERSION-$(( $(git log --pretty=oneline HEAD...v$VERSION | wc -l) + 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" + - export POOL_PATH="$APT_ROOT/pool/$DEB_VERSION/dev" - echo "--- Building git package" - pip install --prefix="$GIT_BUILD_DIR/usr" --no-cache --no-deps . @@ -486,13 +597,17 @@ steps: Homepage: https://platypush.tech Description: Universal command executor and automation hub. EOF + - mkdir -p "$POOL_PATH" + - rm -f "$POOL_PATH/"*.deb - dpkg --build "$GIT_BUILD_DIR" - - echo "--- Copying package to the repo" - - mkdir -p "$APT_ROOT/pool/$DEB_VERSION/dev" - - cp "$GIT_DEB" "$APT_ROOT/pool/$DEB_VERSION/dev/" + - echo "--- Copying $GIT_DEB to $POOL_PATH" + - cp "$GIT_DEB" "$POOL_PATH" # If main/all/Packages doesn't exist, then we should create the first main release + - | + [ $(ls "$APT_ROOT/pool/$DEB_VERSION/main/$${PKG_NAME}_$${VERSION}-"*"_all.deb" 2>/dev/null | wc -l) -eq 0 ] && export UPDATE_STABLE_PKG=1 + - export PKGURL="https://apt.platypush.tech/dists/$DEB_VERSION/main/all/Packages" - | [ -z "$UPDATE_STABLE_PKG" ] && @@ -543,6 +658,9 @@ steps: - update-debian-oldstable-packages commands: + - | + [ -f .skipci ] && exit 0 + - echo "-- Installing dependencies" - apt update - apt install -y dpkg-dev gpg @@ -564,13 +682,16 @@ steps: echo "stable\noldstable" | while read distro; do echo "main\ndev" | while read branch; do branch_dir="$TMP_APT_ROOT/pool/$distro/$branch" - [ -d "$branch_dir" ] || continue + echo "Checking pool folder: $branch_dir" + [ -d "$branch_dir" ] || mkdir -p "$branch_dir" dist_dir="$TMP_APT_ROOT/dists/$distro/$branch/all" mkdir -p "$dist_dir" pkg_file="$dist_dir/Packages" dpkg-scanpackages --arch all "$branch_dir" > "$pkg_file" sed -i "$pkg_file" -re "s|^Filename: $TMP_APT_ROOT/|Filename: |" cat "$pkg_file" | gzip -9 > "$pkg_file.gz" + echo "Generated Packages file: $pkg_file" + cat "$pkg_file" done done @@ -616,6 +737,28 @@ steps: add_hashes "$dist_dir" "sha256sum" "SHA256" >> "$release_file" done + - echo "-- Generating list files" + - mkdir -p "$TMP_APT_ROOT/lists" + - | + cat < "$TMP_APT_ROOT/lists/platypush-stable-main.list" + deb https://apt.platypush.tech/ stable main + EOF + + - | + cat < "$TMP_APT_ROOT/lists/platypush-stable-dev.list" + deb https://apt.platypush.tech/ stable dev + EOF + + - | + cat < "$TMP_APT_ROOT/lists/platypush-oldstable-main.list" + deb https://apt.platypush.tech/ oldstable main + EOF + + - | + cat < "$TMP_APT_ROOT/lists/platypush-oldstable-dev.list" + deb https://apt.platypush.tech/ oldstable dev + EOF + - echo "-- Updating index file" - | cat < "$TMP_APT_ROOT/index.txt" @@ -633,15 +776,15 @@ steps: 1. Add this repository's PGP key to your apt keyring ==================================================== - $ sudo wget -q -O \ - /etc/apt/trusted.gpg.d/platypush.asc \ + $ sudo wget -q -O \\\ + /etc/apt/trusted.gpg.d/platypush.asc \\\ https://apt.platypush.tech/pubkey.txt 2. Add the repository to your sources ===================================== - $ sudo wget -q -O \ - /etc/apt/sources.list.d/platypush.list \ + $ sudo wget -q -O \\\ + /etc/apt/sources.list.d/platypush.list \\\ https://apt.platypush.tech/lists/platypush--.list Where: @@ -653,8 +796,8 @@ steps: For example, to install the latest stable tags on Debian stable: - $ sudo wget -q -O \ - /etc/apt/sources.list.d/platypush.list \ + $ sudo wget -q -O \\\ + /etc/apt/sources.list.d/platypush.list \\\ https://apt.platypush.tech/lists/platypush-stable-main.list 3. Update your repos @@ -686,12 +829,9 @@ steps: - echo "-- Updating the apt repo root" - export OLD_APT_ROOT="$REPOS_ROOT/oldapt" - - | - if [ ! -d "$OLD_APT_ROOT" ]; then - mv "$APT_ROOT" "$OLD_APT_ROOT" - mv "$TMP_APT_ROOT" "$APT_ROOT" - rm -rf "$OLD_APT_ROOT" - fi + - rm -rf "$OLD_APT_ROOT" + - mv "$APT_ROOT" "$OLD_APT_ROOT" + - mv "$TMP_APT_ROOT" "$APT_ROOT" - chmod -R a+r "$APT_ROOT" - chmod a+x "$APT_ROOT" @@ -724,9 +864,12 @@ steps: - push depends_on: - - build-ui + - update-components-cache commands: + - | + [ -f .skipci ] && exit 0 + - echo "-- Installing dependencies" - yum install -y createrepo rpm-build rpm-sign gpg wget yum-utils git python python-pip @@ -741,7 +884,7 @@ steps: - git config --global --add safe.directory $PWD - git pull --rebase origin master --tags - export VERSION=$(python3 setup.py --version) - - export RELNUM=$(git log --pretty=oneline HEAD...v$VERSION | wc -l) + - export RELNUM="$(git log --pretty=oneline HEAD...v$VERSION | wc -l)" - export SPECFILE="$WORKDIR/$PKG_NAME.spec" - export BUILD_DIR="$WORKDIR/build" - export TMP_RPM_ROOT="$WORKDIR/repo" diff --git a/.gitignore b/.gitignore index 6cce0b4e..381643fe 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,5 @@ Session.vim /package.json /Dockerfile /docs/source/wiki +/.skipci +dump.rdb diff --git a/MANIFEST.in b/MANIFEST.in index ac702393..310df247 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,3 +3,4 @@ recursive-include platypush/install * include platypush/plugins/http/webpage/mercury-parser.js include platypush/config/*.yaml global-include manifest.yaml +global-include components.json.gz diff --git a/README.md b/README.md index ca567b31..948d91d7 100644 --- a/README.md +++ b/README.md @@ -419,9 +419,7 @@ backend](https://docs.platypush.tech/en/latest/platypush/backend/http.html), an [MQTT instance](https://docs.platypush.tech/en/latest/platypush/backend/mqtt.html), a [Kafka -instance](https://docs.platypush.tech/en/latest/platypush/backend/kafka.html), -[Pushbullet](https://docs.platypush.tech/en/latest/platypush/backend/pushbullet.html) -etc.). +instance](https://docs.platypush.tech/en/latest/platypush/backend/kafka.html). If a backend supports the execution of requests (e.g. HTTP, MQTT, Kafka, Websocket and TCP) then you can send requests to these services in JSON format. @@ -707,8 +705,6 @@ groups together the controls for most of the plugins - e.g. sensors, switches, music controls and search, media library and torrent management, lights, Zigbee/Z-Wave devices and so on. The UI is responsive and mobile-friendly. -Some screenshots: - #### The main web panel This is the default panel available at `http://:` after diff --git a/docs/source/backends.rst b/docs/source/backends.rst index 0523b397..4b76793a 100644 --- a/docs/source/backends.rst +++ b/docs/source/backends.rst @@ -6,45 +6,13 @@ Backends :maxdepth: 1 :caption: Backends: - platypush/backend/adafruit.io.rst - platypush/backend/alarm.rst - platypush/backend/button.flic.rst - platypush/backend/camera.pi.rst - platypush/backend/chat.telegram.rst - platypush/backend/file.monitor.rst - platypush/backend/foursquare.rst - platypush/backend/github.rst - platypush/backend/google.fit.rst - platypush/backend/google.pubsub.rst - platypush/backend/gps.rst platypush/backend/http.rst - platypush/backend/joystick.rst - platypush/backend/joystick.jstest.rst - platypush/backend/joystick.linux.rst - platypush/backend/kafka.rst - platypush/backend/log.http.rst - platypush/backend/mail.rst platypush/backend/midi.rst platypush/backend/music.mopidy.rst - platypush/backend/music.mpd.rst - platypush/backend/music.snapcast.rst platypush/backend/music.spotify.rst - platypush/backend/nextcloud.rst - platypush/backend/nfc.rst platypush/backend/nodered.rst - platypush/backend/ping.rst - platypush/backend/pushbullet.rst platypush/backend/redis.rst - platypush/backend/scard.rst - platypush/backend/sensor.ir.zeroborg.rst - platypush/backend/sensor.leap.rst platypush/backend/stt.deepspeech.rst platypush/backend/stt.picovoice.hotword.rst platypush/backend/stt.picovoice.speech.rst platypush/backend/tcp.rst - platypush/backend/todoist.rst - platypush/backend/trello.rst - platypush/backend/weather.buienradar.rst - platypush/backend/weather.darksky.rst - platypush/backend/weather.openweathermap.rst - platypush/backend/wiimote.rst diff --git a/docs/source/events.rst b/docs/source/events.rst index e5ed0dc3..92c5ff3b 100644 --- a/docs/source/events.rst +++ b/docs/source/events.rst @@ -11,16 +11,15 @@ Events platypush/events/application.rst platypush/events/assistant.rst platypush/events/bluetooth.rst - platypush/events/button.flic.rst platypush/events/camera.rst platypush/events/chat.slack.rst - platypush/events/chat.telegram.rst platypush/events/clipboard.rst platypush/events/custom.rst platypush/events/dbus.rst platypush/events/distance.rst platypush/events/entities.rst platypush/events/file.rst + platypush/events/flic.rst platypush/events/foursquare.rst platypush/events/geo.rst platypush/events/github.rst @@ -66,8 +65,8 @@ Events platypush/events/sound.rst platypush/events/stt.rst platypush/events/sun.rst + platypush/events/telegram.rst platypush/events/tensorflow.rst - platypush/events/todoist.rst platypush/events/torrent.rst platypush/events/trello.rst platypush/events/video.rst diff --git a/docs/source/index.rst b/docs/source/index.rst index 1c65a416..1f1c3ab9 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -39,6 +39,7 @@ Wiki wiki/Configuration wiki/Installing-extensions wiki/A-configuration-example + wiki/The-Web-interface Reference ========= diff --git a/docs/source/platypush/backend/adafruit.io.rst b/docs/source/platypush/backend/adafruit.io.rst deleted file mode 100644 index d4bd4cc4..00000000 --- a/docs/source/platypush/backend/adafruit.io.rst +++ /dev/null @@ -1,6 +0,0 @@ -``adafruit.io`` -================================= - -.. automodule:: platypush.backend.adafruit.io - :members: - diff --git a/docs/source/platypush/backend/alarm.rst b/docs/source/platypush/backend/alarm.rst deleted file mode 100644 index 1aeb5769..00000000 --- a/docs/source/platypush/backend/alarm.rst +++ /dev/null @@ -1,5 +0,0 @@ -``alarm`` -=========================== - -.. automodule:: platypush.backend.alarm - :members: diff --git a/docs/source/platypush/backend/button.flic.rst b/docs/source/platypush/backend/button.flic.rst deleted file mode 100644 index 189cc6c4..00000000 --- a/docs/source/platypush/backend/button.flic.rst +++ /dev/null @@ -1,6 +0,0 @@ -``button.flic`` -================================= - -.. automodule:: platypush.backend.button.flic - :members: - diff --git a/docs/source/platypush/backend/camera.pi.rst b/docs/source/platypush/backend/camera.pi.rst deleted file mode 100644 index a82cb0b6..00000000 --- a/docs/source/platypush/backend/camera.pi.rst +++ /dev/null @@ -1,6 +0,0 @@ -``camera.pi`` -=============================== - -.. automodule:: platypush.backend.camera.pi - :members: - diff --git a/docs/source/platypush/backend/chat.telegram.rst b/docs/source/platypush/backend/chat.telegram.rst deleted file mode 100644 index 25b9e66a..00000000 --- a/docs/source/platypush/backend/chat.telegram.rst +++ /dev/null @@ -1,5 +0,0 @@ -``chat.telegram`` -=================================== - -.. automodule:: platypush.backend.chat.telegram - :members: diff --git a/docs/source/platypush/backend/file.monitor.rst b/docs/source/platypush/backend/file.monitor.rst deleted file mode 100644 index 2ad678c6..00000000 --- a/docs/source/platypush/backend/file.monitor.rst +++ /dev/null @@ -1,5 +0,0 @@ -``file.monitor`` -================================== - -.. automodule:: platypush.backend.file.monitor - :members: diff --git a/docs/source/platypush/backend/foursquare.rst b/docs/source/platypush/backend/foursquare.rst deleted file mode 100644 index 34f0af8e..00000000 --- a/docs/source/platypush/backend/foursquare.rst +++ /dev/null @@ -1,5 +0,0 @@ -``foursquare`` -================================ - -.. automodule:: platypush.backend.foursquare - :members: diff --git a/docs/source/platypush/backend/github.rst b/docs/source/platypush/backend/github.rst deleted file mode 100644 index a299331d..00000000 --- a/docs/source/platypush/backend/github.rst +++ /dev/null @@ -1,5 +0,0 @@ -``github`` -============================ - -.. automodule:: platypush.backend.github - :members: diff --git a/docs/source/platypush/backend/google.fit.rst b/docs/source/platypush/backend/google.fit.rst deleted file mode 100644 index 74da2573..00000000 --- a/docs/source/platypush/backend/google.fit.rst +++ /dev/null @@ -1,6 +0,0 @@ -``google.fit`` -================================ - -.. automodule:: platypush.backend.google.fit - :members: - diff --git a/docs/source/platypush/backend/google.pubsub.rst b/docs/source/platypush/backend/google.pubsub.rst deleted file mode 100644 index 76bffd3c..00000000 --- a/docs/source/platypush/backend/google.pubsub.rst +++ /dev/null @@ -1,5 +0,0 @@ -``google.pubsub`` -=================================== - -.. automodule:: platypush.backend.google.pubsub - :members: diff --git a/docs/source/platypush/backend/gps.rst b/docs/source/platypush/backend/gps.rst deleted file mode 100644 index 4542ee3c..00000000 --- a/docs/source/platypush/backend/gps.rst +++ /dev/null @@ -1,6 +0,0 @@ -``gps`` -========================= - -.. automodule:: platypush.backend.gps - :members: - diff --git a/docs/source/platypush/backend/joystick.jstest.rst b/docs/source/platypush/backend/joystick.jstest.rst deleted file mode 100644 index 26df2c0c..00000000 --- a/docs/source/platypush/backend/joystick.jstest.rst +++ /dev/null @@ -1,5 +0,0 @@ -``joystick.jstest`` -===================================== - -.. automodule:: platypush.backend.joystick.jstest - :members: diff --git a/docs/source/platypush/backend/joystick.linux.rst b/docs/source/platypush/backend/joystick.linux.rst deleted file mode 100644 index 290802bb..00000000 --- a/docs/source/platypush/backend/joystick.linux.rst +++ /dev/null @@ -1,5 +0,0 @@ -``joystick.linux`` -==================================== - -.. automodule:: platypush.backend.joystick.linux - :members: diff --git a/docs/source/platypush/backend/joystick.rst b/docs/source/platypush/backend/joystick.rst deleted file mode 100644 index 076a8e20..00000000 --- a/docs/source/platypush/backend/joystick.rst +++ /dev/null @@ -1,6 +0,0 @@ -``joystick`` -============================== - -.. automodule:: platypush.backend.joystick - :members: - diff --git a/docs/source/platypush/backend/kafka.rst b/docs/source/platypush/backend/kafka.rst deleted file mode 100644 index 7de4c3ee..00000000 --- a/docs/source/platypush/backend/kafka.rst +++ /dev/null @@ -1,6 +0,0 @@ -``kafka`` -=========================== - -.. automodule:: platypush.backend.kafka - :members: - diff --git a/docs/source/platypush/backend/log.http.rst b/docs/source/platypush/backend/log.http.rst deleted file mode 100644 index d4504b0c..00000000 --- a/docs/source/platypush/backend/log.http.rst +++ /dev/null @@ -1,5 +0,0 @@ -``log.http`` -============================== - -.. automodule:: platypush.backend.log.http - :members: diff --git a/docs/source/platypush/backend/mail.rst b/docs/source/platypush/backend/mail.rst deleted file mode 100644 index 2ba71fe6..00000000 --- a/docs/source/platypush/backend/mail.rst +++ /dev/null @@ -1,5 +0,0 @@ -``mail`` -========================== - -.. automodule:: platypush.backend.mail - :members: diff --git a/docs/source/platypush/backend/music.mpd.rst b/docs/source/platypush/backend/music.mpd.rst deleted file mode 100644 index f3addec1..00000000 --- a/docs/source/platypush/backend/music.mpd.rst +++ /dev/null @@ -1,6 +0,0 @@ -``music.mpd`` -=============================== - -.. automodule:: platypush.backend.music.mpd - :members: - diff --git a/docs/source/platypush/backend/music.snapcast.rst b/docs/source/platypush/backend/music.snapcast.rst deleted file mode 100644 index f0678485..00000000 --- a/docs/source/platypush/backend/music.snapcast.rst +++ /dev/null @@ -1,6 +0,0 @@ -``music.snapcast`` -==================================== - -.. automodule:: platypush.backend.music.snapcast - :members: - diff --git a/docs/source/platypush/backend/nextcloud.rst b/docs/source/platypush/backend/nextcloud.rst deleted file mode 100644 index 9a755b0c..00000000 --- a/docs/source/platypush/backend/nextcloud.rst +++ /dev/null @@ -1,5 +0,0 @@ -``nextcloud`` -=============================== - -.. automodule:: platypush.backend.nextcloud - :members: diff --git a/docs/source/platypush/backend/nfc.rst b/docs/source/platypush/backend/nfc.rst deleted file mode 100644 index 697c0109..00000000 --- a/docs/source/platypush/backend/nfc.rst +++ /dev/null @@ -1,6 +0,0 @@ -``nfc`` -========================= - -.. automodule:: platypush.backend.nfc - :members: - diff --git a/docs/source/platypush/backend/ping.rst b/docs/source/platypush/backend/ping.rst deleted file mode 100644 index 7733d6d8..00000000 --- a/docs/source/platypush/backend/ping.rst +++ /dev/null @@ -1,5 +0,0 @@ -``ping`` -========================== - -.. automodule:: platypush.backend.ping - :members: diff --git a/docs/source/platypush/backend/pushbullet.rst b/docs/source/platypush/backend/pushbullet.rst deleted file mode 100644 index 7d8f251e..00000000 --- a/docs/source/platypush/backend/pushbullet.rst +++ /dev/null @@ -1,6 +0,0 @@ -``pushbullet`` -================================ - -.. automodule:: platypush.backend.pushbullet - :members: - diff --git a/docs/source/platypush/backend/scard.rst b/docs/source/platypush/backend/scard.rst deleted file mode 100644 index 59c23f7c..00000000 --- a/docs/source/platypush/backend/scard.rst +++ /dev/null @@ -1,6 +0,0 @@ -``scard`` -=========================== - -.. automodule:: platypush.backend.scard - :members: - diff --git a/docs/source/platypush/backend/sensor.ir.zeroborg.rst b/docs/source/platypush/backend/sensor.ir.zeroborg.rst deleted file mode 100644 index e3333b0b..00000000 --- a/docs/source/platypush/backend/sensor.ir.zeroborg.rst +++ /dev/null @@ -1,6 +0,0 @@ -``sensor.ir.zeroborg`` -======================================== - -.. automodule:: platypush.backend.sensor.ir.zeroborg - :members: - diff --git a/docs/source/platypush/backend/sensor.leap.rst b/docs/source/platypush/backend/sensor.leap.rst deleted file mode 100644 index 33723321..00000000 --- a/docs/source/platypush/backend/sensor.leap.rst +++ /dev/null @@ -1,7 +0,0 @@ -``sensor.leap`` -================================= - -.. automodule:: platypush.backend.sensor.leap - :members: - - diff --git a/docs/source/platypush/backend/todoist.rst b/docs/source/platypush/backend/todoist.rst deleted file mode 100644 index 876b6f78..00000000 --- a/docs/source/platypush/backend/todoist.rst +++ /dev/null @@ -1,5 +0,0 @@ -``todoist`` -============================= - -.. automodule:: platypush.backend.todoist - :members: diff --git a/docs/source/platypush/backend/trello.rst b/docs/source/platypush/backend/trello.rst deleted file mode 100644 index 60bd951b..00000000 --- a/docs/source/platypush/backend/trello.rst +++ /dev/null @@ -1,5 +0,0 @@ -``trello`` -============================ - -.. automodule:: platypush.backend.trello - :members: diff --git a/docs/source/platypush/backend/weather.buienradar.rst b/docs/source/platypush/backend/weather.buienradar.rst deleted file mode 100644 index 0e650678..00000000 --- a/docs/source/platypush/backend/weather.buienradar.rst +++ /dev/null @@ -1,5 +0,0 @@ -``weather.buienradar`` -======================================== - -.. automodule:: platypush.backend.weather.buienradar - :members: diff --git a/docs/source/platypush/backend/weather.darksky.rst b/docs/source/platypush/backend/weather.darksky.rst deleted file mode 100644 index cc2b86aa..00000000 --- a/docs/source/platypush/backend/weather.darksky.rst +++ /dev/null @@ -1,5 +0,0 @@ -``weather.darksky`` -===================================== - -.. automodule:: platypush.backend.weather.darksky - :members: diff --git a/docs/source/platypush/backend/weather.openweathermap.rst b/docs/source/platypush/backend/weather.openweathermap.rst deleted file mode 100644 index c9521912..00000000 --- a/docs/source/platypush/backend/weather.openweathermap.rst +++ /dev/null @@ -1,5 +0,0 @@ -``weather.openweathermap`` -============================================ - -.. automodule:: platypush.backend.weather.openweathermap - :members: diff --git a/docs/source/platypush/backend/wiimote.rst b/docs/source/platypush/backend/wiimote.rst deleted file mode 100644 index b87dc24f..00000000 --- a/docs/source/platypush/backend/wiimote.rst +++ /dev/null @@ -1,6 +0,0 @@ -``wiimote`` -============================= - -.. automodule:: platypush.backend.wiimote - :members: - diff --git a/docs/source/platypush/events/button.flic.rst b/docs/source/platypush/events/button.flic.rst deleted file mode 100644 index 5f1cc2e5..00000000 --- a/docs/source/platypush/events/button.flic.rst +++ /dev/null @@ -1,6 +0,0 @@ -``button.flic`` -======================================= - -.. automodule:: platypush.message.event.button.flic - :members: - diff --git a/docs/source/platypush/events/chat.telegram.rst b/docs/source/platypush/events/chat.telegram.rst deleted file mode 100644 index f65c5f29..00000000 --- a/docs/source/platypush/events/chat.telegram.rst +++ /dev/null @@ -1,5 +0,0 @@ -``chat.telegram`` -========================================= - -.. automodule:: platypush.message.event.chat.telegram - :members: diff --git a/docs/source/platypush/events/flic.rst b/docs/source/platypush/events/flic.rst new file mode 100644 index 00000000..675d6424 --- /dev/null +++ b/docs/source/platypush/events/flic.rst @@ -0,0 +1,5 @@ +``flic`` +======== + +.. automodule:: platypush.message.event.flic + :members: diff --git a/docs/source/platypush/events/telegram.rst b/docs/source/platypush/events/telegram.rst new file mode 100644 index 00000000..5cb3558f --- /dev/null +++ b/docs/source/platypush/events/telegram.rst @@ -0,0 +1,5 @@ +``telegram`` +============ + +.. automodule:: platypush.message.event.telegram + :members: diff --git a/docs/source/platypush/events/todoist.rst b/docs/source/platypush/events/todoist.rst deleted file mode 100644 index 8e574f5b..00000000 --- a/docs/source/platypush/events/todoist.rst +++ /dev/null @@ -1,5 +0,0 @@ -``todoist`` -=================================== - -.. automodule:: platypush.message.event.todoist - :members: diff --git a/docs/source/platypush/plugins/camera.pi.legacy.rst b/docs/source/platypush/plugins/camera.pi.legacy.rst new file mode 100644 index 00000000..0d37f6b8 --- /dev/null +++ b/docs/source/platypush/plugins/camera.pi.legacy.rst @@ -0,0 +1,5 @@ +``camera.pi.legacy`` +==================== + +.. automodule:: platypush.plugins.camera.pi.legacy + :members: diff --git a/docs/source/platypush/plugins/chat.irc.rst b/docs/source/platypush/plugins/chat.irc.rst deleted file mode 100644 index fa619699..00000000 --- a/docs/source/platypush/plugins/chat.irc.rst +++ /dev/null @@ -1,5 +0,0 @@ -``chat.irc`` -============ - -.. automodule:: platypush.plugins.chat.irc - :members: diff --git a/docs/source/platypush/plugins/chat.telegram.rst b/docs/source/platypush/plugins/chat.telegram.rst deleted file mode 100644 index f35a5d6b..00000000 --- a/docs/source/platypush/plugins/chat.telegram.rst +++ /dev/null @@ -1,5 +0,0 @@ -``chat.telegram`` -=================================== - -.. automodule:: platypush.plugins.chat.telegram - :members: diff --git a/docs/source/platypush/plugins/file.monitor.rst b/docs/source/platypush/plugins/file.monitor.rst new file mode 100644 index 00000000..6e07eb58 --- /dev/null +++ b/docs/source/platypush/plugins/file.monitor.rst @@ -0,0 +1,5 @@ +``file.monitor`` +================ + +.. automodule:: platypush.plugins.file.monitor + :members: diff --git a/docs/source/platypush/plugins/flic.rst b/docs/source/platypush/plugins/flic.rst new file mode 100644 index 00000000..119431b3 --- /dev/null +++ b/docs/source/platypush/plugins/flic.rst @@ -0,0 +1,5 @@ +``flic`` +======== + +.. automodule:: platypush.plugins.flic + :members: diff --git a/docs/source/platypush/plugins/github.rst b/docs/source/platypush/plugins/github.rst new file mode 100644 index 00000000..483d5040 --- /dev/null +++ b/docs/source/platypush/plugins/github.rst @@ -0,0 +1,5 @@ +``github`` +========== + +.. automodule:: platypush.plugins.github + :members: diff --git a/docs/source/platypush/plugins/gps.rst b/docs/source/platypush/plugins/gps.rst new file mode 100644 index 00000000..f0a96ad2 --- /dev/null +++ b/docs/source/platypush/plugins/gps.rst @@ -0,0 +1,5 @@ +``gps`` +======= + +.. automodule:: platypush.plugins.gps + :members: diff --git a/docs/source/platypush/plugins/http.request.rst b/docs/source/platypush/plugins/http.request.rst deleted file mode 100644 index c84a3a76..00000000 --- a/docs/source/platypush/plugins/http.request.rst +++ /dev/null @@ -1,7 +0,0 @@ -``http.request`` -================================== - -.. automodule:: platypush.plugins.http.request - :members: - - diff --git a/docs/source/platypush/plugins/http.rst b/docs/source/platypush/plugins/http.rst new file mode 100644 index 00000000..1a2d3a7c --- /dev/null +++ b/docs/source/platypush/plugins/http.rst @@ -0,0 +1,5 @@ +``http`` +======== + +.. automodule:: platypush.plugins.http + :members: diff --git a/docs/source/platypush/plugins/inputs.rst b/docs/source/platypush/plugins/inputs.rst deleted file mode 100644 index 942cfcdf..00000000 --- a/docs/source/platypush/plugins/inputs.rst +++ /dev/null @@ -1,5 +0,0 @@ -``inputs`` -============================ - -.. automodule:: platypush.plugins.inputs - :members: diff --git a/docs/source/platypush/plugins/irc.rst b/docs/source/platypush/plugins/irc.rst new file mode 100644 index 00000000..629eeb4b --- /dev/null +++ b/docs/source/platypush/plugins/irc.rst @@ -0,0 +1,5 @@ +``irc`` +======= + +.. automodule:: platypush.plugins.irc + :members: diff --git a/docs/source/platypush/plugins/joystick.rst b/docs/source/platypush/plugins/joystick.rst new file mode 100644 index 00000000..44654a43 --- /dev/null +++ b/docs/source/platypush/plugins/joystick.rst @@ -0,0 +1,5 @@ +``joystick`` +============ + +.. automodule:: platypush.plugins.joystick + :members: diff --git a/docs/source/platypush/plugins/leap.rst b/docs/source/platypush/plugins/leap.rst new file mode 100644 index 00000000..4ad5ff3b --- /dev/null +++ b/docs/source/platypush/plugins/leap.rst @@ -0,0 +1,5 @@ +``leap`` +======== + +.. automodule:: platypush.plugins.leap + :members: diff --git a/docs/source/platypush/plugins/log.http.rst b/docs/source/platypush/plugins/log.http.rst new file mode 100644 index 00000000..4dbd3d67 --- /dev/null +++ b/docs/source/platypush/plugins/log.http.rst @@ -0,0 +1,5 @@ +``log.http`` +============ + +.. automodule:: platypush.plugins.log.http + :members: diff --git a/docs/source/platypush/plugins/mail.imap.rst b/docs/source/platypush/plugins/mail.imap.rst deleted file mode 100644 index b9f75f73..00000000 --- a/docs/source/platypush/plugins/mail.imap.rst +++ /dev/null @@ -1,5 +0,0 @@ -``mail.imap`` -=============================== - -.. automodule:: platypush.plugins.mail.imap - :members: diff --git a/docs/source/platypush/plugins/mail.rst b/docs/source/platypush/plugins/mail.rst new file mode 100644 index 00000000..f692733a --- /dev/null +++ b/docs/source/platypush/plugins/mail.rst @@ -0,0 +1,5 @@ +``mail`` +======== + +.. automodule:: platypush.plugins.mail + :members: diff --git a/docs/source/platypush/plugins/mail.smtp.rst b/docs/source/platypush/plugins/mail.smtp.rst deleted file mode 100644 index cdb8a722..00000000 --- a/docs/source/platypush/plugins/mail.smtp.rst +++ /dev/null @@ -1,5 +0,0 @@ -``mail.smtp`` -=============================== - -.. automodule:: platypush.plugins.mail.smtp - :members: diff --git a/docs/source/platypush/plugins/nfc.rst b/docs/source/platypush/plugins/nfc.rst new file mode 100644 index 00000000..da623969 --- /dev/null +++ b/docs/source/platypush/plugins/nfc.rst @@ -0,0 +1,5 @@ +``nfc`` +======= + +.. automodule:: platypush.plugins.nfc + :members: diff --git a/docs/source/platypush/plugins/telegram.rst b/docs/source/platypush/plugins/telegram.rst new file mode 100644 index 00000000..4f2639d5 --- /dev/null +++ b/docs/source/platypush/plugins/telegram.rst @@ -0,0 +1,5 @@ +``telegram`` +============ + +.. automodule:: platypush.plugins.telegram + :members: diff --git a/docs/source/platypush/plugins/weather.darksky.rst b/docs/source/platypush/plugins/weather.darksky.rst deleted file mode 100644 index bb01795c..00000000 --- a/docs/source/platypush/plugins/weather.darksky.rst +++ /dev/null @@ -1,5 +0,0 @@ -``weather.darksky`` -===================================== - -.. automodule:: platypush.plugins.weather.darksky - :members: diff --git a/docs/source/platypush/plugins/wiimote.rst b/docs/source/platypush/plugins/wiimote.rst deleted file mode 100644 index 1d2b806f..00000000 --- a/docs/source/platypush/plugins/wiimote.rst +++ /dev/null @@ -1,6 +0,0 @@ -``wiimote`` -============================= - -.. automodule:: platypush.plugins.wiimote - :members: - diff --git a/docs/source/platypush/responses/chat.telegram.rst b/docs/source/platypush/responses/chat.telegram.rst deleted file mode 100644 index 397dd2de..00000000 --- a/docs/source/platypush/responses/chat.telegram.rst +++ /dev/null @@ -1,5 +0,0 @@ -``chat.telegram`` -============================================ - -.. automodule:: platypush.message.response.chat.telegram - :members: diff --git a/docs/source/platypush/responses/ping.rst b/docs/source/platypush/responses/ping.rst deleted file mode 100644 index 54379222..00000000 --- a/docs/source/platypush/responses/ping.rst +++ /dev/null @@ -1,5 +0,0 @@ -``ping`` -=================================== - -.. automodule:: platypush.message.response.ping - :members: diff --git a/docs/source/platypush/responses/todoist.rst b/docs/source/platypush/responses/todoist.rst deleted file mode 100644 index d20c5f41..00000000 --- a/docs/source/platypush/responses/todoist.rst +++ /dev/null @@ -1,5 +0,0 @@ -``todoist`` -====================================== - -.. automodule:: platypush.message.response.todoist - :members: diff --git a/docs/source/platypush/responses/trello.rst b/docs/source/platypush/responses/trello.rst deleted file mode 100644 index a549c8a3..00000000 --- a/docs/source/platypush/responses/trello.rst +++ /dev/null @@ -1,5 +0,0 @@ -``trello`` -===================================== - -.. automodule:: platypush.message.response.trello - :members: diff --git a/docs/source/platypush/responses/weather.buienradar.rst b/docs/source/platypush/responses/weather.buienradar.rst deleted file mode 100644 index c78f749d..00000000 --- a/docs/source/platypush/responses/weather.buienradar.rst +++ /dev/null @@ -1,5 +0,0 @@ -``weather.buienradar`` -================================================= - -.. automodule:: platypush.message.response.weather.buienradar - :members: diff --git a/docs/source/plugins.rst b/docs/source/plugins.rst index 57fb4ca2..1a63faaa 100644 --- a/docs/source/plugins.rst +++ b/docs/source/plugins.rst @@ -21,8 +21,7 @@ Plugins platypush/plugins/camera.gstreamer.rst platypush/plugins/camera.ir.mlx90640.rst platypush/plugins/camera.pi.rst - platypush/plugins/chat.irc.rst - platypush/plugins/chat.telegram.rst + platypush/plugins/camera.pi.legacy.rst platypush/plugins/clipboard.rst platypush/plugins/config.rst platypush/plugins/csv.rst @@ -33,7 +32,10 @@ Plugins platypush/plugins/esp.rst platypush/plugins/ffmpeg.rst platypush/plugins/file.rst + platypush/plugins/file.monitor.rst + platypush/plugins/flic.rst platypush/plugins/foursquare.rst + platypush/plugins/github.rst platypush/plugins/google.calendar.rst platypush/plugins/google.drive.rst platypush/plugins/google.fit.rst @@ -44,23 +46,26 @@ Plugins platypush/plugins/gotify.rst platypush/plugins/gpio.rst platypush/plugins/gpio.zeroborg.rst + platypush/plugins/gps.rst platypush/plugins/graphite.rst platypush/plugins/hid.rst - platypush/plugins/http.request.rst + platypush/plugins/http.rst platypush/plugins/http.webpage.rst platypush/plugins/ifttt.rst - platypush/plugins/inputs.rst platypush/plugins/inspect.rst + platypush/plugins/irc.rst + platypush/plugins/joystick.rst platypush/plugins/kafka.rst platypush/plugins/lastfm.rst platypush/plugins/lcd.gpio.rst platypush/plugins/lcd.i2c.rst + platypush/plugins/leap.rst platypush/plugins/light.hue.rst platypush/plugins/linode.rst + platypush/plugins/log.http.rst platypush/plugins/logger.rst platypush/plugins/luma.oled.rst - platypush/plugins/mail.imap.rst - platypush/plugins/mail.smtp.rst + platypush/plugins/mail.rst platypush/plugins/mailgun.rst platypush/plugins/mastodon.rst platypush/plugins/matrix.rst @@ -84,6 +89,7 @@ Plugins platypush/plugins/music.spotify.rst platypush/plugins/music.tidal.rst platypush/plugins/nextcloud.rst + platypush/plugins/nfc.rst platypush/plugins/ngrok.rst platypush/plugins/nmap.rst platypush/plugins/ntfy.rst @@ -121,6 +127,7 @@ Plugins platypush/plugins/switchbot.rst platypush/plugins/system.rst platypush/plugins/tcp.rst + platypush/plugins/telegram.rst platypush/plugins/tensorflow.rst platypush/plugins/todoist.rst platypush/plugins/torrent.rst @@ -136,10 +143,8 @@ Plugins platypush/plugins/variable.rst platypush/plugins/wallabag.rst platypush/plugins/weather.buienradar.rst - platypush/plugins/weather.darksky.rst platypush/plugins/weather.openweathermap.rst platypush/plugins/websocket.rst - platypush/plugins/wiimote.rst platypush/plugins/xmpp.rst platypush/plugins/youtube.rst platypush/plugins/zeroconf.rst diff --git a/docs/source/responses.rst b/docs/source/responses.rst index 8f8d18d7..4baff0c4 100644 --- a/docs/source/responses.rst +++ b/docs/source/responses.rst @@ -8,16 +8,11 @@ Responses platypush/responses/camera.rst platypush/responses/camera.android.rst - platypush/responses/chat.telegram.rst platypush/responses/google.drive.rst platypush/responses/pihole.rst - platypush/responses/ping.rst platypush/responses/printer.cups.rst platypush/responses/qrcode.rst platypush/responses/ssh.rst platypush/responses/stt.rst platypush/responses/tensorflow.rst - platypush/responses/todoist.rst platypush/responses/translate.rst - platypush/responses/trello.rst - platypush/responses/weather.buienradar.rst diff --git a/platypush/app/_app.py b/platypush/app/_app.py index 589efb66..bf005415 100644 --- a/platypush/app/_app.py +++ b/platypush/app/_app.py @@ -274,6 +274,10 @@ class Application: backend.stop() for plugin in runnable_plugins: + # This is required because some plugins may redefine the `stop` method. + # In that case, at the very least the _should_stop event should be + # set to notify the plugin to stop. + plugin._should_stop.set() # pylint: disable=protected-access plugin.stop() for backend in backends: diff --git a/platypush/backend/adafruit/io/__init__.py b/platypush/backend/adafruit/io/__init__.py deleted file mode 100644 index a22856ae..00000000 --- a/platypush/backend/adafruit/io/__init__.py +++ /dev/null @@ -1,97 +0,0 @@ -from typing import Optional - -from platypush.backend import Backend -from platypush.context import get_plugin -from platypush.message.event.adafruit import ( - ConnectedEvent, - DisconnectedEvent, - FeedUpdateEvent, -) - - -class AdafruitIoBackend(Backend): - """ - Backend that listens to messages received over the Adafruit IO message queue - - Requires: - - * The :class:`platypush.plugins.adafruit.io.AdafruitIoPlugin` plugin to - be active and configured. - """ - - def __init__(self, feeds, *args, **kwargs): - """ - :param feeds: List of feed IDs to monitor - :type feeds: list[str] - """ - - super().__init__(*args, **kwargs) - from Adafruit_IO import MQTTClient - - self.feeds = feeds - self._client: Optional[MQTTClient] = None - - def _init_client(self): - if self._client: - return - - from Adafruit_IO import MQTTClient - - plugin = get_plugin('adafruit.io') - if not plugin: - raise RuntimeError('Adafruit IO plugin not configured') - - # noinspection PyProtectedMember - self._client = MQTTClient(plugin._username, plugin._key) - self._client.on_connect = self.on_connect() - self._client.on_disconnect = self.on_disconnect() - self._client.on_message = self.on_message() - - def on_connect(self): - def _handler(client): - for feed in self.feeds: - client.subscribe(feed) - self.bus.post(ConnectedEvent()) - - return _handler - - def on_disconnect(self): - def _handler(*_, **__): - self.bus.post(DisconnectedEvent()) - - return _handler - - def on_message(self, *_, **__): - # noinspection PyUnusedLocal - def _handler(client, feed, data): - try: - data = float(data) - except Exception as e: - self.logger.debug('Not a number: {}: {}'.format(data, e)) - - self.bus.post(FeedUpdateEvent(feed=feed, data=data)) - - return _handler - - def run(self): - super().run() - - self.logger.info( - ('Initialized Adafruit IO backend, listening on ' + 'feeds {}').format( - self.feeds - ) - ) - - while not self.should_stop(): - try: - self._init_client() - # noinspection PyUnresolvedReferences - self._client.connect() - # noinspection PyUnresolvedReferences - self._client.loop_blocking() - except Exception as e: - self.logger.exception(e) - self._client = None - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/adafruit/io/manifest.yaml b/platypush/backend/adafruit/io/manifest.yaml deleted file mode 100644 index e019ab9c..00000000 --- a/platypush/backend/adafruit/io/manifest.yaml +++ /dev/null @@ -1,12 +0,0 @@ -manifest: - events: - platypush.message.event.adafruit.ConnectedEvent: when thebackend connects to the - Adafruit queue - platypush.message.event.adafruit.DisconnectedEvent: when thebackend disconnects - from the Adafruit queue - platypush.message.event.adafruit.FeedUpdateEvent: when anupdate event is received - on a monitored feed - install: - pip: [] - package: platypush.backend.adafruit.io - type: backend diff --git a/platypush/backend/alarm/__init__.py b/platypush/backend/alarm/__init__.py deleted file mode 100644 index a6004062..00000000 --- a/platypush/backend/alarm/__init__.py +++ /dev/null @@ -1,351 +0,0 @@ -import datetime -import enum -import os -import time -import threading - -from typing import Optional, Union, Dict, Any, List - -import croniter -from dateutil.tz import gettz - -from platypush.backend import Backend -from platypush.context import get_bus, get_plugin -from platypush.message.event.alarm import ( - AlarmStartedEvent, - AlarmDismissedEvent, - AlarmSnoozedEvent, -) -from platypush.plugins.media import MediaPlugin, PlayerState -from platypush.procedure import Procedure - - -class AlarmState(enum.IntEnum): - WAITING = 1 - RUNNING = 2 - DISMISSED = 3 - SNOOZED = 4 - SHUTDOWN = 5 - - -class Alarm: - _alarms_count = 0 - _id_lock = threading.RLock() - - def __init__( - self, - when: str, - actions: Optional[list] = None, - name: Optional[str] = None, - audio_file: Optional[str] = None, - audio_plugin: Optional[str] = None, - audio_volume: Optional[Union[int, float]] = None, - snooze_interval: float = 300.0, - enabled: bool = True, - ): - with self._id_lock: - self._alarms_count += 1 - self.id = self._alarms_count - - self.when = when - self.name = name or 'Alarm_{}'.format(self.id) - self.audio_file = None - - if audio_file: - self.audio_file = os.path.abspath(os.path.expanduser(audio_file)) - assert os.path.isfile(self.audio_file), 'No such audio file: {}'.format( - self.audio_file - ) - - self.audio_plugin = audio_plugin - self.audio_volume = audio_volume - self.snooze_interval = snooze_interval - self.state: Optional[AlarmState] = None - self.timer: Optional[threading.Timer] = None - self.actions = Procedure.build( - name=name, _async=False, requests=actions or [], id=self.id - ) - - self._enabled = enabled - self._runtime_snooze_interval = snooze_interval - - def get_next(self) -> float: - now = datetime.datetime.now().replace( - tzinfo=gettz() - ) # lgtm [py/call-to-non-callable] - - try: - cron = croniter.croniter(self.when, now) - return cron.get_next() - except (AttributeError, croniter.CroniterBadCronError): - try: - timestamp = datetime.datetime.fromisoformat(self.when).replace( - tzinfo=gettz() - ) # lgtm [py/call-to-non-callable] - except (TypeError, ValueError): - timestamp = datetime.datetime.now().replace( - tzinfo=gettz() - ) + datetime.timedelta( # lgtm [py/call-to-non-callable] - seconds=int(self.when) - ) - - return timestamp.timestamp() if timestamp >= now else None - - def is_enabled(self): - return self._enabled - - def disable(self): - self._enabled = False - - def enable(self): - self._enabled = True - - def dismiss(self): - self.state = AlarmState.DISMISSED - self.stop_audio() - get_bus().post(AlarmDismissedEvent(name=self.name)) - - def snooze(self, interval: Optional[float] = None): - self._runtime_snooze_interval = interval or self.snooze_interval - self.state = AlarmState.SNOOZED - self.stop_audio() - get_bus().post( - AlarmSnoozedEvent(name=self.name, interval=self._runtime_snooze_interval) - ) - - def start(self): - if self.timer: - self.timer.cancel() - - if self.get_next() is None: - return - - interval = self.get_next() - time.time() - self.timer = threading.Timer(interval, self.callback()) - self.timer.start() - self.state = AlarmState.WAITING - - def stop(self): - self.state = AlarmState.SHUTDOWN - if self.timer: - self.timer.cancel() - self.timer = None - - def _get_audio_plugin(self) -> MediaPlugin: - return get_plugin(self.audio_plugin) - - def play_audio(self): - def thread(): - self._get_audio_plugin().play(self.audio_file) - if self.audio_volume is not None: - self._get_audio_plugin().set_volume(self.audio_volume) - - self.state = AlarmState.RUNNING - audio_thread = threading.Thread(target=thread) - audio_thread.start() - - def stop_audio(self): - self._get_audio_plugin().stop() - - def callback(self): - def _callback(): - while True: - if self.state == AlarmState.SHUTDOWN: - break - - if self.is_enabled(): - get_bus().post(AlarmStartedEvent(name=self.name)) - if self.audio_plugin and self.audio_file: - self.play_audio() - - self.actions.execute() - - time.sleep(10) - sleep_time = None - if self.state == AlarmState.RUNNING: - while True: - state = self._get_audio_plugin().status().output.get('state') - if state == PlayerState.STOP.value: - if self.state == AlarmState.SNOOZED: - sleep_time = self._runtime_snooze_interval - else: - self.state = AlarmState.WAITING - - break - else: - time.sleep(10) - - if self.state == AlarmState.SNOOZED: - sleep_time = self._runtime_snooze_interval - elif self.get_next() is None: - self.state = AlarmState.SHUTDOWN - break - - if not sleep_time: - sleep_time = ( - self.get_next() - time.time() if self.get_next() else 10 - ) - - time.sleep(sleep_time) - - return _callback - - def to_dict(self): - return { - 'name': self.name, - 'id': self.id, - 'when': self.when, - 'next_run': self.get_next(), - 'enabled': self.is_enabled(), - 'state': self.state.name, - } - - -class AlarmBackend(Backend): - """ - Backend to handle user-configured alarms. - """ - - def __init__( - self, - alarms: Optional[Union[list, Dict[str, Any]]] = None, - audio_plugin: str = 'media.mplayer', - *args, - **kwargs - ): - """ - :param alarms: List or name->value dict with the configured alarms. Example: - - .. code-block:: yaml - - morning_alarm: - when: '0 7 * * 1-5' # Cron expression format: run every weekday at 7 AM - audio_file: ~/path/your_ringtone.mp3 - audio_plugin: media.mplayer - audio_volume: 10 # 10% - snooze_interval: 300 # 5 minutes snooze - actions: - - action: tts.say - args: - text: Good morning - - - action: light.hue.bri - args: - value: 1 - - - action: light.hue.bri - args: - value: 140 - transitiontime: 150 - - one_shot_alarm: - when: '2020-02-18T07:00:00.000000' # One-shot execution, with timestamp in ISO format - audio_file: ~/path/your_ringtone.mp3 - actions: - - action: light.hue.on - - :param audio_plugin: Media plugin (instance of :class:`platypush.plugins.media.MediaPlugin`) that will be - used to play the alarm audio (default: ``media.mplayer``). - """ - super().__init__(*args, **kwargs) - alarms = alarms or [] - if isinstance(alarms, dict): - alarms = [{'name': name, **alarm} for name, alarm in alarms.items()] - - self.audio_plugin = audio_plugin - alarms = [ - Alarm(**{'audio_plugin': self.audio_plugin, **alarm}) for alarm in alarms - ] - self.alarms: Dict[str, Alarm] = {alarm.name: alarm for alarm in alarms} - - def add_alarm( - self, - when: str, - actions: list, - name: Optional[str] = None, - audio_file: Optional[str] = None, - audio_volume: Optional[Union[int, float]] = None, - enabled: bool = True, - ) -> Alarm: - alarm = Alarm( - when=when, - actions=actions, - name=name, - enabled=enabled, - audio_file=audio_file, - audio_plugin=self.audio_plugin, - audio_volume=audio_volume, - ) - - if alarm.name in self.alarms: - self.logger.info('Overwriting existing alarm {}'.format(alarm.name)) - self.alarms[alarm.name].stop() - - self.alarms[alarm.name] = alarm - self.alarms[alarm.name].start() - return self.alarms[alarm.name] - - def _get_alarm(self, name) -> Alarm: - assert name in self.alarms, 'Alarm {} does not exist'.format(name) - return self.alarms[name] - - def enable_alarm(self, name: str): - self._get_alarm(name).enable() - - def disable_alarm(self, name: str): - self._get_alarm(name).disable() - - def dismiss_alarm(self): - alarm = self.get_running_alarm() - if not alarm: - self.logger.info('No alarm is running') - return - - alarm.dismiss() - - def snooze_alarm(self, interval: Optional[str] = None): - alarm = self.get_running_alarm() - if not alarm: - self.logger.info('No alarm is running') - return - - alarm.snooze(interval=interval) - - def get_alarms(self) -> List[Alarm]: - return sorted( - self.alarms.values(), - key=lambda alarm: alarm.get_next(), - ) - - def get_running_alarm(self) -> Optional[Alarm]: - running_alarms = [ - alarm for alarm in self.alarms.values() if alarm.state == AlarmState.RUNNING - ] - return running_alarms[0] if running_alarms else None - - def __enter__(self): - for alarm in self.alarms.values(): - alarm.stop() - alarm.start() - - self.logger.info( - 'Initialized alarm backend with {} alarms'.format(len(self.alarms)) - ) - - def __exit__(self, *_, **__): - for alarm in self.alarms.values(): - alarm.stop() - - self.logger.info('Alarm backend terminated') - - def loop(self): - for name, alarm in self.alarms.copy().items(): - if not alarm.timer or ( - not alarm.timer.is_alive() and alarm.state == AlarmState.SHUTDOWN - ): - del self.alarms[name] - - time.sleep(10) - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/alarm/manifest.yaml b/platypush/backend/alarm/manifest.yaml deleted file mode 100644 index 51f4e094..00000000 --- a/platypush/backend/alarm/manifest.yaml +++ /dev/null @@ -1,10 +0,0 @@ -manifest: - events: - platypush.message.event.alarm.AlarmDismissedEvent: when an alarm is dismissed. - platypush.message.event.alarm.AlarmSnoozedEvent: when an alarm is snoozed. - platypush.message.event.alarm.AlarmStartedEvent: when an alarm starts. - platypush.message.event.alarm.AlarmTimeoutEvent: when an alarm times out. - install: - pip: [] - package: platypush.backend.alarm - type: backend diff --git a/platypush/backend/button/flic/__init__.py b/platypush/backend/button/flic/__init__.py deleted file mode 100644 index 038795be..00000000 --- a/platypush/backend/button/flic/__init__.py +++ /dev/null @@ -1,131 +0,0 @@ -from threading import Timer -from time import time - -from platypush.backend import Backend -from platypush.message.event.button.flic import FlicButtonEvent - -from .fliclib.fliclib import FlicClient, ButtonConnectionChannel, ClickType - - -class ButtonFlicBackend(Backend): - """ - Backend that listen for events from the Flic (https://flic.io/) bluetooth - smart buttons. - - Requires: - - * **fliclib** (https://github.com/50ButtonsEach/fliclib-linux-hci). For - the backend to work properly you need to have the ``flicd`` daemon - from the fliclib running, and you have to first pair the buttons with - your device using any of the scanners provided by the library. - - """ - - _long_press_timeout = 0.3 - _btn_timeout = 0.5 - ShortPressEvent = "ShortPressEvent" - LongPressEvent = "LongPressEvent" - - def __init__( - self, - server='localhost', - long_press_timeout=_long_press_timeout, - btn_timeout=_btn_timeout, - **kwargs - ): - """ - :param server: flicd server host (default: localhost) - :type server: str - - :param long_press_timeout: How long you should press a button for a - press action to be considered "long press" (default: 0.3 secohds) - :type long_press_timeout: float - - :param btn_timeout: How long since the last button release before - considering the user interaction completed (default: 0.5 seconds) - :type btn_timeout: float - """ - - super().__init__(**kwargs) - - self.server = server - self.client = FlicClient(server) - self.client.get_info(self._received_info()) - self.client.on_new_verified_button = self._got_button() - - self._long_press_timeout = long_press_timeout - self._btn_timeout = btn_timeout - self._btn_timer = None - self._btn_addr = None - self._down_pressed_time = None - self._cur_sequence = [] - self.logger.info('Initialized Flic buttons backend on %s', self.server) - - def _got_button(self): - def _f(bd_addr): - cc = ButtonConnectionChannel(bd_addr) - cc.on_button_up_or_down = ( - lambda channel, click_type, was_queued, time_diff: self._on_event()( - bd_addr, channel, click_type, was_queued, time_diff - ) - ) - self.client.add_connection_channel(cc) - - return _f - - def _received_info(self): - def _f(items): - for bd_addr in items["bd_addr_of_verified_buttons"]: - self._got_button()(bd_addr) - - return _f - - def _on_btn_timeout(self): - def _f(): - self.logger.info( - 'Flic event triggered from %s: %s', self._btn_addr, self._cur_sequence - ) - - self.bus.post( - FlicButtonEvent(btn_addr=self._btn_addr, sequence=self._cur_sequence) - ) - - self._cur_sequence = [] - - return _f - - def _on_event(self): - # _ = channel - # __ = time_diff - def _f(bd_addr, _, click_type, was_queued, __): - if was_queued: - return - - if self._btn_timer: - self._btn_timer.cancel() - - if click_type == ClickType.ButtonDown: - self._down_pressed_time = time() - return - - btn_event = self.ShortPressEvent - if self._down_pressed_time: - if time() - self._down_pressed_time >= self._long_press_timeout: - btn_event = self.LongPressEvent - self._down_pressed_time = None - - self._cur_sequence.append(btn_event) - - self._btn_addr = bd_addr - self._btn_timer = Timer(self._btn_timeout, self._on_btn_timeout()) - self._btn_timer.start() - - return _f - - def run(self): - super().run() - - self.client.handle_events() - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/button/flic/fliclib/fliclib.py b/platypush/backend/button/flic/fliclib/fliclib.py deleted file mode 100644 index 56263c88..00000000 --- a/platypush/backend/button/flic/fliclib/fliclib.py +++ /dev/null @@ -1,609 +0,0 @@ -"""Flic client library for python - -Requires python 3.3 or higher. - -For detailed documentation, see the protocol documentation. - -Notes on the data type used in this python implementation compared to the protocol documentation: -All kind of integers are represented as python integers. -Booleans use the Boolean type. -Enums use the defined python enums below. -Bd addr are represented as standard python strings, e.g. "aa:bb:cc:dd:ee:ff". -""" - -from enum import Enum -from collections import namedtuple -import time -import socket -import select -import struct -import itertools -import queue -import threading - -class CreateConnectionChannelError(Enum): - NoError = 0 - MaxPendingConnectionsReached = 1 - -class ConnectionStatus(Enum): - Disconnected = 0 - Connected = 1 - Ready = 2 - -class DisconnectReason(Enum): - Unspecified = 0 - ConnectionEstablishmentFailed = 1 - TimedOut = 2 - BondingKeysMismatch = 3 - -class RemovedReason(Enum): - RemovedByThisClient = 0 - ForceDisconnectedByThisClient = 1 - ForceDisconnectedByOtherClient = 2 - - ButtonIsPrivate = 3 - VerifyTimeout = 4 - InternetBackendError = 5 - InvalidData = 6 - - CouldntLoadDevice = 7 - -class ClickType(Enum): - ButtonDown = 0 - ButtonUp = 1 - ButtonClick = 2 - ButtonSingleClick = 3 - ButtonDoubleClick = 4 - ButtonHold = 5 - -class BdAddrType(Enum): - PublicBdAddrType = 0 - RandomBdAddrType = 1 - -class LatencyMode(Enum): - NormalLatency = 0 - LowLatency = 1 - HighLatency = 2 - -class BluetoothControllerState(Enum): - Detached = 0 - Resetting = 1 - Attached = 2 - -class ScanWizardResult(Enum): - WizardSuccess = 0 - WizardCancelledByUser = 1 - WizardFailedTimeout = 2 - WizardButtonIsPrivate = 3 - WizardBluetoothUnavailable = 4 - WizardInternetBackendError = 5 - WizardInvalidData = 6 - -class ButtonScanner: - """ButtonScanner class. - - Usage: - scanner = ButtonScanner() - scanner.on_advertisement_packet = lambda scanner, bd_addr, name, rssi, is_private, already_verified: ... - client.add_scanner(scanner) - """ - - _cnt = itertools.count() - - def __init__(self): - self._scan_id = next(ButtonScanner._cnt) - self.on_advertisement_packet = lambda scanner, bd_addr, name, rssi, is_private, already_verified: None - -class ScanWizard: - """ScanWizard class - - Usage: - wizard = ScanWizard() - wizard.on_found_private_button = lambda scan_wizard: ... - wizard.on_found_public_button = lambda scan_wizard, bd_addr, name: ... - wizard.on_button_connected = lambda scan_wizard, bd_addr, name: ... - wizard.on_completed = lambda scan_wizard, result, bd_addr, name: ... - client.add_scan_wizard(wizard) - """ - - _cnt = itertools.count() - - def __init__(self): - self._scan_wizard_id = next(ScanWizard._cnt) - self._bd_addr = None - self._name = None - self.on_found_private_button = lambda scan_wizard: None - self.on_found_public_button = lambda scan_wizard, bd_addr, name: None - self.on_button_connected = lambda scan_wizard, bd_addr, name: None - self.on_completed = lambda scan_wizard, result, bd_addr, name: None - -class ButtonConnectionChannel: - """ButtonConnectionChannel class. - - This class represents a connection channel to a Flic button. - Add this button connection channel to a FlicClient by executing client.add_connection_channel(connection_channel). - You may only have this connection channel added to one FlicClient at a time. - - Before you add the connection channel to the client, you should set up your callback functions by assigning - the corresponding properties to this object with a function. Each callback function has a channel parameter as the first one, - referencing this object. - - Available properties and the function parameters are: - on_create_connection_channel_response: channel, error, connection_status - on_removed: channel, removed_reason - on_connection_status_changed: channel, connection_status, disconnect_reason - on_button_up_or_down / on_button_click_or_hold / on_button_single_or_double_click / on_button_single_or_double_click_or_hold: channel, click_type, was_queued, time_diff - """ - - _cnt = itertools.count() - - def __init__(self, bd_addr, latency_mode = LatencyMode.NormalLatency, auto_disconnect_time = 511): - self._conn_id = next(ButtonConnectionChannel._cnt) - self._bd_addr = bd_addr - self._latency_mode = latency_mode - self._auto_disconnect_time = auto_disconnect_time - self._client = None - - self.on_create_connection_channel_response = lambda channel, error, connection_status: None - self.on_removed = lambda channel, removed_reason: None - self.on_connection_status_changed = lambda channel, connection_status, disconnect_reason: None - self.on_button_up_or_down = lambda channel, click_type, was_queued, time_diff: None - self.on_button_click_or_hold = lambda channel, click_type, was_queued, time_diff: None - self.on_button_single_or_double_click = lambda channel, click_type, was_queued, time_diff: None - self.on_button_single_or_double_click_or_hold = lambda channel, click_type, was_queued, time_diff: None - - @property - def bd_addr(self): - return self._bd_addr - - @property - def latency_mode(self): - return self._latency_mode - - @latency_mode.setter - def latency_mode(self, latency_mode): - if self._client is None: - self._latency_mode = latency_mode - return - - with self._client._lock: - self._latency_mode = latency_mode - if not self._client._closed: - self._client._send_command("CmdChangeModeParameters", {"conn_id": self._conn_id, "latency_mode": self._latency_mode, "auto_disconnect_time": self._auto_disconnect_time}) - - @property - def auto_disconnect_time(self): - return self._auto_disconnect_time - - @auto_disconnect_time.setter - def auto_disconnect_time(self, auto_disconnect_time): - if self._client is None: - self._auto_disconnect_time = auto_disconnect_time - return - - with self._client._lock: - self._auto_disconnect_time = auto_disconnect_time - if not self._client._closed: - self._client._send_command("CmdChangeModeParameters", {"conn_id": self._conn_id, "latency_mode": self._latency_mode, "auto_disconnect_time": self._auto_disconnect_time}) - -class FlicClient: - """FlicClient class. - - When this class is constructed, a socket connection is established. - You may then send commands to the server and set timers. - Once you are ready with the initialization you must call the handle_events() method which is a main loop that never exits, unless the socket is closed. - For a more detailed description of all commands, events and enums, check the protocol specification. - - All commands are wrapped in more high level functions and events are reported using callback functions. - - All methods called on this class will take effect only if you eventually call the handle_events() method. - - The ButtonScanner is used to set up a handler for advertisement packets. - The ButtonConnectionChannel is used to interact with connections to flic buttons and receive their events. - - Other events are handled by the following callback functions that can be assigned to this object (and a list of the callback function parameters): - on_new_verified_button: bd_addr - on_no_space_for_new_connection: max_concurrently_connected_buttons - on_got_space_for_new_connection: max_concurrently_connected_buttons - on_bluetooth_controller_state_change: state - """ - - _EVENTS = [ - ("EvtAdvertisementPacket", "> 8 - bytes[2] = opcode - bytes += data_bytes - with self._lock: - if not self._closed: - self._sock.sendall(bytes) - - def _dispatch_event(self, data): - if len(data) == 0: - return - opcode = data[0] - - if opcode >= len(FlicClient._EVENTS) or FlicClient._EVENTS[opcode] is None: - return - - event_name = FlicClient._EVENTS[opcode][0] - data_tuple = FlicClient._EVENT_STRUCTS[opcode].unpack(data[1 : 1 + FlicClient._EVENT_STRUCTS[opcode].size]) - items = FlicClient._EVENT_NAMED_TUPLES[opcode]._make(data_tuple)._asdict() - - # Process some kind of items whose data type is not supported by struct - if "bd_addr" in items: - items["bd_addr"] = FlicClient._bdaddr_bytes_to_string(items["bd_addr"]) - - if "name" in items: - items["name"] = items["name"].decode("utf-8") - - if event_name == "EvtCreateConnectionChannelResponse": - items["error"] = CreateConnectionChannelError(items["error"]) - items["connection_status"] = ConnectionStatus(items["connection_status"]) - - if event_name == "EvtConnectionStatusChanged": - items["connection_status"] = ConnectionStatus(items["connection_status"]) - items["disconnect_reason"] = DisconnectReason(items["disconnect_reason"]) - - if event_name == "EvtConnectionChannelRemoved": - items["removed_reason"] = RemovedReason(items["removed_reason"]) - - if event_name.startswith("EvtButton"): - items["click_type"] = ClickType(items["click_type"]) - - if event_name == "EvtGetInfoResponse": - items["bluetooth_controller_state"] = BluetoothControllerState(items["bluetooth_controller_state"]) - items["my_bd_addr"] = FlicClient._bdaddr_bytes_to_string(items["my_bd_addr"]) - items["my_bd_addr_type"] = BdAddrType(items["my_bd_addr_type"]) - items["bd_addr_of_verified_buttons"] = [] - - pos = FlicClient._EVENT_STRUCTS[opcode].size - for i in range(items["nb_verified_buttons"]): - items["bd_addr_of_verified_buttons"].append(FlicClient._bdaddr_bytes_to_string(data[1 + pos : 1 + pos + 6])) - pos += 6 - - if event_name == "EvtBluetoothControllerStateChange": - items["state"] = BluetoothControllerState(items["state"]) - - if event_name == "EvtGetButtonUUIDResponse": - items["uuid"] = "".join(map(lambda x: "%02x" % x, items["uuid"])) - if items["uuid"] == "00000000000000000000000000000000": - items["uuid"] = None - - if event_name == "EvtScanWizardCompleted": - items["result"] = ScanWizardResult(items["result"]) - - # Process event - if event_name == "EvtAdvertisementPacket": - scanner = self._scanners.get(items["scan_id"]) - if scanner is not None: - scanner.on_advertisement_packet(scanner, items["bd_addr"], items["name"], items["rssi"], items["is_private"], items["already_verified"]) - - if event_name == "EvtCreateConnectionChannelResponse": - channel = self._connection_channels[items["conn_id"]] - if items["error"] != CreateConnectionChannelError.NoError: - del self._connection_channels[items["conn_id"]] - channel.on_create_connection_channel_response(channel, items["error"], items["connection_status"]) - - if event_name == "EvtConnectionStatusChanged": - channel = self._connection_channels[items["conn_id"]] - channel.on_connection_status_changed(channel, items["connection_status"], items["disconnect_reason"]) - - if event_name == "EvtConnectionChannelRemoved": - channel = self._connection_channels[items["conn_id"]] - del self._connection_channels[items["conn_id"]] - channel.on_removed(channel, items["removed_reason"]) - - if event_name == "EvtButtonUpOrDown": - channel = self._connection_channels[items["conn_id"]] - channel.on_button_up_or_down(channel, items["click_type"], items["was_queued"], items["time_diff"]) - if event_name == "EvtButtonClickOrHold": - channel = self._connection_channels[items["conn_id"]] - channel.on_button_click_or_hold(channel, items["click_type"], items["was_queued"], items["time_diff"]) - if event_name == "EvtButtonSingleOrDoubleClick": - channel = self._connection_channels[items["conn_id"]] - channel.on_button_single_or_double_click(channel, items["click_type"], items["was_queued"], items["time_diff"]) - if event_name == "EvtButtonSingleOrDoubleClickOrHold": - channel = self._connection_channels[items["conn_id"]] - channel.on_button_single_or_double_click_or_hold(channel, items["click_type"], items["was_queued"], items["time_diff"]) - - if event_name == "EvtNewVerifiedButton": - self.on_new_verified_button(items["bd_addr"]) - - if event_name == "EvtGetInfoResponse": - self._get_info_response_queue.get()(items) - - if event_name == "EvtNoSpaceForNewConnection": - self.on_no_space_for_new_connection(items["max_concurrently_connected_buttons"]) - - if event_name == "EvtGotSpaceForNewConnection": - self.on_got_space_for_new_connection(items["max_concurrently_connected_buttons"]) - - if event_name == "EvtBluetoothControllerStateChange": - self.on_bluetooth_controller_state_change(items["state"]) - - if event_name == "EvtGetButtonUUIDResponse": - self._get_button_uuid_queue.get()(items["bd_addr"], items["uuid"]) - - if event_name == "EvtScanWizardFoundPrivateButton": - scan_wizard = self._scan_wizards[items["scan_wizard_id"]] - scan_wizard.on_found_private_button(scan_wizard) - - if event_name == "EvtScanWizardFoundPublicButton": - scan_wizard = self._scan_wizards[items["scan_wizard_id"]] - scan_wizard._bd_addr = items["bd_addr"] - scan_wizard._name = items["name"] - scan_wizard.on_found_public_button(scan_wizard, scan_wizard._bd_addr, scan_wizard._name) - - if event_name == "EvtScanWizardButtonConnected": - scan_wizard = self._scan_wizards[items["scan_wizard_id"]] - scan_wizard.on_button_connected(scan_wizard, scan_wizard._bd_addr, scan_wizard._name) - - if event_name == "EvtScanWizardCompleted": - scan_wizard = self._scan_wizards[items["scan_wizard_id"]] - del self._scan_wizards[items["scan_wizard_id"]] - scan_wizard.on_completed(scan_wizard, items["result"], scan_wizard._bd_addr, scan_wizard._name) - - def _handle_one_event(self): - if len(self._timers.queue) > 0: - current_timer = self._timers.queue[0] - timeout = max(current_timer[0] - time.monotonic(), 0) - if timeout == 0: - self._timers.get()[1]() - return True - if len(select.select([self._sock], [], [], timeout)[0]) == 0: - return True - - len_arr = bytearray(2) - view = memoryview(len_arr) - - toread = 2 - while toread > 0: - nbytes = self._sock.recv_into(view, toread) - if nbytes == 0: - return False - view = view[nbytes:] - toread -= nbytes - - packet_len = len_arr[0] | (len_arr[1] << 8) - data = bytearray(packet_len) - view = memoryview(data) - toread = packet_len - while toread > 0: - nbytes = self._sock.recv_into(view, toread) - if nbytes == 0: - return False - view = view[nbytes:] - toread -= nbytes - - self._dispatch_event(data) - return True - - def handle_events(self): - """Start the main loop for this client. - - This method will not return until the socket has been closed. - Once it has returned, any use of this FlicClient is illegal. - """ - self._handle_event_thread_ident = threading.get_ident() - while not self._closed: - if not self._handle_one_event(): - break - self._sock.close() diff --git a/platypush/backend/button/flic/manifest.yaml b/platypush/backend/button/flic/manifest.yaml deleted file mode 100644 index b95026b9..00000000 --- a/platypush/backend/button/flic/manifest.yaml +++ /dev/null @@ -1,9 +0,0 @@ -manifest: - events: - platypush.message.event.button.flic.FlicButtonEvent: when a button is pressed.The - event will also contain the press sequence(e.g. ``["ShortPressEvent", "LongPressEvent", - "ShortPressEvent"]``) - install: - pip: [] - package: platypush.backend.button.flic - type: backend diff --git a/platypush/backend/camera/pi/__init__.py b/platypush/backend/camera/pi/__init__.py deleted file mode 100644 index 169a1588..00000000 --- a/platypush/backend/camera/pi/__init__.py +++ /dev/null @@ -1,214 +0,0 @@ -import json -import socket - -from enum import Enum -from threading import Thread - -from platypush.backend import Backend -from platypush.context import get_backend - - -class CameraPiBackend(Backend): - """ - Backend to interact with a Raspberry Pi camera. It can start and stop - recordings and take pictures. It can be programmatically controlled through - the :class:`platypush.plugins.camera.pi` plugin. Note that the Redis backend - must be configured and running to enable camera control. - - This backend is **DEPRECATED**. Use the plugin :class:`platypush.plugins.camera.pi.CameraPiPlugin` instead to run - Pi camera actions. If you want to start streaming the camera on application start then simply create an event hook - on :class:`platypush.message.event.application.ApplicationStartedEvent` that runs ``camera.pi.start_streaming``. - """ - - class CameraAction(Enum): - START_RECORDING = 'START_RECORDING' - STOP_RECORDING = 'STOP_RECORDING' - TAKE_PICTURE = 'TAKE_PICTURE' - - def __eq__(self, other): - return self.value == other - - # noinspection PyUnresolvedReferences,PyPackageRequirements - def __init__( - self, - listen_port, - bind_address='0.0.0.0', - x_resolution=640, - y_resolution=480, - redis_queue='platypush/camera/pi', - start_recording_on_startup=True, - framerate=24, - hflip=False, - vflip=False, - sharpness=0, - contrast=0, - brightness=50, - video_stabilization=False, - iso=0, - exposure_compensation=0, - exposure_mode='auto', - meter_mode='average', - awb_mode='auto', - image_effect='none', - color_effects=None, - rotation=0, - crop=(0.0, 0.0, 1.0, 1.0), - **kwargs - ): - """ - See https://www.raspberrypi.org/documentation/usage/camera/python/README.md - for a detailed reference about the Pi camera options. - - :param listen_port: Port where the camera process will provide the video output while recording - :type listen_port: int - - :param bind_address: Bind address (default: 0.0.0.0). - :type bind_address: str - """ - - super().__init__(**kwargs) - - self.bind_address = bind_address - self.listen_port = listen_port - self.server_socket = socket.socket() - self.server_socket.bind( - (self.bind_address, self.listen_port) - ) # lgtm [py/bind-socket-all-network-interfaces] - self.server_socket.listen(0) - - import picamera - - self.camera = picamera.PiCamera() - self.camera.resolution = (x_resolution, y_resolution) - self.camera.framerate = framerate - self.camera.hflip = hflip - self.camera.vflip = vflip - self.camera.sharpness = sharpness - self.camera.contrast = contrast - self.camera.brightness = brightness - self.camera.video_stabilization = video_stabilization - self.camera.ISO = iso - self.camera.exposure_compensation = exposure_compensation - self.camera.exposure_mode = exposure_mode - self.camera.meter_mode = meter_mode - self.camera.awb_mode = awb_mode - self.camera.image_effect = image_effect - self.camera.color_effects = color_effects - self.camera.rotation = rotation - self.camera.crop = crop - self.start_recording_on_startup = start_recording_on_startup - self.redis = None - self.redis_queue = redis_queue - self._recording_thread = None - - def send_camera_action(self, action, **kwargs): - action = {'action': action.value, **kwargs} - - self.redis.send_message(msg=json.dumps(action), queue_name=self.redis_queue) - - def take_picture(self, image_file): - """ - Take a picture. - - :param image_file: Output image file - :type image_file: str - """ - self.logger.info('Capturing camera snapshot to {}'.format(image_file)) - self.camera.capture(image_file) - self.logger.info('Captured camera snapshot to {}'.format(image_file)) - - # noinspection PyShadowingBuiltins - def start_recording(self, video_file=None, format='h264'): - """ - Start a recording. - - :param video_file: Output video file. If specified, the video will be recorded to file, otherwise it will be - served via TCP/IP on the listen_port. Use ``stop_recording`` to stop the recording. - :type video_file: str - - :param format: Video format (default: h264) - :type format: str - """ - - # noinspection PyBroadException - def recording_thread(): - if video_file: - self.camera.start_recording(video_file, format=format) - while True: - self.camera.wait_recording(2) - else: - while not self.should_stop(): - connection = self.server_socket.accept()[0].makefile('wb') - self.logger.info( - 'Accepted client connection on port {}'.format(self.listen_port) - ) - - try: - self.camera.start_recording(connection, format=format) - while True: - self.camera.wait_recording(2) - except ConnectionError: - self.logger.info('Client closed connection') - try: - self.stop_recording() - except Exception as e: - self.logger.warning( - 'Could not stop recording: {}'.format(str(e)) - ) - - try: - connection.close() - except Exception as e: - self.logger.warning( - 'Could not close connection: {}'.format(str(e)) - ) - - self.send_camera_action(self.CameraAction.START_RECORDING) - - if self._recording_thread: - self.logger.info('Recording already running') - return - - self.logger.info('Starting camera recording') - self._recording_thread = Thread( - target=recording_thread, name='PiCameraRecorder' - ) - self._recording_thread.start() - - def stop_recording(self): - """Stops recording""" - - self.logger.info('Stopping camera recording') - - try: - self.camera.stop_recording() - except Exception as e: - self.logger.warning('Failed to stop recording') - self.logger.exception(e) - - def run(self): - super().run() - - if not self.redis: - self.redis = get_backend('redis') - - if self.start_recording_on_startup: - self.send_camera_action(self.CameraAction.START_RECORDING) - - self.logger.info('Initialized Pi camera backend') - - while not self.should_stop(): - try: - msg = self.redis.get_message(self.redis_queue) - - if msg.get('action') == self.CameraAction.START_RECORDING: - self.start_recording() - elif msg.get('action') == self.CameraAction.STOP_RECORDING: - self.stop_recording() - elif msg.get('action') == self.CameraAction.TAKE_PICTURE: - self.take_picture(image_file=msg.get('image_file')) - except Exception as e: - self.logger.exception(e) - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/chat/__init__.py b/platypush/backend/chat/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/platypush/backend/chat/telegram/__init__.py b/platypush/backend/chat/telegram/__init__.py deleted file mode 100644 index 26bfa725..00000000 --- a/platypush/backend/chat/telegram/__init__.py +++ /dev/null @@ -1,164 +0,0 @@ -import re - -from typing import Type, Optional, Union, List - -from platypush.backend import Backend -from platypush.context import get_plugin -from platypush.message.event.chat.telegram import ( - MessageEvent, - CommandMessageEvent, - TextMessageEvent, - PhotoMessageEvent, - VideoMessageEvent, - ContactMessageEvent, - DocumentMessageEvent, - LocationMessageEvent, - GroupChatCreatedEvent, -) -from platypush.plugins.chat.telegram import ChatTelegramPlugin - - -class ChatTelegramBackend(Backend): - """ - Telegram bot that listens for messages and updates. - - Requires: - - * The :class:`platypush.plugins.chat.telegram.ChatTelegramPlugin` plugin configured - - """ - - def __init__( - self, authorized_chat_ids: Optional[List[Union[str, int]]] = None, **kwargs - ): - """ - :param authorized_chat_ids: Optional list of chat_id/user_id which are authorized to send messages to - the bot. If nothing is specified then no restrictions are applied. - """ - - super().__init__(**kwargs) - self.authorized_chat_ids = set(authorized_chat_ids or []) - self._plugin: ChatTelegramPlugin = get_plugin('chat.telegram') # type: ignore - - def _authorize(self, msg): - if not self.authorized_chat_ids: - return - - if msg.chat.type == 'private' and msg.chat.id not in self.authorized_chat_ids: - self.logger.info( - 'Received message from unauthorized chat_id %s', msg.chat.id - ) - self._plugin.send_message( - chat_id=msg.chat.id, - text='You are not allowed to send messages to this bot', - ) - raise PermissionError - - def _msg_hook(self, cls: Type[MessageEvent]): - # noinspection PyUnusedLocal - def hook(update, _): - msg = update.effective_message - - try: - self._authorize(msg) - self.bus.post( - cls( - chat_id=update.effective_chat.id, - message=self._plugin.parse_msg(msg).output, - user=self._plugin.parse_user(update.effective_user).output, - ) - ) - except PermissionError: - pass - - return hook - - def _group_hook(self): - def hook(update, context): - msg = update.effective_message - if msg.group_chat_created: - self.bus.post( - GroupChatCreatedEvent( - chat_id=update.effective_chat.id, - message=self._plugin.parse_msg(msg).output, - user=self._plugin.parse_user(update.effective_user).output, - ) - ) - elif msg.photo: - self._msg_hook(PhotoMessageEvent)(update, context) - elif msg.video: - self._msg_hook(VideoMessageEvent)(update, context) - elif msg.contact: - self._msg_hook(ContactMessageEvent)(update, context) - elif msg.location: - self._msg_hook(LocationMessageEvent)(update, context) - elif msg.document: - self._msg_hook(DocumentMessageEvent)(update, context) - elif msg.text: - if msg.text.startswith('/'): - self._command_hook()(update, context) - else: - self._msg_hook(TextMessageEvent)(update, context) - - return hook - - def _command_hook(self): - def hook(update, _): - msg = update.effective_message - m = re.match(r'\s*/([0-9a-zA-Z_-]+)\s*(.*)', msg.text) - if not m: - self.logger.warning('Invalid command: %s', msg.text) - return - - cmd = m.group(1).lower() - args = [arg for arg in re.split(r'\s+', m.group(2)) if len(arg)] - - try: - self._authorize(msg) - self.bus.post( - CommandMessageEvent( - chat_id=update.effective_chat.id, - command=cmd, - cmdargs=args, - message=self._plugin.parse_msg(msg).output, - user=self._plugin.parse_user(update.effective_user).output, - ) - ) - except PermissionError: - pass - - return hook - - def run(self): - from telegram.ext import MessageHandler, Filters - - super().run() - telegram = self._plugin.get_telegram() - dispatcher = telegram.dispatcher - - dispatcher.add_handler(MessageHandler(Filters.group, self._group_hook())) - dispatcher.add_handler( - MessageHandler(Filters.text, self._msg_hook(TextMessageEvent)) - ) - dispatcher.add_handler( - MessageHandler(Filters.photo, self._msg_hook(PhotoMessageEvent)) - ) - dispatcher.add_handler( - MessageHandler(Filters.video, self._msg_hook(VideoMessageEvent)) - ) - dispatcher.add_handler( - MessageHandler(Filters.contact, self._msg_hook(ContactMessageEvent)) - ) - dispatcher.add_handler( - MessageHandler(Filters.location, self._msg_hook(LocationMessageEvent)) - ) - dispatcher.add_handler( - MessageHandler(Filters.document, self._msg_hook(DocumentMessageEvent)) - ) - dispatcher.add_handler(MessageHandler(Filters.command, self._command_hook())) - - self.logger.info('Initialized Telegram backend') - telegram.start_polling() - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/chat/telegram/manifest.yaml b/platypush/backend/chat/telegram/manifest.yaml deleted file mode 100644 index 70698426..00000000 --- a/platypush/backend/chat/telegram/manifest.yaml +++ /dev/null @@ -1,19 +0,0 @@ -manifest: - events: - platypush.message.event.chat.telegram.CommandMessageEvent: when a command message - is received. - platypush.message.event.chat.telegram.ContactMessageEvent: when a contact is received. - platypush.message.event.chat.telegram.DocumentMessageEvent: when a document is - received. - platypush.message.event.chat.telegram.GroupChatCreatedEvent: when the bot is invited - to a new group. - platypush.message.event.chat.telegram.LocationMessageEvent: when a location is - received. - platypush.message.event.chat.telegram.PhotoMessageEvent: when a photo is received. - platypush.message.event.chat.telegram.TextMessageEvent: when a text message is - received. - platypush.message.event.chat.telegram.VideoMessageEvent: when a video is received. - install: - pip: [] - package: platypush.backend.chat.telegram - type: backend diff --git a/platypush/backend/file/__init__.py b/platypush/backend/file/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/platypush/backend/file/monitor/__init__.py b/platypush/backend/file/monitor/__init__.py deleted file mode 100644 index b52ad8df..00000000 --- a/platypush/backend/file/monitor/__init__.py +++ /dev/null @@ -1,127 +0,0 @@ -from typing import Iterable, Dict, Union, Any - -from watchdog.observers import Observer - -from platypush.backend import Backend -from .entities.handlers import EventHandler -from .entities.resources import MonitoredResource, MonitoredPattern, MonitoredRegex - - -class FileMonitorBackend(Backend): - """ - This backend monitors changes to local files and directories using the Watchdog API. - """ - - class EventHandlerFactory: - """ - Create a file system event handler from a string, dictionary or ``MonitoredResource`` resource. - """ - - @staticmethod - def from_resource( - resource: Union[str, Dict[str, Any], MonitoredResource] - ) -> EventHandler: - if isinstance(resource, str): - resource = MonitoredResource(resource) - elif isinstance(resource, dict): - if 'regexes' in resource or 'ignore_regexes' in resource: - resource = MonitoredRegex(**resource) - elif ( - 'patterns' in resource - or 'ignore_patterns' in resource - or 'ignore_directories' in resource - ): - resource = MonitoredPattern(**resource) - else: - resource = MonitoredResource(**resource) - - return EventHandler.from_resource(resource) - - def __init__( - self, paths: Iterable[Union[str, Dict[str, Any], MonitoredResource]], **kwargs - ): - """ - :param paths: List of paths to monitor. Paths can either be expressed in any of the following ways: - - - Simple strings. In this case, paths will be interpreted as absolute references to a file or a directory - to monitor. Example: - - .. code-block:: yaml - - backend.file.monitor: - paths: - # Monitor changes on the /tmp folder - - /tmp - # Monitor changes on /etc/passwd - - /etc/passwd - - - Path with monitoring properties expressed as a key-value object. Example showing the supported attributes: - - .. code-block:: yaml - - backend.file.monitor: - paths: - # Monitor changes on the /tmp folder and its subfolders - - path: /tmp - recursive: True - - - Path with pattern-based search criteria for the files to monitor and exclude. Example: - - .. code-block:: yaml - - backend.file.monitor: - paths: - # Recursively monitor changes on the ~/my-project folder that include all - # *.py files, excluding those whose name starts with tmp_ and - # all the files contained in the __pycache__ folders - - path: ~/my-project - recursive: True - patterns: - - "*.py" - ignore_patterns: - - "tmp_*" - ignore_directories: - - "__pycache__" - - - Path with regex-based search criteria for the files to monitor and exclude. Example: - - .. code-block:: yaml - - backend.file.monitor: - paths: - # Recursively monitor changes on the ~/my-images folder that include all - # the files matching a JPEG extension in case-insensitive mode, - # excluding those whose name starts with tmp_ and - # all the files contained in the __MACOSX folders - - path: ~/my-images - recursive: True - case_sensitive: False - regexes: - - '.*\\.jpe?g$' - ignore_patterns: - - '^tmp_.*' - ignore_directories: - - '__MACOSX' - - """ - - super().__init__(**kwargs) - self._observer = Observer() - - for path in paths: - handler = self.EventHandlerFactory.from_resource(path) - self._observer.schedule( - handler, handler.resource.path, recursive=handler.resource.recursive - ) - - def run(self): - super().run() - self.logger.info('Initializing file monitor backend') - self._observer.start() - self.wait_stop() - - def on_stop(self): - self.logger.info('Stopping file monitor backend') - self._observer.stop() - self._observer.join() - self.logger.info('Stopped file monitor backend') diff --git a/platypush/backend/file/monitor/entities/__init__.py b/platypush/backend/file/monitor/entities/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/platypush/backend/file/monitor/manifest.yaml b/platypush/backend/file/monitor/manifest.yaml deleted file mode 100644 index b504d5fe..00000000 --- a/platypush/backend/file/monitor/manifest.yaml +++ /dev/null @@ -1,18 +0,0 @@ -manifest: - events: - platypush.message.event.file.FileSystemCreateEvent: if a resource is created. - platypush.message.event.file.FileSystemDeleteEvent: if a resource is removed. - platypush.message.event.file.FileSystemModifyEvent: if a resource is modified. - install: - apk: - - py3-watchdog - apt: - - python3-watchdog - dnf: - - python-watchdog - pacman: - - python-watchdog - pip: - - watchdog - package: platypush.backend.file.monitor - type: backend diff --git a/platypush/backend/foursquare/__init__.py b/platypush/backend/foursquare/__init__.py deleted file mode 100644 index 29f2122a..00000000 --- a/platypush/backend/foursquare/__init__.py +++ /dev/null @@ -1,54 +0,0 @@ -from typing import Optional - -from platypush.backend import Backend -from platypush.context import get_plugin -from platypush.message.event.foursquare import FoursquareCheckinEvent - - -class FoursquareBackend(Backend): - """ - This backend polls for new check-ins on the user's Foursquare account and triggers an event when a new check-in - occurs. - - Requires: - - * The :class:`platypush.plugins.foursquare.FoursquarePlugin` plugin configured and enabled. - - """ - - _last_created_at_varname = '_foursquare_checkin_last_created_at' - - def __init__(self, poll_seconds: Optional[float] = 60.0, *args, **kwargs): - """ - :param poll_seconds: How often the backend should check for new check-ins (default: one minute). - """ - super().__init__(*args, poll_seconds=poll_seconds, **kwargs) - self._last_created_at = None - - def __enter__(self): - self._last_created_at = int( - get_plugin('variable') - .get(self._last_created_at_varname) - .output.get(self._last_created_at_varname) - or 0 - ) - self.logger.info('Started Foursquare backend') - - def loop(self): - checkins = get_plugin('foursquare').get_checkins().output - if not checkins: - return - - last_checkin = checkins[0] - last_checkin_created_at = last_checkin.get('createdAt', 0) - if self._last_created_at and last_checkin_created_at <= self._last_created_at: - return - - self.bus.post(FoursquareCheckinEvent(checkin=last_checkin)) - self._last_created_at = last_checkin_created_at - get_plugin('variable').set( - **{self._last_created_at_varname: self._last_created_at} - ) - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/foursquare/manifest.yaml b/platypush/backend/foursquare/manifest.yaml deleted file mode 100644 index 0690cc93..00000000 --- a/platypush/backend/foursquare/manifest.yaml +++ /dev/null @@ -1,8 +0,0 @@ -manifest: - events: - platypush.message.event.foursquare.FoursquareCheckinEvent: when a new check-in - occurs. - install: - pip: [] - package: platypush.backend.foursquare - type: backend diff --git a/platypush/backend/github/manifest.yaml b/platypush/backend/github/manifest.yaml deleted file mode 100644 index 18eced00..00000000 --- a/platypush/backend/github/manifest.yaml +++ /dev/null @@ -1,32 +0,0 @@ -manifest: - events: - platypush.message.event.github.GithubCommitCommentEvent: when a new commit comment - is created. - platypush.message.event.github.GithubCreateEvent: when a tag or branch is created. - platypush.message.event.github.GithubDeleteEvent: when a tag or branch is deleted. - platypush.message.event.github.GithubEvent: for any event that doesn't fall in - the above categories(``event_type`` will be set accordingly). - platypush.message.event.github.GithubForkEvent: when a user forks a repository. - platypush.message.event.github.GithubIssueCommentEvent: when new activity happens - on an issue comment. - platypush.message.event.github.GithubIssueEvent: when new repository issue activity - happens. - platypush.message.event.github.GithubMemberEvent: when new repository collaborators - activity happens. - platypush.message.event.github.GithubPublicEvent: when a repository goes public. - platypush.message.event.github.GithubPullRequestEvent: when new pull request related - activity happens. - platypush.message.event.github.GithubPullRequestReviewCommentEvent: when activity - happens on a pullrequest commit. - platypush.message.event.github.GithubPushEvent: when a new push is created. - platypush.message.event.github.GithubReleaseEvent: when a new release happens. - platypush.message.event.github.GithubSponsorshipEvent: when new sponsorship related - activity happens. - platypush.message.event.github.GithubWatchEvent: when someone stars/starts watching - a repository. - platypush.message.event.github.GithubWikiEvent: when new activity happens on a - repository wiki. - install: - pip: [] - package: platypush.backend.github - type: backend diff --git a/platypush/backend/google/__init__.py b/platypush/backend/google/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/platypush/backend/google/fit/__init__.py b/platypush/backend/google/fit/__init__.py deleted file mode 100644 index 30c2ed27..00000000 --- a/platypush/backend/google/fit/__init__.py +++ /dev/null @@ -1,129 +0,0 @@ -import datetime -import time - -from platypush.backend import Backend -from platypush.context import get_plugin -from platypush.message.event.google.fit import GoogleFitEvent -from platypush.utils import camel_case_to_snake_case - - -class GoogleFitBackend(Backend): - """ - This backend will listen for new Google Fit events (e.g. new weight/height - measurements, new fitness activities etc.) on the specified data streams and - fire an event upon new data. - - Requires: - - * The **google.fit** plugin - (:class:`platypush.plugins.google.fit.GoogleFitPlugin`) enabled. - - """ - - _default_poll_seconds = 60 - _default_user_id = 'me' - _last_timestamp_varname = '_GOOGLE_FIT_LAST_TIMESTAMP_' - - def __init__( - self, - data_sources, - user_id=_default_user_id, - poll_seconds=_default_poll_seconds, - *args, - **kwargs - ): - """ - :param data_sources: Google Fit data source IDs to monitor. You can - get a list of the available data sources through the - :meth:`platypush.plugins.google.fit.GoogleFitPlugin.get_data_sources` - action - :type data_sources: list[str] - - :param user_id: Google user ID to track (default: 'me') - :type user_id: str - - :param poll_seconds: How often the backend will query the data sources - for new data points (default: 60 seconds) - :type poll_seconds: float - """ - - super().__init__(*args, **kwargs) - - self.data_sources = data_sources - self.user_id = user_id - self.poll_seconds = poll_seconds - - def run(self): - super().run() - self.logger.info( - 'Started Google Fit backend on data sources {}'.format(self.data_sources) - ) - - while not self.should_stop(): - try: - for data_source in self.data_sources: - varname = self._last_timestamp_varname + data_source - last_timestamp = float( - get_plugin('variable').get(varname).output.get(varname) or 0 - ) - - new_last_timestamp = last_timestamp - self.logger.info( - 'Processing new entries from data source {}, last timestamp: {}'.format( - data_source, - str(datetime.datetime.fromtimestamp(last_timestamp)), - ) - ) - - data_points = ( - get_plugin('google.fit') - .get_data(user_id=self.user_id, data_source_id=data_source) - .output - ) - new_data_points = 0 - - for dp in data_points: - dp_time = dp.pop('startTime', 0) - if 'dataSourceId' in dp: - del dp['dataSourceId'] - - if dp_time > last_timestamp: - self.bus.post( - GoogleFitEvent( - user_id=self.user_id, - data_source_id=data_source, - data_type=dp.pop('dataTypeName'), - start_time=dp_time, - end_time=dp.pop('endTime'), - modified_time=dp.pop('modifiedTime'), - values=dp.pop('values'), - **{ - camel_case_to_snake_case(k): v - for k, v in dp.items() - } - ) - ) - - new_data_points += 1 - - new_last_timestamp = max(dp_time, new_last_timestamp) - - last_timestamp = new_last_timestamp - self.logger.info( - 'Got {} new entries from data source {}, last timestamp: {}'.format( - new_data_points, - data_source, - str(datetime.datetime.fromtimestamp(last_timestamp)), - ) - ) - - get_plugin('variable').set(**{varname: last_timestamp}) - except Exception as e: - self.logger.warning('Exception while processing Fit data') - self.logger.exception(e) - continue - - time.sleep(self.poll_seconds) - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/google/fit/manifest.yaml b/platypush/backend/google/fit/manifest.yaml deleted file mode 100644 index 7a5b3ef0..00000000 --- a/platypush/backend/google/fit/manifest.yaml +++ /dev/null @@ -1,8 +0,0 @@ -manifest: - events: - platypush.message.event.google.fit.GoogleFitEvent: when a newdata point is received - on one of the registered streams. - install: - pip: [] - package: platypush.backend.google.fit - type: backend diff --git a/platypush/backend/google/pubsub/__init__.py b/platypush/backend/google/pubsub/__init__.py deleted file mode 100644 index 39a6d3e1..00000000 --- a/platypush/backend/google/pubsub/__init__.py +++ /dev/null @@ -1,88 +0,0 @@ -import json - -from typing import Optional, List - -from platypush.backend import Backend -from platypush.context import get_plugin -from platypush.message.event.google.pubsub import GooglePubsubMessageEvent - - -class GooglePubsubBackend(Backend): - """ - Subscribe to a list of topics on a Google Pub/Sub instance. See - :class:`platypush.plugins.google.pubsub.GooglePubsubPlugin` for a reference on how to generate your - project and credentials file. - """ - - def __init__( - self, topics: List[str], credentials_file: Optional[str] = None, *args, **kwargs - ): - """ - :param topics: List of topics to subscribe. You can either specify the full topic name in the format - ``projects//topics/``, where ```` must be the ID of your - Google Pub/Sub project, or just ```` - in such case it's implied that you refer to the - ``topic_name`` under the ``project_id`` of your service credentials. - :param credentials_file: Path to the Pub/Sub service credentials file (default: value configured on the - ``google.pubsub`` plugin or ``~/.credentials/platypush/google/pubsub.json``). - """ - - super().__init__(*args, name='GooglePubSub', **kwargs) - self.topics = topics - - if credentials_file: - self.credentials_file = credentials_file - else: - plugin = self._get_plugin() - self.credentials_file = plugin.credentials_file - - @staticmethod - def _get_plugin(): - plugin = get_plugin('google.pubsub') - assert plugin, 'google.pubsub plugin not enabled' - return plugin - - def _message_callback(self, topic): - def callback(msg): - data = msg.data.decode() - try: - data = json.loads(data) - except Exception as e: - self.logger.debug('Not a valid JSON: %s: %s', data, e) - - msg.ack() - self.bus.post(GooglePubsubMessageEvent(topic=topic, msg=data)) - - return callback - - def run(self): - # noinspection PyPackageRequirements - from google.cloud import pubsub_v1 - - # noinspection PyPackageRequirements - from google.api_core.exceptions import AlreadyExists - - super().run() - plugin = self._get_plugin() - project_id = plugin.get_project_id() - credentials = plugin.get_credentials(plugin.subscriber_audience) - subscriber = pubsub_v1.SubscriberClient(credentials=credentials) - - for topic in self.topics: - prefix = f'projects/{project_id}/topics/' - if not topic.startswith(prefix): - topic = f'{prefix}{topic}' - subscription_name = '/'.join( - [*topic.split('/')[:2], 'subscriptions', topic.split('/')[-1]] - ) - - try: - subscriber.create_subscription(name=subscription_name, topic=topic) - except AlreadyExists: - pass - - subscriber.subscribe(subscription_name, self._message_callback(topic)) - - self.wait_stop() - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/google/pubsub/manifest.yaml b/platypush/backend/google/pubsub/manifest.yaml deleted file mode 100644 index c7fd5c41..00000000 --- a/platypush/backend/google/pubsub/manifest.yaml +++ /dev/null @@ -1,9 +0,0 @@ -manifest: - events: - platypush.message.event.google.pubsub.GooglePubsubMessageEvent: when a new message - is received ona subscribed topic. - install: - pip: - - google-cloud-pubsub - package: platypush.backend.google.pubsub - type: backend diff --git a/platypush/backend/gps/__init__.py b/platypush/backend/gps/__init__.py deleted file mode 100644 index 2c6b9a79..00000000 --- a/platypush/backend/gps/__init__.py +++ /dev/null @@ -1,145 +0,0 @@ -import threading -import time - -from platypush.backend import Backend -from platypush.message.event.gps import GPSVersionEvent, GPSDeviceEvent, GPSUpdateEvent - - -class GpsBackend(Backend): - """ - This backend can interact with a GPS device and listen for events. - - Once installed gpsd you need to run it and associate it to your device. Example if your GPS device communicates - over USB and is available on /dev/ttyUSB0:: - - [sudo] gpsd /dev/ttyUSB0 -F /var/run/gpsd.sock - - The best option is probably to run gpsd at startup as a systemd service. - """ - - _fail_sleep_time = 5.0 - _lat_lng_tolerance = 1e-5 - _alt_tolerance = 0.5 - - def __init__(self, gpsd_server='localhost', gpsd_port=2947, **kwargs): - """ - :param gpsd_server: gpsd daemon server name/address (default: localhost) - :type gpsd_server: str - :param gpsd_port: Port of the gpsd daemon (default: 2947) - :type gpsd_port: int or str - """ - super().__init__(**kwargs) - - self.gpsd_server = gpsd_server - self.gpsd_port = gpsd_port - self._session = None - self._session_lock = threading.RLock() - self._devices = {} - - def _get_session(self): - import gps - - with self._session_lock: - if not self._session: - self._session = gps.gps( - host=self.gpsd_server, port=self.gpsd_port, reconnect=True - ) - self._session.stream(gps.WATCH_ENABLE | gps.WATCH_NEWSTYLE) - - return self._session - - def _gps_report_to_event(self, report): - if report.get('class').lower() == 'version': - return GPSVersionEvent( - release=report.get('release'), - rev=report.get('rev'), - proto_major=report.get('proto_major'), - proto_minor=report.get('proto_minor'), - ) - if report.get('class').lower() == 'devices': - for device in report.get('devices', []): - if device.get( - 'path' - ) not in self._devices or device != self._devices.get('path'): - # noinspection DuplicatedCode - self._devices[device.get('path')] = device - return GPSDeviceEvent( - path=device.get('path'), - activated=device.get('activated'), - native=device.get('native'), - bps=device.get('bps'), - parity=device.get('parity'), - stopbits=device.get('stopbits'), - cycle=device.get('cycle'), - driver=device.get('driver'), - ) - if report.get('class').lower() == 'device': - # noinspection DuplicatedCode - self._devices[report.get('path')] = report - return GPSDeviceEvent( - path=report.get('path'), - activated=report.get('activated'), - native=report.get('native'), - bps=report.get('bps'), - parity=report.get('parity'), - stopbits=report.get('stopbits'), - cycle=report.get('cycle'), - driver=report.get('driver'), - ) - if report.get('class').lower() == 'tpv': - return GPSUpdateEvent( - device=report.get('device'), - latitude=report.get('lat'), - longitude=report.get('lon'), - altitude=report.get('alt'), - mode=report.get('mode'), - epv=report.get('epv'), - eph=report.get('eph'), - sep=report.get('sep'), - ) - - def run(self): - super().run() - self.logger.info( - 'Initialized GPS backend on {}:{}'.format(self.gpsd_server, self.gpsd_port) - ) - last_event = None - - while not self.should_stop(): - try: - session = self._get_session() - report = session.next() - event = self._gps_report_to_event(report) - if event and ( - last_event is None - or abs( - (last_event.args.get('latitude') or 0) - - (event.args.get('latitude') or 0) - ) - >= self._lat_lng_tolerance - or abs( - (last_event.args.get('longitude') or 0) - - (event.args.get('longitude') or 0) - ) - >= self._lat_lng_tolerance - or abs( - (last_event.args.get('altitude') or 0) - - (event.args.get('altitude') or 0) - ) - >= self._alt_tolerance - ): - self.bus.post(event) - last_event = event - except Exception as e: - if isinstance(e, StopIteration): - self.logger.warning( - 'GPS service connection lost, check that gpsd is running' - ) - else: - self.logger.exception(e) - - self._session = None - time.sleep(self._fail_sleep_time) - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/gps/manifest.yaml b/platypush/backend/gps/manifest.yaml deleted file mode 100644 index cb1879f5..00000000 --- a/platypush/backend/gps/manifest.yaml +++ /dev/null @@ -1,20 +0,0 @@ -manifest: - events: - platypush.message.event.gps.GPSDeviceEvent: when a GPS device is connected or - updated - platypush.message.event.gps.GPSUpdateEvent: when a GPS device has new data - platypush.message.event.gps.GPSVersionEvent: when a GPS device advertises its - version data - install: - apk: - - gpsd - apt: - - gpsd - dnf: - - gpsd - pacman: - - gpsd - pip: - - gps - package: platypush.backend.gps - type: backend diff --git a/platypush/backend/http/app/mixins/__init__.py b/platypush/backend/http/app/mixins/__init__.py index eec40e6b..2c97cb45 100644 --- a/platypush/backend/http/app/mixins/__init__.py +++ b/platypush/backend/http/app/mixins/__init__.py @@ -65,8 +65,7 @@ class PubSubMixin: with self._pubsub_lock: # Close and free the pub/sub object if it has no active subscriptions. if self._pubsub is not None and len(self._subscriptions) == 0: - self._pubsub.close() - self._pubsub = None + self._pubsub_close() @staticmethod def _serialize(data: MessageType) -> bytes: @@ -126,7 +125,7 @@ class PubSubMixin: continue yield Message(data=msg.get('data', b''), channel=channel) - except (AttributeError, RedisConnectionError): + except (AttributeError, ValueError, RedisConnectionError): return def _pubsub_close(self): diff --git a/platypush/backend/http/media/handlers/__init__.py b/platypush/backend/http/media/handlers/__init__.py index 99948c5c..921faeae 100644 --- a/platypush/backend/http/media/handlers/__init__.py +++ b/platypush/backend/http/media/handlers/__init__.py @@ -1,6 +1,7 @@ from abc import ABC, abstractmethod import hashlib import logging +import os from typing import Generator, Optional from platypush.message import JSONAble @@ -56,6 +57,9 @@ 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/request/__init__.py b/platypush/backend/http/request/__init__.py deleted file mode 100644 index bfce6523..00000000 --- a/platypush/backend/http/request/__init__.py +++ /dev/null @@ -1,152 +0,0 @@ -import logging -import re -from threading import Thread -import time - -import requests -from frozendict import frozendict - -from platypush.message.event.http import HttpEvent - - -class HttpRequest: - """ - Backend used for polling HTTP resources. - """ - - poll_seconds = 60 - timeout = 5 - - class HttpRequestArguments: - """ - Models the properties of an HTTP request. - """ - - def __init__(self, url, *args, method='get', **kwargs): - self.method = method.lower() - self.url = url - self.args = args - self.kwargs = kwargs - - def __init__( - self, args, bus=None, poll_seconds=None, timeout=None, skip_first_call=True, **_ - ): - super().__init__() - - self.poll_seconds = poll_seconds or self.poll_seconds - self.timeout = timeout or self.timeout - self.bus = bus - self.skip_first_call = skip_first_call - self.last_request_timestamp = 0 - self.logger = logging.getLogger('platypush') - - if isinstance(args, self.HttpRequestArguments): - self.args = args - elif isinstance(args, dict): - self.args = self.HttpRequestArguments(**args) - else: - raise RuntimeError('{} is neither a dictionary nor an HttpRequest') - - if 'timeout' not in self.args.kwargs: - self.args.kwargs['timeout'] = self.timeout - - self.request_args = { - 'method': self.args.method, - 'url': self.args.url, - **self.args.kwargs, - } - - def execute(self): - def _thread_func(): - is_first_call = self.last_request_timestamp == 0 - self.last_request_timestamp = time.time() - - try: - method = getattr(requests, self.args.method.lower()) - response = method(self.args.url, *self.args.args, **self.args.kwargs) - new_items = self.get_new_items(response) - - if isinstance(new_items, HttpEvent): - event = new_items - new_items = event.args['response'] - else: - event = HttpEvent(dict(self), new_items) - - if ( - new_items - and self.bus - and ( - not self.skip_first_call - or (self.skip_first_call and not is_first_call) - ) - ): - self.bus.post(event) - - response.raise_for_status() - except Exception as e: - self.logger.exception(e) - self.logger.warning( - 'Encountered an error while retrieving %s: %s', self.args.url, e - ) - - Thread(target=_thread_func, name='HttpPoll').start() - - def get_new_items(self, response): - """Gets new items out of a response""" - raise NotImplementedError( - "get_new_items must be implemented in a derived class" - ) - - def __iter__(self): - """ - :return: The ``request_args`` as key-value pairs. - """ - for key, value in self.request_args.items(): - yield key, value - - -class JsonHttpRequest(HttpRequest): - """ - Specialization of the HttpRequest class for JSON requests. - """ - - def __init__(self, *args, path=None, **kwargs): - super().__init__(*args, **kwargs) - self.path = path - self.seen_entries = set() - - def get_new_items(self, response): - response = response.json() - new_entries = [] - - if self.path: - m = re.match(r'\${\s*(.*)\s*}', self.path) - if m: - response = eval(m.group(1)) # pylint: disable=eval-used - - for entry in response: - flattened_entry = deep_freeze(entry) - if flattened_entry not in self.seen_entries: - new_entries.append(entry) - self.seen_entries.add(flattened_entry) - - return new_entries - - -def deep_freeze(x): - """ - Deep freezes a Python object - works for strings, dictionaries, sets and - iterables. - """ - - if isinstance(x, str) or not hasattr(x, "__len__"): - return x - if hasattr(x, "keys") and hasattr(x, "values"): - return frozendict({deep_freeze(k): deep_freeze(v) for k, v in x.items()}) - if hasattr(x, "__getitem__"): - return tuple(map(deep_freeze, x)) - - return frozenset(map(deep_freeze, x)) - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/http/request/rss/__init__.py b/platypush/backend/http/request/rss/__init__.py deleted file mode 100644 index dc6b2c42..00000000 --- a/platypush/backend/http/request/rss/__init__.py +++ /dev/null @@ -1,377 +0,0 @@ -import datetime -import enum -import os - -from sqlalchemy import ( - create_engine, - Column, - Integer, - String, - DateTime, - Enum, - ForeignKey, -) - -from sqlalchemy.orm import sessionmaker, scoped_session -from sqlalchemy.sql.expression import func - -from platypush.backend.http.request import HttpRequest -from platypush.common.db import declarative_base -from platypush.config import Config -from platypush.context import get_plugin -from platypush.message.event.http.rss import NewFeedEvent - -Base = declarative_base() -Session = scoped_session(sessionmaker()) - - -class RssUpdates(HttpRequest): - """ - Gets new items in an RSS feed. You can use this type of object within the context of the - :class:`platypush.backend.http.poll.HttpPollBackend` backend. Example: - - .. code-block:: yaml - - backend.http.poll: - requests: - - type: platypush.backend.http.request.rss.RssUpdates - url: https://www.technologyreview.com/feed/ - title: MIT Technology Review - poll_seconds: 86400 # Poll once a day - digest_format: html # Generate an HTML feed with the new items - - """ - - user_agent = ( - 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) ' - + 'Chrome/62.0.3202.94 Safari/537.36' - ) - - def __init__( - self, - url, - title=None, - headers=None, - params=None, - max_entries=None, - extract_content=False, - digest_format=None, - user_agent: str = user_agent, - body_style: str = 'font-size: 22px; ' - + 'font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;', - title_style: str = 'margin-top: 30px', - subtitle_style: str = 'margin-top: 10px; page-break-after: always', - article_title_style: str = 'page-break-before: always', - article_link_style: str = 'color: #555; text-decoration: none; border-bottom: 1px dotted', - article_content_style: str = '', - *argv, - **kwargs, - ): - """ - :param url: URL to the RSS feed to be monitored. - :param title: Optional title for the feed. - :param headers: Extra headers to be passed to the request. - :param params: Extra GET parameters to be appended to the URL. - :param max_entries: Maximum number of entries that will be returned in a single - :class:`platypush.message.event.http.rss.NewFeedEvent` event. - :param extract_content: Whether the context should also be extracted (through the - :class:`platypush.plugins.http.webpage.HttpWebpagePlugin` plugin) (default: ``False``). - :param digest_format: Format of the digest output file (default: None, text. Other supported types: ``html`` - and ``pdf`` (requires the ``weasyprint`` module installed). - :param user_agent: User agent string to be passed on the request. - :param body_style: CSS style for the body. - :param title_style: CSS style for the feed title. - :param subtitle_style: CSS style for the feed subtitle. - :param article_title_style: CSS style for the article titles. - :param article_link_style: CSS style for the article link. - :param article_content_style: CSS style for the article content. - """ - self.workdir = os.path.join(os.path.expanduser(Config.get('workdir')), 'feeds') - self.dbfile = os.path.join(self.workdir, 'rss.db') - self.url = url - self.title = title - self.max_entries = max_entries - self.user_agent = user_agent - self.body_style = body_style - self.title_style = title_style - self.subtitle_style = subtitle_style - self.article_title_style = article_title_style - self.article_link_style = article_link_style - self.article_content_style = article_content_style - - # If true, then the http.webpage plugin will be used to parse the content - self.extract_content = extract_content - - self.digest_format = ( - digest_format.lower() if digest_format else None - ) # Supported formats: html, pdf - - os.makedirs(os.path.expanduser(os.path.dirname(self.dbfile)), exist_ok=True) - - if headers is None: - headers = {} - headers['User-Agent'] = self.user_agent - - request_args = { - 'method': 'get', - 'url': self.url, - 'headers': headers, - 'params': params or {}, - } - - super().__init__(skip_first_call=False, args=request_args, *argv, **kwargs) - - def _get_or_create_source(self, session): - record = session.query(FeedSource).filter_by(url=self.url).first() - if record is None: - record = FeedSource(url=self.url, title=self.title) - session.add(record) - - session.commit() - return record - - @staticmethod - def _get_latest_update(session, source_id): - return ( - session.query(func.max(FeedEntry.published)) - .filter_by(source_id=source_id) - .scalar() - ) - - def _parse_entry_content(self, link): - self.logger.info('Extracting content from {}'.format(link)) - - parser = get_plugin('http.webpage') - response = parser.simplify(link) - output = response.output - errors = response.errors - - if not output: - self.logger.warning( - 'Mercury parser error: {}'.format(errors or '[unknown error]') - ) - return - - return output.get('content') - - def get_new_items(self, response): - import feedparser - - engine = create_engine( - 'sqlite:///{}'.format(self.dbfile), - connect_args={'check_same_thread': False}, - ) - - Base.metadata.create_all(engine) - Session.configure(bind=engine) - self._get_or_create_source(session=Session()) - - feed = feedparser.parse(response.text) - session = Session() - source_record = self._get_or_create_source(session=session) - session.add(source_record) - parse_start_time = datetime.datetime.utcnow() - entries = [] - latest_update = self._get_latest_update(session, source_record.id) - - if not self.title and 'title' in feed.feed: - self.title = feed.feed['title'] - source_record.title = self.title - - content = u''' -

{title}

-

Feeds digest generated on {creation_date}

'''.format( - title_style=self.title_style, - title=self.title, - subtitle_style=self.subtitle_style, - creation_date=datetime.datetime.now().strftime('%d %B %Y, %H:%M'), - ) - - self.logger.info( - 'Parsed {:d} items from RSS feed <{}>'.format(len(feed.entries), self.url) - ) - - for entry in feed.entries: - if not entry.published_parsed: - continue - - try: - entry_timestamp = datetime.datetime(*entry.published_parsed[:6]) - - if latest_update is None or entry_timestamp > latest_update: - self.logger.info( - 'Processed new item from RSS feed <{}>'.format(self.url) - ) - entry.summary = entry.summary if hasattr(entry, 'summary') else None - - if self.extract_content: - entry.content = self._parse_entry_content(entry.link) - elif hasattr(entry, 'summary'): - entry.content = entry.summary - else: - entry.content = None - - content += u''' -

- {title} -

-
{content}
'''.format( - article_title_style=self.article_title_style, - article_link_style=self.article_link_style, - article_content_style=self.article_content_style, - link=entry.link, - title=entry.title, - content=entry.content, - ) - - e = { - 'entry_id': entry.id, - 'title': entry.title, - 'link': entry.link, - 'summary': entry.summary, - 'content': entry.content, - 'source_id': source_record.id, - 'published': entry_timestamp, - } - - entries.append(e) - session.add(FeedEntry(**e)) - if self.max_entries and len(entries) > self.max_entries: - break - except Exception as e: - self.logger.warning( - 'Exception encountered while parsing RSS ' - + f'RSS feed {entry.link}: {e}' - ) - self.logger.exception(e) - - source_record.last_updated_at = parse_start_time - digest_filename = None - - if entries: - self.logger.info( - 'Parsed {} new entries from the RSS feed {}'.format( - len(entries), self.title - ) - ) - - if self.digest_format: - digest_filename = os.path.join( - self.workdir, - 'cache', - '{}_{}.{}'.format( - datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%S'), - self.title, - self.digest_format, - ), - ) - - os.makedirs(os.path.dirname(digest_filename), exist_ok=True) - - if self.digest_format == 'html': - content = ''' - - - {title} - - {content} - - '''.format( - title=self.title, body_style=self.body_style, content=content - ) - - with open(digest_filename, 'w', encoding='utf-8') as f: - f.write(content) - elif self.digest_format == 'pdf': - from weasyprint import HTML, CSS - - try: - from weasyprint.fonts import FontConfiguration - except ImportError: - from weasyprint.document import FontConfiguration - - body_style = 'body { ' + self.body_style + ' }' - font_config = FontConfiguration() - css = [ - CSS('https://fonts.googleapis.com/css?family=Merriweather'), - CSS(string=body_style, font_config=font_config), - ] - - HTML(string=content).write_pdf(digest_filename, stylesheets=css) - else: - raise RuntimeError( - f'Unsupported format: {self.digest_format}. Supported formats: html, pdf' - ) - - digest_entry = FeedDigest( - source_id=source_record.id, - format=self.digest_format, - filename=digest_filename, - ) - - session.add(digest_entry) - self.logger.info( - '{} digest ready: {}'.format(self.digest_format, digest_filename) - ) - - session.commit() - self.logger.info('Parsing RSS feed {}: completed'.format(self.title)) - - return NewFeedEvent( - request=dict(self), - response=entries, - source_id=source_record.id, - source_title=source_record.title, - title=self.title, - digest_format=self.digest_format, - digest_filename=digest_filename, - ) - - -class FeedSource(Base): - """Models the FeedSource table, containing RSS sources to be parsed""" - - __tablename__ = 'FeedSource' - __table_args__ = {'sqlite_autoincrement': True} - - id = Column(Integer, primary_key=True) - title = Column(String) - url = Column(String, unique=True) - last_updated_at = Column(DateTime) - - -class FeedEntry(Base): - """Models the FeedEntry table, which contains RSS entries""" - - __tablename__ = 'FeedEntry' - __table_args__ = {'sqlite_autoincrement': True} - - id = Column(Integer, primary_key=True) - entry_id = Column(String) - source_id = Column(Integer, ForeignKey('FeedSource.id'), nullable=False) - title = Column(String) - link = Column(String) - summary = Column(String) - content = Column(String) - published = Column(DateTime) - - -class FeedDigest(Base): - """Models the FeedDigest table, containing feed digests either in HTML - or PDF format""" - - class DigestFormat(enum.Enum): - html = 1 - pdf = 2 - - __tablename__ = 'FeedDigest' - __table_args__ = {'sqlite_autoincrement': True} - - id = Column(Integer, primary_key=True) - source_id = Column(Integer, ForeignKey('FeedSource.id'), nullable=False) - format = Column(Enum(DigestFormat), nullable=False) - filename = Column(String, nullable=False) - created_at = Column(DateTime, nullable=False, default=datetime.datetime.utcnow) - - -# vim:sw=4:ts=4:et: diff --git a/platypush/backend/http/webapp/dist/img/icons/logo-256x256.png b/platypush/backend/http/webapp/dist/img/icons/logo-256x256.png new file mode 100644 index 00000000..4a9ee5eb Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/logo-256x256.png differ diff --git a/platypush/backend/http/webapp/dist/index.html b/platypush/backend/http/webapp/dist/index.html index d004235d..6aeb185f 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 ee086392..a7d14987 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 u=i=>l(i,e),c={module:{uri:e},exports:t,require:u};s[e]=Promise.all(n.map((i=>c[i]||u(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:"714e7c6ffc6d29e8696bc6c25b52c993"},{url:"/manifest.json",revision:"8a45dcffc3380b17da6ea17291b43e00"},{url:"/static/css/1259.28135e7d.css",revision:null},{url:"/static/css/1391.cb558276.css",revision:null},{url:"/static/css/1449.64ebf9cc.css",revision:null},{url:"/static/css/169.18c97596.css",revision:null},{url:"/static/css/2217.664973a5.css",revision:null},{url:"/static/css/2460.c44d2954.css",revision:null},{url:"/static/css/2471.750151be.css",revision:null},{url:"/static/css/2893.7780abf3.css",revision:null},{url:"/static/css/2976.5cb4fa57.css",revision:null},{url:"/static/css/2986.3d6a6efd.css",revision:null},{url:"/static/css/306.919e2cb6.css",revision:null},{url:"/static/css/311.ce3daf0e.css",revision:null},{url:"/static/css/3368.771f452b.css",revision:null},{url:"/static/css/3369.56bab933.css",revision:null},{url:"/static/css/3559.5e597f7f.css",revision:null},{url:"/static/css/3594.eefea329.css",revision:null},{url:"/static/css/3694.ae679692.css",revision:null},{url:"/static/css/3798.6a1b7cf0.css",revision:null},{url:"/static/css/3826.fbeeb43c.css",revision:null},{url:"/static/css/3835.fbe4d9b1.css",revision:null},{url:"/static/css/446.ac7021e0.css",revision:null},{url:"/static/css/4558.a091c93e.css",revision:null},{url:"/static/css/4589.e78ef44e.css",revision:null},{url:"/static/css/5040.a5bd22c4.css",revision:null},{url:"/static/css/5207.d95cde39.css",revision:null},{url:"/static/css/5329.32a328a7.css",revision:null},{url:"/static/css/5638.089f217d.css",revision:null},{url:"/static/css/5747.1d5887e4.css",revision:null},{url:"/static/css/5794.82cc8a21.css",revision:null},{url:"/static/css/5795.fe136332.css",revision:null},{url:"/static/css/6079.bfe15119.css",revision:null},{url:"/static/css/6215.a48cbf18.css",revision:null},{url:"/static/css/6324.157a52a9.css",revision:null},{url:"/static/css/65.65fe087a.css",revision:null},{url:"/static/css/6523.d4d5365a.css",revision:null},{url:"/static/css/6561.f0cece07.css",revision:null},{url:"/static/css/7184.e666172f.css",revision:null},{url:"/static/css/729.d9e08bd0.css",revision:null},{url:"/static/css/746.36a26270.css",revision:null},{url:"/static/css/7523.a18b735e.css",revision:null},{url:"/static/css/7590.727bfece.css",revision:null},{url:"/static/css/7673.ce56995a.css",revision:null},{url:"/static/css/7880.5e6febf3.css",revision:null},{url:"/static/css/7968.1d0824b1.css",revision:null},{url:"/static/css/8039.eeeae3a7.css",revision:null},{url:"/static/css/8069.5ef4c270.css",revision:null},{url:"/static/css/8179.2fdb982c.css",revision:null},{url:"/static/css/8391.3ecab78d.css",revision:null},{url:"/static/css/8621.a58665a4.css",revision:null},{url:"/static/css/8769.294a7607.css",revision:null},{url:"/static/css/8825.d5cc7895.css",revision:null},{url:"/static/css/984.7571e216.css",revision:null},{url:"/static/css/9962.68c87814.css",revision:null},{url:"/static/css/app.eab47dab.css",revision:null},{url:"/static/css/chunk-vendors.a2412607.css",revision:null},{url:"/static/fonts/fa-brands-400.9a905705.ttf",revision:null},{url:"/static/fonts/fa-brands-400.b6033b54.woff2",revision:null},{url:"/static/fonts/fa-regular-400.3580b4a9.woff2",revision:null},{url:"/static/fonts/fa-regular-400.67a0fb74.ttf",revision:null},{url:"/static/fonts/fa-solid-900.6a8db53d.ttf",revision:null},{url:"/static/fonts/fa-solid-900.fd0b155c.woff2",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.22c3f8aa.js",revision:null},{url:"/static/js/1259.7aa14adc.js",revision:null},{url:"/static/js/1309.f9dfe73a.js",revision:null},{url:"/static/js/1449.7c3828fc.js",revision:null},{url:"/static/js/169.ebdd7044.js",revision:null},{url:"/static/js/2068.103aab15.js",revision:null},{url:"/static/js/2183.1facc63d.js",revision:null},{url:"/static/js/2217.6b927594.js",revision:null},{url:"/static/js/2460.567e73f6.js",revision:null},{url:"/static/js/2614.4f1d5e15.js",revision:null},{url:"/static/js/2732.34e0816d.js",revision:null},{url:"/static/js/2853.bfd76f14.js",revision:null},{url:"/static/js/2893.519a1554.js",revision:null},{url:"/static/js/2976.b309ffae.js",revision:null},{url:"/static/js/2986.8ba9994e.js",revision:null},{url:"/static/js/306.f28688c3.js",revision:null},{url:"/static/js/311.94122a15.js",revision:null},{url:"/static/js/3368.cb04738a.js",revision:null},{url:"/static/js/3369.c099f8d0.js",revision:null},{url:"/static/js/3518.f161e82e.js",revision:null},{url:"/static/js/3559.df95d103.js",revision:null},{url:"/static/js/3594.2468b76d.js",revision:null},{url:"/static/js/3694.5eb42cb3.js",revision:null},{url:"/static/js/3732.96cd512f.js",revision:null},{url:"/static/js/3798.fcfdd0e0.js",revision:null},{url:"/static/js/3835.11129165.js",revision:null},{url:"/static/js/446.0c670830.js",revision:null},{url:"/static/js/4558.0ebde536.js",revision:null},{url:"/static/js/4589.2afa8954.js",revision:null},{url:"/static/js/4619.e56bced8.js",revision:null},{url:"/static/js/4765.a03fe7c5.js",revision:null},{url:"/static/js/5207.7f241e21.js",revision:null},{url:"/static/js/5324.514817dc.js",revision:null},{url:"/static/js/5329.444a9cf1.js",revision:null},{url:"/static/js/5638.0225db95.js",revision:null},{url:"/static/js/5747.6098fca6.js",revision:null},{url:"/static/js/5794.af63f759.js",revision:null},{url:"/static/js/5795.9204ced6.js",revision:null},{url:"/static/js/6148.0028428e.js",revision:null},{url:"/static/js/6215.be2c734a.js",revision:null},{url:"/static/js/6324.c3f621ef.js",revision:null},{url:"/static/js/6362.95da0eb4.js",revision:null},{url:"/static/js/65.ae7df477.js",revision:null},{url:"/static/js/6523.9cf8a633.js",revision:null},{url:"/static/js/7184.62aed6c5.js",revision:null},{url:"/static/js/729.1b92c9f7.js",revision:null},{url:"/static/js/7381.b3672119.js",revision:null},{url:"/static/js/746.299cb064.js",revision:null},{url:"/static/js/7523.367c2045.js",revision:null},{url:"/static/js/7590.6cda174b.js",revision:null},{url:"/static/js/7673.d3cb8d61.js",revision:null},{url:"/static/js/7819.4dbc6b0c.js",revision:null},{url:"/static/js/7880.165a70d5.js",revision:null},{url:"/static/js/7968.7e7d6407.js",revision:null},{url:"/static/js/813.db2cf805.js",revision:null},{url:"/static/js/8179.cb99e492.js",revision:null},{url:"/static/js/8391.119357c7.js",revision:null},{url:"/static/js/8621.0aa03df1.js",revision:null},{url:"/static/js/8769.5ea5c0cb.js",revision:null},{url:"/static/js/8784.9c2c1b4c.js",revision:null},{url:"/static/js/8825.b660e217.js",revision:null},{url:"/static/js/8895.3ea4b13d.js",revision:null},{url:"/static/js/9334.3d08d839.js",revision:null},{url:"/static/js/984.ae424e7e.js",revision:null},{url:"/static/js/9962.f13974a2.js",revision:null},{url:"/static/js/app.d5057cb9.js",revision:null},{url:"/static/js/chunk-vendors.ff3a041a.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 u=i=>l(i,e),c={module:{uri:e},exports:t,require:u};s[e]=Promise.all(n.map((i=>c[i]||u(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:"0ee7ecd61e42300199dcaccb8a6c633f"},{url:"/manifest.json",revision:"8a45dcffc3380b17da6ea17291b43e00"},{url:"/static/css/1256.7488b6ae.css",revision:null},{url:"/static/css/1259.ad51b86e.css",revision:null},{url:"/static/css/1391.8fb65128.css",revision:null},{url:"/static/css/1420.c29cafe6.css",revision:null},{url:"/static/css/1449.bf964828.css",revision:null},{url:"/static/css/169.9ec6abc1.css",revision:null},{url:"/static/css/1706.c1e22194.css",revision:null},{url:"/static/css/1807.333a022f.css",revision:null},{url:"/static/css/1949.d8d63590.css",revision:null},{url:"/static/css/2140.08e216c1.css",revision:null},{url:"/static/css/2154.20cf0934.css",revision:null},{url:"/static/css/2217.da1b8fd6.css",revision:null},{url:"/static/css/2460.83acd505.css",revision:null},{url:"/static/css/2461.1fc0b5b4.css",revision:null},{url:"/static/css/2844.23273db2.css",revision:null},{url:"/static/css/2892.3a7569e7.css",revision:null},{url:"/static/css/2893.21a9931c.css",revision:null},{url:"/static/css/2976.bafd7cea.css",revision:null},{url:"/static/css/2992.f8bddaf0.css",revision:null},{url:"/static/css/311.ce50f619.css",revision:null},{url:"/static/css/3368.467cedc6.css",revision:null},{url:"/static/css/3369.69c504e7.css",revision:null},{url:"/static/css/3390.481c441e.css",revision:null},{url:"/static/css/3559.5665c422.css",revision:null},{url:"/static/css/3661.c12867e9.css",revision:null},{url:"/static/css/3671.e6547429.css",revision:null},{url:"/static/css/3826.53d49948.css",revision:null},{url:"/static/css/3835.91d8befb.css",revision:null},{url:"/static/css/4221.76c11dc1.css",revision:null},{url:"/static/css/446.e0a96773.css",revision:null},{url:"/static/css/4589.d7fd389b.css",revision:null},{url:"/static/css/472.20f2f41f.css",revision:null},{url:"/static/css/4790.3ef3568e.css",revision:null},{url:"/static/css/5059.e5cd6fe3.css",revision:null},{url:"/static/css/5143.084a713f.css",revision:null},{url:"/static/css/5193.b8dcc633.css",revision:null},{url:"/static/css/5207.e1e8949a.css",revision:null},{url:"/static/css/5285.2250c5c9.css",revision:null},{url:"/static/css/5329.2f2c6a0e.css",revision:null},{url:"/static/css/5638.05ee3a45.css",revision:null},{url:"/static/css/5794.a98cd7fb.css",revision:null},{url:"/static/css/5795.3b193db6.css",revision:null},{url:"/static/css/5833.e1e503a2.css",revision:null},{url:"/static/css/5906.52ba6beb.css",revision:null},{url:"/static/css/5931.e6c8f94d.css",revision:null},{url:"/static/css/6062.b6571ed4.css",revision:null},{url:"/static/css/6079.f88a21ae.css",revision:null},{url:"/static/css/6324.bb3e2171.css",revision:null},{url:"/static/css/65.cb15a9a6.css",revision:null},{url:"/static/css/6523.d6576265.css",revision:null},{url:"/static/css/6561.77bbcd33.css",revision:null},{url:"/static/css/6579.04ad63dc.css",revision:null},{url:"/static/css/669.73188f7e.css",revision:null},{url:"/static/css/729.16b20067.css",revision:null},{url:"/static/css/746.18c59228.css",revision:null},{url:"/static/css/7590.b45a8e92.css",revision:null},{url:"/static/css/7651.9b63654f.css",revision:null},{url:"/static/css/7878.e3469993.css",revision:null},{url:"/static/css/7880.4f4a202a.css",revision:null},{url:"/static/css/7968.29db26b1.css",revision:null},{url:"/static/css/8039.e77a760e.css",revision:null},{url:"/static/css/8069.111183af.css",revision:null},{url:"/static/css/8179.b5fb83f9.css",revision:null},{url:"/static/css/8391.b5dd11a9.css",revision:null},{url:"/static/css/8498.3676728c.css",revision:null},{url:"/static/css/8621.5db86eb0.css",revision:null},{url:"/static/css/8769.fda642fb.css",revision:null},{url:"/static/css/8825.f608e2c2.css",revision:null},{url:"/static/css/8989.63c7ae13.css",revision:null},{url:"/static/css/9381.ade341db.css",revision:null},{url:"/static/css/9461.79136fbe.css",revision:null},{url:"/static/css/9751.0631f530.css",revision:null},{url:"/static/css/980.b4628099.css",revision:null},{url:"/static/css/984.0c88349b.css",revision:null},{url:"/static/css/9962.eb89f1f6.css",revision:null},{url:"/static/css/app.f9c900a8.css",revision:null},{url:"/static/css/chunk-vendors.a2412607.css",revision:null},{url:"/static/fonts/fa-brands-400.9a905705.ttf",revision:null},{url:"/static/fonts/fa-brands-400.b6033b54.woff2",revision:null},{url:"/static/fonts/fa-regular-400.3580b4a9.woff2",revision:null},{url:"/static/fonts/fa-regular-400.67a0fb74.ttf",revision:null},{url:"/static/fonts/fa-solid-900.6a8db53d.ttf",revision:null},{url:"/static/fonts/fa-solid-900.fd0b155c.woff2",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.22c3f8aa.js",revision:null},{url:"/static/js/1256.978d0d43.js",revision:null},{url:"/static/js/1259.658da6e0.js",revision:null},{url:"/static/js/1420.fea2168b.js",revision:null},{url:"/static/js/1449.ac2d926f.js",revision:null},{url:"/static/js/1512.11bbed76.js",revision:null},{url:"/static/js/169.ebdd7044.js",revision:null},{url:"/static/js/1706.5142eaa5.js",revision:null},{url:"/static/js/1807.4ba7d261.js",revision:null},{url:"/static/js/1949.f6478aac.js",revision:null},{url:"/static/js/2106.00c755d8.js",revision:null},{url:"/static/js/2140.04eb8424.js",revision:null},{url:"/static/js/2183.1facc63d.js",revision:null},{url:"/static/js/2200.20911f30.js",revision:null},{url:"/static/js/2217.6b927594.js",revision:null},{url:"/static/js/2460.567e73f6.js",revision:null},{url:"/static/js/2614.25f43040.js",revision:null},{url:"/static/js/2732.34e0816d.js",revision:null},{url:"/static/js/2853.93d42562.js",revision:null},{url:"/static/js/2892.179b93be.js",revision:null},{url:"/static/js/2893.519a1554.js",revision:null},{url:"/static/js/2976.5a71d925.js",revision:null},{url:"/static/js/311.94122a15.js",revision:null},{url:"/static/js/3322.12d6bfa0.js",revision:null},{url:"/static/js/3368.0cff7037.js",revision:null},{url:"/static/js/3369.bf44abe0.js",revision:null},{url:"/static/js/342.9c431c81.js",revision:null},{url:"/static/js/3518.ee2296eb.js",revision:null},{url:"/static/js/3559.df95d103.js",revision:null},{url:"/static/js/3732.d8cbb959.js",revision:null},{url:"/static/js/3835.f37b0b12.js",revision:null},{url:"/static/js/4053.a255e9b2.js",revision:null},{url:"/static/js/4221.eac4e0e1.js",revision:null},{url:"/static/js/446.0c670830.js",revision:null},{url:"/static/js/4589.2afa8954.js",revision:null},{url:"/static/js/4619.e56bced8.js",revision:null},{url:"/static/js/472.0cc80fbb.js",revision:null},{url:"/static/js/4765.476828dd.js",revision:null},{url:"/static/js/5143.ec411207.js",revision:null},{url:"/static/js/5193.71d42647.js",revision:null},{url:"/static/js/5207.7f241e21.js",revision:null},{url:"/static/js/5285.233a586e.js",revision:null},{url:"/static/js/5324.4a827b15.js",revision:null},{url:"/static/js/5329.d855e760.js",revision:null},{url:"/static/js/5578.216dad38.js",revision:null},{url:"/static/js/5638.0225db95.js",revision:null},{url:"/static/js/5762.7dcb5ad6.js",revision:null},{url:"/static/js/5794.af63f759.js",revision:null},{url:"/static/js/5795.e22f5747.js",revision:null},{url:"/static/js/5931.ba953f55.js",revision:null},{url:"/static/js/6062.20e624e0.js",revision:null},{url:"/static/js/6123.24ef40ca.js",revision:null},{url:"/static/js/6148.3a7ad00a.js",revision:null},{url:"/static/js/6324.254647db.js",revision:null},{url:"/static/js/6362.95da0eb4.js",revision:null},{url:"/static/js/65.ae7df477.js",revision:null},{url:"/static/js/6523.9cf8a633.js",revision:null},{url:"/static/js/6640.a6538b3b.js",revision:null},{url:"/static/js/667.be13f421.js",revision:null},{url:"/static/js/729.ba752a1b.js",revision:null},{url:"/static/js/7294.c67b2149.js",revision:null},{url:"/static/js/7381.81f872a7.js",revision:null},{url:"/static/js/746.299cb064.js",revision:null},{url:"/static/js/7590.6cda174b.js",revision:null},{url:"/static/js/7819.c8579627.js",revision:null},{url:"/static/js/7878.e8db7769.js",revision:null},{url:"/static/js/7880.d3d6a4b3.js",revision:null},{url:"/static/js/7898.1aa354cc.js",revision:null},{url:"/static/js/7968.385eb36d.js",revision:null},{url:"/static/js/813.f21622fa.js",revision:null},{url:"/static/js/8179.cb99e492.js",revision:null},{url:"/static/js/8391.2706162d.js",revision:null},{url:"/static/js/8498.b92a2952.js",revision:null},{url:"/static/js/8621.074ab290.js",revision:null},{url:"/static/js/8769.5ea5c0cb.js",revision:null},{url:"/static/js/8784.9c2c1b4c.js",revision:null},{url:"/static/js/8825.ae7e9d47.js",revision:null},{url:"/static/js/886.97ee0df2.js",revision:null},{url:"/static/js/8895.120febb4.js",revision:null},{url:"/static/js/8930.81ced495.js",revision:null},{url:"/static/js/9091.8f996e37.js",revision:null},{url:"/static/js/9334.3235741b.js",revision:null},{url:"/static/js/9381.f1940be6.js",revision:null},{url:"/static/js/9461.42236d22.js",revision:null},{url:"/static/js/9751.13b1d6f1.js",revision:null},{url:"/static/js/980.498bcd42.js",revision:null},{url:"/static/js/984.d599d072.js",revision:null},{url:"/static/js/9962.8a67ecb6.js",revision:null},{url:"/static/js/app.2b5416b9.js",revision:null},{url:"/static/js/chunk-vendors.e1112b55.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 2f724f2e..03166741 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/3e0405d6404a706c7af026cb97efec4e/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\": \"714e7c6ffc6d29e8696bc6c25b52c993\"\n },\n {\n \"url\": \"/manifest.json\",\n \"revision\": \"8a45dcffc3380b17da6ea17291b43e00\"\n },\n {\n \"url\": \"/static/css/1259.28135e7d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1391.cb558276.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1449.64ebf9cc.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/169.18c97596.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2217.664973a5.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2460.c44d2954.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2471.750151be.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2893.7780abf3.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2976.5cb4fa57.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2986.3d6a6efd.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/306.919e2cb6.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/311.ce3daf0e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3368.771f452b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3369.56bab933.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3559.5e597f7f.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3594.eefea329.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3694.ae679692.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3798.6a1b7cf0.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3826.fbeeb43c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3835.fbe4d9b1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/446.ac7021e0.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4558.a091c93e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4589.e78ef44e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5040.a5bd22c4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5207.d95cde39.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5329.32a328a7.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5638.089f217d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5747.1d5887e4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5794.82cc8a21.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5795.fe136332.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6079.bfe15119.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6215.a48cbf18.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6324.157a52a9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/65.65fe087a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6523.d4d5365a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6561.f0cece07.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7184.e666172f.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/729.d9e08bd0.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/746.36a26270.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7523.a18b735e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7590.727bfece.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7673.ce56995a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7880.5e6febf3.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7968.1d0824b1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8039.eeeae3a7.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8069.5ef4c270.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8179.2fdb982c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8391.3ecab78d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8621.a58665a4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8769.294a7607.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8825.d5cc7895.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/984.7571e216.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9962.68c87814.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/app.eab47dab.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/chunk-vendors.a2412607.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-brands-400.9a905705.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-brands-400.b6033b54.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-regular-400.3580b4a9.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-regular-400.67a0fb74.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-solid-900.6a8db53d.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-solid-900.fd0b155c.woff2\",\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.22c3f8aa.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1259.7aa14adc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1309.f9dfe73a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1449.7c3828fc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/169.ebdd7044.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2068.103aab15.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2183.1facc63d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2217.6b927594.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2460.567e73f6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2614.4f1d5e15.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2732.34e0816d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2853.bfd76f14.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2893.519a1554.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2976.b309ffae.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2986.8ba9994e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/306.f28688c3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/311.94122a15.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3368.cb04738a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3369.c099f8d0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3518.f161e82e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3559.df95d103.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3594.2468b76d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3694.5eb42cb3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3732.96cd512f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3798.fcfdd0e0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3835.11129165.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/446.0c670830.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4558.0ebde536.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4589.2afa8954.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4619.e56bced8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4765.a03fe7c5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5207.7f241e21.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5324.514817dc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5329.444a9cf1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5638.0225db95.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5747.6098fca6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5794.af63f759.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5795.9204ced6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6148.0028428e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6215.be2c734a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6324.c3f621ef.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6362.95da0eb4.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/65.ae7df477.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6523.9cf8a633.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7184.62aed6c5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/729.1b92c9f7.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7381.b3672119.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/746.299cb064.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7523.367c2045.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7590.6cda174b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7673.d3cb8d61.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7819.4dbc6b0c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7880.165a70d5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7968.7e7d6407.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/813.db2cf805.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8179.cb99e492.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8391.119357c7.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8621.0aa03df1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8769.5ea5c0cb.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8784.9c2c1b4c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8825.b660e217.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8895.3ea4b13d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9334.3d08d839.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/984.ae424e7e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9962.f13974a2.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/app.d5057cb9.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/chunk-vendors.ff3a041a.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,+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,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,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,+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,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,yCACPC,SAAY,MAEd,CACED,IAAO,2CACPC,SAAY,MAEd,CACED,IAAO,6CACPC,SAAY,MAEd,CACED,IAAO,8CACPC,SAAY,MAEd,CACED,IAAO,4CACPC,SAAY,MAEd,CACED,IAAO,0CACPC,SAAY,MAEd,CACED,IAAO,4CACPC,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,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,6BACPC,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,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,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,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,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,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,uCACPC,SAAY,OAEb,CAAA"} \ No newline at end of file +{"version":3,"file":"service-worker.js","sources":["../../../../../../tmp/fe7555011ce68526a25d36280f4f0046/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\": \"0ee7ecd61e42300199dcaccb8a6c633f\"\n },\n {\n \"url\": \"/manifest.json\",\n \"revision\": \"8a45dcffc3380b17da6ea17291b43e00\"\n },\n {\n \"url\": \"/static/css/1256.7488b6ae.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1259.ad51b86e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1391.8fb65128.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1420.c29cafe6.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1449.bf964828.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/169.9ec6abc1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1706.c1e22194.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1807.333a022f.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1949.d8d63590.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2140.08e216c1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2154.20cf0934.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2217.da1b8fd6.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2460.83acd505.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2461.1fc0b5b4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2844.23273db2.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2892.3a7569e7.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2893.21a9931c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2976.bafd7cea.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2992.f8bddaf0.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/311.ce50f619.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3368.467cedc6.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3369.69c504e7.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3390.481c441e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3559.5665c422.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3661.c12867e9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3671.e6547429.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3826.53d49948.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3835.91d8befb.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4221.76c11dc1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/446.e0a96773.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4589.d7fd389b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/472.20f2f41f.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4790.3ef3568e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5059.e5cd6fe3.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5143.084a713f.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5193.b8dcc633.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5207.e1e8949a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5285.2250c5c9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5329.2f2c6a0e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5638.05ee3a45.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5794.a98cd7fb.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5795.3b193db6.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5833.e1e503a2.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5906.52ba6beb.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5931.e6c8f94d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6062.b6571ed4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6079.f88a21ae.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6324.bb3e2171.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/65.cb15a9a6.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6523.d6576265.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6561.77bbcd33.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6579.04ad63dc.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/669.73188f7e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/729.16b20067.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/746.18c59228.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7590.b45a8e92.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7651.9b63654f.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7878.e3469993.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7880.4f4a202a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7968.29db26b1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8039.e77a760e.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8069.111183af.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8179.b5fb83f9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8391.b5dd11a9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8498.3676728c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8621.5db86eb0.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8769.fda642fb.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8825.f608e2c2.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8989.63c7ae13.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9381.ade341db.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9461.79136fbe.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9751.0631f530.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/980.b4628099.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/984.0c88349b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9962.eb89f1f6.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/app.f9c900a8.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/chunk-vendors.a2412607.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-brands-400.9a905705.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-brands-400.b6033b54.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-regular-400.3580b4a9.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-regular-400.67a0fb74.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-solid-900.6a8db53d.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-solid-900.fd0b155c.woff2\",\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.22c3f8aa.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1256.978d0d43.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1259.658da6e0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1420.fea2168b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1449.ac2d926f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1512.11bbed76.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/169.ebdd7044.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1706.5142eaa5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1807.4ba7d261.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1949.f6478aac.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2106.00c755d8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2140.04eb8424.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2183.1facc63d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2200.20911f30.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2217.6b927594.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2460.567e73f6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2614.25f43040.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2732.34e0816d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2853.93d42562.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2892.179b93be.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2893.519a1554.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2976.5a71d925.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/311.94122a15.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3322.12d6bfa0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3368.0cff7037.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3369.bf44abe0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/342.9c431c81.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3518.ee2296eb.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3559.df95d103.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3732.d8cbb959.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3835.f37b0b12.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4053.a255e9b2.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4221.eac4e0e1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/446.0c670830.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4589.2afa8954.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4619.e56bced8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/472.0cc80fbb.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4765.476828dd.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5143.ec411207.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5193.71d42647.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5207.7f241e21.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5285.233a586e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5324.4a827b15.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5329.d855e760.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5578.216dad38.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5638.0225db95.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5762.7dcb5ad6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5794.af63f759.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5795.e22f5747.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5931.ba953f55.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6062.20e624e0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6123.24ef40ca.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6148.3a7ad00a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6324.254647db.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6362.95da0eb4.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/65.ae7df477.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6523.9cf8a633.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6640.a6538b3b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/667.be13f421.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/729.ba752a1b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7294.c67b2149.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7381.81f872a7.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/746.299cb064.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7590.6cda174b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7819.c8579627.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7878.e8db7769.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7880.d3d6a4b3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7898.1aa354cc.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7968.385eb36d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/813.f21622fa.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8179.cb99e492.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8391.2706162d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8498.b92a2952.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8621.074ab290.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8769.5ea5c0cb.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8784.9c2c1b4c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8825.ae7e9d47.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/886.97ee0df2.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8895.120febb4.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8930.81ced495.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9091.8f996e37.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9334.3235741b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9381.f1940be6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9461.42236d22.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9751.13b1d6f1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/980.498bcd42.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/984.d599d072.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9962.8a67ecb6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/app.2b5416b9.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/chunk-vendors.e1112b55.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,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,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,8BACPC,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,+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,+BACPC,SAAY,MAEd,CACED,IAAO,gCACPC,SAAY,MAEd,CACED,IAAO,+BACPC,SAAY,MAEd,CACED,IAAO,yCACPC,SAAY,MAEd,CACED,IAAO,2CACPC,SAAY,MAEd,CACED,IAAO,6CACPC,SAAY,MAEd,CACED,IAAO,8CACPC,SAAY,MAEd,CACED,IAAO,4CACPC,SAAY,MAEd,CACED,IAAO,0CACPC,SAAY,MAEd,CACED,IAAO,4CACPC,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,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,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,6BACPC,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,4BACPC,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,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,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,6BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,8BACPC,SAAY,MAEd,CACED,IAAO,6BACPC,SAAY,MAEd,CACED,IAAO,uCACPC,SAAY,OAEb,CAAA"} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1256.7488b6ae.css b/platypush/backend/http/webapp/dist/static/css/1256.7488b6ae.css new file mode 100644 index 00000000..57732666 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1256.7488b6ae.css @@ -0,0 +1 @@ +.col-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6b56bca2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6b56bca2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6b56bca2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6b56bca2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6b56bca2]:first-child{margin-left:26%!important}.col-offset-3[data-v-6b56bca2]:not(first-child){margin-left:30%!important}.col-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6b56bca2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6b56bca2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6b56bca2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6b56bca2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6b56bca2]:first-child{margin-left:52%!important}.col-offset-6[data-v-6b56bca2]:not(first-child){margin-left:56%!important}.col-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6b56bca2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6b56bca2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6b56bca2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6b56bca2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6b56bca2]:first-child{margin-left:78%!important}.col-offset-9[data-v-6b56bca2]:not(first-child){margin-left:82%!important}.col-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6b56bca2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6b56bca2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6b56bca2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6b56bca2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-1[data-v-6b56bca2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-2[data-v-6b56bca2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-3[data-v-6b56bca2]{margin-left:26%}.col-no-margin-s-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-4[data-v-6b56bca2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-5[data-v-6b56bca2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-6[data-v-6b56bca2]{margin-left:52%}.col-no-margin-s-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-7[data-v-6b56bca2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-8[data-v-6b56bca2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-9[data-v-6b56bca2]{margin-left:78%}.col-no-margin-s-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-10[data-v-6b56bca2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-s-11[data-v-6b56bca2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6b56bca2]{display:none!important}.s-visible[data-v-6b56bca2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-1[data-v-6b56bca2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-2[data-v-6b56bca2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-3[data-v-6b56bca2]{margin-left:26%}.col-no-margin-m-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-4[data-v-6b56bca2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-5[data-v-6b56bca2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-6[data-v-6b56bca2]{margin-left:52%}.col-no-margin-m-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-7[data-v-6b56bca2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-8[data-v-6b56bca2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-9[data-v-6b56bca2]{margin-left:78%}.col-no-margin-m-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-10[data-v-6b56bca2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-m-11[data-v-6b56bca2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6b56bca2]{display:none!important}.m-visible[data-v-6b56bca2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-1[data-v-6b56bca2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-2[data-v-6b56bca2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-3[data-v-6b56bca2]{margin-left:26%}.col-no-margin-l-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-4[data-v-6b56bca2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-5[data-v-6b56bca2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-6[data-v-6b56bca2]{margin-left:52%}.col-no-margin-l-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-7[data-v-6b56bca2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-8[data-v-6b56bca2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-9[data-v-6b56bca2]{margin-left:78%}.col-no-margin-l-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-10[data-v-6b56bca2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-l-11[data-v-6b56bca2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6b56bca2]{display:none!important}.l-visible[data-v-6b56bca2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-1[data-v-6b56bca2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-2[data-v-6b56bca2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-3[data-v-6b56bca2]{margin-left:26%}.col-no-margin-xl-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-4[data-v-6b56bca2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-5[data-v-6b56bca2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-6[data-v-6b56bca2]{margin-left:52%}.col-no-margin-xl-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-7[data-v-6b56bca2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-8[data-v-6b56bca2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-9[data-v-6b56bca2]{margin-left:78%}.col-no-margin-xl-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-10[data-v-6b56bca2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xl-11[data-v-6b56bca2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6b56bca2]{display:none!important}.xl-visible[data-v-6b56bca2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6b56bca2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6b56bca2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6b56bca2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6b56bca2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6b56bca2]{margin-left:26%}.col-no-margin-xxl-3[data-v-6b56bca2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6b56bca2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6b56bca2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6b56bca2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6b56bca2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6b56bca2]{margin-left:52%}.col-no-margin-xxl-6[data-v-6b56bca2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6b56bca2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6b56bca2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6b56bca2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6b56bca2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6b56bca2]{margin-left:78%}.col-no-margin-xxl-9[data-v-6b56bca2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6b56bca2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6b56bca2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6b56bca2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6b56bca2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6b56bca2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6b56bca2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6b56bca2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6b56bca2]{display:none!important}.xxl-visible[data-v-6b56bca2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6b56bca2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6b56bca2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6b56bca2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6b56bca2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6b56bca2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6b56bca2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6b56bca2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6b56bca2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6b56bca2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6b56bca2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6b56bca2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6b56bca2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6b56bca2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6b56bca2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6b56bca2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6b56bca2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6b56bca2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6b56bca2]{display:none!important}}.vertical-center[data-v-6b56bca2]{display:flex;align-items:center}.horizontal-center[data-v-6b56bca2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6b56bca2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6b56bca2]{display:none!important}.no-content[data-v-6b56bca2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6b56bca2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6b56bca2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6b56bca2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6b56bca2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6b56bca2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6b56bca2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6b56bca2],.btn[data-v-6b56bca2],button[data-v-6b56bca2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6b56bca2],.btn-default[type=submit][data-v-6b56bca2],.btn.btn-primary[data-v-6b56bca2],.btn[type=submit][data-v-6b56bca2],button.btn-primary[data-v-6b56bca2],button[type=submit][data-v-6b56bca2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6b56bca2],.btn-default .icon[data-v-6b56bca2],button .icon[data-v-6b56bca2]{margin-right:.5em}input[type=password][data-v-6b56bca2],input[type=text][data-v-6b56bca2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6b56bca2]:focus,input[type=text][data-v-6b56bca2]:focus{border:1px solid #35b870}button[data-v-6b56bca2],input[data-v-6b56bca2]{outline:none}input[type=text][data-v-6b56bca2]:hover,textarea[data-v-6b56bca2]:hover{border:1px solid #9cdfb0}ul[data-v-6b56bca2]{margin:0;padding:0;list-style:none}a[data-v-6b56bca2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6b56bca2]:hover{color:#35b870}[data-v-6b56bca2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6b56bca2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6b56bca2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6b56bca2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6b56bca2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6b56bca2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6b56bca2] .nav .path{cursor:pointer}.browser[data-v-6b56bca2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6b56bca2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-6b56bca2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6b56bca2],input[type=number][data-v-6b56bca2],input[type=password][data-v-6b56bca2],input[type=search][data-v-6b56bca2],input[type=text][data-v-6b56bca2],input[type=time][data-v-6b56bca2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-6b56bca2]:hover,input[type=number][data-v-6b56bca2]:hover,input[type=password][data-v-6b56bca2]:hover,input[type=search][data-v-6b56bca2]:hover,input[type=text][data-v-6b56bca2]:hover,input[type=time][data-v-6b56bca2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6b56bca2]:focus,input[type=number][data-v-6b56bca2]:focus,input[type=password][data-v-6b56bca2]:focus,input[type=search][data-v-6b56bca2]:focus,input[type=text][data-v-6b56bca2]:focus,input[type=time][data-v-6b56bca2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6b56bca2],input[type=number].with-icon[data-v-6b56bca2],input[type=password].with-icon[data-v-6b56bca2],input[type=search].with-icon[data-v-6b56bca2],input[type=text].with-icon[data-v-6b56bca2],input[type=time].with-icon[data-v-6b56bca2]{padding-left:.3em}input[type=search][data-v-6b56bca2],input[type=text][data-v-6b56bca2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6b56bca2]{animation-fill-mode:both;animation-name:fadeIn-6b56bca2;-webkit-animation-name:fadeIn-6b56bca2}.fade-in[data-v-6b56bca2],.fade-out[data-v-6b56bca2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6b56bca2]{animation-fill-mode:both;animation-name:fadeOut-6b56bca2;-webkit-animation-name:fadeOut-6b56bca2}@keyframes fadeIn-6b56bca2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6b56bca2{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-6b56bca2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6b56bca2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6b56bca2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-6b56bca2] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-6b56bca2] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-6b56bca2] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-6b56bca2] .item .icon i{font-size:40px}[data-v-6b56bca2] .nav{height:2.5em}.media-browser .media-browser-body[data-v-6b56bca2],.media-browser[data-v-6b56bca2]{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}}.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-39ee4bbe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-39ee4bbe]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-39ee4bbe]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-39ee4bbe]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-39ee4bbe]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-39ee4bbe]:first-child{margin-left:26%!important}.col-offset-3[data-v-39ee4bbe]:not(first-child){margin-left:30%!important}.col-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-39ee4bbe]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-39ee4bbe]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-39ee4bbe]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-39ee4bbe]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-39ee4bbe]:first-child{margin-left:52%!important}.col-offset-6[data-v-39ee4bbe]:not(first-child){margin-left:56%!important}.col-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-39ee4bbe]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-39ee4bbe]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-39ee4bbe]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-39ee4bbe]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-39ee4bbe]:first-child{margin-left:78%!important}.col-offset-9[data-v-39ee4bbe]:not(first-child){margin-left:82%!important}.col-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-39ee4bbe]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-39ee4bbe]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-39ee4bbe]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-39ee4bbe]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-1[data-v-39ee4bbe]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-2[data-v-39ee4bbe]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-3[data-v-39ee4bbe]{margin-left:26%}.col-no-margin-s-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-4[data-v-39ee4bbe]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-5[data-v-39ee4bbe]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-6[data-v-39ee4bbe]{margin-left:52%}.col-no-margin-s-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-7[data-v-39ee4bbe]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-8[data-v-39ee4bbe]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-9[data-v-39ee4bbe]{margin-left:78%}.col-no-margin-s-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-10[data-v-39ee4bbe]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-s-11[data-v-39ee4bbe]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-s-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-39ee4bbe]{display:none!important}.s-visible[data-v-39ee4bbe]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-1[data-v-39ee4bbe]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-2[data-v-39ee4bbe]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-3[data-v-39ee4bbe]{margin-left:26%}.col-no-margin-m-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-4[data-v-39ee4bbe]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-5[data-v-39ee4bbe]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-6[data-v-39ee4bbe]{margin-left:52%}.col-no-margin-m-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-7[data-v-39ee4bbe]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-8[data-v-39ee4bbe]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-9[data-v-39ee4bbe]{margin-left:78%}.col-no-margin-m-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-10[data-v-39ee4bbe]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-m-11[data-v-39ee4bbe]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-m-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-39ee4bbe]{display:none!important}.m-visible[data-v-39ee4bbe]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-1[data-v-39ee4bbe]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-2[data-v-39ee4bbe]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-3[data-v-39ee4bbe]{margin-left:26%}.col-no-margin-l-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-4[data-v-39ee4bbe]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-5[data-v-39ee4bbe]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-6[data-v-39ee4bbe]{margin-left:52%}.col-no-margin-l-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-7[data-v-39ee4bbe]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-8[data-v-39ee4bbe]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-9[data-v-39ee4bbe]{margin-left:78%}.col-no-margin-l-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-10[data-v-39ee4bbe]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-l-11[data-v-39ee4bbe]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-l-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-39ee4bbe]{display:none!important}.l-visible[data-v-39ee4bbe]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-1[data-v-39ee4bbe]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-2[data-v-39ee4bbe]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-3[data-v-39ee4bbe]{margin-left:26%}.col-no-margin-xl-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-4[data-v-39ee4bbe]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-5[data-v-39ee4bbe]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-6[data-v-39ee4bbe]{margin-left:52%}.col-no-margin-xl-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-7[data-v-39ee4bbe]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-8[data-v-39ee4bbe]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-9[data-v-39ee4bbe]{margin-left:78%}.col-no-margin-xl-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-10[data-v-39ee4bbe]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xl-11[data-v-39ee4bbe]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-39ee4bbe]{display:none!important}.xl-visible[data-v-39ee4bbe]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-1[data-v-39ee4bbe]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-2[data-v-39ee4bbe]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-3[data-v-39ee4bbe]{margin-left:26%}.col-no-margin-xxl-3[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-4[data-v-39ee4bbe]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-5[data-v-39ee4bbe]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-6[data-v-39ee4bbe]{margin-left:52%}.col-no-margin-xxl-6[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-7[data-v-39ee4bbe]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-8[data-v-39ee4bbe]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-9[data-v-39ee4bbe]{margin-left:78%}.col-no-margin-xxl-9[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-10[data-v-39ee4bbe]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-39ee4bbe]:first-child{margin-left:0}.col-offset-xxl-11[data-v-39ee4bbe]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-39ee4bbe]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-39ee4bbe]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-39ee4bbe]{display:none!important}.xxl-visible[data-v-39ee4bbe]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-39ee4bbe]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-39ee4bbe]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-39ee4bbe]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-39ee4bbe]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-39ee4bbe]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-39ee4bbe]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-39ee4bbe]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-39ee4bbe]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-39ee4bbe]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-39ee4bbe]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-39ee4bbe]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-39ee4bbe]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-39ee4bbe]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-39ee4bbe]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-39ee4bbe]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-39ee4bbe]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-39ee4bbe]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-39ee4bbe]{display:none!important}}.vertical-center[data-v-39ee4bbe]{display:flex;align-items:center}.horizontal-center[data-v-39ee4bbe]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-39ee4bbe]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-39ee4bbe]{display:none!important}.no-content[data-v-39ee4bbe]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-39ee4bbe]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-39ee4bbe]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-39ee4bbe]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-39ee4bbe]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-39ee4bbe]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-39ee4bbe]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-39ee4bbe],.btn[data-v-39ee4bbe],button[data-v-39ee4bbe]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-39ee4bbe],.btn-default[type=submit][data-v-39ee4bbe],.btn.btn-primary[data-v-39ee4bbe],.btn[type=submit][data-v-39ee4bbe],button.btn-primary[data-v-39ee4bbe],button[type=submit][data-v-39ee4bbe]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-39ee4bbe],.btn-default .icon[data-v-39ee4bbe],button .icon[data-v-39ee4bbe]{margin-right:.5em}input[type=password][data-v-39ee4bbe],input[type=text][data-v-39ee4bbe]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-39ee4bbe]:focus,input[type=text][data-v-39ee4bbe]:focus{border:1px solid #35b870}button[data-v-39ee4bbe],input[data-v-39ee4bbe]{outline:none}input[type=text][data-v-39ee4bbe]:hover,textarea[data-v-39ee4bbe]:hover{border:1px solid #9cdfb0}ul[data-v-39ee4bbe]{margin:0;padding:0;list-style:none}a[data-v-39ee4bbe]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-39ee4bbe]:hover{color:#35b870}[data-v-39ee4bbe]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-39ee4bbe]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-39ee4bbe]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-39ee4bbe]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-39ee4bbe]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-39ee4bbe] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-39ee4bbe] .nav .path{cursor:pointer}.browser[data-v-39ee4bbe] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-39ee4bbe] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-39ee4bbe]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-39ee4bbe],input[type=number][data-v-39ee4bbe],input[type=password][data-v-39ee4bbe],input[type=search][data-v-39ee4bbe],input[type=text][data-v-39ee4bbe],input[type=time][data-v-39ee4bbe]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-39ee4bbe]:hover,input[type=number][data-v-39ee4bbe]:hover,input[type=password][data-v-39ee4bbe]:hover,input[type=search][data-v-39ee4bbe]:hover,input[type=text][data-v-39ee4bbe]:hover,input[type=time][data-v-39ee4bbe]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-39ee4bbe]:focus,input[type=number][data-v-39ee4bbe]:focus,input[type=password][data-v-39ee4bbe]:focus,input[type=search][data-v-39ee4bbe]:focus,input[type=text][data-v-39ee4bbe]:focus,input[type=time][data-v-39ee4bbe]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-39ee4bbe],input[type=number].with-icon[data-v-39ee4bbe],input[type=password].with-icon[data-v-39ee4bbe],input[type=search].with-icon[data-v-39ee4bbe],input[type=text].with-icon[data-v-39ee4bbe],input[type=time].with-icon[data-v-39ee4bbe]{padding-left:.3em}input[type=search][data-v-39ee4bbe],input[type=text][data-v-39ee4bbe]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-39ee4bbe]{animation-fill-mode:both;animation-name:fadeIn-39ee4bbe;-webkit-animation-name:fadeIn-39ee4bbe}.fade-in[data-v-39ee4bbe],.fade-out[data-v-39ee4bbe]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-39ee4bbe]{animation-fill-mode:both;animation-name:fadeOut-39ee4bbe;-webkit-animation-name:fadeOut-39ee4bbe}@keyframes fadeIn-39ee4bbe{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-39ee4bbe{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-39ee4bbe]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-39ee4bbe]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-39ee4bbe]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-39ee4bbe]{color:#d21}.header[data-v-39ee4bbe]{width:100%;height:3.3em;position:relative;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header .filter-btn.selected[data-v-39ee4bbe]{color:#32b646}.header .row[data-v-39ee4bbe]{display:flex;align-items:center}.header.with-filter[data-v-39ee4bbe]{height:6.3em;padding-bottom:0}.header .side[data-v-39ee4bbe]{display:inline-flex;align-items:center}.header .side.right[data-v-39ee4bbe]{justify-content:right;direction:rtl}.header[data-v-39ee4bbe] button{background:none;padding:0 .5em;border:0}.header[data-v-39ee4bbe] button:hover{color:#38cf80}.header form[data-v-39ee4bbe]{width:100%;padding:0;border:0;border-radius:0;box-shadow:none;background:initial}.header .search-box[data-v-39ee4bbe]{width:100%;margin-left:.5em}.header .search-box input[type=search][data-v-39ee4bbe]{width:100%}.header .filter[data-v-39ee4bbe]{width:100%;height:3em;margin-top:.5em}.header .filter label[data-v-39ee4bbe]{display:inline-flex;flex-direction:row;margin-right:1em}.header .captions-btn[data-v-39ee4bbe],.header .filter label input[data-v-39ee4bbe]{margin-right:.5em}.header .captions-btn.selected[data-v-39ee4bbe]{color:#32b646}.col-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-b15d23b2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-b15d23b2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-b15d23b2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-b15d23b2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-b15d23b2]:first-child{margin-left:26%!important}.col-offset-3[data-v-b15d23b2]:not(first-child){margin-left:30%!important}.col-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-b15d23b2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-b15d23b2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-b15d23b2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-b15d23b2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-b15d23b2]:first-child{margin-left:52%!important}.col-offset-6[data-v-b15d23b2]:not(first-child){margin-left:56%!important}.col-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-b15d23b2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-b15d23b2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-b15d23b2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-b15d23b2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-b15d23b2]:first-child{margin-left:78%!important}.col-offset-9[data-v-b15d23b2]:not(first-child){margin-left:82%!important}.col-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-b15d23b2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-b15d23b2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-b15d23b2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-b15d23b2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-1[data-v-b15d23b2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-2[data-v-b15d23b2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-3[data-v-b15d23b2]{margin-left:26%}.col-no-margin-s-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-4[data-v-b15d23b2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-5[data-v-b15d23b2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-6[data-v-b15d23b2]{margin-left:52%}.col-no-margin-s-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-7[data-v-b15d23b2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-8[data-v-b15d23b2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-9[data-v-b15d23b2]{margin-left:78%}.col-no-margin-s-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-10[data-v-b15d23b2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-s-11[data-v-b15d23b2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-b15d23b2]{display:none!important}.s-visible[data-v-b15d23b2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-1[data-v-b15d23b2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-2[data-v-b15d23b2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-3[data-v-b15d23b2]{margin-left:26%}.col-no-margin-m-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-4[data-v-b15d23b2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-5[data-v-b15d23b2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-6[data-v-b15d23b2]{margin-left:52%}.col-no-margin-m-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-7[data-v-b15d23b2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-8[data-v-b15d23b2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-9[data-v-b15d23b2]{margin-left:78%}.col-no-margin-m-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-10[data-v-b15d23b2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-m-11[data-v-b15d23b2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-b15d23b2]{display:none!important}.m-visible[data-v-b15d23b2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-1[data-v-b15d23b2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-2[data-v-b15d23b2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-3[data-v-b15d23b2]{margin-left:26%}.col-no-margin-l-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-4[data-v-b15d23b2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-5[data-v-b15d23b2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-6[data-v-b15d23b2]{margin-left:52%}.col-no-margin-l-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-7[data-v-b15d23b2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-8[data-v-b15d23b2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-9[data-v-b15d23b2]{margin-left:78%}.col-no-margin-l-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-10[data-v-b15d23b2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-l-11[data-v-b15d23b2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-b15d23b2]{display:none!important}.l-visible[data-v-b15d23b2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-1[data-v-b15d23b2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-2[data-v-b15d23b2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-3[data-v-b15d23b2]{margin-left:26%}.col-no-margin-xl-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-4[data-v-b15d23b2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-5[data-v-b15d23b2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-6[data-v-b15d23b2]{margin-left:52%}.col-no-margin-xl-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-7[data-v-b15d23b2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-8[data-v-b15d23b2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-9[data-v-b15d23b2]{margin-left:78%}.col-no-margin-xl-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-10[data-v-b15d23b2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xl-11[data-v-b15d23b2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-b15d23b2]{display:none!important}.xl-visible[data-v-b15d23b2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-b15d23b2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-b15d23b2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-b15d23b2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-b15d23b2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-b15d23b2]{margin-left:26%}.col-no-margin-xxl-3[data-v-b15d23b2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-b15d23b2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-b15d23b2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-b15d23b2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-b15d23b2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-b15d23b2]{margin-left:52%}.col-no-margin-xxl-6[data-v-b15d23b2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-b15d23b2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-b15d23b2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-b15d23b2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-b15d23b2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-b15d23b2]{margin-left:78%}.col-no-margin-xxl-9[data-v-b15d23b2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-b15d23b2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-b15d23b2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-b15d23b2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-b15d23b2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-b15d23b2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-b15d23b2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-b15d23b2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-b15d23b2]{display:none!important}.xxl-visible[data-v-b15d23b2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-b15d23b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-b15d23b2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-b15d23b2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-b15d23b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-b15d23b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-b15d23b2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-b15d23b2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-b15d23b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-b15d23b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-b15d23b2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-b15d23b2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-b15d23b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-b15d23b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-b15d23b2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-b15d23b2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-b15d23b2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-b15d23b2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-b15d23b2]{display:none!important}}.vertical-center[data-v-b15d23b2]{display:flex;align-items:center}.horizontal-center[data-v-b15d23b2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-b15d23b2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-b15d23b2]{display:none!important}.no-content[data-v-b15d23b2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-b15d23b2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-b15d23b2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-b15d23b2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-b15d23b2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-b15d23b2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-b15d23b2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-b15d23b2],.btn[data-v-b15d23b2],button[data-v-b15d23b2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-b15d23b2],.btn-default[type=submit][data-v-b15d23b2],.btn.btn-primary[data-v-b15d23b2],.btn[type=submit][data-v-b15d23b2],button.btn-primary[data-v-b15d23b2],button[type=submit][data-v-b15d23b2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-b15d23b2],.btn-default .icon[data-v-b15d23b2],button .icon[data-v-b15d23b2]{margin-right:.5em}input[type=password][data-v-b15d23b2],input[type=text][data-v-b15d23b2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-b15d23b2]:focus,input[type=text][data-v-b15d23b2]:focus{border:1px solid #35b870}button[data-v-b15d23b2],input[data-v-b15d23b2]{outline:none}input[type=text][data-v-b15d23b2]:hover,textarea[data-v-b15d23b2]:hover{border:1px solid #9cdfb0}ul[data-v-b15d23b2]{margin:0;padding:0;list-style:none}a[data-v-b15d23b2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-b15d23b2]:hover{color:#35b870}[data-v-b15d23b2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-b15d23b2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-b15d23b2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-b15d23b2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-b15d23b2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-b15d23b2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-b15d23b2] .nav .path{cursor:pointer}.browser[data-v-b15d23b2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-b15d23b2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-b15d23b2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-b15d23b2],input[type=number][data-v-b15d23b2],input[type=password][data-v-b15d23b2],input[type=search][data-v-b15d23b2],input[type=text][data-v-b15d23b2],input[type=time][data-v-b15d23b2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-b15d23b2]:hover,input[type=number][data-v-b15d23b2]:hover,input[type=password][data-v-b15d23b2]:hover,input[type=search][data-v-b15d23b2]:hover,input[type=text][data-v-b15d23b2]:hover,input[type=time][data-v-b15d23b2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-b15d23b2]:focus,input[type=number][data-v-b15d23b2]:focus,input[type=password][data-v-b15d23b2]:focus,input[type=search][data-v-b15d23b2]:focus,input[type=text][data-v-b15d23b2]:focus,input[type=time][data-v-b15d23b2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-b15d23b2],input[type=number].with-icon[data-v-b15d23b2],input[type=password].with-icon[data-v-b15d23b2],input[type=search].with-icon[data-v-b15d23b2],input[type=text].with-icon[data-v-b15d23b2],input[type=time].with-icon[data-v-b15d23b2]{padding-left:.3em}input[type=search][data-v-b15d23b2],input[type=text][data-v-b15d23b2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-b15d23b2]{animation-fill-mode:both;animation-name:fadeIn-b15d23b2;-webkit-animation-name:fadeIn-b15d23b2}.fade-in[data-v-b15d23b2],.fade-out[data-v-b15d23b2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-b15d23b2]{animation-fill-mode:both;animation-name:fadeOut-b15d23b2;-webkit-animation-name:fadeOut-b15d23b2}@keyframes fadeIn-b15d23b2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-b15d23b2{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-b15d23b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-b15d23b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-b15d23b2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-b15d23b2]{color:#d21}nav[data-v-b15d23b2]{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-b15d23b2]{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-b15d23b2]:hover{color:#35b870}nav li[data-v-b15d23b2]{display:flex;align-items:center;font-size:1.2em;cursor:pointer;list-style:none;padding:.6em;opacity:.7}nav li.selected[data-v-b15d23b2],nav li[data-v-b15d23b2]:hover{border-radius:1.2em;margin:0 .2em}nav li[data-v-b15d23b2]:hover{background:rgba(160,245,178,.6)}nav li.selected[data-v-b15d23b2]{background:rgba(160,245,178,.95)}.col-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0f1ba97a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0f1ba97a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0f1ba97a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0f1ba97a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0f1ba97a]:first-child{margin-left:26%!important}.col-offset-3[data-v-0f1ba97a]:not(first-child){margin-left:30%!important}.col-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0f1ba97a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0f1ba97a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0f1ba97a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0f1ba97a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0f1ba97a]:first-child{margin-left:52%!important}.col-offset-6[data-v-0f1ba97a]:not(first-child){margin-left:56%!important}.col-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0f1ba97a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0f1ba97a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0f1ba97a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0f1ba97a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0f1ba97a]:first-child{margin-left:78%!important}.col-offset-9[data-v-0f1ba97a]:not(first-child){margin-left:82%!important}.col-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0f1ba97a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0f1ba97a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0f1ba97a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0f1ba97a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-1[data-v-0f1ba97a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-2[data-v-0f1ba97a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-3[data-v-0f1ba97a]{margin-left:26%}.col-no-margin-s-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-4[data-v-0f1ba97a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-5[data-v-0f1ba97a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-6[data-v-0f1ba97a]{margin-left:52%}.col-no-margin-s-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-7[data-v-0f1ba97a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-8[data-v-0f1ba97a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-9[data-v-0f1ba97a]{margin-left:78%}.col-no-margin-s-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-10[data-v-0f1ba97a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-s-11[data-v-0f1ba97a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0f1ba97a]{display:none!important}.s-visible[data-v-0f1ba97a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-1[data-v-0f1ba97a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-2[data-v-0f1ba97a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-3[data-v-0f1ba97a]{margin-left:26%}.col-no-margin-m-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-4[data-v-0f1ba97a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-5[data-v-0f1ba97a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-6[data-v-0f1ba97a]{margin-left:52%}.col-no-margin-m-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-7[data-v-0f1ba97a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-8[data-v-0f1ba97a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-9[data-v-0f1ba97a]{margin-left:78%}.col-no-margin-m-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-10[data-v-0f1ba97a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-m-11[data-v-0f1ba97a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0f1ba97a]{display:none!important}.m-visible[data-v-0f1ba97a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-1[data-v-0f1ba97a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-2[data-v-0f1ba97a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-3[data-v-0f1ba97a]{margin-left:26%}.col-no-margin-l-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-4[data-v-0f1ba97a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-5[data-v-0f1ba97a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-6[data-v-0f1ba97a]{margin-left:52%}.col-no-margin-l-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-7[data-v-0f1ba97a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-8[data-v-0f1ba97a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-9[data-v-0f1ba97a]{margin-left:78%}.col-no-margin-l-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-10[data-v-0f1ba97a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-l-11[data-v-0f1ba97a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0f1ba97a]{display:none!important}.l-visible[data-v-0f1ba97a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-1[data-v-0f1ba97a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-2[data-v-0f1ba97a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-3[data-v-0f1ba97a]{margin-left:26%}.col-no-margin-xl-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-4[data-v-0f1ba97a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-5[data-v-0f1ba97a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-6[data-v-0f1ba97a]{margin-left:52%}.col-no-margin-xl-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-7[data-v-0f1ba97a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-8[data-v-0f1ba97a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-9[data-v-0f1ba97a]{margin-left:78%}.col-no-margin-xl-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-10[data-v-0f1ba97a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xl-11[data-v-0f1ba97a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0f1ba97a]{display:none!important}.xl-visible[data-v-0f1ba97a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0f1ba97a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0f1ba97a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0f1ba97a]{margin-left:26%}.col-no-margin-xxl-3[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0f1ba97a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0f1ba97a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0f1ba97a]{margin-left:52%}.col-no-margin-xxl-6[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0f1ba97a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0f1ba97a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0f1ba97a]{margin-left:78%}.col-no-margin-xxl-9[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0f1ba97a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0f1ba97a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0f1ba97a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0f1ba97a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0f1ba97a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0f1ba97a]{display:none!important}.xxl-visible[data-v-0f1ba97a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0f1ba97a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0f1ba97a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0f1ba97a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0f1ba97a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0f1ba97a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0f1ba97a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0f1ba97a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0f1ba97a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0f1ba97a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0f1ba97a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0f1ba97a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0f1ba97a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0f1ba97a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0f1ba97a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0f1ba97a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0f1ba97a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0f1ba97a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0f1ba97a]{display:none!important}}.vertical-center[data-v-0f1ba97a]{display:flex;align-items:center}.horizontal-center[data-v-0f1ba97a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0f1ba97a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0f1ba97a]{display:none!important}.no-content[data-v-0f1ba97a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0f1ba97a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0f1ba97a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0f1ba97a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0f1ba97a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0f1ba97a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0f1ba97a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0f1ba97a],.btn[data-v-0f1ba97a],button[data-v-0f1ba97a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0f1ba97a],.btn-default[type=submit][data-v-0f1ba97a],.btn.btn-primary[data-v-0f1ba97a],.btn[type=submit][data-v-0f1ba97a],button.btn-primary[data-v-0f1ba97a],button[type=submit][data-v-0f1ba97a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0f1ba97a],.btn-default .icon[data-v-0f1ba97a],button .icon[data-v-0f1ba97a]{margin-right:.5em}input[type=password][data-v-0f1ba97a],input[type=text][data-v-0f1ba97a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0f1ba97a]:focus,input[type=text][data-v-0f1ba97a]:focus{border:1px solid #35b870}button[data-v-0f1ba97a],input[data-v-0f1ba97a]{outline:none}input[type=text][data-v-0f1ba97a]:hover,textarea[data-v-0f1ba97a]:hover{border:1px solid #9cdfb0}ul[data-v-0f1ba97a]{margin:0;padding:0;list-style:none}a[data-v-0f1ba97a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0f1ba97a]:hover{color:#35b870}[data-v-0f1ba97a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0f1ba97a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0f1ba97a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0f1ba97a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0f1ba97a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0f1ba97a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0f1ba97a] .nav .path{cursor:pointer}.browser[data-v-0f1ba97a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0f1ba97a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0f1ba97a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0f1ba97a],input[type=number][data-v-0f1ba97a],input[type=password][data-v-0f1ba97a],input[type=search][data-v-0f1ba97a],input[type=text][data-v-0f1ba97a],input[type=time][data-v-0f1ba97a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0f1ba97a]:hover,input[type=number][data-v-0f1ba97a]:hover,input[type=password][data-v-0f1ba97a]:hover,input[type=search][data-v-0f1ba97a]:hover,input[type=text][data-v-0f1ba97a]:hover,input[type=time][data-v-0f1ba97a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0f1ba97a]:focus,input[type=number][data-v-0f1ba97a]:focus,input[type=password][data-v-0f1ba97a]:focus,input[type=search][data-v-0f1ba97a]:focus,input[type=text][data-v-0f1ba97a]:focus,input[type=time][data-v-0f1ba97a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0f1ba97a],input[type=number].with-icon[data-v-0f1ba97a],input[type=password].with-icon[data-v-0f1ba97a],input[type=search].with-icon[data-v-0f1ba97a],input[type=text].with-icon[data-v-0f1ba97a],input[type=time].with-icon[data-v-0f1ba97a]{padding-left:.3em}input[type=search][data-v-0f1ba97a],input[type=text][data-v-0f1ba97a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0f1ba97a]{animation-fill-mode:both;animation-name:fadeIn-0f1ba97a;-webkit-animation-name:fadeIn-0f1ba97a}.fade-in[data-v-0f1ba97a],.fade-out[data-v-0f1ba97a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0f1ba97a]{animation-fill-mode:both;animation-name:fadeOut-0f1ba97a;-webkit-animation-name:fadeOut-0f1ba97a}@keyframes fadeIn-0f1ba97a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0f1ba97a{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-0f1ba97a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0f1ba97a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0f1ba97a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-0f1ba97a]{color:#d21}.icon[data-v-0f1ba97a]{position:absolute;width:30px;height:30px;font-size:30px;background:rgba(0,0,0,.5);border-radius:.25em;color:#fff}.icon a[data-v-0f1ba97a]{width:100%;height:100%;color:#fff}.icon a[data-v-0f1ba97a]:hover{color:#35b870}.icon i[data-v-0f1ba97a]{margin:2.5px}.icon .fa-imdb[data-v-0f1ba97a]{position:absolute;top:0;margin:1px 2.5px 3px 2.5px}.icon .fa-youtube[data-v-0f1ba97a]{margin-left:1px}.imdb-link[data-v-0f1ba97a]{top:0;right:0}.bottom-overlay[data-v-0f1ba97a]{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-0f1ba97a]{top:0;left:0;font-size:25px}.image-container[data-v-0f1ba97a]{max-width:100%;min-height:200px;aspect-ratio:16/9;display:flex;justify-content:center;position:relative}.image-container.with-image[data-v-0f1ba97a]{background:#000}.image-container.with-image .icon[data-v-0f1ba97a]{background:none}.image-container.with-image .play-overlay[data-v-0f1ba97a]{border-radius:0}.image-container img[data-v-0f1ba97a]{height:100%}.image[data-v-0f1ba97a]{max-width:100%}div.image[data-v-0f1ba97a]{width:100%;color:#fff;font-size:5em;display:flex;align-items:center;justify-content:center}div.image .inner[data-v-0f1ba97a]{background:#d0dad8;border-radius:.5em}.play-overlay[data-v-0f1ba97a],div.image .inner[data-v-0f1ba97a]{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.play-overlay[data-v-0f1ba97a]{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-0f1ba97a]:hover{opacity:1}.play-overlay i[data-v-0f1ba97a]{font-size:5em;color:#fff}.col-1[data-v-91888714]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-91888714]:first-child{margin-left:0}.col-no-margin-1[data-v-91888714]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-91888714]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-91888714]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-91888714]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-91888714]:first-child{margin-left:0}.col-no-margin-2[data-v-91888714]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-91888714]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-91888714]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-91888714]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-91888714]:first-child{margin-left:0}.col-no-margin-3[data-v-91888714]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-91888714]:first-child{margin-left:26%!important}.col-offset-3[data-v-91888714]:not(first-child){margin-left:30%!important}.col-4[data-v-91888714]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-91888714]:first-child{margin-left:0}.col-no-margin-4[data-v-91888714]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-91888714]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-91888714]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-91888714]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-91888714]:first-child{margin-left:0}.col-no-margin-5[data-v-91888714]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-91888714]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-91888714]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-91888714]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-91888714]:first-child{margin-left:0}.col-no-margin-6[data-v-91888714]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-91888714]:first-child{margin-left:52%!important}.col-offset-6[data-v-91888714]:not(first-child){margin-left:56%!important}.col-7[data-v-91888714]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-91888714]:first-child{margin-left:0}.col-no-margin-7[data-v-91888714]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-91888714]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-91888714]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-91888714]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-91888714]:first-child{margin-left:0}.col-no-margin-8[data-v-91888714]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-91888714]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-91888714]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-91888714]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-91888714]:first-child{margin-left:0}.col-no-margin-9[data-v-91888714]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-91888714]:first-child{margin-left:78%!important}.col-offset-9[data-v-91888714]:not(first-child){margin-left:82%!important}.col-10[data-v-91888714]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-91888714]:first-child{margin-left:0}.col-no-margin-10[data-v-91888714]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-91888714]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-91888714]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-91888714]:first-child{margin-left:0}.col-no-margin-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-91888714]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-91888714]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-91888714]:first-child{margin-left:0}.col-no-margin-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-91888714]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-91888714]:first-child{margin-left:0}.col-offset-s-1[data-v-91888714]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-91888714]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-91888714]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-91888714]:first-child{margin-left:0}.col-offset-s-2[data-v-91888714]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-91888714]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-91888714]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-91888714]:first-child{margin-left:0}.col-offset-s-3[data-v-91888714]{margin-left:26%}.col-no-margin-s-3[data-v-91888714]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-91888714]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-91888714]:first-child{margin-left:0}.col-offset-s-4[data-v-91888714]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-91888714]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-91888714]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-91888714]:first-child{margin-left:0}.col-offset-s-5[data-v-91888714]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-91888714]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-91888714]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-91888714]:first-child{margin-left:0}.col-offset-s-6[data-v-91888714]{margin-left:52%}.col-no-margin-s-6[data-v-91888714]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-91888714]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-91888714]:first-child{margin-left:0}.col-offset-s-7[data-v-91888714]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-91888714]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-91888714]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-91888714]:first-child{margin-left:0}.col-offset-s-8[data-v-91888714]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-91888714]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-91888714]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-91888714]:first-child{margin-left:0}.col-offset-s-9[data-v-91888714]{margin-left:78%}.col-no-margin-s-9[data-v-91888714]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-91888714]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-91888714]:first-child{margin-left:0}.col-offset-s-10[data-v-91888714]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-91888714]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-91888714]:first-child{margin-left:0}.col-offset-s-11[data-v-91888714]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-91888714]:first-child{margin-left:0}.col-no-margin-s-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-91888714]{display:none!important}.s-visible[data-v-91888714]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-91888714]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-91888714]:first-child{margin-left:0}.col-offset-m-1[data-v-91888714]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-91888714]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-91888714]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-91888714]:first-child{margin-left:0}.col-offset-m-2[data-v-91888714]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-91888714]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-91888714]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-91888714]:first-child{margin-left:0}.col-offset-m-3[data-v-91888714]{margin-left:26%}.col-no-margin-m-3[data-v-91888714]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-91888714]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-91888714]:first-child{margin-left:0}.col-offset-m-4[data-v-91888714]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-91888714]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-91888714]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-91888714]:first-child{margin-left:0}.col-offset-m-5[data-v-91888714]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-91888714]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-91888714]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-91888714]:first-child{margin-left:0}.col-offset-m-6[data-v-91888714]{margin-left:52%}.col-no-margin-m-6[data-v-91888714]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-91888714]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-91888714]:first-child{margin-left:0}.col-offset-m-7[data-v-91888714]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-91888714]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-91888714]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-91888714]:first-child{margin-left:0}.col-offset-m-8[data-v-91888714]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-91888714]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-91888714]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-91888714]:first-child{margin-left:0}.col-offset-m-9[data-v-91888714]{margin-left:78%}.col-no-margin-m-9[data-v-91888714]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-91888714]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-91888714]:first-child{margin-left:0}.col-offset-m-10[data-v-91888714]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-91888714]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-91888714]:first-child{margin-left:0}.col-offset-m-11[data-v-91888714]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-91888714]:first-child{margin-left:0}.col-no-margin-m-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-91888714]{display:none!important}.m-visible[data-v-91888714]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-91888714]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-91888714]:first-child{margin-left:0}.col-offset-l-1[data-v-91888714]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-91888714]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-91888714]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-91888714]:first-child{margin-left:0}.col-offset-l-2[data-v-91888714]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-91888714]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-91888714]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-91888714]:first-child{margin-left:0}.col-offset-l-3[data-v-91888714]{margin-left:26%}.col-no-margin-l-3[data-v-91888714]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-91888714]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-91888714]:first-child{margin-left:0}.col-offset-l-4[data-v-91888714]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-91888714]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-91888714]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-91888714]:first-child{margin-left:0}.col-offset-l-5[data-v-91888714]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-91888714]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-91888714]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-91888714]:first-child{margin-left:0}.col-offset-l-6[data-v-91888714]{margin-left:52%}.col-no-margin-l-6[data-v-91888714]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-91888714]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-91888714]:first-child{margin-left:0}.col-offset-l-7[data-v-91888714]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-91888714]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-91888714]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-91888714]:first-child{margin-left:0}.col-offset-l-8[data-v-91888714]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-91888714]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-91888714]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-91888714]:first-child{margin-left:0}.col-offset-l-9[data-v-91888714]{margin-left:78%}.col-no-margin-l-9[data-v-91888714]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-91888714]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-91888714]:first-child{margin-left:0}.col-offset-l-10[data-v-91888714]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-91888714]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-91888714]:first-child{margin-left:0}.col-offset-l-11[data-v-91888714]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-91888714]:first-child{margin-left:0}.col-no-margin-l-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-91888714]{display:none!important}.l-visible[data-v-91888714]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-91888714]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-1[data-v-91888714]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-91888714]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-91888714]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-2[data-v-91888714]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-91888714]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-91888714]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-3[data-v-91888714]{margin-left:26%}.col-no-margin-xl-3[data-v-91888714]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-91888714]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-4[data-v-91888714]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-91888714]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-91888714]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-5[data-v-91888714]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-91888714]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-91888714]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-6[data-v-91888714]{margin-left:52%}.col-no-margin-xl-6[data-v-91888714]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-91888714]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-7[data-v-91888714]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-91888714]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-91888714]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-8[data-v-91888714]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-91888714]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-91888714]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-9[data-v-91888714]{margin-left:78%}.col-no-margin-xl-9[data-v-91888714]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-91888714]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-10[data-v-91888714]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-91888714]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-91888714]:first-child{margin-left:0}.col-offset-xl-11[data-v-91888714]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-91888714]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-91888714]{display:none!important}.xl-visible[data-v-91888714]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-91888714]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-1[data-v-91888714]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-91888714]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-91888714]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-2[data-v-91888714]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-91888714]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-91888714]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-3[data-v-91888714]{margin-left:26%}.col-no-margin-xxl-3[data-v-91888714]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-91888714]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-4[data-v-91888714]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-91888714]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-91888714]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-5[data-v-91888714]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-91888714]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-91888714]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-6[data-v-91888714]{margin-left:52%}.col-no-margin-xxl-6[data-v-91888714]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-91888714]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-7[data-v-91888714]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-91888714]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-91888714]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-8[data-v-91888714]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-91888714]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-91888714]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-9[data-v-91888714]{margin-left:78%}.col-no-margin-xxl-9[data-v-91888714]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-91888714]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-10[data-v-91888714]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-91888714]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-91888714]:first-child{margin-left:0}.col-offset-xxl-11[data-v-91888714]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-91888714]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-91888714]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-91888714]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-91888714]{display:none!important}.xxl-visible[data-v-91888714]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-91888714]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-91888714]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-91888714]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-91888714]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-91888714]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-91888714]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-91888714]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-91888714]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-91888714]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-91888714]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-91888714]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-91888714]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-91888714]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-91888714]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-91888714]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-91888714]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-91888714]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-91888714]{display:none!important}}.vertical-center[data-v-91888714]{display:flex;align-items:center}.horizontal-center[data-v-91888714]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-91888714]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-91888714]{display:none!important}.no-content[data-v-91888714]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-91888714]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-91888714]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-91888714]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-91888714]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-91888714]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-91888714]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-91888714],.btn[data-v-91888714],button[data-v-91888714]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-91888714],.btn-default[type=submit][data-v-91888714],.btn.btn-primary[data-v-91888714],.btn[type=submit][data-v-91888714],button.btn-primary[data-v-91888714],button[type=submit][data-v-91888714]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-91888714],.btn-default .icon[data-v-91888714],button .icon[data-v-91888714]{margin-right:.5em}input[type=password][data-v-91888714],input[type=text][data-v-91888714]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-91888714]:focus,input[type=text][data-v-91888714]:focus{border:1px solid #35b870}button[data-v-91888714],input[data-v-91888714]{outline:none}input[type=text][data-v-91888714]:hover,textarea[data-v-91888714]:hover{border:1px solid #9cdfb0}ul[data-v-91888714]{margin:0;padding:0;list-style:none}a[data-v-91888714]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-91888714]:hover{color:#35b870}[data-v-91888714]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-91888714]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-91888714]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-91888714]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-91888714]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-91888714] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-91888714] .nav .path{cursor:pointer}.browser[data-v-91888714] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-91888714] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-91888714]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-91888714],input[type=number][data-v-91888714],input[type=password][data-v-91888714],input[type=search][data-v-91888714],input[type=text][data-v-91888714],input[type=time][data-v-91888714]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-91888714]:hover,input[type=number][data-v-91888714]:hover,input[type=password][data-v-91888714]:hover,input[type=search][data-v-91888714]:hover,input[type=text][data-v-91888714]:hover,input[type=time][data-v-91888714]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-91888714]:focus,input[type=number][data-v-91888714]:focus,input[type=password][data-v-91888714]:focus,input[type=search][data-v-91888714]:focus,input[type=text][data-v-91888714]:focus,input[type=time][data-v-91888714]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-91888714],input[type=number].with-icon[data-v-91888714],input[type=password].with-icon[data-v-91888714],input[type=search].with-icon[data-v-91888714],input[type=text].with-icon[data-v-91888714],input[type=time].with-icon[data-v-91888714]{padding-left:.3em}input[type=search][data-v-91888714],input[type=text][data-v-91888714]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-91888714]{animation-fill-mode:both;animation-name:fadeIn-91888714;-webkit-animation-name:fadeIn-91888714}.fade-in[data-v-91888714],.fade-out[data-v-91888714]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-91888714]{animation-fill-mode:both;animation-name:fadeOut-91888714;-webkit-animation-name:fadeOut-91888714}@keyframes fadeIn-91888714{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-91888714{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-91888714]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-91888714]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-91888714]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-91888714]{color:#d21}.media-info[data-v-91888714]{width:100%}.row[data-v-91888714]{display:flex;min-height:3em;padding:.5em 1em}@media screen and (max-width:calc(769px - 1px)){.row[data-v-91888714]{flex-direction:column}}@media screen and (min-width:769px){.row[data-v-91888714]{align-items:center}}.row[data-v-91888714]:not(:last-child){border-bottom:1px solid #ddd}.row[data-v-91888714]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);border-radius:.5em}.row .side[data-v-91888714]{align-items:center;display:inline-flex}.row .side.url[data-v-91888714]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media screen and (max-width:calc(769px - 1px)){.row .side[data-v-91888714]{display:flex}.row .side.left[data-v-91888714]{font-weight:700}.row .side.right[data-v-91888714]{justify-content:left}}@media screen and (min-width:769px){.row .side[data-v-91888714]{display:inline-flex}.row .side.left[data-v-91888714]{width:22%;margin-right:3%}.row .side.right[data-v-91888714]{width:75%;justify-content:right}}.header[data-v-91888714]{width:100%;display:flex;flex-direction:column;position:relative}@media screen and (min-width:1024px){.header .image-container .image-container[data-v-91888714]{width:420px}}.header .title[data-v-91888714]{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-91888714]{flex:1;padding-left:1em}}.header[data-v-91888714]:hover{background:initial}.col-1[data-v-19442018]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-19442018]:first-child{margin-left:0}.col-no-margin-1[data-v-19442018]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-19442018]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-19442018]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-19442018]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-19442018]:first-child{margin-left:0}.col-no-margin-2[data-v-19442018]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-19442018]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-19442018]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-19442018]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-19442018]:first-child{margin-left:0}.col-no-margin-3[data-v-19442018]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-19442018]:first-child{margin-left:26%!important}.col-offset-3[data-v-19442018]:not(first-child){margin-left:30%!important}.col-4[data-v-19442018]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-19442018]:first-child{margin-left:0}.col-no-margin-4[data-v-19442018]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-19442018]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-19442018]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-19442018]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-19442018]:first-child{margin-left:0}.col-no-margin-5[data-v-19442018]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-19442018]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-19442018]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-19442018]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-19442018]:first-child{margin-left:0}.col-no-margin-6[data-v-19442018]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-19442018]:first-child{margin-left:52%!important}.col-offset-6[data-v-19442018]:not(first-child){margin-left:56%!important}.col-7[data-v-19442018]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-19442018]:first-child{margin-left:0}.col-no-margin-7[data-v-19442018]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-19442018]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-19442018]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-19442018]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-19442018]:first-child{margin-left:0}.col-no-margin-8[data-v-19442018]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-19442018]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-19442018]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-19442018]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-19442018]:first-child{margin-left:0}.col-no-margin-9[data-v-19442018]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-19442018]:first-child{margin-left:78%!important}.col-offset-9[data-v-19442018]:not(first-child){margin-left:82%!important}.col-10[data-v-19442018]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-19442018]:first-child{margin-left:0}.col-no-margin-10[data-v-19442018]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-19442018]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-19442018]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-19442018]:first-child{margin-left:0}.col-no-margin-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-19442018]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-19442018]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-19442018]:first-child{margin-left:0}.col-no-margin-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-19442018]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-19442018]:first-child{margin-left:0}.col-offset-s-1[data-v-19442018]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-19442018]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-19442018]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-19442018]:first-child{margin-left:0}.col-offset-s-2[data-v-19442018]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-19442018]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-19442018]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-19442018]:first-child{margin-left:0}.col-offset-s-3[data-v-19442018]{margin-left:26%}.col-no-margin-s-3[data-v-19442018]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-19442018]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-19442018]:first-child{margin-left:0}.col-offset-s-4[data-v-19442018]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-19442018]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-19442018]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-19442018]:first-child{margin-left:0}.col-offset-s-5[data-v-19442018]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-19442018]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-19442018]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-19442018]:first-child{margin-left:0}.col-offset-s-6[data-v-19442018]{margin-left:52%}.col-no-margin-s-6[data-v-19442018]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-19442018]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-19442018]:first-child{margin-left:0}.col-offset-s-7[data-v-19442018]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-19442018]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-19442018]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-19442018]:first-child{margin-left:0}.col-offset-s-8[data-v-19442018]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-19442018]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-19442018]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-19442018]:first-child{margin-left:0}.col-offset-s-9[data-v-19442018]{margin-left:78%}.col-no-margin-s-9[data-v-19442018]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-19442018]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-19442018]:first-child{margin-left:0}.col-offset-s-10[data-v-19442018]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-19442018]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-19442018]:first-child{margin-left:0}.col-offset-s-11[data-v-19442018]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-19442018]:first-child{margin-left:0}.col-no-margin-s-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-19442018]{display:none!important}.s-visible[data-v-19442018]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-19442018]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-19442018]:first-child{margin-left:0}.col-offset-m-1[data-v-19442018]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-19442018]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-19442018]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-19442018]:first-child{margin-left:0}.col-offset-m-2[data-v-19442018]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-19442018]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-19442018]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-19442018]:first-child{margin-left:0}.col-offset-m-3[data-v-19442018]{margin-left:26%}.col-no-margin-m-3[data-v-19442018]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-19442018]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-19442018]:first-child{margin-left:0}.col-offset-m-4[data-v-19442018]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-19442018]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-19442018]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-19442018]:first-child{margin-left:0}.col-offset-m-5[data-v-19442018]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-19442018]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-19442018]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-19442018]:first-child{margin-left:0}.col-offset-m-6[data-v-19442018]{margin-left:52%}.col-no-margin-m-6[data-v-19442018]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-19442018]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-19442018]:first-child{margin-left:0}.col-offset-m-7[data-v-19442018]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-19442018]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-19442018]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-19442018]:first-child{margin-left:0}.col-offset-m-8[data-v-19442018]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-19442018]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-19442018]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-19442018]:first-child{margin-left:0}.col-offset-m-9[data-v-19442018]{margin-left:78%}.col-no-margin-m-9[data-v-19442018]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-19442018]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-19442018]:first-child{margin-left:0}.col-offset-m-10[data-v-19442018]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-19442018]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-19442018]:first-child{margin-left:0}.col-offset-m-11[data-v-19442018]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-19442018]:first-child{margin-left:0}.col-no-margin-m-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-19442018]{display:none!important}.m-visible[data-v-19442018]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-19442018]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-19442018]:first-child{margin-left:0}.col-offset-l-1[data-v-19442018]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-19442018]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-19442018]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-19442018]:first-child{margin-left:0}.col-offset-l-2[data-v-19442018]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-19442018]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-19442018]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-19442018]:first-child{margin-left:0}.col-offset-l-3[data-v-19442018]{margin-left:26%}.col-no-margin-l-3[data-v-19442018]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-19442018]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-19442018]:first-child{margin-left:0}.col-offset-l-4[data-v-19442018]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-19442018]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-19442018]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-19442018]:first-child{margin-left:0}.col-offset-l-5[data-v-19442018]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-19442018]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-19442018]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-19442018]:first-child{margin-left:0}.col-offset-l-6[data-v-19442018]{margin-left:52%}.col-no-margin-l-6[data-v-19442018]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-19442018]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-19442018]:first-child{margin-left:0}.col-offset-l-7[data-v-19442018]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-19442018]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-19442018]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-19442018]:first-child{margin-left:0}.col-offset-l-8[data-v-19442018]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-19442018]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-19442018]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-19442018]:first-child{margin-left:0}.col-offset-l-9[data-v-19442018]{margin-left:78%}.col-no-margin-l-9[data-v-19442018]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-19442018]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-19442018]:first-child{margin-left:0}.col-offset-l-10[data-v-19442018]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-19442018]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-19442018]:first-child{margin-left:0}.col-offset-l-11[data-v-19442018]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-19442018]:first-child{margin-left:0}.col-no-margin-l-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-19442018]{display:none!important}.l-visible[data-v-19442018]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-19442018]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-1[data-v-19442018]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-19442018]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-19442018]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-2[data-v-19442018]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-19442018]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-19442018]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-3[data-v-19442018]{margin-left:26%}.col-no-margin-xl-3[data-v-19442018]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-19442018]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-4[data-v-19442018]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-19442018]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-19442018]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-5[data-v-19442018]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-19442018]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-19442018]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-6[data-v-19442018]{margin-left:52%}.col-no-margin-xl-6[data-v-19442018]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-19442018]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-7[data-v-19442018]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-19442018]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-19442018]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-8[data-v-19442018]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-19442018]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-19442018]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-9[data-v-19442018]{margin-left:78%}.col-no-margin-xl-9[data-v-19442018]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-19442018]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-10[data-v-19442018]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-19442018]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-19442018]:first-child{margin-left:0}.col-offset-xl-11[data-v-19442018]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-19442018]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-19442018]{display:none!important}.xl-visible[data-v-19442018]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-19442018]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-1[data-v-19442018]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-19442018]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-19442018]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-2[data-v-19442018]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-19442018]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-19442018]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-3[data-v-19442018]{margin-left:26%}.col-no-margin-xxl-3[data-v-19442018]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-19442018]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-4[data-v-19442018]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-19442018]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-19442018]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-5[data-v-19442018]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-19442018]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-19442018]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-6[data-v-19442018]{margin-left:52%}.col-no-margin-xxl-6[data-v-19442018]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-19442018]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-7[data-v-19442018]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-19442018]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-19442018]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-8[data-v-19442018]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-19442018]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-19442018]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-9[data-v-19442018]{margin-left:78%}.col-no-margin-xxl-9[data-v-19442018]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-19442018]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-10[data-v-19442018]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-19442018]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-19442018]:first-child{margin-left:0}.col-offset-xxl-11[data-v-19442018]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-19442018]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-19442018]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-19442018]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-19442018]{display:none!important}.xxl-visible[data-v-19442018]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-19442018]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-19442018]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-19442018]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-19442018]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-19442018]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-19442018]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-19442018]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-19442018]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-19442018]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-19442018]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-19442018]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-19442018]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-19442018]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-19442018]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-19442018]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-19442018]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-19442018]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-19442018]{display:none!important}}.vertical-center[data-v-19442018]{display:flex;align-items:center}.horizontal-center[data-v-19442018]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-19442018]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-19442018]{display:none!important}.no-content[data-v-19442018]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-19442018]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-19442018]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-19442018]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-19442018]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-19442018]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-19442018]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-19442018],.btn[data-v-19442018],button[data-v-19442018]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-19442018],.btn-default[type=submit][data-v-19442018],.btn.btn-primary[data-v-19442018],.btn[type=submit][data-v-19442018],button.btn-primary[data-v-19442018],button[type=submit][data-v-19442018]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-19442018],.btn-default .icon[data-v-19442018],button .icon[data-v-19442018]{margin-right:.5em}input[type=password][data-v-19442018],input[type=text][data-v-19442018]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-19442018]:focus,input[type=text][data-v-19442018]:focus{border:1px solid #35b870}button[data-v-19442018],input[data-v-19442018]{outline:none}input[type=text][data-v-19442018]:hover,textarea[data-v-19442018]:hover{border:1px solid #9cdfb0}ul[data-v-19442018]{margin:0;padding:0;list-style:none}a[data-v-19442018]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-19442018]:hover{color:#35b870}[data-v-19442018]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-19442018]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-19442018]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-19442018]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-19442018]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-19442018] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-19442018] .nav .path{cursor:pointer}.browser[data-v-19442018] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-19442018] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-19442018]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-19442018],input[type=number][data-v-19442018],input[type=password][data-v-19442018],input[type=search][data-v-19442018],input[type=text][data-v-19442018],input[type=time][data-v-19442018]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-19442018]:hover,input[type=number][data-v-19442018]:hover,input[type=password][data-v-19442018]:hover,input[type=search][data-v-19442018]:hover,input[type=text][data-v-19442018]:hover,input[type=time][data-v-19442018]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-19442018]:focus,input[type=number][data-v-19442018]:focus,input[type=password][data-v-19442018]:focus,input[type=search][data-v-19442018]:focus,input[type=text][data-v-19442018]:focus,input[type=time][data-v-19442018]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-19442018],input[type=number].with-icon[data-v-19442018],input[type=password].with-icon[data-v-19442018],input[type=search].with-icon[data-v-19442018],input[type=text].with-icon[data-v-19442018],input[type=time].with-icon[data-v-19442018]{padding-left:.3em}input[type=search][data-v-19442018],input[type=text][data-v-19442018]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-19442018]{animation-fill-mode:both;animation-name:fadeIn-19442018;-webkit-animation-name:fadeIn-19442018}.fade-in[data-v-19442018],.fade-out[data-v-19442018]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-19442018]{animation-fill-mode:both;animation-name:fadeOut-19442018;-webkit-animation-name:fadeOut-19442018}@keyframes fadeIn-19442018{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-19442018{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-19442018]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-19442018]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-19442018]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-19442018]{color:#d21}.media-item[data-v-19442018]{display:flex;flex-direction:column;align-items:center;justify-content:space-between;cursor:auto!important;margin-bottom:5px;border:1px solid transparent;border-bottom:1px solid transparent!important}.media-item.selected[data-v-19442018]{box-shadow:0 3px 2px -1px silver;background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.media-item[data-v-19442018]:hover{background:none!important;box-shadow:0 0 3px 3px silver;border-radius:.5em}.media-item .thumbnail[data-v-19442018]{max-width:100%}.media-item .body[data-v-19442018]{width:100%;display:flex;flex-direction:column;align-items:center;flex:1}.media-item .body .row[data-v-19442018]{width:100%;display:flex;flex-direction:row;align-items:center}.media-item .title[data-v-19442018]{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-19442018]:hover{text-decoration:underline}.media-item .side[data-v-19442018]{display:inline-flex;align-items:center}.media-item .side.left[data-v-19442018]{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-19442018]{align-items:flex-end;margin-right:.5em}.media-item .side[data-v-19442018] .dropdown-container .item{flex-direction:row;box-shadow:none;cursor:pointer!important}.media-item .side[data-v-19442018] .dropdown-container .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)!important}.media-item .side[data-v-19442018] .dropdown-container button{border:0;padding:0;background:none;opacity:.7}.media-item .side[data-v-19442018] .dropdown-container button:hover{color:#38cf80}.media-item .subtitle[data-v-19442018]{font-size:.9em;color:#23513a;display:flex;align-items:center;margin-top:.5em;flex:1}.media-item .subtitle .channel[data-v-19442018]{display:flex;align-items:center}.media-item .subtitle .channel .channel-name[data-v-19442018]{display:inline-flex}.media-item .channel-image[data-v-19442018]{width:2em;height:2em;border-radius:50%;margin-right:.5em}.media-item .creation-date[data-v-19442018]{font-size:.85em;color:#23513a;flex:1}.col-1[data-v-7147de76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-1[data-v-7147de76]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7147de76]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7147de76]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7147de76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-2[data-v-7147de76]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7147de76]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7147de76]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7147de76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-3[data-v-7147de76]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7147de76]:first-child{margin-left:26%!important}.col-offset-3[data-v-7147de76]:not(first-child){margin-left:30%!important}.col-4[data-v-7147de76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-4[data-v-7147de76]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7147de76]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7147de76]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7147de76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-5[data-v-7147de76]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7147de76]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7147de76]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7147de76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-6[data-v-7147de76]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7147de76]:first-child{margin-left:52%!important}.col-offset-6[data-v-7147de76]:not(first-child){margin-left:56%!important}.col-7[data-v-7147de76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-7[data-v-7147de76]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7147de76]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7147de76]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7147de76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-8[data-v-7147de76]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7147de76]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7147de76]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7147de76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-9[data-v-7147de76]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7147de76]:first-child{margin-left:78%!important}.col-offset-9[data-v-7147de76]:not(first-child){margin-left:82%!important}.col-10[data-v-7147de76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-10[data-v-7147de76]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7147de76]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7147de76]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7147de76]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7147de76]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7147de76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-1[data-v-7147de76]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7147de76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7147de76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-2[data-v-7147de76]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7147de76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7147de76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-3[data-v-7147de76]{margin-left:26%}.col-no-margin-s-3[data-v-7147de76]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7147de76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-4[data-v-7147de76]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7147de76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7147de76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-5[data-v-7147de76]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7147de76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7147de76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-6[data-v-7147de76]{margin-left:52%}.col-no-margin-s-6[data-v-7147de76]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7147de76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-7[data-v-7147de76]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7147de76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7147de76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-8[data-v-7147de76]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7147de76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7147de76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-9[data-v-7147de76]{margin-left:78%}.col-no-margin-s-9[data-v-7147de76]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7147de76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-10[data-v-7147de76]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7147de76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7147de76]:first-child{margin-left:0}.col-offset-s-11[data-v-7147de76]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7147de76]{display:none!important}.s-visible[data-v-7147de76]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7147de76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-1[data-v-7147de76]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7147de76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7147de76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-2[data-v-7147de76]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7147de76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7147de76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-3[data-v-7147de76]{margin-left:26%}.col-no-margin-m-3[data-v-7147de76]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7147de76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-4[data-v-7147de76]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7147de76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7147de76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-5[data-v-7147de76]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7147de76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7147de76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-6[data-v-7147de76]{margin-left:52%}.col-no-margin-m-6[data-v-7147de76]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7147de76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-7[data-v-7147de76]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7147de76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7147de76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-8[data-v-7147de76]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7147de76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7147de76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-9[data-v-7147de76]{margin-left:78%}.col-no-margin-m-9[data-v-7147de76]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7147de76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-10[data-v-7147de76]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7147de76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7147de76]:first-child{margin-left:0}.col-offset-m-11[data-v-7147de76]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7147de76]{display:none!important}.m-visible[data-v-7147de76]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7147de76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-1[data-v-7147de76]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7147de76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7147de76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-2[data-v-7147de76]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7147de76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7147de76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-3[data-v-7147de76]{margin-left:26%}.col-no-margin-l-3[data-v-7147de76]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7147de76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-4[data-v-7147de76]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7147de76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7147de76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-5[data-v-7147de76]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7147de76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7147de76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-6[data-v-7147de76]{margin-left:52%}.col-no-margin-l-6[data-v-7147de76]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7147de76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-7[data-v-7147de76]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7147de76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7147de76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-8[data-v-7147de76]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7147de76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7147de76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-9[data-v-7147de76]{margin-left:78%}.col-no-margin-l-9[data-v-7147de76]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7147de76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-10[data-v-7147de76]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7147de76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7147de76]:first-child{margin-left:0}.col-offset-l-11[data-v-7147de76]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7147de76]{display:none!important}.l-visible[data-v-7147de76]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7147de76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-1[data-v-7147de76]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7147de76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7147de76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-2[data-v-7147de76]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7147de76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7147de76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-3[data-v-7147de76]{margin-left:26%}.col-no-margin-xl-3[data-v-7147de76]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7147de76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-4[data-v-7147de76]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7147de76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7147de76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-5[data-v-7147de76]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7147de76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7147de76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-6[data-v-7147de76]{margin-left:52%}.col-no-margin-xl-6[data-v-7147de76]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7147de76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-7[data-v-7147de76]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7147de76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7147de76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-8[data-v-7147de76]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7147de76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7147de76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-9[data-v-7147de76]{margin-left:78%}.col-no-margin-xl-9[data-v-7147de76]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7147de76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-10[data-v-7147de76]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7147de76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7147de76]:first-child{margin-left:0}.col-offset-xl-11[data-v-7147de76]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7147de76]{display:none!important}.xl-visible[data-v-7147de76]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7147de76]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7147de76]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7147de76]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7147de76]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7147de76]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7147de76]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7147de76]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7147de76]{margin-left:26%}.col-no-margin-xxl-3[data-v-7147de76]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7147de76]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7147de76]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7147de76]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7147de76]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7147de76]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7147de76]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7147de76]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7147de76]{margin-left:52%}.col-no-margin-xxl-6[data-v-7147de76]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7147de76]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7147de76]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7147de76]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7147de76]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7147de76]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7147de76]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7147de76]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7147de76]{margin-left:78%}.col-no-margin-xxl-9[data-v-7147de76]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7147de76]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7147de76]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7147de76]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7147de76]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7147de76]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7147de76]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7147de76]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7147de76]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7147de76]{display:none!important}.xxl-visible[data-v-7147de76]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7147de76]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7147de76]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7147de76]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7147de76]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7147de76]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7147de76]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7147de76]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7147de76]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7147de76]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7147de76]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7147de76]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7147de76]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7147de76]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7147de76]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7147de76]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7147de76]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7147de76]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7147de76]{display:none!important}}.vertical-center[data-v-7147de76]{display:flex;align-items:center}.horizontal-center[data-v-7147de76]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7147de76]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7147de76]{display:none!important}.no-content[data-v-7147de76]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7147de76]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7147de76]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7147de76]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7147de76]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7147de76]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7147de76]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7147de76],.btn[data-v-7147de76],button[data-v-7147de76]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7147de76],.btn-default[type=submit][data-v-7147de76],.btn.btn-primary[data-v-7147de76],.btn[type=submit][data-v-7147de76],button.btn-primary[data-v-7147de76],button[type=submit][data-v-7147de76]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7147de76],.btn-default .icon[data-v-7147de76],button .icon[data-v-7147de76]{margin-right:.5em}input[type=password][data-v-7147de76],input[type=text][data-v-7147de76]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7147de76]:focus,input[type=text][data-v-7147de76]:focus{border:1px solid #35b870}button[data-v-7147de76],input[data-v-7147de76]{outline:none}input[type=text][data-v-7147de76]:hover,textarea[data-v-7147de76]:hover{border:1px solid #9cdfb0}ul[data-v-7147de76]{margin:0;padding:0;list-style:none}a[data-v-7147de76]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7147de76]:hover{color:#35b870}[data-v-7147de76]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7147de76]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7147de76]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7147de76]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7147de76]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7147de76] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7147de76] .nav .path{cursor:pointer}.browser[data-v-7147de76] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7147de76] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7147de76]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7147de76],input[type=number][data-v-7147de76],input[type=password][data-v-7147de76],input[type=search][data-v-7147de76],input[type=text][data-v-7147de76],input[type=time][data-v-7147de76]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7147de76]:hover,input[type=number][data-v-7147de76]:hover,input[type=password][data-v-7147de76]:hover,input[type=search][data-v-7147de76]:hover,input[type=text][data-v-7147de76]:hover,input[type=time][data-v-7147de76]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7147de76]:focus,input[type=number][data-v-7147de76]:focus,input[type=password][data-v-7147de76]:focus,input[type=search][data-v-7147de76]:focus,input[type=text][data-v-7147de76]:focus,input[type=time][data-v-7147de76]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7147de76],input[type=number].with-icon[data-v-7147de76],input[type=password].with-icon[data-v-7147de76],input[type=search].with-icon[data-v-7147de76],input[type=text].with-icon[data-v-7147de76],input[type=time].with-icon[data-v-7147de76]{padding-left:.3em}input[type=search][data-v-7147de76],input[type=text][data-v-7147de76]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7147de76]{animation-fill-mode:both;animation-name:fadeIn-7147de76;-webkit-animation-name:fadeIn-7147de76}.fade-in[data-v-7147de76],.fade-out[data-v-7147de76]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7147de76]{animation-fill-mode:both;animation-name:fadeOut-7147de76;-webkit-animation-name:fadeOut-7147de76}@keyframes fadeIn-7147de76{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7147de76{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-7147de76]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7147de76]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7147de76]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-7147de76]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-7147de76]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-7147de76]{background:#8fefb7}.item.selected[data-v-7147de76]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-7147de76]{border-top:2px solid #35b870}.item[data-v-7147de76]::-moz-selection{background:transparent!important}.item[data-v-7147de76]::selection{background:transparent!important}.item .title[data-v-7147de76]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-7147de76]{display:inline-flex;align-items:center}.item .side.right[data-v-7147de76]{display:inline-flex;justify-content:right}.item .actions[data-v-7147de76],.item .duration[data-v-7147de76]{display:inline-flex;align-items:center}.item .duration[data-v-7147de76]{font-size:.85em;opacity:.7}.item .actions[data-v-7147de76] button{opacity:.65}.item .icon[data-v-7147de76]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-7147de76] .dropdown-container .item{box-shadow:none}.item[data-v-7147de76] .dropdown-container button{background:none;border:none}.item[data-v-7147de76] .dropdown-container button:hover{color:#35b870}[data-v-7147de76] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-7147de76] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-7147de76] .table-row{flex-direction:row;align-items:center}}[data-v-7147de76] .table-row .title,[data-v-7147de76] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-7147de76] .table-row .title,[data-v-7147de76] .table-row .value{display:inline-flex}}[data-v-7147de76] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-7147de76] .table-row .title{width:30%}[data-v-7147de76] .table-row .value{justify-content:right}}.fa-youtube[data-v-7147de76]{color:#d21}.media-results[data-v-7147de76]{width:100%;height:100%;background:#fff}.media-results .grid[data-v-7147de76]{height:100%;overflow:auto}.media-results .info-container[data-v-7147de76]{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}}.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}}.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-877bb22c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-877bb22c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-877bb22c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-877bb22c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-877bb22c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-877bb22c]:first-child{margin-left:26%!important}.col-offset-3[data-v-877bb22c]:not(first-child){margin-left:30%!important}.col-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-877bb22c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-877bb22c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-877bb22c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-877bb22c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-877bb22c]:first-child{margin-left:52%!important}.col-offset-6[data-v-877bb22c]:not(first-child){margin-left:56%!important}.col-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-877bb22c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-877bb22c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-877bb22c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-877bb22c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-877bb22c]:first-child{margin-left:78%!important}.col-offset-9[data-v-877bb22c]:not(first-child){margin-left:82%!important}.col-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-877bb22c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-877bb22c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-877bb22c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-877bb22c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-1[data-v-877bb22c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-2[data-v-877bb22c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-3[data-v-877bb22c]{margin-left:26%}.col-no-margin-s-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-4[data-v-877bb22c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-5[data-v-877bb22c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-6[data-v-877bb22c]{margin-left:52%}.col-no-margin-s-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-7[data-v-877bb22c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-8[data-v-877bb22c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-9[data-v-877bb22c]{margin-left:78%}.col-no-margin-s-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-10[data-v-877bb22c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-877bb22c]:first-child{margin-left:0}.col-offset-s-11[data-v-877bb22c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-877bb22c]{display:none!important}.s-visible[data-v-877bb22c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-1[data-v-877bb22c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-2[data-v-877bb22c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-3[data-v-877bb22c]{margin-left:26%}.col-no-margin-m-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-4[data-v-877bb22c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-5[data-v-877bb22c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-6[data-v-877bb22c]{margin-left:52%}.col-no-margin-m-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-7[data-v-877bb22c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-8[data-v-877bb22c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-9[data-v-877bb22c]{margin-left:78%}.col-no-margin-m-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-10[data-v-877bb22c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-877bb22c]:first-child{margin-left:0}.col-offset-m-11[data-v-877bb22c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-877bb22c]{display:none!important}.m-visible[data-v-877bb22c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-1[data-v-877bb22c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-2[data-v-877bb22c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-3[data-v-877bb22c]{margin-left:26%}.col-no-margin-l-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-4[data-v-877bb22c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-5[data-v-877bb22c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-6[data-v-877bb22c]{margin-left:52%}.col-no-margin-l-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-7[data-v-877bb22c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-8[data-v-877bb22c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-9[data-v-877bb22c]{margin-left:78%}.col-no-margin-l-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-10[data-v-877bb22c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-877bb22c]:first-child{margin-left:0}.col-offset-l-11[data-v-877bb22c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-877bb22c]{display:none!important}.l-visible[data-v-877bb22c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-1[data-v-877bb22c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-2[data-v-877bb22c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-3[data-v-877bb22c]{margin-left:26%}.col-no-margin-xl-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-4[data-v-877bb22c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-5[data-v-877bb22c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-6[data-v-877bb22c]{margin-left:52%}.col-no-margin-xl-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-7[data-v-877bb22c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-8[data-v-877bb22c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-9[data-v-877bb22c]{margin-left:78%}.col-no-margin-xl-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-10[data-v-877bb22c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xl-11[data-v-877bb22c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-877bb22c]{display:none!important}.xl-visible[data-v-877bb22c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-877bb22c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-877bb22c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-877bb22c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-877bb22c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-877bb22c]{margin-left:26%}.col-no-margin-xxl-3[data-v-877bb22c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-877bb22c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-877bb22c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-877bb22c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-877bb22c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-877bb22c]{margin-left:52%}.col-no-margin-xxl-6[data-v-877bb22c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-877bb22c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-877bb22c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-877bb22c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-877bb22c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-877bb22c]{margin-left:78%}.col-no-margin-xxl-9[data-v-877bb22c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-877bb22c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-877bb22c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-877bb22c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-877bb22c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-877bb22c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-877bb22c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-877bb22c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-877bb22c]{display:none!important}.xxl-visible[data-v-877bb22c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-877bb22c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-877bb22c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-877bb22c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-877bb22c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-877bb22c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-877bb22c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-877bb22c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-877bb22c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-877bb22c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-877bb22c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-877bb22c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-877bb22c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-877bb22c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-877bb22c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-877bb22c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-877bb22c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-877bb22c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-877bb22c]{display:none!important}}.vertical-center[data-v-877bb22c]{display:flex;align-items:center}.horizontal-center[data-v-877bb22c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-877bb22c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-877bb22c]{display:none!important}.no-content[data-v-877bb22c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-877bb22c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-877bb22c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-877bb22c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-877bb22c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-877bb22c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-877bb22c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-877bb22c],.btn[data-v-877bb22c],button[data-v-877bb22c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-877bb22c],.btn-default[type=submit][data-v-877bb22c],.btn.btn-primary[data-v-877bb22c],.btn[type=submit][data-v-877bb22c],button.btn-primary[data-v-877bb22c],button[type=submit][data-v-877bb22c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-877bb22c],.btn-default .icon[data-v-877bb22c],button .icon[data-v-877bb22c]{margin-right:.5em}input[type=password][data-v-877bb22c],input[type=text][data-v-877bb22c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-877bb22c]:focus,input[type=text][data-v-877bb22c]:focus{border:1px solid #35b870}button[data-v-877bb22c],input[data-v-877bb22c]{outline:none}input[type=text][data-v-877bb22c]:hover,textarea[data-v-877bb22c]:hover{border:1px solid #9cdfb0}ul[data-v-877bb22c]{margin:0;padding:0;list-style:none}a[data-v-877bb22c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-877bb22c]:hover{color:#35b870}[data-v-877bb22c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-877bb22c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-877bb22c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-877bb22c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-877bb22c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-877bb22c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-877bb22c] .nav .path{cursor:pointer}.browser[data-v-877bb22c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-877bb22c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-877bb22c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-877bb22c],input[type=number][data-v-877bb22c],input[type=password][data-v-877bb22c],input[type=search][data-v-877bb22c],input[type=text][data-v-877bb22c],input[type=time][data-v-877bb22c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-877bb22c]:hover,input[type=number][data-v-877bb22c]:hover,input[type=password][data-v-877bb22c]:hover,input[type=search][data-v-877bb22c]:hover,input[type=text][data-v-877bb22c]:hover,input[type=time][data-v-877bb22c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-877bb22c]:focus,input[type=number][data-v-877bb22c]:focus,input[type=password][data-v-877bb22c]:focus,input[type=search][data-v-877bb22c]:focus,input[type=text][data-v-877bb22c]:focus,input[type=time][data-v-877bb22c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-877bb22c],input[type=number].with-icon[data-v-877bb22c],input[type=password].with-icon[data-v-877bb22c],input[type=search].with-icon[data-v-877bb22c],input[type=text].with-icon[data-v-877bb22c],input[type=time].with-icon[data-v-877bb22c]{padding-left:.3em}input[type=search][data-v-877bb22c],input[type=text][data-v-877bb22c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-877bb22c]{animation-fill-mode:both;animation-name:fadeIn-877bb22c;-webkit-animation-name:fadeIn-877bb22c}.fade-in[data-v-877bb22c],.fade-out[data-v-877bb22c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-877bb22c]{animation-fill-mode:both;animation-name:fadeOut-877bb22c;-webkit-animation-name:fadeOut-877bb22c}@keyframes fadeIn-877bb22c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-877bb22c{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-877bb22c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-877bb22c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-877bb22c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.fa-youtube[data-v-877bb22c]{color:#d21}.media-plugin[data-v-877bb22c]{width:100%}.media-plugin main[data-v-877bb22c]{width:100%;height:100%;display:flex;flex-direction:row-reverse}.media-plugin main .view-container[data-v-877bb22c]{display:flex;flex-direction:column;flex-grow:1;overflow:auto;background:#fff}.media-plugin main .body-container[data-v-877bb22c]{height:calc(100% - 8.8em);padding-top:.1em;overflow:auto}.media-plugin main .body-container.expanded-header[data-v-877bb22c]{height:calc(100% - 11.8em)}[data-v-877bb22c] .loading{z-index:10}[data-v-877bb22c] .subtitles-container .body{padding:0!important}[data-v-877bb22c] .subtitles-container .body .item{padding:1em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/1259.28135e7d.css b/platypush/backend/http/webapp/dist/static/css/1259.28135e7d.css deleted file mode 100644 index bae9da55..00000000 --- a/platypush/backend/http/webapp/dist/static/css/1259.28135e7d.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(769px - 1px)){.tablet.from[data-v-6437b841]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-6437b841]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6437b841]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-6437b841]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6437b841]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-6437b841]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6437b841]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-6437b841]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6437b841]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-6437b841]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6437b841]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-6437b841]{display:none}}@media screen and (min-width:769px){.mobile[data-v-6437b841]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6437b841]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-6437b841]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-6437b841],input[type=password][data-v-6437b841],input[type=search][data-v-6437b841],input[type=text][data-v-6437b841]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-7667f7ba]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-7667f7ba]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7667f7ba]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-7667f7ba]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7667f7ba]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-7667f7ba]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7667f7ba]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-7667f7ba]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7667f7ba]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-7667f7ba]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7667f7ba]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-7667f7ba]{display:none}}@media screen and (min-width:769px){.mobile[data-v-7667f7ba]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7667f7ba]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-7667f7ba]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-7667f7ba],input[type=password][data-v-7667f7ba],input[type=search][data-v-7667f7ba],input[type=text][data-v-7667f7ba]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from{display:none}}@media screen and (min-width:1024px){.tablet.until{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none}}@media screen and (min-width:1024px){.tablet.only{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none}}@media screen and (min-width:1216px){.desktop.until{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none}}@media screen and (min-width:1216px){.desktop.only{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none}}@media screen and (min-width:1408px){.widescreen.until{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none}}@media screen and (min-width:1408px){.widescreen.only{display:none}}@media screen and (min-width:769px){.mobile{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none}}.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}.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:.75em}::-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}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number],input[type=password],input[type=search],input[type=text]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].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}}.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/1259.ad51b86e.css b/platypush/backend/http/webapp/dist/static/css/1259.ad51b86e.css new file mode 100644 index 00000000..b0edae11 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1259.ad51b86e.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 .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}}.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}}.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}}.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/1391.cb558276.css b/platypush/backend/http/webapp/dist/static/css/1391.8fb65128.css similarity index 75% rename from platypush/backend/http/webapp/dist/static/css/1391.cb558276.css rename to platypush/backend/http/webapp/dist/static/css/1391.8fb65128.css index 52617ea2..a22badbd 100644 --- a/platypush/backend/http/webapp/dist/static/css/1391.cb558276.css +++ b/platypush/backend/http/webapp/dist/static/css/1391.8fb65128.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(769px - 1px)){.tablet.from[data-v-ca42eb9c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-ca42eb9c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-ca42eb9c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-ca42eb9c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-ca42eb9c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-ca42eb9c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-ca42eb9c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-ca42eb9c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-ca42eb9c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-ca42eb9c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-ca42eb9c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-ca42eb9c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-ca42eb9c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-ca42eb9c]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-ca42eb9c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-ca42eb9c],input[type=password][data-v-ca42eb9c],input[type=search][data-v-ca42eb9c],input[type=text][data-v-ca42eb9c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/1420.c29cafe6.css b/platypush/backend/http/webapp/dist/static/css/1420.c29cafe6.css new file mode 100644 index 00000000..c88c41ca --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1420.c29cafe6.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 .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}}.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}}.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-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}}.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}.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}}.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)}.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-34374f87]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-1[data-v-34374f87]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-34374f87]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-34374f87]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-34374f87]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-2[data-v-34374f87]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-34374f87]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-34374f87]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-34374f87]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-3[data-v-34374f87]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-34374f87]:first-child{margin-left:26%!important}.col-offset-3[data-v-34374f87]:not(first-child){margin-left:30%!important}.col-4[data-v-34374f87]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-4[data-v-34374f87]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-34374f87]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-34374f87]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-34374f87]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-5[data-v-34374f87]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-34374f87]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-34374f87]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-34374f87]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-6[data-v-34374f87]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-34374f87]:first-child{margin-left:52%!important}.col-offset-6[data-v-34374f87]:not(first-child){margin-left:56%!important}.col-7[data-v-34374f87]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-7[data-v-34374f87]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-34374f87]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-34374f87]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-34374f87]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-8[data-v-34374f87]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-34374f87]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-34374f87]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-34374f87]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-9[data-v-34374f87]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-34374f87]:first-child{margin-left:78%!important}.col-offset-9[data-v-34374f87]:not(first-child){margin-left:82%!important}.col-10[data-v-34374f87]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-10[data-v-34374f87]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-34374f87]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-34374f87]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-34374f87]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-34374f87]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-34374f87]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-1[data-v-34374f87]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-34374f87]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-34374f87]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-2[data-v-34374f87]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-34374f87]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-34374f87]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-3[data-v-34374f87]{margin-left:26%}.col-no-margin-s-3[data-v-34374f87]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-34374f87]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-4[data-v-34374f87]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-34374f87]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-34374f87]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-5[data-v-34374f87]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-34374f87]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-34374f87]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-6[data-v-34374f87]{margin-left:52%}.col-no-margin-s-6[data-v-34374f87]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-34374f87]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-7[data-v-34374f87]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-34374f87]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-34374f87]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-8[data-v-34374f87]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-34374f87]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-34374f87]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-9[data-v-34374f87]{margin-left:78%}.col-no-margin-s-9[data-v-34374f87]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-34374f87]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-10[data-v-34374f87]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-34374f87]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-34374f87]:first-child{margin-left:0}.col-offset-s-11[data-v-34374f87]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-s-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-34374f87]{display:none!important}.s-visible[data-v-34374f87]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-34374f87]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-1[data-v-34374f87]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-34374f87]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-34374f87]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-2[data-v-34374f87]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-34374f87]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-34374f87]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-3[data-v-34374f87]{margin-left:26%}.col-no-margin-m-3[data-v-34374f87]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-34374f87]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-4[data-v-34374f87]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-34374f87]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-34374f87]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-5[data-v-34374f87]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-34374f87]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-34374f87]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-6[data-v-34374f87]{margin-left:52%}.col-no-margin-m-6[data-v-34374f87]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-34374f87]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-7[data-v-34374f87]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-34374f87]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-34374f87]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-8[data-v-34374f87]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-34374f87]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-34374f87]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-9[data-v-34374f87]{margin-left:78%}.col-no-margin-m-9[data-v-34374f87]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-34374f87]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-10[data-v-34374f87]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-34374f87]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-34374f87]:first-child{margin-left:0}.col-offset-m-11[data-v-34374f87]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-m-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-34374f87]{display:none!important}.m-visible[data-v-34374f87]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-34374f87]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-1[data-v-34374f87]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-34374f87]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-34374f87]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-2[data-v-34374f87]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-34374f87]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-34374f87]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-3[data-v-34374f87]{margin-left:26%}.col-no-margin-l-3[data-v-34374f87]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-34374f87]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-4[data-v-34374f87]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-34374f87]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-34374f87]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-5[data-v-34374f87]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-34374f87]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-34374f87]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-6[data-v-34374f87]{margin-left:52%}.col-no-margin-l-6[data-v-34374f87]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-34374f87]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-7[data-v-34374f87]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-34374f87]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-34374f87]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-8[data-v-34374f87]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-34374f87]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-34374f87]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-9[data-v-34374f87]{margin-left:78%}.col-no-margin-l-9[data-v-34374f87]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-34374f87]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-10[data-v-34374f87]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-34374f87]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-34374f87]:first-child{margin-left:0}.col-offset-l-11[data-v-34374f87]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-l-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-34374f87]{display:none!important}.l-visible[data-v-34374f87]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-34374f87]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-1[data-v-34374f87]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-34374f87]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-34374f87]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-2[data-v-34374f87]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-34374f87]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-34374f87]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-3[data-v-34374f87]{margin-left:26%}.col-no-margin-xl-3[data-v-34374f87]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-34374f87]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-4[data-v-34374f87]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-34374f87]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-34374f87]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-5[data-v-34374f87]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-34374f87]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-34374f87]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-6[data-v-34374f87]{margin-left:52%}.col-no-margin-xl-6[data-v-34374f87]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-34374f87]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-7[data-v-34374f87]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-34374f87]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-34374f87]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-8[data-v-34374f87]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-34374f87]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-34374f87]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-9[data-v-34374f87]{margin-left:78%}.col-no-margin-xl-9[data-v-34374f87]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-34374f87]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-10[data-v-34374f87]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-34374f87]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-34374f87]:first-child{margin-left:0}.col-offset-xl-11[data-v-34374f87]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-34374f87]{display:none!important}.xl-visible[data-v-34374f87]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-34374f87]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-1[data-v-34374f87]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-34374f87]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-34374f87]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-2[data-v-34374f87]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-34374f87]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-34374f87]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-3[data-v-34374f87]{margin-left:26%}.col-no-margin-xxl-3[data-v-34374f87]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-34374f87]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-4[data-v-34374f87]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-34374f87]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-34374f87]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-5[data-v-34374f87]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-34374f87]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-34374f87]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-6[data-v-34374f87]{margin-left:52%}.col-no-margin-xxl-6[data-v-34374f87]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-34374f87]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-7[data-v-34374f87]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-34374f87]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-34374f87]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-8[data-v-34374f87]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-34374f87]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-34374f87]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-9[data-v-34374f87]{margin-left:78%}.col-no-margin-xxl-9[data-v-34374f87]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-34374f87]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-10[data-v-34374f87]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-34374f87]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-34374f87]:first-child{margin-left:0}.col-offset-xxl-11[data-v-34374f87]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-34374f87]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-34374f87]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-34374f87]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-34374f87]{display:none!important}.xxl-visible[data-v-34374f87]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-34374f87]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-34374f87]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-34374f87]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-34374f87]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-34374f87]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-34374f87]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-34374f87]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-34374f87]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-34374f87]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-34374f87]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-34374f87]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-34374f87]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-34374f87]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-34374f87]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-34374f87]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-34374f87]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-34374f87]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-34374f87]{display:none!important}}.vertical-center[data-v-34374f87]{display:flex;align-items:center}.horizontal-center[data-v-34374f87]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.controls .right-controls[data-v-34374f87],.controls .right-controls[data-v-34374f87] .extra-controls-container,.extension[data-v-34374f87] .extra-controls-container,.pull-right[data-v-34374f87]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-34374f87]{display:none!important}.no-content[data-v-34374f87]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-34374f87]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-34374f87]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-34374f87]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-34374f87]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-34374f87]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-34374f87]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-34374f87],.btn[data-v-34374f87],button[data-v-34374f87]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-34374f87],.btn-default[type=submit][data-v-34374f87],.btn.btn-primary[data-v-34374f87],.btn[type=submit][data-v-34374f87],button.btn-primary[data-v-34374f87],button[type=submit][data-v-34374f87]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-34374f87],.btn-default .icon[data-v-34374f87],button .icon[data-v-34374f87]{margin-right:.5em}input[type=password][data-v-34374f87],input[type=text][data-v-34374f87]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-34374f87]:focus,input[type=text][data-v-34374f87]:focus{border:1px solid #35b870}button[data-v-34374f87],input[data-v-34374f87]{outline:none}input[type=text][data-v-34374f87]:hover,textarea[data-v-34374f87]:hover{border:1px solid #9cdfb0}ul[data-v-34374f87]{margin:0;padding:0;list-style:none}a[data-v-34374f87]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-34374f87]:hover{color:#35b870}[data-v-34374f87]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-34374f87]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-34374f87]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-34374f87]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-34374f87]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-34374f87] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-34374f87] .nav .path{cursor:pointer}.browser[data-v-34374f87] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-34374f87] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-34374f87]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-34374f87],input[type=number][data-v-34374f87],input[type=password][data-v-34374f87],input[type=search][data-v-34374f87],input[type=text][data-v-34374f87],input[type=time][data-v-34374f87]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-34374f87]:hover,input[type=number][data-v-34374f87]:hover,input[type=password][data-v-34374f87]:hover,input[type=search][data-v-34374f87]:hover,input[type=text][data-v-34374f87]:hover,input[type=time][data-v-34374f87]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-34374f87]:focus,input[type=number][data-v-34374f87]:focus,input[type=password][data-v-34374f87]:focus,input[type=search][data-v-34374f87]:focus,input[type=text][data-v-34374f87]:focus,input[type=time][data-v-34374f87]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-34374f87],input[type=number].with-icon[data-v-34374f87],input[type=password].with-icon[data-v-34374f87],input[type=search].with-icon[data-v-34374f87],input[type=text].with-icon[data-v-34374f87],input[type=time].with-icon[data-v-34374f87]{padding-left:.3em}input[type=search][data-v-34374f87],input[type=text][data-v-34374f87]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-34374f87]{animation-fill-mode:both;animation-name:fadeIn-34374f87;-webkit-animation-name:fadeIn-34374f87}.fade-in[data-v-34374f87],.fade-out[data-v-34374f87]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-34374f87]{animation-fill-mode:both;animation-name:fadeOut-34374f87;-webkit-animation-name:fadeOut-34374f87}@keyframes fadeIn-34374f87{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-34374f87{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-34374f87]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-34374f87]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-34374f87]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}button[data-v-34374f87]{border:0;background:none}button[data-v-34374f87]:hover{border:0}button:hover .icon[data-v-34374f87]{color:#35b870}button.enabled[data-v-34374f87]{color:#32b646}.extension[data-v-34374f87]{box-shadow:0 3px 2px -1px silver;flex-direction:column;display:none;overflow:hidden;padding:.5em}@media screen and (max-width:calc(1024px - 1px)){.extension[data-v-34374f87]{display:flex}}.extension[data-v-34374f87] .extra-controls-container{flex:1}.extension[data-v-34374f87] .progress-bar-container{font-size:1.25em}.extension[data-v-34374f87] .volume-slider-container{margin:1em 0}.extension .row[data-v-34374f87]{display:flex}.extension .buttons-container[data-v-34374f87]{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-34374f87]{text-align:center}.extension .buttons-container button[data-v-34374f87]:hover{color:#35b870}.extension .buttons-container button i[data-v-34374f87]{margin:auto}.extension .buttons[data-v-34374f87]{display:flex;justify-content:center;margin:0}.extension .image-container[data-v-34374f87]{width:100%;display:flex;justify-content:center;cursor:pointer}.extension .image-container .remote-image-container[data-v-34374f87]{height:30vh}.extension .image-container .remote-image-container .image[data-v-34374f87]{height:100%}.extension .image-container .icon-container[data-v-34374f87]{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-34374f87]:hover{color:#35b870;opacity:1}.extension .image-container .icon.playing[data-v-34374f87]{animation-duration:3s;animation-name:rotate-34374f87;animation-iteration-count:infinite}@keyframes rotate-34374f87{0%{transform:rotate(0deg);opacity:1}50%{opacity:.5}to{transform:rotate(359deg);opacity:1}}.controls[data-v-34374f87]{width:100%;height:5.5em;display:flex;padding:1em .5em;overflow:hidden;align-items:center}.controls .row[data-v-34374f87]{width:100%;display:flex}.controls .track-container[data-v-34374f87]{display:flex;align-items:center;margin-left:0}@media screen and (max-width:calc(1024px - 1px)){.controls .track-container[data-v-34374f87]{flex-direction:column;text-align:center}}.controls .track-container a[data-v-34374f87]{color:initial;text-decoration:none}.controls .track-container a[data-v-34374f87]:hover{color:#35b870}.controls .track-container .artist[data-v-34374f87],.controls .track-container .title[data-v-34374f87]{overflow:hidden;text-overflow:ellipsis}.controls .track-container .artist[data-v-34374f87]{opacity:.6;letter-spacing:.04em}.controls .track-container .title[data-v-34374f87]{font-weight:400;font-size:1em;letter-spacing:.05em;margin-bottom:.25em}.controls .track-container .image[data-v-34374f87]{width:5em;max-height:100%;display:inline-flex}.controls .track-info[data-v-34374f87]{display:flex}@media screen and (max-width:calc(1024px - 1px)){.controls .track-info[data-v-34374f87]{flex-direction:column}}@media screen and (min-width:1024px){.controls .track-info[data-v-34374f87]{flex-direction:row;align-items:center}.controls .track-info .image[data-v-34374f87]{margin-right:.75em}}.controls .playback-controls .row[data-v-34374f87]{justify-content:center}.controls .playback-controls .buttons[data-v-34374f87]{margin-bottom:.5em;align-items:center}.controls .playback-controls button[data-v-34374f87]{padding:.5em;margin:0 .75em}.controls .playback-controls button .play-pause[data-v-34374f87]{color:#27ee5e;font-size:1.75em}.controls .playback-controls button .play-pause[data-v-34374f87]:hover{color:#38cf80}.controls .right-controls[data-v-34374f87]{display:flex;flex-direction:column;flex:1;align-items:flex-end}.controls .right-controls button[data-v-34374f87]{padding:.5em}.controls .seek-slider[data-v-34374f87]{width:75%}.col-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7a861c3a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7a861c3a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7a861c3a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7a861c3a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7a861c3a]:first-child{margin-left:26%!important}.col-offset-3[data-v-7a861c3a]:not(first-child){margin-left:30%!important}.col-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7a861c3a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7a861c3a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7a861c3a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7a861c3a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7a861c3a]:first-child{margin-left:52%!important}.col-offset-6[data-v-7a861c3a]:not(first-child){margin-left:56%!important}.col-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7a861c3a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7a861c3a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7a861c3a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7a861c3a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7a861c3a]:first-child{margin-left:78%!important}.col-offset-9[data-v-7a861c3a]:not(first-child){margin-left:82%!important}.col-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7a861c3a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7a861c3a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7a861c3a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7a861c3a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-1[data-v-7a861c3a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-2[data-v-7a861c3a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-3[data-v-7a861c3a]{margin-left:26%}.col-no-margin-s-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-4[data-v-7a861c3a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-5[data-v-7a861c3a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-6[data-v-7a861c3a]{margin-left:52%}.col-no-margin-s-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-7[data-v-7a861c3a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-8[data-v-7a861c3a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-9[data-v-7a861c3a]{margin-left:78%}.col-no-margin-s-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-10[data-v-7a861c3a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-s-11[data-v-7a861c3a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7a861c3a]{display:none!important}.s-visible[data-v-7a861c3a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-1[data-v-7a861c3a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-2[data-v-7a861c3a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-3[data-v-7a861c3a]{margin-left:26%}.col-no-margin-m-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-4[data-v-7a861c3a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-5[data-v-7a861c3a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-6[data-v-7a861c3a]{margin-left:52%}.col-no-margin-m-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-7[data-v-7a861c3a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-8[data-v-7a861c3a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-9[data-v-7a861c3a]{margin-left:78%}.col-no-margin-m-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-10[data-v-7a861c3a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-m-11[data-v-7a861c3a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7a861c3a]{display:none!important}.m-visible[data-v-7a861c3a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-1[data-v-7a861c3a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-2[data-v-7a861c3a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-3[data-v-7a861c3a]{margin-left:26%}.col-no-margin-l-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-4[data-v-7a861c3a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-5[data-v-7a861c3a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-6[data-v-7a861c3a]{margin-left:52%}.col-no-margin-l-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-7[data-v-7a861c3a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-8[data-v-7a861c3a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-9[data-v-7a861c3a]{margin-left:78%}.col-no-margin-l-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-10[data-v-7a861c3a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-l-11[data-v-7a861c3a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7a861c3a]{display:none!important}.l-visible[data-v-7a861c3a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-1[data-v-7a861c3a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-2[data-v-7a861c3a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-3[data-v-7a861c3a]{margin-left:26%}.col-no-margin-xl-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-4[data-v-7a861c3a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-5[data-v-7a861c3a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-6[data-v-7a861c3a]{margin-left:52%}.col-no-margin-xl-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-7[data-v-7a861c3a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-8[data-v-7a861c3a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-9[data-v-7a861c3a]{margin-left:78%}.col-no-margin-xl-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-10[data-v-7a861c3a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xl-11[data-v-7a861c3a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7a861c3a]{display:none!important}.xl-visible[data-v-7a861c3a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7a861c3a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7a861c3a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7a861c3a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7a861c3a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7a861c3a]{margin-left:26%}.col-no-margin-xxl-3[data-v-7a861c3a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7a861c3a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7a861c3a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7a861c3a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7a861c3a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7a861c3a]{margin-left:52%}.col-no-margin-xxl-6[data-v-7a861c3a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7a861c3a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7a861c3a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7a861c3a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7a861c3a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7a861c3a]{margin-left:78%}.col-no-margin-xxl-9[data-v-7a861c3a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7a861c3a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7a861c3a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7a861c3a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7a861c3a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7a861c3a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7a861c3a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7a861c3a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7a861c3a]{display:none!important}.xxl-visible[data-v-7a861c3a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7a861c3a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7a861c3a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7a861c3a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7a861c3a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7a861c3a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7a861c3a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7a861c3a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7a861c3a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7a861c3a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7a861c3a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7a861c3a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7a861c3a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7a861c3a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7a861c3a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7a861c3a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7a861c3a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7a861c3a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7a861c3a]{display:none!important}}.vertical-center[data-v-7a861c3a]{display:flex;align-items:center}.horizontal-center[data-v-7a861c3a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7a861c3a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7a861c3a]{display:none!important}.no-content[data-v-7a861c3a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7a861c3a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7a861c3a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7a861c3a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7a861c3a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7a861c3a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7a861c3a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7a861c3a],.btn[data-v-7a861c3a],button[data-v-7a861c3a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7a861c3a],.btn-default[type=submit][data-v-7a861c3a],.btn.btn-primary[data-v-7a861c3a],.btn[type=submit][data-v-7a861c3a],button.btn-primary[data-v-7a861c3a],button[type=submit][data-v-7a861c3a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7a861c3a],.btn-default .icon[data-v-7a861c3a],button .icon[data-v-7a861c3a]{margin-right:.5em}input[type=password][data-v-7a861c3a],input[type=text][data-v-7a861c3a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7a861c3a]:focus,input[type=text][data-v-7a861c3a]:focus{border:1px solid #35b870}button[data-v-7a861c3a],input[data-v-7a861c3a]{outline:none}input[type=text][data-v-7a861c3a]:hover,textarea[data-v-7a861c3a]:hover{border:1px solid #9cdfb0}ul[data-v-7a861c3a]{margin:0;padding:0;list-style:none}a[data-v-7a861c3a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7a861c3a]:hover{color:#35b870}[data-v-7a861c3a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7a861c3a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7a861c3a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7a861c3a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7a861c3a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7a861c3a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7a861c3a] .nav .path{cursor:pointer}.browser[data-v-7a861c3a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7a861c3a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7a861c3a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7a861c3a],input[type=number][data-v-7a861c3a],input[type=password][data-v-7a861c3a],input[type=search][data-v-7a861c3a],input[type=text][data-v-7a861c3a],input[type=time][data-v-7a861c3a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7a861c3a]:hover,input[type=number][data-v-7a861c3a]:hover,input[type=password][data-v-7a861c3a]:hover,input[type=search][data-v-7a861c3a]:hover,input[type=text][data-v-7a861c3a]:hover,input[type=time][data-v-7a861c3a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7a861c3a]:focus,input[type=number][data-v-7a861c3a]:focus,input[type=password][data-v-7a861c3a]:focus,input[type=search][data-v-7a861c3a]:focus,input[type=text][data-v-7a861c3a]:focus,input[type=time][data-v-7a861c3a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7a861c3a],input[type=number].with-icon[data-v-7a861c3a],input[type=password].with-icon[data-v-7a861c3a],input[type=search].with-icon[data-v-7a861c3a],input[type=text].with-icon[data-v-7a861c3a],input[type=time].with-icon[data-v-7a861c3a]{padding-left:.3em}input[type=search][data-v-7a861c3a],input[type=text][data-v-7a861c3a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7a861c3a]{animation-fill-mode:both;animation-name:fadeIn-7a861c3a;-webkit-animation-name:fadeIn-7a861c3a}.fade-in[data-v-7a861c3a],.fade-out[data-v-7a861c3a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7a861c3a]{animation-fill-mode:both;animation-name:fadeOut-7a861c3a;-webkit-animation-name:fadeOut-7a861c3a}@keyframes fadeIn-7a861c3a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7a861c3a{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-7a861c3a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7a861c3a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7a861c3a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-container[data-v-7a861c3a]{width:100%;height:100%;display:flex;flex-direction:column;position:relative}.media-container .view-container[data-v-7a861c3a]{height:100%}.media-container .controls-container[data-v-7a861c3a]{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/1449.64ebf9cc.css b/platypush/backend/http/webapp/dist/static/css/1449.64ebf9cc.css deleted file mode 100644 index a14f3e9c..00000000 --- a/platypush/backend/http/webapp/dist/static/css/1449.64ebf9cc.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(769px - 1px)){.tablet.from[data-v-7478b72d]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-7478b72d]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7478b72d]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-7478b72d]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7478b72d]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-7478b72d]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7478b72d]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-7478b72d]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7478b72d]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-7478b72d]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7478b72d]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-7478b72d]{display:none}}@media screen and (min-width:769px){.mobile[data-v-7478b72d]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7478b72d]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-7478b72d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-7478b72d],input[type=password][data-v-7478b72d],input[type=search][data-v-7478b72d],input[type=text][data-v-7478b72d]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-53594122]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-53594122]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-53594122]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-53594122]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-53594122]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-53594122]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-53594122]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-53594122]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-53594122]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-53594122]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-53594122]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-53594122]{display:none}}@media screen and (min-width:769px){.mobile[data-v-53594122]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-53594122]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-53594122]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-53594122],input[type=password][data-v-53594122],input[type=search][data-v-53594122],input[type=text][data-v-53594122]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-772cf288]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-1[data-v-772cf288]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-772cf288]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-772cf288]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-772cf288]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-2[data-v-772cf288]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-772cf288]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-772cf288]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-772cf288]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-3[data-v-772cf288]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-772cf288]:first-child{margin-left:26%!important}.col-offset-3[data-v-772cf288]:not(first-child){margin-left:30%!important}.col-4[data-v-772cf288]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-4[data-v-772cf288]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-772cf288]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-772cf288]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-772cf288]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-5[data-v-772cf288]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-772cf288]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-772cf288]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-772cf288]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-6[data-v-772cf288]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-772cf288]:first-child{margin-left:52%!important}.col-offset-6[data-v-772cf288]:not(first-child){margin-left:56%!important}.col-7[data-v-772cf288]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-7[data-v-772cf288]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-772cf288]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-772cf288]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-772cf288]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-8[data-v-772cf288]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-772cf288]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-772cf288]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-772cf288]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-9[data-v-772cf288]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-772cf288]:first-child{margin-left:78%!important}.col-offset-9[data-v-772cf288]:not(first-child){margin-left:82%!important}.col-10[data-v-772cf288]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-10[data-v-772cf288]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-772cf288]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-772cf288]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-772cf288]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-772cf288]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-772cf288]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-1[data-v-772cf288]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-772cf288]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-772cf288]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-2[data-v-772cf288]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-772cf288]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-772cf288]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-3[data-v-772cf288]{margin-left:26%}.col-no-margin-s-3[data-v-772cf288]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-772cf288]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-4[data-v-772cf288]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-772cf288]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-772cf288]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-5[data-v-772cf288]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-772cf288]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-772cf288]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-6[data-v-772cf288]{margin-left:52%}.col-no-margin-s-6[data-v-772cf288]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-772cf288]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-7[data-v-772cf288]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-772cf288]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-772cf288]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-8[data-v-772cf288]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-772cf288]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-772cf288]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-9[data-v-772cf288]{margin-left:78%}.col-no-margin-s-9[data-v-772cf288]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-772cf288]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-10[data-v-772cf288]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-772cf288]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-772cf288]:first-child{margin-left:0}.col-offset-s-11[data-v-772cf288]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-s-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-772cf288]{display:none!important}.s-visible[data-v-772cf288]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-772cf288]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-1[data-v-772cf288]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-772cf288]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-772cf288]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-2[data-v-772cf288]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-772cf288]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-772cf288]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-3[data-v-772cf288]{margin-left:26%}.col-no-margin-m-3[data-v-772cf288]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-772cf288]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-4[data-v-772cf288]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-772cf288]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-772cf288]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-5[data-v-772cf288]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-772cf288]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-772cf288]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-6[data-v-772cf288]{margin-left:52%}.col-no-margin-m-6[data-v-772cf288]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-772cf288]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-7[data-v-772cf288]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-772cf288]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-772cf288]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-8[data-v-772cf288]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-772cf288]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-772cf288]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-9[data-v-772cf288]{margin-left:78%}.col-no-margin-m-9[data-v-772cf288]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-772cf288]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-10[data-v-772cf288]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-772cf288]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-772cf288]:first-child{margin-left:0}.col-offset-m-11[data-v-772cf288]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-m-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-772cf288]{display:none!important}.m-visible[data-v-772cf288]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-772cf288]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-1[data-v-772cf288]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-772cf288]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-772cf288]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-2[data-v-772cf288]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-772cf288]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-772cf288]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-3[data-v-772cf288]{margin-left:26%}.col-no-margin-l-3[data-v-772cf288]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-772cf288]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-4[data-v-772cf288]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-772cf288]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-772cf288]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-5[data-v-772cf288]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-772cf288]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-772cf288]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-6[data-v-772cf288]{margin-left:52%}.col-no-margin-l-6[data-v-772cf288]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-772cf288]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-7[data-v-772cf288]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-772cf288]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-772cf288]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-8[data-v-772cf288]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-772cf288]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-772cf288]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-9[data-v-772cf288]{margin-left:78%}.col-no-margin-l-9[data-v-772cf288]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-772cf288]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-10[data-v-772cf288]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-772cf288]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-772cf288]:first-child{margin-left:0}.col-offset-l-11[data-v-772cf288]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-l-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-772cf288]{display:none!important}.l-visible[data-v-772cf288]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-772cf288]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-1[data-v-772cf288]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-772cf288]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-772cf288]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-2[data-v-772cf288]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-772cf288]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-772cf288]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-3[data-v-772cf288]{margin-left:26%}.col-no-margin-xl-3[data-v-772cf288]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-772cf288]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-4[data-v-772cf288]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-772cf288]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-772cf288]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-5[data-v-772cf288]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-772cf288]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-772cf288]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-6[data-v-772cf288]{margin-left:52%}.col-no-margin-xl-6[data-v-772cf288]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-772cf288]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-7[data-v-772cf288]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-772cf288]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-772cf288]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-8[data-v-772cf288]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-772cf288]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-772cf288]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-9[data-v-772cf288]{margin-left:78%}.col-no-margin-xl-9[data-v-772cf288]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-772cf288]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-10[data-v-772cf288]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-772cf288]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-772cf288]:first-child{margin-left:0}.col-offset-xl-11[data-v-772cf288]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-772cf288]{display:none!important}.xl-visible[data-v-772cf288]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-772cf288]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-1[data-v-772cf288]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-772cf288]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-772cf288]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-2[data-v-772cf288]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-772cf288]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-772cf288]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-3[data-v-772cf288]{margin-left:26%}.col-no-margin-xxl-3[data-v-772cf288]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-772cf288]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-4[data-v-772cf288]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-772cf288]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-772cf288]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-5[data-v-772cf288]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-772cf288]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-772cf288]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-6[data-v-772cf288]{margin-left:52%}.col-no-margin-xxl-6[data-v-772cf288]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-772cf288]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-7[data-v-772cf288]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-772cf288]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-772cf288]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-8[data-v-772cf288]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-772cf288]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-772cf288]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-9[data-v-772cf288]{margin-left:78%}.col-no-margin-xxl-9[data-v-772cf288]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-772cf288]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-10[data-v-772cf288]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-772cf288]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-772cf288]:first-child{margin-left:0}.col-offset-xxl-11[data-v-772cf288]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-772cf288]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-772cf288]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-772cf288]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-772cf288]{display:none!important}.xxl-visible[data-v-772cf288]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-772cf288]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-772cf288]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-772cf288]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-772cf288]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-772cf288]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-772cf288]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-772cf288]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-772cf288]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-772cf288]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-772cf288]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-772cf288]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-772cf288]{display:none}}@media screen and (min-width:769px){.mobile[data-v-772cf288]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-772cf288]{display:none}}.vertical-center[data-v-772cf288]{display:flex;align-items:center}.horizontal-center[data-v-772cf288]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-772cf288]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-772cf288]{display:none!important}.no-content[data-v-772cf288]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-772cf288],.btn[data-v-772cf288],button[data-v-772cf288]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-772cf288],.btn-default[type=submit][data-v-772cf288],.btn.btn-primary[data-v-772cf288],.btn[type=submit][data-v-772cf288],button.btn-primary[data-v-772cf288],button[type=submit][data-v-772cf288]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-772cf288],.btn-default .icon[data-v-772cf288],button .icon[data-v-772cf288]{margin-right:.5em}input[type=password][data-v-772cf288],input[type=text][data-v-772cf288]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-772cf288]:focus,input[type=text][data-v-772cf288]:focus{border:1px solid #35b870}button[data-v-772cf288],input[data-v-772cf288]{outline:none}input[type=text][data-v-772cf288]:hover,textarea[data-v-772cf288]:hover{border:1px solid #9cdfb0}ul[data-v-772cf288]{margin:0;padding:0;list-style:none}a[data-v-772cf288]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-772cf288]:hover{color:#35b870}[data-v-772cf288]::-webkit-scrollbar{width:.75em}[data-v-772cf288]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-772cf288]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-772cf288]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-772cf288]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-772cf288],input[type=password][data-v-772cf288],input[type=search][data-v-772cf288],input[type=text][data-v-772cf288]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-772cf288]:hover,input[type=password][data-v-772cf288]:hover,input[type=search][data-v-772cf288]:hover,input[type=text][data-v-772cf288]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-772cf288]:focus,input[type=password][data-v-772cf288]:focus,input[type=search][data-v-772cf288]:focus,input[type=text][data-v-772cf288]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-772cf288],input[type=password].with-icon[data-v-772cf288],input[type=search].with-icon[data-v-772cf288],input[type=text].with-icon[data-v-772cf288]{padding-left:.3em}input[type=search][data-v-772cf288],input[type=text][data-v-772cf288]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-772cf288]{animation-fill-mode:both;animation-name:fadeIn-772cf288;-webkit-animation-name:fadeIn-772cf288}.fade-in[data-v-772cf288],.fade-out[data-v-772cf288]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-772cf288]{animation-fill-mode:both;animation-name:fadeOut-772cf288;-webkit-animation-name:fadeOut-772cf288}@keyframes fadeIn-772cf288{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-772cf288{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-772cf288]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-772cf288]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-772cf288]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.component-row[data-v-772cf288]{width:100%;display:flex;cursor:pointer;padding:.75em .5em;border-bottom:1px solid #e1e4e8}.component-row[data-v-772cf288]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.slider-root .slider-container[data-v-772cf288]{position:relative}.slider-root .slider-container .slider[data-v-772cf288]{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(769px - 1px)){.tablet.from[data-v-97d3a936]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-97d3a936]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-97d3a936]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-97d3a936]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-97d3a936]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-97d3a936]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-97d3a936]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-97d3a936]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-97d3a936]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-97d3a936]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-97d3a936]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-97d3a936]{display:none}}@media screen and (min-width:769px){.mobile[data-v-97d3a936]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-97d3a936]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-97d3a936]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-97d3a936],input[type=password][data-v-97d3a936],input[type=search][data-v-97d3a936],input[type=text][data-v-97d3a936]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-450fcab1]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-450fcab1]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-450fcab1]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-450fcab1]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-450fcab1]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-450fcab1]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-450fcab1]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-450fcab1]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-450fcab1]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-450fcab1]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-450fcab1]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-450fcab1]{display:none}}@media screen and (min-width:769px){.mobile[data-v-450fcab1]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-450fcab1]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-450fcab1]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-450fcab1],input[type=password][data-v-450fcab1],input[type=search][data-v-450fcab1],input[type=text][data-v-450fcab1]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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.bf964828.css b/platypush/backend/http/webapp/dist/static/css/1449.bf964828.css new file mode 100644 index 00000000..7e858876 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1449.bf964828.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 .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}}.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}}.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}}.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}}.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}}.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/169.18c97596.css b/platypush/backend/http/webapp/dist/static/css/169.9ec6abc1.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/169.18c97596.css rename to platypush/backend/http/webapp/dist/static/css/169.9ec6abc1.css index 6eac578a..782ed787 100644 --- a/platypush/backend/http/webapp/dist/static/css/169.18c97596.css +++ b/platypush/backend/http/webapp/dist/static/css/169.9ec6abc1.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(769px - 1px)){.tablet.from[data-v-1b6c81c2]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-1b6c81c2]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b6c81c2]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-1b6c81c2]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b6c81c2]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-1b6c81c2]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b6c81c2]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-1b6c81c2]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b6c81c2]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b6c81c2]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b6c81c2]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b6c81c2]{display:none}}@media screen and (min-width:769px){.mobile[data-v-1b6c81c2]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b6c81c2]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-1b6c81c2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-1b6c81c2],input[type=password][data-v-1b6c81c2],input[type=search][data-v-1b6c81c2],input[type=text][data-v-1b6c81c2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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.c1e22194.css b/platypush/backend/http/webapp/dist/static/css/1706.c1e22194.css new file mode 100644 index 00000000..20a81ec0 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1706.c1e22194.css @@ -0,0 +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}}.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.333a022f.css b/platypush/backend/http/webapp/dist/static/css/1807.333a022f.css new file mode 100644 index 00000000..522b5dd8 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1807.333a022f.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 .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}}.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}}.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}}.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}}.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}}.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}}.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/1949.d8d63590.css b/platypush/backend/http/webapp/dist/static/css/1949.d8d63590.css new file mode 100644 index 00000000..5e78473d --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/1949.d8d63590.css @@ -0,0 +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}}.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/2140.08e216c1.css b/platypush/backend/http/webapp/dist/static/css/2140.08e216c1.css new file mode 100644 index 00000000..39fcdfa8 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2140.08e216c1.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 .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}}.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}}.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/2154.20cf0934.css b/platypush/backend/http/webapp/dist/static/css/2154.20cf0934.css new file mode 100644 index 00000000..742ecc2f --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2154.20cf0934.css @@ -0,0 +1 @@ +.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}}.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.664973a5.css b/platypush/backend/http/webapp/dist/static/css/2217.da1b8fd6.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/2217.664973a5.css rename to platypush/backend/http/webapp/dist/static/css/2217.da1b8fd6.css index 2c0e6569..cbae28d7 100644 --- a/platypush/backend/http/webapp/dist/static/css/2217.664973a5.css +++ b/platypush/backend/http/webapp/dist/static/css/2217.da1b8fd6.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(769px - 1px)){.tablet.from[data-v-4667e342]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-4667e342]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4667e342]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-4667e342]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4667e342]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-4667e342]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4667e342]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-4667e342]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4667e342]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-4667e342]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4667e342]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-4667e342]{display:none}}@media screen and (min-width:769px){.mobile[data-v-4667e342]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4667e342]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-4667e342]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-4667e342],input[type=password][data-v-4667e342],input[type=search][data-v-4667e342],input[type=text][data-v-4667e342]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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.c44d2954.css b/platypush/backend/http/webapp/dist/static/css/2460.83acd505.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/2460.c44d2954.css rename to platypush/backend/http/webapp/dist/static/css/2460.83acd505.css index a6651d1c..d5a5a463 100644 --- a/platypush/backend/http/webapp/dist/static/css/2460.c44d2954.css +++ b/platypush/backend/http/webapp/dist/static/css/2460.83acd505.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(769px - 1px)){.tablet.from[data-v-d3cf6cca]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-d3cf6cca]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d3cf6cca]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-d3cf6cca]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d3cf6cca]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-d3cf6cca]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d3cf6cca]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-d3cf6cca]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d3cf6cca]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-d3cf6cca]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d3cf6cca]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-d3cf6cca]{display:none}}@media screen and (min-width:769px){.mobile[data-v-d3cf6cca]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d3cf6cca]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-d3cf6cca]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-d3cf6cca],input[type=password][data-v-d3cf6cca],input[type=search][data-v-d3cf6cca],input[type=text][data-v-d3cf6cca]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/2461.1fc0b5b4.css b/platypush/backend/http/webapp/dist/static/css/2461.1fc0b5b4.css new file mode 100644 index 00000000..8216ec44 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2461.1fc0b5b4.css @@ -0,0 +1 @@ +.col-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0f0ae058]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0f0ae058]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0f0ae058]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0f0ae058]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0f0ae058]:first-child{margin-left:26%!important}.col-offset-3[data-v-0f0ae058]:not(first-child){margin-left:30%!important}.col-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0f0ae058]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0f0ae058]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0f0ae058]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0f0ae058]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0f0ae058]:first-child{margin-left:52%!important}.col-offset-6[data-v-0f0ae058]:not(first-child){margin-left:56%!important}.col-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0f0ae058]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0f0ae058]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0f0ae058]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0f0ae058]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0f0ae058]:first-child{margin-left:78%!important}.col-offset-9[data-v-0f0ae058]:not(first-child){margin-left:82%!important}.col-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0f0ae058]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0f0ae058]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0f0ae058]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0f0ae058]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-1[data-v-0f0ae058]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-2[data-v-0f0ae058]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-3[data-v-0f0ae058]{margin-left:26%}.col-no-margin-s-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-4[data-v-0f0ae058]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-5[data-v-0f0ae058]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-6[data-v-0f0ae058]{margin-left:52%}.col-no-margin-s-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-7[data-v-0f0ae058]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-8[data-v-0f0ae058]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-9[data-v-0f0ae058]{margin-left:78%}.col-no-margin-s-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-10[data-v-0f0ae058]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-s-11[data-v-0f0ae058]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0f0ae058]{display:none!important}.s-visible[data-v-0f0ae058]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-1[data-v-0f0ae058]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-2[data-v-0f0ae058]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-3[data-v-0f0ae058]{margin-left:26%}.col-no-margin-m-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-4[data-v-0f0ae058]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-5[data-v-0f0ae058]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-6[data-v-0f0ae058]{margin-left:52%}.col-no-margin-m-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-7[data-v-0f0ae058]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-8[data-v-0f0ae058]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-9[data-v-0f0ae058]{margin-left:78%}.col-no-margin-m-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-10[data-v-0f0ae058]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-m-11[data-v-0f0ae058]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0f0ae058]{display:none!important}.m-visible[data-v-0f0ae058]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-1[data-v-0f0ae058]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-2[data-v-0f0ae058]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-3[data-v-0f0ae058]{margin-left:26%}.col-no-margin-l-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-4[data-v-0f0ae058]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-5[data-v-0f0ae058]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-6[data-v-0f0ae058]{margin-left:52%}.col-no-margin-l-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-7[data-v-0f0ae058]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-8[data-v-0f0ae058]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-9[data-v-0f0ae058]{margin-left:78%}.col-no-margin-l-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-10[data-v-0f0ae058]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-l-11[data-v-0f0ae058]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0f0ae058]{display:none!important}.l-visible[data-v-0f0ae058]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-1[data-v-0f0ae058]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-2[data-v-0f0ae058]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-3[data-v-0f0ae058]{margin-left:26%}.col-no-margin-xl-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-4[data-v-0f0ae058]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-5[data-v-0f0ae058]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-6[data-v-0f0ae058]{margin-left:52%}.col-no-margin-xl-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-7[data-v-0f0ae058]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-8[data-v-0f0ae058]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-9[data-v-0f0ae058]{margin-left:78%}.col-no-margin-xl-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-10[data-v-0f0ae058]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xl-11[data-v-0f0ae058]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0f0ae058]{display:none!important}.xl-visible[data-v-0f0ae058]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0f0ae058]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0f0ae058]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0f0ae058]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0f0ae058]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0f0ae058]{margin-left:26%}.col-no-margin-xxl-3[data-v-0f0ae058]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0f0ae058]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0f0ae058]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0f0ae058]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0f0ae058]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0f0ae058]{margin-left:52%}.col-no-margin-xxl-6[data-v-0f0ae058]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0f0ae058]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0f0ae058]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0f0ae058]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0f0ae058]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0f0ae058]{margin-left:78%}.col-no-margin-xxl-9[data-v-0f0ae058]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0f0ae058]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0f0ae058]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0f0ae058]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0f0ae058]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0f0ae058]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0f0ae058]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0f0ae058]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0f0ae058]{display:none!important}.xxl-visible[data-v-0f0ae058]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-0f0ae058]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-0f0ae058]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-0f0ae058]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-0f0ae058]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0f0ae058]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-0f0ae058]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0f0ae058]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-0f0ae058]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0f0ae058]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-0f0ae058]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0f0ae058]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-0f0ae058]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0f0ae058]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-0f0ae058]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0f0ae058]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-0f0ae058]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-0f0ae058]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0f0ae058]{display:none!important}}.vertical-center[data-v-0f0ae058]{display:flex;align-items:center}.horizontal-center[data-v-0f0ae058]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0f0ae058]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0f0ae058]{display:none!important}.no-content[data-v-0f0ae058]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-0f0ae058]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-0f0ae058]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-0f0ae058]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-0f0ae058]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-0f0ae058]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-0f0ae058]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-0f0ae058],.btn[data-v-0f0ae058],button[data-v-0f0ae058]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0f0ae058],.btn-default[type=submit][data-v-0f0ae058],.btn.btn-primary[data-v-0f0ae058],.btn[type=submit][data-v-0f0ae058],button.btn-primary[data-v-0f0ae058],button[type=submit][data-v-0f0ae058]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0f0ae058],.btn-default .icon[data-v-0f0ae058],button .icon[data-v-0f0ae058]{margin-right:.5em}input[type=password][data-v-0f0ae058],input[type=text][data-v-0f0ae058]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0f0ae058]:focus,input[type=text][data-v-0f0ae058]:focus{border:1px solid #35b870}button[data-v-0f0ae058],input[data-v-0f0ae058]{outline:none}input[type=text][data-v-0f0ae058]:hover,textarea[data-v-0f0ae058]:hover{border:1px solid #9cdfb0}ul[data-v-0f0ae058]{margin:0;padding:0;list-style:none}a[data-v-0f0ae058]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0f0ae058]:hover{color:#35b870}[data-v-0f0ae058]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-0f0ae058]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-0f0ae058]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0f0ae058]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0f0ae058]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-0f0ae058] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-0f0ae058] .nav .path{cursor:pointer}.browser[data-v-0f0ae058] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-0f0ae058] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-0f0ae058]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-0f0ae058],input[type=number][data-v-0f0ae058],input[type=password][data-v-0f0ae058],input[type=search][data-v-0f0ae058],input[type=text][data-v-0f0ae058],input[type=time][data-v-0f0ae058]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-0f0ae058]:hover,input[type=number][data-v-0f0ae058]:hover,input[type=password][data-v-0f0ae058]:hover,input[type=search][data-v-0f0ae058]:hover,input[type=text][data-v-0f0ae058]:hover,input[type=time][data-v-0f0ae058]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-0f0ae058]:focus,input[type=number][data-v-0f0ae058]:focus,input[type=password][data-v-0f0ae058]:focus,input[type=search][data-v-0f0ae058]:focus,input[type=text][data-v-0f0ae058]:focus,input[type=time][data-v-0f0ae058]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-0f0ae058],input[type=number].with-icon[data-v-0f0ae058],input[type=password].with-icon[data-v-0f0ae058],input[type=search].with-icon[data-v-0f0ae058],input[type=text].with-icon[data-v-0f0ae058],input[type=time].with-icon[data-v-0f0ae058]{padding-left:.3em}input[type=search][data-v-0f0ae058],input[type=text][data-v-0f0ae058]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0f0ae058]{animation-fill-mode:both;animation-name:fadeIn-0f0ae058;-webkit-animation-name:fadeIn-0f0ae058}.fade-in[data-v-0f0ae058],.fade-out[data-v-0f0ae058]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0f0ae058]{animation-fill-mode:both;animation-name:fadeOut-0f0ae058;-webkit-animation-name:fadeOut-0f0ae058}@keyframes fadeIn-0f0ae058{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0f0ae058{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-0f0ae058]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0f0ae058]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0f0ae058]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-0f0ae058]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-0f0ae058]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-0f0ae058]{background:#8fefb7}.item.selected[data-v-0f0ae058]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-0f0ae058]{border-top:2px solid #35b870}.item[data-v-0f0ae058]::-moz-selection{background:transparent!important}.item[data-v-0f0ae058]::selection{background:transparent!important}.item .title[data-v-0f0ae058]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-0f0ae058]{display:inline-flex;align-items:center}.item .side.right[data-v-0f0ae058]{display:inline-flex;justify-content:right}.item .actions[data-v-0f0ae058],.item .duration[data-v-0f0ae058]{display:inline-flex;align-items:center}.item .duration[data-v-0f0ae058]{font-size:.85em;opacity:.7}.item .actions[data-v-0f0ae058] button{opacity:.65}.item .icon[data-v-0f0ae058]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-0f0ae058] .dropdown-container .item{box-shadow:none}.item[data-v-0f0ae058] .dropdown-container button{background:none;border:none}.item[data-v-0f0ae058] .dropdown-container button:hover{color:#35b870}[data-v-0f0ae058] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-0f0ae058] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-0f0ae058] .table-row{flex-direction:row;align-items:center}}[data-v-0f0ae058] .table-row .title,[data-v-0f0ae058] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-0f0ae058] .table-row .title,[data-v-0f0ae058] .table-row .value{display:inline-flex}}[data-v-0f0ae058] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-0f0ae058] .table-row .title{width:30%}[data-v-0f0ae058] .table-row .value{justify-content:right}}.browser[data-v-0f0ae058]{height:100%;display:flex;flex-direction:column}.browser .item .actions[data-v-0f0ae058]{display:inline-flex;justify-content:right}.browser .items[data-v-0f0ae058]{height:calc(100% - 2.5em);overflow:auto} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2471.750151be.css b/platypush/backend/http/webapp/dist/static/css/2471.750151be.css deleted file mode 100644 index a9996350..00000000 --- a/platypush/backend/http/webapp/dist/static/css/2471.750151be.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4b38623f]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4b38623f]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4b38623f]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4b38623f]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4b38623f]:first-child{margin-left:26%!important}.col-offset-3[data-v-4b38623f]:not(first-child){margin-left:30%!important}.col-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4b38623f]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4b38623f]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4b38623f]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4b38623f]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4b38623f]:first-child{margin-left:52%!important}.col-offset-6[data-v-4b38623f]:not(first-child){margin-left:56%!important}.col-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4b38623f]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4b38623f]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4b38623f]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4b38623f]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4b38623f]:first-child{margin-left:78%!important}.col-offset-9[data-v-4b38623f]:not(first-child){margin-left:82%!important}.col-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4b38623f]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4b38623f]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4b38623f]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4b38623f]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-1[data-v-4b38623f]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-2[data-v-4b38623f]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-3[data-v-4b38623f]{margin-left:26%}.col-no-margin-s-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-4[data-v-4b38623f]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-5[data-v-4b38623f]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-6[data-v-4b38623f]{margin-left:52%}.col-no-margin-s-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-7[data-v-4b38623f]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-8[data-v-4b38623f]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-9[data-v-4b38623f]{margin-left:78%}.col-no-margin-s-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-10[data-v-4b38623f]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4b38623f]:first-child{margin-left:0}.col-offset-s-11[data-v-4b38623f]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4b38623f]{display:none!important}.s-visible[data-v-4b38623f]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-1[data-v-4b38623f]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-2[data-v-4b38623f]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-3[data-v-4b38623f]{margin-left:26%}.col-no-margin-m-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-4[data-v-4b38623f]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-5[data-v-4b38623f]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-6[data-v-4b38623f]{margin-left:52%}.col-no-margin-m-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-7[data-v-4b38623f]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-8[data-v-4b38623f]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-9[data-v-4b38623f]{margin-left:78%}.col-no-margin-m-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-10[data-v-4b38623f]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4b38623f]:first-child{margin-left:0}.col-offset-m-11[data-v-4b38623f]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4b38623f]{display:none!important}.m-visible[data-v-4b38623f]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-1[data-v-4b38623f]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-2[data-v-4b38623f]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-3[data-v-4b38623f]{margin-left:26%}.col-no-margin-l-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-4[data-v-4b38623f]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-5[data-v-4b38623f]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-6[data-v-4b38623f]{margin-left:52%}.col-no-margin-l-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-7[data-v-4b38623f]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-8[data-v-4b38623f]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-9[data-v-4b38623f]{margin-left:78%}.col-no-margin-l-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-10[data-v-4b38623f]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4b38623f]:first-child{margin-left:0}.col-offset-l-11[data-v-4b38623f]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4b38623f]{display:none!important}.l-visible[data-v-4b38623f]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-1[data-v-4b38623f]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-2[data-v-4b38623f]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-3[data-v-4b38623f]{margin-left:26%}.col-no-margin-xl-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-4[data-v-4b38623f]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-5[data-v-4b38623f]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-6[data-v-4b38623f]{margin-left:52%}.col-no-margin-xl-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-7[data-v-4b38623f]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-8[data-v-4b38623f]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-9[data-v-4b38623f]{margin-left:78%}.col-no-margin-xl-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-10[data-v-4b38623f]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xl-11[data-v-4b38623f]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4b38623f]{display:none!important}.xl-visible[data-v-4b38623f]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4b38623f]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4b38623f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4b38623f]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4b38623f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4b38623f]{margin-left:26%}.col-no-margin-xxl-3[data-v-4b38623f]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4b38623f]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4b38623f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4b38623f]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4b38623f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4b38623f]{margin-left:52%}.col-no-margin-xxl-6[data-v-4b38623f]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4b38623f]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4b38623f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4b38623f]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4b38623f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4b38623f]{margin-left:78%}.col-no-margin-xxl-9[data-v-4b38623f]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4b38623f]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4b38623f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4b38623f]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4b38623f]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4b38623f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4b38623f]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4b38623f]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4b38623f]{display:none!important}.xxl-visible[data-v-4b38623f]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4b38623f]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-4b38623f]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4b38623f]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-4b38623f]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4b38623f]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-4b38623f]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4b38623f]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-4b38623f]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4b38623f]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-4b38623f]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4b38623f]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-4b38623f]{display:none}}@media screen and (min-width:769px){.mobile[data-v-4b38623f]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4b38623f]{display:none}}.vertical-center[data-v-4b38623f]{display:flex;align-items:center}.horizontal-center[data-v-4b38623f]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4b38623f],.slider-wrapper .range-labels .right[data-v-4b38623f]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4b38623f]{display:none!important}.no-content[data-v-4b38623f]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-4b38623f],.btn[data-v-4b38623f],button[data-v-4b38623f]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4b38623f],.btn-default[type=submit][data-v-4b38623f],.btn.btn-primary[data-v-4b38623f],.btn[type=submit][data-v-4b38623f],button.btn-primary[data-v-4b38623f],button[type=submit][data-v-4b38623f]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4b38623f],.btn-default .icon[data-v-4b38623f],button .icon[data-v-4b38623f]{margin-right:.5em}input[type=password][data-v-4b38623f],input[type=text][data-v-4b38623f]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4b38623f]:focus,input[type=text][data-v-4b38623f]:focus{border:1px solid #35b870}button[data-v-4b38623f],input[data-v-4b38623f]{outline:none}input[type=text][data-v-4b38623f]:hover,textarea[data-v-4b38623f]:hover{border:1px solid #9cdfb0}ul[data-v-4b38623f]{margin:0;padding:0;list-style:none}a[data-v-4b38623f]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4b38623f]:hover{color:#35b870}[data-v-4b38623f]::-webkit-scrollbar{width:.75em}[data-v-4b38623f]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4b38623f]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4b38623f]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-4b38623f]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-4b38623f],input[type=password][data-v-4b38623f],input[type=search][data-v-4b38623f],input[type=text][data-v-4b38623f]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-4b38623f]:hover,input[type=password][data-v-4b38623f]:hover,input[type=search][data-v-4b38623f]:hover,input[type=text][data-v-4b38623f]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-4b38623f]:focus,input[type=password][data-v-4b38623f]:focus,input[type=search][data-v-4b38623f]:focus,input[type=text][data-v-4b38623f]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-4b38623f],input[type=password].with-icon[data-v-4b38623f],input[type=search].with-icon[data-v-4b38623f],input[type=text].with-icon[data-v-4b38623f]{padding-left:.3em}input[type=search][data-v-4b38623f],input[type=text][data-v-4b38623f]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4b38623f]{animation-fill-mode:both;animation-name:fadeIn-4b38623f;-webkit-animation-name:fadeIn-4b38623f}.fade-in[data-v-4b38623f],.fade-out[data-v-4b38623f]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4b38623f]{animation-fill-mode:both;animation-name:fadeOut-4b38623f;-webkit-animation-name:fadeOut-4b38623f}@keyframes fadeIn-4b38623f{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4b38623f{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-4b38623f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4b38623f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4b38623f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.slider-wrapper[data-v-4b38623f]{flex-direction:column}.slider-wrapper .slider-container[data-v-4b38623f],.slider-wrapper[data-v-4b38623f]{width:100%;display:flex;position:relative}.slider-wrapper .slider[data-v-4b38623f]{width:100%;cursor:pointer;opacity:0}.slider-wrapper .slider[data-v-4b38623f]::-ms-tooltip{display:none}.slider-wrapper .range-labels[data-v-4b38623f]{width:100%;display:flex}.slider-wrapper .range-labels.with-label[data-v-4b38623f]{width:calc(100% - 3em)}.slider-wrapper .range-labels .left[data-v-4b38623f]{text-align:left}.slider-wrapper .range-labels .right[data-v-4b38623f]{flex-grow:1}.slider-wrapper .track[data-v-4b38623f]{width:100%;height:.75em;background:#e4e4e4;position:absolute;top:50%;transform:translateY(-50%);border-radius:.5em;box-shadow:inset 1px 0 3px 0 #a5a2a2;pointer-events:none}.slider-wrapper .track .track-inner[data-v-4b38623f]{width:0;height:100%;background:rgba(0,215,80,.5);border-radius:.5em 0 0 .5em}.slider-wrapper .track.with-label[data-v-4b38623f]{width:calc(100% - 3em)}.slider-wrapper .thumb[data-v-4b38623f]{width:1.25em;height:1.25em;background:#37d560;position:absolute;top:50%;left:0;transform:translateY(-50%);border-radius:50%;box-shadow:1px 0 2px 0 #475c40;pointer-events:none}.slider-wrapper .label[data-v-4b38623f]{width:3em;position:relative;font-weight:400;text-align:center} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/2844.23273db2.css b/platypush/backend/http/webapp/dist/static/css/2844.23273db2.css new file mode 100644 index 00000000..02023949 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2844.23273db2.css @@ -0,0 +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}}.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/2892.3a7569e7.css b/platypush/backend/http/webapp/dist/static/css/2892.3a7569e7.css new file mode 100644 index 00000000..26e4473b --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2892.3a7569e7.css @@ -0,0 +1 @@ +.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}}.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.7780abf3.css b/platypush/backend/http/webapp/dist/static/css/2893.21a9931c.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/2893.7780abf3.css rename to platypush/backend/http/webapp/dist/static/css/2893.21a9931c.css index 3df6c071..3456aba6 100644 --- a/platypush/backend/http/webapp/dist/static/css/2893.7780abf3.css +++ b/platypush/backend/http/webapp/dist/static/css/2893.21a9931c.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(769px - 1px)){.tablet.from[data-v-159d46fc]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-159d46fc]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-159d46fc]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-159d46fc]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-159d46fc]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-159d46fc]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-159d46fc]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-159d46fc]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-159d46fc]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-159d46fc]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-159d46fc]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-159d46fc]{display:none}}@media screen and (min-width:769px){.mobile[data-v-159d46fc]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-159d46fc]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-159d46fc]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-159d46fc],input[type=password][data-v-159d46fc],input[type=search][data-v-159d46fc],input[type=text][data-v-159d46fc]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/2976.5cb4fa57.css b/platypush/backend/http/webapp/dist/static/css/2976.bafd7cea.css similarity index 75% rename from platypush/backend/http/webapp/dist/static/css/2976.5cb4fa57.css rename to platypush/backend/http/webapp/dist/static/css/2976.bafd7cea.css index 2c3ac92a..e08c1be1 100644 --- a/platypush/backend/http/webapp/dist/static/css/2976.5cb4fa57.css +++ b/platypush/backend/http/webapp/dist/static/css/2976.bafd7cea.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(769px - 1px)){.tablet.from[data-v-1b32374c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-1b32374c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b32374c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-1b32374c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b32374c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-1b32374c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b32374c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-1b32374c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b32374c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b32374c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b32374c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b32374c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-1b32374c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b32374c]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-1b32374c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-1b32374c],input[type=password][data-v-1b32374c],input[type=search][data-v-1b32374c],input[type=text][data-v-1b32374c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/2986.3d6a6efd.css b/platypush/backend/http/webapp/dist/static/css/2986.3d6a6efd.css deleted file mode 100644 index e102475c..00000000 --- a/platypush/backend/http/webapp/dist/static/css/2986.3d6a6efd.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(769px - 1px)){.tablet.from[data-v-2495ce8a]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-2495ce8a]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2495ce8a]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-2495ce8a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2495ce8a]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-2495ce8a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2495ce8a]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-2495ce8a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2495ce8a]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-2495ce8a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2495ce8a]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-2495ce8a]{display:none}}@media screen and (min-width:769px){.mobile[data-v-2495ce8a]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2495ce8a]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-2495ce8a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-2495ce8a],input[type=password][data-v-2495ce8a],input[type=search][data-v-2495ce8a],input[type=text][data-v-2495ce8a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-edee6494]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-1[data-v-edee6494]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-edee6494]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-edee6494]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-edee6494]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-2[data-v-edee6494]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-edee6494]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-edee6494]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-edee6494]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-3[data-v-edee6494]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-edee6494]:first-child{margin-left:26%!important}.col-offset-3[data-v-edee6494]:not(first-child){margin-left:30%!important}.col-4[data-v-edee6494]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-4[data-v-edee6494]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-edee6494]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-edee6494]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-edee6494]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-5[data-v-edee6494]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-edee6494]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-edee6494]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-edee6494]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-6[data-v-edee6494]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-edee6494]:first-child{margin-left:52%!important}.col-offset-6[data-v-edee6494]:not(first-child){margin-left:56%!important}.col-7[data-v-edee6494]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-7[data-v-edee6494]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-edee6494]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-edee6494]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-edee6494]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-8[data-v-edee6494]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-edee6494]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-edee6494]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-edee6494]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-9[data-v-edee6494]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-edee6494]:first-child{margin-left:78%!important}.col-offset-9[data-v-edee6494]:not(first-child){margin-left:82%!important}.col-10[data-v-edee6494]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-10[data-v-edee6494]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-edee6494]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-edee6494]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-edee6494]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-edee6494]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-edee6494]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-1[data-v-edee6494]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-edee6494]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-edee6494]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-2[data-v-edee6494]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-edee6494]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-edee6494]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-3[data-v-edee6494]{margin-left:26%}.col-no-margin-s-3[data-v-edee6494]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-edee6494]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-4[data-v-edee6494]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-edee6494]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-edee6494]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-5[data-v-edee6494]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-edee6494]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-edee6494]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-6[data-v-edee6494]{margin-left:52%}.col-no-margin-s-6[data-v-edee6494]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-edee6494]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-7[data-v-edee6494]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-edee6494]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-edee6494]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-8[data-v-edee6494]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-edee6494]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-edee6494]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-9[data-v-edee6494]{margin-left:78%}.col-no-margin-s-9[data-v-edee6494]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-edee6494]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-10[data-v-edee6494]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-edee6494]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-edee6494]:first-child{margin-left:0}.col-offset-s-11[data-v-edee6494]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-s-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-edee6494]{display:none!important}.s-visible[data-v-edee6494]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-edee6494]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-1[data-v-edee6494]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-edee6494]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-edee6494]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-2[data-v-edee6494]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-edee6494]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-edee6494]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-3[data-v-edee6494]{margin-left:26%}.col-no-margin-m-3[data-v-edee6494]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-edee6494]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-4[data-v-edee6494]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-edee6494]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-edee6494]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-5[data-v-edee6494]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-edee6494]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-edee6494]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-6[data-v-edee6494]{margin-left:52%}.col-no-margin-m-6[data-v-edee6494]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-edee6494]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-7[data-v-edee6494]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-edee6494]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-edee6494]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-8[data-v-edee6494]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-edee6494]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-edee6494]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-9[data-v-edee6494]{margin-left:78%}.col-no-margin-m-9[data-v-edee6494]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-edee6494]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-10[data-v-edee6494]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-edee6494]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-edee6494]:first-child{margin-left:0}.col-offset-m-11[data-v-edee6494]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-m-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-edee6494]{display:none!important}.m-visible[data-v-edee6494]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-edee6494]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-1[data-v-edee6494]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-edee6494]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-edee6494]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-2[data-v-edee6494]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-edee6494]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-edee6494]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-3[data-v-edee6494]{margin-left:26%}.col-no-margin-l-3[data-v-edee6494]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-edee6494]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-4[data-v-edee6494]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-edee6494]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-edee6494]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-5[data-v-edee6494]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-edee6494]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-edee6494]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-6[data-v-edee6494]{margin-left:52%}.col-no-margin-l-6[data-v-edee6494]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-edee6494]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-7[data-v-edee6494]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-edee6494]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-edee6494]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-8[data-v-edee6494]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-edee6494]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-edee6494]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-9[data-v-edee6494]{margin-left:78%}.col-no-margin-l-9[data-v-edee6494]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-edee6494]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-10[data-v-edee6494]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-edee6494]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-edee6494]:first-child{margin-left:0}.col-offset-l-11[data-v-edee6494]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-l-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-edee6494]{display:none!important}.l-visible[data-v-edee6494]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-edee6494]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-1[data-v-edee6494]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-edee6494]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-edee6494]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-2[data-v-edee6494]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-edee6494]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-edee6494]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-3[data-v-edee6494]{margin-left:26%}.col-no-margin-xl-3[data-v-edee6494]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-edee6494]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-4[data-v-edee6494]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-edee6494]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-edee6494]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-5[data-v-edee6494]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-edee6494]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-edee6494]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-6[data-v-edee6494]{margin-left:52%}.col-no-margin-xl-6[data-v-edee6494]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-edee6494]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-7[data-v-edee6494]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-edee6494]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-edee6494]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-8[data-v-edee6494]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-edee6494]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-edee6494]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-9[data-v-edee6494]{margin-left:78%}.col-no-margin-xl-9[data-v-edee6494]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-edee6494]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-10[data-v-edee6494]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-edee6494]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-edee6494]:first-child{margin-left:0}.col-offset-xl-11[data-v-edee6494]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-edee6494]{display:none!important}.xl-visible[data-v-edee6494]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-edee6494]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-1[data-v-edee6494]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-edee6494]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-edee6494]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-2[data-v-edee6494]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-edee6494]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-edee6494]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-3[data-v-edee6494]{margin-left:26%}.col-no-margin-xxl-3[data-v-edee6494]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-edee6494]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-4[data-v-edee6494]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-edee6494]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-edee6494]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-5[data-v-edee6494]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-edee6494]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-edee6494]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-6[data-v-edee6494]{margin-left:52%}.col-no-margin-xxl-6[data-v-edee6494]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-edee6494]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-7[data-v-edee6494]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-edee6494]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-edee6494]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-8[data-v-edee6494]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-edee6494]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-edee6494]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-9[data-v-edee6494]{margin-left:78%}.col-no-margin-xxl-9[data-v-edee6494]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-edee6494]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-10[data-v-edee6494]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-edee6494]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-edee6494]:first-child{margin-left:0}.col-offset-xxl-11[data-v-edee6494]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-edee6494]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-edee6494]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-edee6494]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-edee6494]{display:none!important}.xxl-visible[data-v-edee6494]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-edee6494]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-edee6494]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-edee6494]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-edee6494]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-edee6494]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-edee6494]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-edee6494]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-edee6494]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-edee6494]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-edee6494]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-edee6494]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-edee6494]{display:none}}@media screen and (min-width:769px){.mobile[data-v-edee6494]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-edee6494]{display:none}}.vertical-center[data-v-edee6494]{display:flex;align-items:center}.horizontal-center[data-v-edee6494]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-edee6494]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-edee6494]{display:none!important}.no-content[data-v-edee6494]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-edee6494],.btn[data-v-edee6494],button[data-v-edee6494]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-edee6494],.btn-default[type=submit][data-v-edee6494],.btn.btn-primary[data-v-edee6494],.btn[type=submit][data-v-edee6494],button.btn-primary[data-v-edee6494],button[type=submit][data-v-edee6494]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-edee6494],.btn-default .icon[data-v-edee6494],button .icon[data-v-edee6494]{margin-right:.5em}input[type=password][data-v-edee6494],input[type=text][data-v-edee6494]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-edee6494]:focus,input[type=text][data-v-edee6494]:focus{border:1px solid #35b870}button[data-v-edee6494],input[data-v-edee6494]{outline:none}input[type=text][data-v-edee6494]:hover,textarea[data-v-edee6494]:hover{border:1px solid #9cdfb0}ul[data-v-edee6494]{margin:0;padding:0;list-style:none}a[data-v-edee6494]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-edee6494]:hover{color:#35b870}[data-v-edee6494]::-webkit-scrollbar{width:.75em}[data-v-edee6494]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-edee6494]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-edee6494]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-edee6494]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-edee6494],input[type=password][data-v-edee6494],input[type=search][data-v-edee6494],input[type=text][data-v-edee6494]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-edee6494]:hover,input[type=password][data-v-edee6494]:hover,input[type=search][data-v-edee6494]:hover,input[type=text][data-v-edee6494]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-edee6494]:focus,input[type=password][data-v-edee6494]:focus,input[type=search][data-v-edee6494]:focus,input[type=text][data-v-edee6494]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-edee6494],input[type=password].with-icon[data-v-edee6494],input[type=search].with-icon[data-v-edee6494],input[type=text].with-icon[data-v-edee6494]{padding-left:.3em}input[type=search][data-v-edee6494],input[type=text][data-v-edee6494]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-edee6494]{animation-fill-mode:both;animation-name:fadeIn-edee6494;-webkit-animation-name:fadeIn-edee6494}.fade-in[data-v-edee6494],.fade-out[data-v-edee6494]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-edee6494]{animation-fill-mode:both;animation-name:fadeOut-edee6494;-webkit-animation-name:fadeOut-edee6494}@keyframes fadeIn-edee6494{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-edee6494{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-edee6494]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-edee6494]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-edee6494]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}nav[data-v-edee6494]{width:2.8em;height:100%;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 li[data-v-edee6494]{display:flex;align-items:center;font-size:1.2em;cursor:pointer;list-style:none;padding:.6em;opacity:.7}nav li.selected[data-v-edee6494],nav li[data-v-edee6494]:hover{border-radius:1.2em;margin:0 .2em}nav li[data-v-edee6494]:hover{background:rgba(160,245,178,.6)}nav li.selected[data-v-edee6494]{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(769px - 1px)){.tablet.from[data-v-7e4bd102]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-7e4bd102]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7e4bd102]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-7e4bd102]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7e4bd102]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-7e4bd102]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7e4bd102]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-7e4bd102]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7e4bd102]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-7e4bd102]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7e4bd102]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-7e4bd102]{display:none}}@media screen and (min-width:769px){.mobile[data-v-7e4bd102]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7e4bd102]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-7e4bd102]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-7e4bd102],input[type=password][data-v-7e4bd102],input[type=search][data-v-7e4bd102],input[type=text][data-v-7e4bd102]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-05e23a52]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-05e23a52]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-05e23a52]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-05e23a52]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-05e23a52]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-05e23a52]:first-child{margin-left:26%!important}.col-offset-3[data-v-05e23a52]:not(first-child){margin-left:30%!important}.col-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-05e23a52]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-05e23a52]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-05e23a52]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-05e23a52]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-05e23a52]:first-child{margin-left:52%!important}.col-offset-6[data-v-05e23a52]:not(first-child){margin-left:56%!important}.col-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-05e23a52]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-05e23a52]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-05e23a52]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-05e23a52]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-05e23a52]:first-child{margin-left:78%!important}.col-offset-9[data-v-05e23a52]:not(first-child){margin-left:82%!important}.col-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-05e23a52]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-05e23a52]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-05e23a52]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-05e23a52]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-1[data-v-05e23a52]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-2[data-v-05e23a52]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-3[data-v-05e23a52]{margin-left:26%}.col-no-margin-s-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-4[data-v-05e23a52]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-5[data-v-05e23a52]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-6[data-v-05e23a52]{margin-left:52%}.col-no-margin-s-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-7[data-v-05e23a52]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-8[data-v-05e23a52]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-9[data-v-05e23a52]{margin-left:78%}.col-no-margin-s-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-10[data-v-05e23a52]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-05e23a52]:first-child{margin-left:0}.col-offset-s-11[data-v-05e23a52]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-s-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-05e23a52]{display:none!important}.s-visible[data-v-05e23a52]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-1[data-v-05e23a52]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-2[data-v-05e23a52]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-3[data-v-05e23a52]{margin-left:26%}.col-no-margin-m-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-4[data-v-05e23a52]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-5[data-v-05e23a52]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-6[data-v-05e23a52]{margin-left:52%}.col-no-margin-m-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-7[data-v-05e23a52]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-8[data-v-05e23a52]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-9[data-v-05e23a52]{margin-left:78%}.col-no-margin-m-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-10[data-v-05e23a52]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-05e23a52]:first-child{margin-left:0}.col-offset-m-11[data-v-05e23a52]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-m-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-05e23a52]{display:none!important}.m-visible[data-v-05e23a52]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-1[data-v-05e23a52]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-2[data-v-05e23a52]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-3[data-v-05e23a52]{margin-left:26%}.col-no-margin-l-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-4[data-v-05e23a52]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-5[data-v-05e23a52]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-6[data-v-05e23a52]{margin-left:52%}.col-no-margin-l-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-7[data-v-05e23a52]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-8[data-v-05e23a52]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-9[data-v-05e23a52]{margin-left:78%}.col-no-margin-l-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-10[data-v-05e23a52]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-05e23a52]:first-child{margin-left:0}.col-offset-l-11[data-v-05e23a52]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-l-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-05e23a52]{display:none!important}.l-visible[data-v-05e23a52]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-1[data-v-05e23a52]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-2[data-v-05e23a52]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-3[data-v-05e23a52]{margin-left:26%}.col-no-margin-xl-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-4[data-v-05e23a52]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-5[data-v-05e23a52]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-6[data-v-05e23a52]{margin-left:52%}.col-no-margin-xl-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-7[data-v-05e23a52]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-8[data-v-05e23a52]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-9[data-v-05e23a52]{margin-left:78%}.col-no-margin-xl-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-10[data-v-05e23a52]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xl-11[data-v-05e23a52]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-05e23a52]{display:none!important}.xl-visible[data-v-05e23a52]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-1[data-v-05e23a52]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-05e23a52]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-2[data-v-05e23a52]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-05e23a52]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-3[data-v-05e23a52]{margin-left:26%}.col-no-margin-xxl-3[data-v-05e23a52]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-4[data-v-05e23a52]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-05e23a52]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-5[data-v-05e23a52]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-05e23a52]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-6[data-v-05e23a52]{margin-left:52%}.col-no-margin-xxl-6[data-v-05e23a52]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-7[data-v-05e23a52]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-05e23a52]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-8[data-v-05e23a52]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-05e23a52]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-9[data-v-05e23a52]{margin-left:78%}.col-no-margin-xxl-9[data-v-05e23a52]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-10[data-v-05e23a52]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-05e23a52]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-05e23a52]:first-child{margin-left:0}.col-offset-xxl-11[data-v-05e23a52]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-05e23a52]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-05e23a52]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-05e23a52]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-05e23a52]{display:none!important}.xxl-visible[data-v-05e23a52]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-05e23a52]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-05e23a52]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-05e23a52]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-05e23a52]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-05e23a52]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-05e23a52]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-05e23a52]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-05e23a52]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-05e23a52]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-05e23a52]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-05e23a52]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-05e23a52]{display:none}}@media screen and (min-width:769px){.mobile[data-v-05e23a52]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-05e23a52]{display:none}}.vertical-center[data-v-05e23a52]{display:flex;align-items:center}.horizontal-center[data-v-05e23a52]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-05e23a52]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-05e23a52]{display:none!important}.no-content[data-v-05e23a52]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-05e23a52],.btn[data-v-05e23a52],button[data-v-05e23a52]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-05e23a52],.btn-default[type=submit][data-v-05e23a52],.btn.btn-primary[data-v-05e23a52],.btn[type=submit][data-v-05e23a52],button.btn-primary[data-v-05e23a52],button[type=submit][data-v-05e23a52]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-05e23a52],.btn-default .icon[data-v-05e23a52],button .icon[data-v-05e23a52]{margin-right:.5em}input[type=password][data-v-05e23a52],input[type=text][data-v-05e23a52]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-05e23a52]:focus,input[type=text][data-v-05e23a52]:focus{border:1px solid #35b870}button[data-v-05e23a52],input[data-v-05e23a52]{outline:none}input[type=text][data-v-05e23a52]:hover,textarea[data-v-05e23a52]:hover{border:1px solid #9cdfb0}ul[data-v-05e23a52]{margin:0;padding:0;list-style:none}a[data-v-05e23a52]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-05e23a52]:hover{color:#35b870}[data-v-05e23a52]::-webkit-scrollbar{width:.75em}[data-v-05e23a52]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-05e23a52]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-05e23a52]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-05e23a52]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-05e23a52],input[type=password][data-v-05e23a52],input[type=search][data-v-05e23a52],input[type=text][data-v-05e23a52]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-05e23a52]:hover,input[type=password][data-v-05e23a52]:hover,input[type=search][data-v-05e23a52]:hover,input[type=text][data-v-05e23a52]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-05e23a52]:focus,input[type=password][data-v-05e23a52]:focus,input[type=search][data-v-05e23a52]:focus,input[type=text][data-v-05e23a52]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-05e23a52],input[type=password].with-icon[data-v-05e23a52],input[type=search].with-icon[data-v-05e23a52],input[type=text].with-icon[data-v-05e23a52]{padding-left:.3em}input[type=search][data-v-05e23a52],input[type=text][data-v-05e23a52]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-05e23a52]{animation-fill-mode:both;animation-name:fadeIn-05e23a52;-webkit-animation-name:fadeIn-05e23a52}.fade-in[data-v-05e23a52],.fade-out[data-v-05e23a52]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-05e23a52]{animation-fill-mode:both;animation-name:fadeOut-05e23a52;-webkit-animation-name:fadeOut-05e23a52}@keyframes fadeIn-05e23a52{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-05e23a52{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-05e23a52]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-05e23a52]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-05e23a52]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-05e23a52]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-05e23a52]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-05e23a52]{background:#8fefb7}.track.selected[data-v-05e23a52]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover[data-v-05e23a52]{border-top:2px solid #35b870}.track[data-v-05e23a52]::-moz-selection{background:transparent!important}.track[data-v-05e23a52]::selection{background:transparent!important}.track .title[data-v-05e23a52]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-05e23a52],.track .artist[data-v-05e23a52]{display:inline-flex;opacity:.7;font-size:.9em}.track .artist[data-v-05e23a52]{margin-right:.25em}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-05e23a52]{display:none}}.track .album[data-v-05e23a52]:before{content:"•";margin-right:.25em}.track .right-side[data-v-05e23a52]{display:flex;justify-content:flex-end}.track .actions[data-v-05e23a52],.track .duration[data-v-05e23a52]{display:inline-flex;align-items:center}.track .duration[data-v-05e23a52]{font-size:.85em;opacity:.7}.track .actions[data-v-05e23a52] button{opacity:.7}.playlist[data-v-05e23a52]{width:100%;display:flex;flex-direction:column}.playlist .header-container button[data-v-05e23a52]{border:0;background:none}.playlist .header-container .filter input[data-v-05e23a52]{width:100%}.playlist .header-container .buttons[data-v-05e23a52]{direction:rtl}.playlist .header-container .buttons .dropdown-container[data-v-05e23a52]{direction:ltr}.playlist .body[data-v-05e23a52]{height:calc(100% - 8.8em);overflow:auto}.playlist .no-content[data-v-05e23a52]{height:100%}.playing-icon[data-v-05e23a52]{display:inline-block;position:relative;margin-left:.75em;width:1.5em;height:1em}@keyframes playing_bar-05e23a52{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-05e23a52]{animation:.2s;display:block;position:absolute;bottom:0;width:.25em;height:100%;background:#38cf80;animation-name:playing_bar-05e23a52;animation-iteration-count:infinite}.playing-icon span[data-v-05e23a52]:first-child{left:0;animation-duration:2s}.playing-icon span[data-v-05e23a52]:nth-child(2){left:6px;animation-duration:4s}.playing-icon span[data-v-05e23a52]:nth-child(3){left:12px;animation-duration:1s}.playing-icon.paused span[data-v-05e23a52]{animation-play-state:paused}[data-v-05e23a52] .track-info-content .attr{opacity:.75}[data-v-05e23a52] .track-info-content .value{text-align:right}.col-1[data-v-614005f4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-1[data-v-614005f4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-614005f4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-614005f4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-614005f4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-2[data-v-614005f4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-614005f4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-614005f4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-614005f4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-3[data-v-614005f4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-614005f4]:first-child{margin-left:26%!important}.col-offset-3[data-v-614005f4]:not(first-child){margin-left:30%!important}.col-4[data-v-614005f4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-4[data-v-614005f4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-614005f4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-614005f4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-614005f4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-5[data-v-614005f4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-614005f4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-614005f4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-614005f4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-6[data-v-614005f4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-614005f4]:first-child{margin-left:52%!important}.col-offset-6[data-v-614005f4]:not(first-child){margin-left:56%!important}.col-7[data-v-614005f4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-7[data-v-614005f4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-614005f4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-614005f4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-614005f4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-8[data-v-614005f4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-614005f4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-614005f4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-614005f4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-9[data-v-614005f4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-614005f4]:first-child{margin-left:78%!important}.col-offset-9[data-v-614005f4]:not(first-child){margin-left:82%!important}.col-10[data-v-614005f4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-10[data-v-614005f4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-614005f4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-614005f4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-614005f4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-614005f4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-614005f4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-1[data-v-614005f4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-614005f4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-614005f4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-2[data-v-614005f4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-614005f4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-614005f4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-3[data-v-614005f4]{margin-left:26%}.col-no-margin-s-3[data-v-614005f4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-614005f4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-4[data-v-614005f4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-614005f4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-614005f4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-5[data-v-614005f4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-614005f4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-614005f4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-6[data-v-614005f4]{margin-left:52%}.col-no-margin-s-6[data-v-614005f4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-614005f4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-7[data-v-614005f4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-614005f4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-614005f4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-8[data-v-614005f4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-614005f4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-614005f4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-9[data-v-614005f4]{margin-left:78%}.col-no-margin-s-9[data-v-614005f4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-614005f4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-10[data-v-614005f4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-614005f4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-614005f4]:first-child{margin-left:0}.col-offset-s-11[data-v-614005f4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-614005f4]{display:none!important}.s-visible[data-v-614005f4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-614005f4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-1[data-v-614005f4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-614005f4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-614005f4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-2[data-v-614005f4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-614005f4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-614005f4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-3[data-v-614005f4]{margin-left:26%}.col-no-margin-m-3[data-v-614005f4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-614005f4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-4[data-v-614005f4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-614005f4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-614005f4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-5[data-v-614005f4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-614005f4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-614005f4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-6[data-v-614005f4]{margin-left:52%}.col-no-margin-m-6[data-v-614005f4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-614005f4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-7[data-v-614005f4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-614005f4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-614005f4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-8[data-v-614005f4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-614005f4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-614005f4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-9[data-v-614005f4]{margin-left:78%}.col-no-margin-m-9[data-v-614005f4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-614005f4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-10[data-v-614005f4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-614005f4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-614005f4]:first-child{margin-left:0}.col-offset-m-11[data-v-614005f4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-614005f4]{display:none!important}.m-visible[data-v-614005f4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-614005f4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-1[data-v-614005f4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-614005f4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-614005f4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-2[data-v-614005f4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-614005f4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-614005f4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-3[data-v-614005f4]{margin-left:26%}.col-no-margin-l-3[data-v-614005f4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-614005f4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-4[data-v-614005f4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-614005f4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-614005f4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-5[data-v-614005f4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-614005f4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-614005f4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-6[data-v-614005f4]{margin-left:52%}.col-no-margin-l-6[data-v-614005f4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-614005f4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-7[data-v-614005f4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-614005f4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-614005f4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-8[data-v-614005f4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-614005f4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-614005f4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-9[data-v-614005f4]{margin-left:78%}.col-no-margin-l-9[data-v-614005f4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-614005f4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-10[data-v-614005f4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-614005f4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-614005f4]:first-child{margin-left:0}.col-offset-l-11[data-v-614005f4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-614005f4]{display:none!important}.l-visible[data-v-614005f4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-614005f4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-1[data-v-614005f4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-614005f4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-614005f4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-2[data-v-614005f4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-614005f4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-614005f4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-3[data-v-614005f4]{margin-left:26%}.col-no-margin-xl-3[data-v-614005f4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-614005f4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-4[data-v-614005f4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-614005f4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-614005f4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-5[data-v-614005f4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-614005f4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-614005f4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-6[data-v-614005f4]{margin-left:52%}.col-no-margin-xl-6[data-v-614005f4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-614005f4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-7[data-v-614005f4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-614005f4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-614005f4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-8[data-v-614005f4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-614005f4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-614005f4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-9[data-v-614005f4]{margin-left:78%}.col-no-margin-xl-9[data-v-614005f4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-614005f4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-10[data-v-614005f4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-614005f4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-614005f4]:first-child{margin-left:0}.col-offset-xl-11[data-v-614005f4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-614005f4]{display:none!important}.xl-visible[data-v-614005f4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-614005f4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-614005f4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-614005f4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-614005f4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-614005f4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-614005f4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-614005f4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-614005f4]{margin-left:26%}.col-no-margin-xxl-3[data-v-614005f4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-614005f4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-614005f4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-614005f4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-614005f4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-614005f4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-614005f4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-614005f4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-614005f4]{margin-left:52%}.col-no-margin-xxl-6[data-v-614005f4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-614005f4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-614005f4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-614005f4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-614005f4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-614005f4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-614005f4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-614005f4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-614005f4]{margin-left:78%}.col-no-margin-xxl-9[data-v-614005f4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-614005f4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-614005f4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-614005f4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-614005f4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-614005f4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-614005f4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-614005f4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-614005f4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-614005f4]{display:none!important}.xxl-visible[data-v-614005f4]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-614005f4]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-614005f4]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-614005f4]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-614005f4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-614005f4]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-614005f4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-614005f4]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-614005f4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-614005f4]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-614005f4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-614005f4]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-614005f4]{display:none}}@media screen and (min-width:769px){.mobile[data-v-614005f4]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-614005f4]{display:none}}.vertical-center[data-v-614005f4]{display:flex;align-items:center}.horizontal-center[data-v-614005f4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-614005f4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-614005f4]{display:none!important}.no-content[data-v-614005f4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-614005f4],.btn[data-v-614005f4],button[data-v-614005f4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-614005f4],.btn-default[type=submit][data-v-614005f4],.btn.btn-primary[data-v-614005f4],.btn[type=submit][data-v-614005f4],button.btn-primary[data-v-614005f4],button[type=submit][data-v-614005f4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-614005f4],.btn-default .icon[data-v-614005f4],button .icon[data-v-614005f4]{margin-right:.5em}input[type=password][data-v-614005f4],input[type=text][data-v-614005f4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-614005f4]:focus,input[type=text][data-v-614005f4]:focus{border:1px solid #35b870}button[data-v-614005f4],input[data-v-614005f4]{outline:none}input[type=text][data-v-614005f4]:hover,textarea[data-v-614005f4]:hover{border:1px solid #9cdfb0}ul[data-v-614005f4]{margin:0;padding:0;list-style:none}a[data-v-614005f4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-614005f4]:hover{color:#35b870}[data-v-614005f4]::-webkit-scrollbar{width:.75em}[data-v-614005f4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-614005f4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-614005f4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-614005f4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-614005f4],input[type=password][data-v-614005f4],input[type=search][data-v-614005f4],input[type=text][data-v-614005f4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-614005f4]:hover,input[type=password][data-v-614005f4]:hover,input[type=search][data-v-614005f4]:hover,input[type=text][data-v-614005f4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-614005f4]:focus,input[type=password][data-v-614005f4]:focus,input[type=search][data-v-614005f4]:focus,input[type=text][data-v-614005f4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-614005f4],input[type=password].with-icon[data-v-614005f4],input[type=search].with-icon[data-v-614005f4],input[type=text].with-icon[data-v-614005f4]{padding-left:.3em}input[type=search][data-v-614005f4],input[type=text][data-v-614005f4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-614005f4]{animation-fill-mode:both;animation-name:fadeIn-614005f4;-webkit-animation-name:fadeIn-614005f4}.fade-in[data-v-614005f4],.fade-out[data-v-614005f4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-614005f4]{animation-fill-mode:both;animation-name:fadeOut-614005f4;-webkit-animation-name:fadeOut-614005f4}@keyframes fadeIn-614005f4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-614005f4{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-614005f4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-614005f4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-614005f4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-614005f4]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-614005f4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-614005f4]{background:#8fefb7}.track.selected[data-v-614005f4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover[data-v-614005f4]{border-top:2px solid #35b870}.track[data-v-614005f4]::-moz-selection{background:transparent!important}.track[data-v-614005f4]::selection{background:transparent!important}.track .title[data-v-614005f4]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-614005f4],.track .artist[data-v-614005f4]{display:inline-flex;opacity:.7;font-size:.9em}.track .artist[data-v-614005f4]{margin-right:.25em}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-614005f4]{display:none}}.track .album[data-v-614005f4]:before{content:"•";margin-right:.25em}.track .right-side[data-v-614005f4]{display:flex;justify-content:flex-end}.track .actions[data-v-614005f4],.track .duration[data-v-614005f4]{display:inline-flex;align-items:center}.track .duration[data-v-614005f4]{font-size:.85em;opacity:.7}.track .actions[data-v-614005f4] button{opacity:.7}.playlists[data-v-614005f4]{width:100%;display:flex;flex-direction:column}.playlists .header-container .filter input[data-v-614005f4]{width:100%}.playlists .body[data-v-614005f4]{height:calc(100% - 8.8em);overflow:auto}.playlists .no-content[data-v-614005f4]{height:100%}.playlists .playlist[data-v-614005f4]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.playlists .playlist[data-v-614005f4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.playlists .playlist.active[data-v-614005f4]{background:#8fefb7}.playlists .playlist.selected[data-v-614005f4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.playlists .playlist .right-side[data-v-614005f4]{display:flex;justify-content:flex-end}.playlists .header .buttons[data-v-614005f4]{align-items:flex-end;justify-content:flex-end}.editor-container[data-v-614005f4]{width:100%;height:100%;display:flex;flex-direction:column}.editor-container .header-container[data-v-614005f4]{width:100%}.editor-container[data-v-614005f4] .header .back-btn{padding-left:.25em}.editor-container[data-v-614005f4] .header .add-btn{float:right}.editor-container[data-v-614005f4] .header .search-box input{width:65%}.editor-container .editor[data-v-614005f4]{width:100%;height:calc(100% - 8.8em);display:flex;flex-direction:column;overflow:auto}.col-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6dd57d0b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6dd57d0b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6dd57d0b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6dd57d0b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6dd57d0b]:first-child{margin-left:26%!important}.col-offset-3[data-v-6dd57d0b]:not(first-child){margin-left:30%!important}.col-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6dd57d0b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6dd57d0b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6dd57d0b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6dd57d0b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6dd57d0b]:first-child{margin-left:52%!important}.col-offset-6[data-v-6dd57d0b]:not(first-child){margin-left:56%!important}.col-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6dd57d0b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6dd57d0b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6dd57d0b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6dd57d0b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6dd57d0b]:first-child{margin-left:78%!important}.col-offset-9[data-v-6dd57d0b]:not(first-child){margin-left:82%!important}.col-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6dd57d0b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6dd57d0b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6dd57d0b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6dd57d0b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-1[data-v-6dd57d0b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-2[data-v-6dd57d0b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-3[data-v-6dd57d0b]{margin-left:26%}.col-no-margin-s-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-4[data-v-6dd57d0b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-5[data-v-6dd57d0b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-6[data-v-6dd57d0b]{margin-left:52%}.col-no-margin-s-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-7[data-v-6dd57d0b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-8[data-v-6dd57d0b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-9[data-v-6dd57d0b]{margin-left:78%}.col-no-margin-s-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-10[data-v-6dd57d0b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-s-11[data-v-6dd57d0b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6dd57d0b]{display:none!important}.s-visible[data-v-6dd57d0b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-1[data-v-6dd57d0b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-2[data-v-6dd57d0b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-3[data-v-6dd57d0b]{margin-left:26%}.col-no-margin-m-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-4[data-v-6dd57d0b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-5[data-v-6dd57d0b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-6[data-v-6dd57d0b]{margin-left:52%}.col-no-margin-m-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-7[data-v-6dd57d0b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-8[data-v-6dd57d0b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-9[data-v-6dd57d0b]{margin-left:78%}.col-no-margin-m-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-10[data-v-6dd57d0b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-m-11[data-v-6dd57d0b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6dd57d0b]{display:none!important}.m-visible[data-v-6dd57d0b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-1[data-v-6dd57d0b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-2[data-v-6dd57d0b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-3[data-v-6dd57d0b]{margin-left:26%}.col-no-margin-l-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-4[data-v-6dd57d0b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-5[data-v-6dd57d0b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-6[data-v-6dd57d0b]{margin-left:52%}.col-no-margin-l-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-7[data-v-6dd57d0b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-8[data-v-6dd57d0b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-9[data-v-6dd57d0b]{margin-left:78%}.col-no-margin-l-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-10[data-v-6dd57d0b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-l-11[data-v-6dd57d0b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6dd57d0b]{display:none!important}.l-visible[data-v-6dd57d0b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-1[data-v-6dd57d0b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-2[data-v-6dd57d0b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-3[data-v-6dd57d0b]{margin-left:26%}.col-no-margin-xl-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-4[data-v-6dd57d0b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-5[data-v-6dd57d0b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-6[data-v-6dd57d0b]{margin-left:52%}.col-no-margin-xl-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-7[data-v-6dd57d0b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-8[data-v-6dd57d0b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-9[data-v-6dd57d0b]{margin-left:78%}.col-no-margin-xl-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-10[data-v-6dd57d0b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xl-11[data-v-6dd57d0b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6dd57d0b]{display:none!important}.xl-visible[data-v-6dd57d0b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6dd57d0b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6dd57d0b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6dd57d0b]{margin-left:26%}.col-no-margin-xxl-3[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6dd57d0b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6dd57d0b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6dd57d0b]{margin-left:52%}.col-no-margin-xxl-6[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6dd57d0b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6dd57d0b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6dd57d0b]{margin-left:78%}.col-no-margin-xxl-9[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6dd57d0b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6dd57d0b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6dd57d0b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6dd57d0b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6dd57d0b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6dd57d0b]{display:none!important}.xxl-visible[data-v-6dd57d0b]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6dd57d0b]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-6dd57d0b]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6dd57d0b]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-6dd57d0b]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6dd57d0b]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-6dd57d0b]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6dd57d0b]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-6dd57d0b]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6dd57d0b]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-6dd57d0b]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6dd57d0b]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-6dd57d0b]{display:none}}@media screen and (min-width:769px){.mobile[data-v-6dd57d0b]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6dd57d0b]{display:none}}.vertical-center[data-v-6dd57d0b]{display:flex;align-items:center}.horizontal-center[data-v-6dd57d0b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6dd57d0b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6dd57d0b]{display:none!important}.no-content[data-v-6dd57d0b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-6dd57d0b],.btn[data-v-6dd57d0b],button[data-v-6dd57d0b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6dd57d0b],.btn-default[type=submit][data-v-6dd57d0b],.btn.btn-primary[data-v-6dd57d0b],.btn[type=submit][data-v-6dd57d0b],button.btn-primary[data-v-6dd57d0b],button[type=submit][data-v-6dd57d0b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6dd57d0b],.btn-default .icon[data-v-6dd57d0b],button .icon[data-v-6dd57d0b]{margin-right:.5em}input[type=password][data-v-6dd57d0b],input[type=text][data-v-6dd57d0b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6dd57d0b]:focus,input[type=text][data-v-6dd57d0b]:focus{border:1px solid #35b870}button[data-v-6dd57d0b],input[data-v-6dd57d0b]{outline:none}input[type=text][data-v-6dd57d0b]:hover,textarea[data-v-6dd57d0b]:hover{border:1px solid #9cdfb0}ul[data-v-6dd57d0b]{margin:0;padding:0;list-style:none}a[data-v-6dd57d0b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6dd57d0b]:hover{color:#35b870}[data-v-6dd57d0b]::-webkit-scrollbar{width:.75em}[data-v-6dd57d0b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6dd57d0b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6dd57d0b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-6dd57d0b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-6dd57d0b],input[type=password][data-v-6dd57d0b],input[type=search][data-v-6dd57d0b],input[type=text][data-v-6dd57d0b]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-6dd57d0b]:hover,input[type=password][data-v-6dd57d0b]:hover,input[type=search][data-v-6dd57d0b]:hover,input[type=text][data-v-6dd57d0b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-6dd57d0b]:focus,input[type=password][data-v-6dd57d0b]:focus,input[type=search][data-v-6dd57d0b]:focus,input[type=text][data-v-6dd57d0b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-6dd57d0b],input[type=password].with-icon[data-v-6dd57d0b],input[type=search].with-icon[data-v-6dd57d0b],input[type=text].with-icon[data-v-6dd57d0b]{padding-left:.3em}input[type=search][data-v-6dd57d0b],input[type=text][data-v-6dd57d0b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6dd57d0b]{animation-fill-mode:both;animation-name:fadeIn-6dd57d0b;-webkit-animation-name:fadeIn-6dd57d0b}.fade-in[data-v-6dd57d0b],.fade-out[data-v-6dd57d0b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6dd57d0b]{animation-fill-mode:both;animation-name:fadeOut-6dd57d0b;-webkit-animation-name:fadeOut-6dd57d0b}@keyframes fadeIn-6dd57d0b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6dd57d0b{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-6dd57d0b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6dd57d0b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6dd57d0b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-6dd57d0b]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-6dd57d0b]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-6dd57d0b]{background:#8fefb7}.track.selected[data-v-6dd57d0b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover[data-v-6dd57d0b]{border-top:2px solid #35b870}.track[data-v-6dd57d0b]::-moz-selection{background:transparent!important}.track[data-v-6dd57d0b]::selection{background:transparent!important}.track .title[data-v-6dd57d0b]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-6dd57d0b],.track .artist[data-v-6dd57d0b]{display:inline-flex;opacity:.7;font-size:.9em}.track .artist[data-v-6dd57d0b]{margin-right:.25em}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-6dd57d0b]{display:none}}.track .album[data-v-6dd57d0b]:before{content:"•";margin-right:.25em}.track .right-side[data-v-6dd57d0b]{display:flex;justify-content:flex-end}.track .actions[data-v-6dd57d0b],.track .duration[data-v-6dd57d0b]{display:inline-flex;align-items:center}.track .duration[data-v-6dd57d0b]{font-size:.85em;opacity:.7}.track .actions[data-v-6dd57d0b] button{opacity:.7}.search[data-v-6dd57d0b]{width:100%;height:calc(100% - 5.5em);display:flex;flex-direction:column}.search .form-container[data-v-6dd57d0b],.search[data-v-6dd57d0b]:not(.form-collapsed){justify-content:center;align-items:center}.search .form-container[data-v-6dd57d0b]{width:100%;height:100%;display:flex;flex-grow:1}.search form[data-v-6dd57d0b]{width:calc(100% - 2em);max-width:30em;height:17em;background:#edf0ee;display:flex;padding:2em;border-radius:1.5em}.search form .row[data-v-6dd57d0b]{margin:.25em 0}.search form input[type=text][data-v-6dd57d0b]{width:100%}.search form[data-v-6dd57d0b] .form-footer{height:3em;padding-right:0;border:0}.search form[data-v-6dd57d0b] button{border:0}.search form[data-v-6dd57d0b] button[type=submit]{background:none}.search form[data-v-6dd57d0b] button:hover{border:0;color:#38cf80}.search .results[data-v-6dd57d0b]{height:calc(100% - 3.3em);flex-grow:1;overflow:auto}.search[data-v-6dd57d0b] .header{display:flex;width:100%;align-items:center}.search[data-v-6dd57d0b] .header .search-box{width:70%}.search[data-v-6dd57d0b] .header .search-box input[type=search]{width:100%}.search[data-v-6dd57d0b] .header .buttons{width:30%;display:inline-flex;justify-content:flex-end;margin:0}.col-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-74e2a8c9]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-74e2a8c9]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-74e2a8c9]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-74e2a8c9]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-74e2a8c9]:first-child{margin-left:26%!important}.col-offset-3[data-v-74e2a8c9]:not(first-child){margin-left:30%!important}.col-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-74e2a8c9]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-74e2a8c9]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-74e2a8c9]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-74e2a8c9]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-74e2a8c9]:first-child{margin-left:52%!important}.col-offset-6[data-v-74e2a8c9]:not(first-child){margin-left:56%!important}.col-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-74e2a8c9]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-74e2a8c9]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-74e2a8c9]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-74e2a8c9]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-74e2a8c9]:first-child{margin-left:78%!important}.col-offset-9[data-v-74e2a8c9]:not(first-child){margin-left:82%!important}.col-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-74e2a8c9]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-74e2a8c9]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-74e2a8c9]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-74e2a8c9]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-1[data-v-74e2a8c9]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-2[data-v-74e2a8c9]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-3[data-v-74e2a8c9]{margin-left:26%}.col-no-margin-s-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-4[data-v-74e2a8c9]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-5[data-v-74e2a8c9]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-6[data-v-74e2a8c9]{margin-left:52%}.col-no-margin-s-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-7[data-v-74e2a8c9]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-8[data-v-74e2a8c9]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-9[data-v-74e2a8c9]{margin-left:78%}.col-no-margin-s-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-10[data-v-74e2a8c9]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-s-11[data-v-74e2a8c9]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-s-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-74e2a8c9]{display:none!important}.s-visible[data-v-74e2a8c9]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-1[data-v-74e2a8c9]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-2[data-v-74e2a8c9]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-3[data-v-74e2a8c9]{margin-left:26%}.col-no-margin-m-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-4[data-v-74e2a8c9]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-5[data-v-74e2a8c9]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-6[data-v-74e2a8c9]{margin-left:52%}.col-no-margin-m-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-7[data-v-74e2a8c9]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-8[data-v-74e2a8c9]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-9[data-v-74e2a8c9]{margin-left:78%}.col-no-margin-m-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-10[data-v-74e2a8c9]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-m-11[data-v-74e2a8c9]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-m-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-74e2a8c9]{display:none!important}.m-visible[data-v-74e2a8c9]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-1[data-v-74e2a8c9]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-2[data-v-74e2a8c9]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-3[data-v-74e2a8c9]{margin-left:26%}.col-no-margin-l-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-4[data-v-74e2a8c9]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-5[data-v-74e2a8c9]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-6[data-v-74e2a8c9]{margin-left:52%}.col-no-margin-l-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-7[data-v-74e2a8c9]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-8[data-v-74e2a8c9]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-9[data-v-74e2a8c9]{margin-left:78%}.col-no-margin-l-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-10[data-v-74e2a8c9]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-l-11[data-v-74e2a8c9]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-l-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-74e2a8c9]{display:none!important}.l-visible[data-v-74e2a8c9]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-1[data-v-74e2a8c9]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-2[data-v-74e2a8c9]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-3[data-v-74e2a8c9]{margin-left:26%}.col-no-margin-xl-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-4[data-v-74e2a8c9]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-5[data-v-74e2a8c9]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-6[data-v-74e2a8c9]{margin-left:52%}.col-no-margin-xl-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-7[data-v-74e2a8c9]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-8[data-v-74e2a8c9]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-9[data-v-74e2a8c9]{margin-left:78%}.col-no-margin-xl-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-10[data-v-74e2a8c9]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xl-11[data-v-74e2a8c9]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-74e2a8c9]{display:none!important}.xl-visible[data-v-74e2a8c9]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-1[data-v-74e2a8c9]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-2[data-v-74e2a8c9]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-3[data-v-74e2a8c9]{margin-left:26%}.col-no-margin-xxl-3[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-4[data-v-74e2a8c9]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-5[data-v-74e2a8c9]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-6[data-v-74e2a8c9]{margin-left:52%}.col-no-margin-xxl-6[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-7[data-v-74e2a8c9]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-8[data-v-74e2a8c9]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-9[data-v-74e2a8c9]{margin-left:78%}.col-no-margin-xxl-9[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-10[data-v-74e2a8c9]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-74e2a8c9]:first-child{margin-left:0}.col-offset-xxl-11[data-v-74e2a8c9]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-74e2a8c9]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-74e2a8c9]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-74e2a8c9]{display:none!important}.xxl-visible[data-v-74e2a8c9]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-74e2a8c9]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-74e2a8c9]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-74e2a8c9]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-74e2a8c9]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-74e2a8c9]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-74e2a8c9]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-74e2a8c9]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-74e2a8c9]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-74e2a8c9]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-74e2a8c9]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-74e2a8c9]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-74e2a8c9]{display:none}}@media screen and (min-width:769px){.mobile[data-v-74e2a8c9]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-74e2a8c9]{display:none}}.vertical-center[data-v-74e2a8c9]{display:flex;align-items:center}.horizontal-center[data-v-74e2a8c9]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-74e2a8c9]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-74e2a8c9]{display:none!important}.no-content[data-v-74e2a8c9]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-74e2a8c9],.btn[data-v-74e2a8c9],button[data-v-74e2a8c9]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-74e2a8c9],.btn-default[type=submit][data-v-74e2a8c9],.btn.btn-primary[data-v-74e2a8c9],.btn[type=submit][data-v-74e2a8c9],button.btn-primary[data-v-74e2a8c9],button[type=submit][data-v-74e2a8c9]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-74e2a8c9],.btn-default .icon[data-v-74e2a8c9],button .icon[data-v-74e2a8c9]{margin-right:.5em}input[type=password][data-v-74e2a8c9],input[type=text][data-v-74e2a8c9]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-74e2a8c9]:focus,input[type=text][data-v-74e2a8c9]:focus{border:1px solid #35b870}button[data-v-74e2a8c9],input[data-v-74e2a8c9]{outline:none}input[type=text][data-v-74e2a8c9]:hover,textarea[data-v-74e2a8c9]:hover{border:1px solid #9cdfb0}ul[data-v-74e2a8c9]{margin:0;padding:0;list-style:none}a[data-v-74e2a8c9]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-74e2a8c9]:hover{color:#35b870}[data-v-74e2a8c9]::-webkit-scrollbar{width:.75em}[data-v-74e2a8c9]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-74e2a8c9]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-74e2a8c9]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-74e2a8c9]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-74e2a8c9],input[type=password][data-v-74e2a8c9],input[type=search][data-v-74e2a8c9],input[type=text][data-v-74e2a8c9]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-74e2a8c9]:hover,input[type=password][data-v-74e2a8c9]:hover,input[type=search][data-v-74e2a8c9]:hover,input[type=text][data-v-74e2a8c9]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-74e2a8c9]:focus,input[type=password][data-v-74e2a8c9]:focus,input[type=search][data-v-74e2a8c9]:focus,input[type=text][data-v-74e2a8c9]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-74e2a8c9],input[type=password].with-icon[data-v-74e2a8c9],input[type=search].with-icon[data-v-74e2a8c9],input[type=text].with-icon[data-v-74e2a8c9]{padding-left:.3em}input[type=search][data-v-74e2a8c9],input[type=text][data-v-74e2a8c9]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-74e2a8c9]{animation-fill-mode:both;animation-name:fadeIn-74e2a8c9;-webkit-animation-name:fadeIn-74e2a8c9}.fade-in[data-v-74e2a8c9],.fade-out[data-v-74e2a8c9]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-74e2a8c9]{animation-fill-mode:both;animation-name:fadeOut-74e2a8c9;-webkit-animation-name:fadeOut-74e2a8c9}@keyframes fadeIn-74e2a8c9{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-74e2a8c9{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-74e2a8c9]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-74e2a8c9]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-74e2a8c9]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-74e2a8c9]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-74e2a8c9]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-74e2a8c9]{background:#8fefb7}.track.selected[data-v-74e2a8c9]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover[data-v-74e2a8c9]{border-top:2px solid #35b870}.track[data-v-74e2a8c9]::-moz-selection{background:transparent!important}.track[data-v-74e2a8c9]::selection{background:transparent!important}.track .title[data-v-74e2a8c9]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-74e2a8c9],.track .artist[data-v-74e2a8c9]{display:inline-flex;opacity:.7;font-size:.9em}.track .artist[data-v-74e2a8c9]{margin-right:.25em}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-74e2a8c9]{display:none}}.track .album[data-v-74e2a8c9]:before{content:"•";margin-right:.25em}.track .right-side[data-v-74e2a8c9]{display:flex;justify-content:flex-end}.track .actions[data-v-74e2a8c9],.track .duration[data-v-74e2a8c9]{display:inline-flex;align-items:center}.track .duration[data-v-74e2a8c9]{font-size:.85em;opacity:.7}.track .actions[data-v-74e2a8c9] button{opacity:.7}.library[data-v-74e2a8c9]{width:100%;display:flex;flex-direction:column}.library .results[data-v-74e2a8c9]{overflow:auto;height:100%}.library .results .track[data-v-74e2a8c9]{display:flex;align-items:center;justify-content:left}.library .results .track .left-side[data-v-74e2a8c9]{display:inline-flex;align-items:center}.library .results .icon[data-v-74e2a8c9]{opacity:.5;margin-right:.75em}.library[data-v-74e2a8c9] .header{display:flex;width:100%;align-items:center}.library[data-v-74e2a8c9] .header .search-box{width:70%}.library[data-v-74e2a8c9] .header .search-box input[type=search]{width:100%}.library[data-v-74e2a8c9] .header .buttons{width:30%;display:inline-flex;justify-content:right;margin:0}.col-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-32bb6da2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-32bb6da2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-32bb6da2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-32bb6da2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-32bb6da2]:first-child{margin-left:26%!important}.col-offset-3[data-v-32bb6da2]:not(first-child){margin-left:30%!important}.col-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-32bb6da2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-32bb6da2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-32bb6da2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-32bb6da2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-32bb6da2]:first-child{margin-left:52%!important}.col-offset-6[data-v-32bb6da2]:not(first-child){margin-left:56%!important}.col-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-32bb6da2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-32bb6da2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-32bb6da2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-32bb6da2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-32bb6da2]:first-child{margin-left:78%!important}.col-offset-9[data-v-32bb6da2]:not(first-child){margin-left:82%!important}.col-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-32bb6da2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-32bb6da2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-32bb6da2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-32bb6da2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-1[data-v-32bb6da2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-2[data-v-32bb6da2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-3[data-v-32bb6da2]{margin-left:26%}.col-no-margin-s-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-4[data-v-32bb6da2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-5[data-v-32bb6da2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-6[data-v-32bb6da2]{margin-left:52%}.col-no-margin-s-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-7[data-v-32bb6da2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-8[data-v-32bb6da2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-9[data-v-32bb6da2]{margin-left:78%}.col-no-margin-s-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-10[data-v-32bb6da2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-s-11[data-v-32bb6da2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-32bb6da2]{display:none!important}.s-visible[data-v-32bb6da2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-1[data-v-32bb6da2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-2[data-v-32bb6da2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-3[data-v-32bb6da2]{margin-left:26%}.col-no-margin-m-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-4[data-v-32bb6da2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-5[data-v-32bb6da2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-6[data-v-32bb6da2]{margin-left:52%}.col-no-margin-m-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-7[data-v-32bb6da2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-8[data-v-32bb6da2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-9[data-v-32bb6da2]{margin-left:78%}.col-no-margin-m-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-10[data-v-32bb6da2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-m-11[data-v-32bb6da2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-32bb6da2]{display:none!important}.m-visible[data-v-32bb6da2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-1[data-v-32bb6da2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-2[data-v-32bb6da2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-3[data-v-32bb6da2]{margin-left:26%}.col-no-margin-l-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-4[data-v-32bb6da2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-5[data-v-32bb6da2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-6[data-v-32bb6da2]{margin-left:52%}.col-no-margin-l-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-7[data-v-32bb6da2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-8[data-v-32bb6da2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-9[data-v-32bb6da2]{margin-left:78%}.col-no-margin-l-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-10[data-v-32bb6da2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-l-11[data-v-32bb6da2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-32bb6da2]{display:none!important}.l-visible[data-v-32bb6da2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-1[data-v-32bb6da2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-2[data-v-32bb6da2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-3[data-v-32bb6da2]{margin-left:26%}.col-no-margin-xl-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-4[data-v-32bb6da2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-5[data-v-32bb6da2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-6[data-v-32bb6da2]{margin-left:52%}.col-no-margin-xl-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-7[data-v-32bb6da2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-8[data-v-32bb6da2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-9[data-v-32bb6da2]{margin-left:78%}.col-no-margin-xl-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-10[data-v-32bb6da2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xl-11[data-v-32bb6da2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-32bb6da2]{display:none!important}.xl-visible[data-v-32bb6da2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-32bb6da2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-32bb6da2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-32bb6da2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-32bb6da2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-32bb6da2]{margin-left:26%}.col-no-margin-xxl-3[data-v-32bb6da2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-32bb6da2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-32bb6da2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-32bb6da2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-32bb6da2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-32bb6da2]{margin-left:52%}.col-no-margin-xxl-6[data-v-32bb6da2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-32bb6da2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-32bb6da2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-32bb6da2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-32bb6da2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-32bb6da2]{margin-left:78%}.col-no-margin-xxl-9[data-v-32bb6da2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-32bb6da2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-32bb6da2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-32bb6da2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-32bb6da2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-32bb6da2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-32bb6da2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-32bb6da2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-32bb6da2]{display:none!important}.xxl-visible[data-v-32bb6da2]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-32bb6da2]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-32bb6da2]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-32bb6da2]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-32bb6da2]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-32bb6da2]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-32bb6da2]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-32bb6da2]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-32bb6da2]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-32bb6da2]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-32bb6da2]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-32bb6da2]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-32bb6da2]{display:none}}@media screen and (min-width:769px){.mobile[data-v-32bb6da2]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-32bb6da2]{display:none}}.vertical-center[data-v-32bb6da2]{display:flex;align-items:center}.horizontal-center[data-v-32bb6da2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-32bb6da2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-32bb6da2]{display:none!important}.no-content[data-v-32bb6da2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-32bb6da2],.btn[data-v-32bb6da2],button[data-v-32bb6da2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-32bb6da2],.btn-default[type=submit][data-v-32bb6da2],.btn.btn-primary[data-v-32bb6da2],.btn[type=submit][data-v-32bb6da2],button.btn-primary[data-v-32bb6da2],button[type=submit][data-v-32bb6da2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-32bb6da2],.btn-default .icon[data-v-32bb6da2],button .icon[data-v-32bb6da2]{margin-right:.5em}input[type=password][data-v-32bb6da2],input[type=text][data-v-32bb6da2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-32bb6da2]:focus,input[type=text][data-v-32bb6da2]:focus{border:1px solid #35b870}button[data-v-32bb6da2],input[data-v-32bb6da2]{outline:none}input[type=text][data-v-32bb6da2]:hover,textarea[data-v-32bb6da2]:hover{border:1px solid #9cdfb0}ul[data-v-32bb6da2]{margin:0;padding:0;list-style:none}a[data-v-32bb6da2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-32bb6da2]:hover{color:#35b870}[data-v-32bb6da2]::-webkit-scrollbar{width:.75em}[data-v-32bb6da2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-32bb6da2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-32bb6da2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-32bb6da2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-32bb6da2],input[type=password][data-v-32bb6da2],input[type=search][data-v-32bb6da2],input[type=text][data-v-32bb6da2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-32bb6da2]:hover,input[type=password][data-v-32bb6da2]:hover,input[type=search][data-v-32bb6da2]:hover,input[type=text][data-v-32bb6da2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-32bb6da2]:focus,input[type=password][data-v-32bb6da2]:focus,input[type=search][data-v-32bb6da2]:focus,input[type=text][data-v-32bb6da2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-32bb6da2],input[type=password].with-icon[data-v-32bb6da2],input[type=search].with-icon[data-v-32bb6da2],input[type=text].with-icon[data-v-32bb6da2]{padding-left:.3em}input[type=search][data-v-32bb6da2],input[type=text][data-v-32bb6da2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-32bb6da2]{animation-fill-mode:both;animation-name:fadeIn-32bb6da2;-webkit-animation-name:fadeIn-32bb6da2}.fade-in[data-v-32bb6da2],.fade-out[data-v-32bb6da2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-32bb6da2]{animation-fill-mode:both;animation-name:fadeOut-32bb6da2;-webkit-animation-name:fadeOut-32bb6da2}@keyframes fadeIn-32bb6da2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-32bb6da2{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-32bb6da2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-32bb6da2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-32bb6da2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-32bb6da2]{height:100%;background:#fff;display:flex;flex-direction:row-reverse}main .view-container[data-v-32bb6da2]{display:flex;flex-grow:1;overflow:auto}main[data-v-32bb6da2] button{background:none;padding:.5em .75em;border:0}main[data-v-32bb6da2] button:hover{border:0;color:#35b870}main[data-v-32bb6da2] a{color:#000;opacity:.65}main[data-v-32bb6da2] a:hover{opacity:.75;border-bottom:1px dotted}.playlists-modal-container[data-v-32bb6da2] .body{display:flex;flex-direction:column;padding:0!important}.playlists-modal-container[data-v-32bb6da2] .filter{padding:.33em;background-color:#e4eae8;border-bottom:1px solid #ddd}.playlists-modal-container[data-v-32bb6da2] .filter input{width:90%}.playlists-modal-container[data-v-32bb6da2] .playlists{overflow:auto;padding:1.5em}.playlists-modal-container[data-v-32bb6da2] .playlists label{display:flex;align-items:center}.playlists-modal-container[data-v-32bb6da2] .playlists label:not(:last-child){margin-bottom:.5em}.playlists-modal-container[data-v-32bb6da2] .playlists label .name{margin-left:.5em}.track-info-container[data-v-32bb6da2] .body{height:15em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.track-info-container[data-v-32bb6da2] .body{width:25em}}@media screen and (min-width:769px){.track-info-container[data-v-32bb6da2] .body{width:35em}}.track-info-container[data-v-32bb6da2] .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/2992.f8bddaf0.css b/platypush/backend/http/webapp/dist/static/css/2992.f8bddaf0.css new file mode 100644 index 00000000..88d341e7 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/2992.f8bddaf0.css @@ -0,0 +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}}.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/306.919e2cb6.css b/platypush/backend/http/webapp/dist/static/css/306.919e2cb6.css deleted file mode 100644 index 273a19ef..00000000 --- a/platypush/backend/http/webapp/dist/static/css/306.919e2cb6.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-72b02f7c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-72b02f7c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-72b02f7c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-72b02f7c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-72b02f7c]:first-child{margin-left:26%!important}.col-offset-3[data-v-72b02f7c]:not(first-child){margin-left:30%!important}.col-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-72b02f7c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-72b02f7c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-72b02f7c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-72b02f7c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-72b02f7c]:first-child{margin-left:52%!important}.col-offset-6[data-v-72b02f7c]:not(first-child){margin-left:56%!important}.col-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-72b02f7c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-72b02f7c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-72b02f7c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-72b02f7c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-72b02f7c]:first-child{margin-left:78%!important}.col-offset-9[data-v-72b02f7c]:not(first-child){margin-left:82%!important}.col-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-72b02f7c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-72b02f7c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-72b02f7c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-72b02f7c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-1[data-v-72b02f7c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-2[data-v-72b02f7c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-3[data-v-72b02f7c]{margin-left:26%}.col-no-margin-s-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-4[data-v-72b02f7c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-5[data-v-72b02f7c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-6[data-v-72b02f7c]{margin-left:52%}.col-no-margin-s-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-7[data-v-72b02f7c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-8[data-v-72b02f7c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-9[data-v-72b02f7c]{margin-left:78%}.col-no-margin-s-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-10[data-v-72b02f7c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-s-11[data-v-72b02f7c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-72b02f7c]{display:none!important}.s-visible[data-v-72b02f7c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-1[data-v-72b02f7c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-2[data-v-72b02f7c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-3[data-v-72b02f7c]{margin-left:26%}.col-no-margin-m-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-4[data-v-72b02f7c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-5[data-v-72b02f7c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-6[data-v-72b02f7c]{margin-left:52%}.col-no-margin-m-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-7[data-v-72b02f7c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-8[data-v-72b02f7c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-9[data-v-72b02f7c]{margin-left:78%}.col-no-margin-m-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-10[data-v-72b02f7c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-m-11[data-v-72b02f7c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-72b02f7c]{display:none!important}.m-visible[data-v-72b02f7c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-1[data-v-72b02f7c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-2[data-v-72b02f7c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-3[data-v-72b02f7c]{margin-left:26%}.col-no-margin-l-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-4[data-v-72b02f7c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-5[data-v-72b02f7c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-6[data-v-72b02f7c]{margin-left:52%}.col-no-margin-l-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-7[data-v-72b02f7c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-8[data-v-72b02f7c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-9[data-v-72b02f7c]{margin-left:78%}.col-no-margin-l-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-10[data-v-72b02f7c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-l-11[data-v-72b02f7c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-72b02f7c]{display:none!important}.l-visible[data-v-72b02f7c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-1[data-v-72b02f7c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-2[data-v-72b02f7c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-3[data-v-72b02f7c]{margin-left:26%}.col-no-margin-xl-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-4[data-v-72b02f7c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-5[data-v-72b02f7c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-6[data-v-72b02f7c]{margin-left:52%}.col-no-margin-xl-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-7[data-v-72b02f7c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-8[data-v-72b02f7c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-9[data-v-72b02f7c]{margin-left:78%}.col-no-margin-xl-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-10[data-v-72b02f7c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xl-11[data-v-72b02f7c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-72b02f7c]{display:none!important}.xl-visible[data-v-72b02f7c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-72b02f7c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-72b02f7c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-72b02f7c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-72b02f7c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-72b02f7c]{margin-left:26%}.col-no-margin-xxl-3[data-v-72b02f7c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-72b02f7c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-72b02f7c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-72b02f7c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-72b02f7c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-72b02f7c]{margin-left:52%}.col-no-margin-xxl-6[data-v-72b02f7c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-72b02f7c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-72b02f7c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-72b02f7c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-72b02f7c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-72b02f7c]{margin-left:78%}.col-no-margin-xxl-9[data-v-72b02f7c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-72b02f7c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-72b02f7c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-72b02f7c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-72b02f7c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-72b02f7c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-72b02f7c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-72b02f7c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-72b02f7c]{display:none!important}.xxl-visible[data-v-72b02f7c]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-72b02f7c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-72b02f7c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-72b02f7c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-72b02f7c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-72b02f7c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-72b02f7c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-72b02f7c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-72b02f7c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-72b02f7c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-72b02f7c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-72b02f7c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-72b02f7c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-72b02f7c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-72b02f7c]{display:none}}.vertical-center[data-v-72b02f7c]{display:flex;align-items:center}.horizontal-center[data-v-72b02f7c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-72b02f7c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-72b02f7c]{display:none!important}.no-content[data-v-72b02f7c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-72b02f7c],.btn[data-v-72b02f7c],button[data-v-72b02f7c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-72b02f7c],.btn-default[type=submit][data-v-72b02f7c],.btn.btn-primary[data-v-72b02f7c],.btn[type=submit][data-v-72b02f7c],button.btn-primary[data-v-72b02f7c],button[type=submit][data-v-72b02f7c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-72b02f7c],.btn-default .icon[data-v-72b02f7c],button .icon[data-v-72b02f7c]{margin-right:.5em}input[type=password][data-v-72b02f7c],input[type=text][data-v-72b02f7c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-72b02f7c]:focus,input[type=text][data-v-72b02f7c]:focus{border:1px solid #35b870}button[data-v-72b02f7c],input[data-v-72b02f7c]{outline:none}input[type=text][data-v-72b02f7c]:hover,textarea[data-v-72b02f7c]:hover{border:1px solid #9cdfb0}ul[data-v-72b02f7c]{margin:0;padding:0;list-style:none}a[data-v-72b02f7c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-72b02f7c]:hover{color:#35b870}[data-v-72b02f7c]::-webkit-scrollbar{width:.75em}[data-v-72b02f7c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-72b02f7c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-72b02f7c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-72b02f7c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-72b02f7c],input[type=password][data-v-72b02f7c],input[type=search][data-v-72b02f7c],input[type=text][data-v-72b02f7c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-72b02f7c]:hover,input[type=password][data-v-72b02f7c]:hover,input[type=search][data-v-72b02f7c]:hover,input[type=text][data-v-72b02f7c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-72b02f7c]:focus,input[type=password][data-v-72b02f7c]:focus,input[type=search][data-v-72b02f7c]:focus,input[type=text][data-v-72b02f7c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-72b02f7c],input[type=password].with-icon[data-v-72b02f7c],input[type=search].with-icon[data-v-72b02f7c],input[type=text].with-icon[data-v-72b02f7c]{padding-left:.3em}input[type=search][data-v-72b02f7c],input[type=text][data-v-72b02f7c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-72b02f7c]{animation-fill-mode:both;animation-name:fadeIn-72b02f7c;-webkit-animation-name:fadeIn-72b02f7c}.fade-in[data-v-72b02f7c],.fade-out[data-v-72b02f7c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-72b02f7c]{animation-fill-mode:both;animation-name:fadeOut-72b02f7c;-webkit-animation-name:fadeOut-72b02f7c}@keyframes fadeIn-72b02f7c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-72b02f7c{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-72b02f7c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-72b02f7c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-72b02f7c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.image-carousel[data-v-72b02f7c]{width:calc(100% + 1.5em);height:calc(100% + 1.5em);position:relative;display:flex;align-items:center;justify-content:center;background-color:#000;margin:-.75em .75em .75em -.75em!important}.image-carousel .background[data-v-72b02f7c]{position:absolute;top:0;width:100%;height:100vh;background-color:#000;background-position:50%;background-size:cover;background-repeat:no-repeat;filter:blur(13px);-webkit-filter:blur(13px)}.image-carousel img[data-v-72b02f7c]{position:absolute;max-height:100%;z-index:2}.info-container[data-v-72b02f7c]{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-72b02f7c]{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(769px - 1px)){.tablet.from{display:none}}@media screen and (min-width:1024px){.tablet.until{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none}}@media screen and (min-width:1024px){.tablet.only{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none}}@media screen and (min-width:1216px){.desktop.until{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none}}@media screen and (min-width:1216px){.desktop.only{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none}}@media screen and (min-width:1408px){.widescreen.until{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none}}@media screen and (min-width:1408px){.widescreen.only{display:none}}@media screen and (min-width:769px){.mobile{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none}}.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}.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:.75em}::-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}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number],input[type=password],input[type=search],input[type=text]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].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}}.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/311.ce3daf0e.css b/platypush/backend/http/webapp/dist/static/css/311.ce50f619.css similarity index 71% rename from platypush/backend/http/webapp/dist/static/css/311.ce3daf0e.css rename to platypush/backend/http/webapp/dist/static/css/311.ce50f619.css index a4378252..ab33be02 100644 --- a/platypush/backend/http/webapp/dist/static/css/311.ce3daf0e.css +++ b/platypush/backend/http/webapp/dist/static/css/311.ce50f619.css @@ -1 +1 @@ -.col-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-75982eb8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-75982eb8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-75982eb8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-75982eb8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-75982eb8]:first-child{margin-left:26%!important}.col-offset-3[data-v-75982eb8]:not(first-child){margin-left:30%!important}.col-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-75982eb8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-75982eb8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-75982eb8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-75982eb8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-75982eb8]:first-child{margin-left:52%!important}.col-offset-6[data-v-75982eb8]:not(first-child){margin-left:56%!important}.col-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-75982eb8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-75982eb8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-75982eb8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-75982eb8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-75982eb8]:first-child{margin-left:78%!important}.col-offset-9[data-v-75982eb8]:not(first-child){margin-left:82%!important}.col-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-75982eb8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-75982eb8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-75982eb8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-75982eb8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-1[data-v-75982eb8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-2[data-v-75982eb8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-3[data-v-75982eb8]{margin-left:26%}.col-no-margin-s-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-4[data-v-75982eb8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-5[data-v-75982eb8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-6[data-v-75982eb8]{margin-left:52%}.col-no-margin-s-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-7[data-v-75982eb8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-8[data-v-75982eb8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-9[data-v-75982eb8]{margin-left:78%}.col-no-margin-s-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-10[data-v-75982eb8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-11[data-v-75982eb8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-75982eb8]{display:none!important}.s-visible[data-v-75982eb8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-1[data-v-75982eb8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-2[data-v-75982eb8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-3[data-v-75982eb8]{margin-left:26%}.col-no-margin-m-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-4[data-v-75982eb8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-5[data-v-75982eb8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-6[data-v-75982eb8]{margin-left:52%}.col-no-margin-m-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-7[data-v-75982eb8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-8[data-v-75982eb8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-9[data-v-75982eb8]{margin-left:78%}.col-no-margin-m-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-10[data-v-75982eb8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-11[data-v-75982eb8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-75982eb8]{display:none!important}.m-visible[data-v-75982eb8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-1[data-v-75982eb8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-2[data-v-75982eb8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-3[data-v-75982eb8]{margin-left:26%}.col-no-margin-l-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-4[data-v-75982eb8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-5[data-v-75982eb8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-6[data-v-75982eb8]{margin-left:52%}.col-no-margin-l-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-7[data-v-75982eb8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-8[data-v-75982eb8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-9[data-v-75982eb8]{margin-left:78%}.col-no-margin-l-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-10[data-v-75982eb8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-11[data-v-75982eb8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-75982eb8]{display:none!important}.l-visible[data-v-75982eb8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-1[data-v-75982eb8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-2[data-v-75982eb8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-3[data-v-75982eb8]{margin-left:26%}.col-no-margin-xl-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-4[data-v-75982eb8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-5[data-v-75982eb8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-6[data-v-75982eb8]{margin-left:52%}.col-no-margin-xl-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-7[data-v-75982eb8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-8[data-v-75982eb8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-9[data-v-75982eb8]{margin-left:78%}.col-no-margin-xl-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-10[data-v-75982eb8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-11[data-v-75982eb8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-75982eb8]{display:none!important}.xl-visible[data-v-75982eb8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-75982eb8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-75982eb8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-75982eb8]{margin-left:26%}.col-no-margin-xxl-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-75982eb8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-75982eb8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-75982eb8]{margin-left:52%}.col-no-margin-xxl-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-75982eb8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-75982eb8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-75982eb8]{margin-left:78%}.col-no-margin-xxl-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-75982eb8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-75982eb8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-75982eb8]{display:none!important}.xxl-visible[data-v-75982eb8]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-75982eb8]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-75982eb8]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-75982eb8]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-75982eb8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-75982eb8]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-75982eb8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-75982eb8]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-75982eb8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-75982eb8]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-75982eb8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-75982eb8]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-75982eb8]{display:none}}@media screen and (min-width:769px){.mobile[data-v-75982eb8]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-75982eb8]{display:none}}.vertical-center[data-v-75982eb8]{display:flex;align-items:center}.horizontal-center[data-v-75982eb8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-75982eb8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-75982eb8]{display:none!important}.no-content[data-v-75982eb8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-75982eb8],.btn[data-v-75982eb8],button[data-v-75982eb8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-75982eb8],.btn-default[type=submit][data-v-75982eb8],.btn.btn-primary[data-v-75982eb8],.btn[type=submit][data-v-75982eb8],button.btn-primary[data-v-75982eb8],button[type=submit][data-v-75982eb8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-75982eb8],.btn-default .icon[data-v-75982eb8],button .icon[data-v-75982eb8]{margin-right:.5em}input[type=password][data-v-75982eb8],input[type=text][data-v-75982eb8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-75982eb8]:focus,input[type=text][data-v-75982eb8]:focus{border:1px solid #35b870}button[data-v-75982eb8],input[data-v-75982eb8]{outline:none}input[type=text][data-v-75982eb8]:hover,textarea[data-v-75982eb8]:hover{border:1px solid #9cdfb0}ul[data-v-75982eb8]{margin:0;padding:0;list-style:none}a[data-v-75982eb8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-75982eb8]:hover{color:#35b870}[data-v-75982eb8]::-webkit-scrollbar{width:.75em}[data-v-75982eb8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-75982eb8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-75982eb8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-75982eb8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-75982eb8],input[type=password][data-v-75982eb8],input[type=search][data-v-75982eb8],input[type=text][data-v-75982eb8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-75982eb8]:hover,input[type=password][data-v-75982eb8]:hover,input[type=search][data-v-75982eb8]:hover,input[type=text][data-v-75982eb8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-75982eb8]:focus,input[type=password][data-v-75982eb8]:focus,input[type=search][data-v-75982eb8]:focus,input[type=text][data-v-75982eb8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-75982eb8],input[type=password].with-icon[data-v-75982eb8],input[type=search].with-icon[data-v-75982eb8],input[type=text].with-icon[data-v-75982eb8]{padding-left:.3em}input[type=search][data-v-75982eb8],input[type=text][data-v-75982eb8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-75982eb8]{animation-fill-mode:both;animation-name:fadeIn-75982eb8;-webkit-animation-name:fadeIn-75982eb8}.fade-in[data-v-75982eb8],.fade-out[data-v-75982eb8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-75982eb8]{animation-fill-mode:both;animation-name:fadeOut-75982eb8;-webkit-animation-name:fadeOut-75982eb8}@keyframes fadeIn-75982eb8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-75982eb8{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-75982eb8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-75982eb8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-75982eb8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.music[data-v-75982eb8]{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.music .track[data-v-75982eb8]{text-align:center}.music .track .no-track[data-v-75982eb8],.music .track .unknown[data-v-75982eb8]{font-size:2em}.music .track .artist[data-v-75982eb8]{font-size:1.9em;font-weight:700;margin-bottom:.25em}.music .track .title[data-v-75982eb8]{font-size:1.8em;font-weight:400}.music .time[data-v-75982eb8]{width:100%;margin-top:1em;font-size:1.2em}.music .time .row[data-v-75982eb8]{padding:0 .5em}.music .time .time-total[data-v-75982eb8]{text-align:right}.music .time .progress-bar[data-v-75982eb8]{width:100%;height:1em;position:relative;margin-bottom:.75em}.music .time .progress-bar .total[data-v-75982eb8]{position:absolute;width:100%;height:100%;top:0;background:#ddd;border-radius:.5em}.music .time .progress-bar .elapsed[data-v-75982eb8]{position:absolute;width:100%;height:100%;top:0;background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-radius:.5em;z-index:1}.music .playback-status[data-v-75982eb8]{position:absolute;bottom:0;border-top:1px solid #ddd;color:#757f70;width:100%;height:2em}.music .playback-status .status-property[data-v-75982eb8]{display:flex;align-items:center;justify-content:center;height:100%}.music .playback-status .active[data-v-75982eb8]{color:#35b870}.music .controls[data-v-75982eb8]{margin-top:.5em;font-size:1.2em}.music .controls button[data-v-75982eb8]{background:none;border:none}.music .controls button[data-v-75982eb8]:hover{color:#35b870}.music .controls button.play-pause[data-v-75982eb8]{color:#32b646;font-size:1.5em} \ No newline at end of file +.col-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-75982eb8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-75982eb8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-75982eb8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-75982eb8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-75982eb8]:first-child{margin-left:26%!important}.col-offset-3[data-v-75982eb8]:not(first-child){margin-left:30%!important}.col-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-75982eb8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-75982eb8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-75982eb8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-75982eb8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-75982eb8]:first-child{margin-left:52%!important}.col-offset-6[data-v-75982eb8]:not(first-child){margin-left:56%!important}.col-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-75982eb8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-75982eb8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-75982eb8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-75982eb8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-75982eb8]:first-child{margin-left:78%!important}.col-offset-9[data-v-75982eb8]:not(first-child){margin-left:82%!important}.col-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-75982eb8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-75982eb8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-75982eb8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-75982eb8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-1[data-v-75982eb8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-2[data-v-75982eb8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-3[data-v-75982eb8]{margin-left:26%}.col-no-margin-s-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-4[data-v-75982eb8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-5[data-v-75982eb8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-6[data-v-75982eb8]{margin-left:52%}.col-no-margin-s-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-7[data-v-75982eb8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-8[data-v-75982eb8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-9[data-v-75982eb8]{margin-left:78%}.col-no-margin-s-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-10[data-v-75982eb8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-75982eb8]:first-child{margin-left:0}.col-offset-s-11[data-v-75982eb8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-75982eb8]{display:none!important}.s-visible[data-v-75982eb8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-1[data-v-75982eb8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-2[data-v-75982eb8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-3[data-v-75982eb8]{margin-left:26%}.col-no-margin-m-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-4[data-v-75982eb8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-5[data-v-75982eb8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-6[data-v-75982eb8]{margin-left:52%}.col-no-margin-m-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-7[data-v-75982eb8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-8[data-v-75982eb8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-9[data-v-75982eb8]{margin-left:78%}.col-no-margin-m-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-10[data-v-75982eb8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-75982eb8]:first-child{margin-left:0}.col-offset-m-11[data-v-75982eb8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-75982eb8]{display:none!important}.m-visible[data-v-75982eb8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-1[data-v-75982eb8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-2[data-v-75982eb8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-3[data-v-75982eb8]{margin-left:26%}.col-no-margin-l-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-4[data-v-75982eb8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-5[data-v-75982eb8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-6[data-v-75982eb8]{margin-left:52%}.col-no-margin-l-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-7[data-v-75982eb8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-8[data-v-75982eb8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-9[data-v-75982eb8]{margin-left:78%}.col-no-margin-l-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-10[data-v-75982eb8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-75982eb8]:first-child{margin-left:0}.col-offset-l-11[data-v-75982eb8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-75982eb8]{display:none!important}.l-visible[data-v-75982eb8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-1[data-v-75982eb8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-2[data-v-75982eb8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-3[data-v-75982eb8]{margin-left:26%}.col-no-margin-xl-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-4[data-v-75982eb8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-5[data-v-75982eb8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-6[data-v-75982eb8]{margin-left:52%}.col-no-margin-xl-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-7[data-v-75982eb8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-8[data-v-75982eb8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-9[data-v-75982eb8]{margin-left:78%}.col-no-margin-xl-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-10[data-v-75982eb8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xl-11[data-v-75982eb8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-75982eb8]{display:none!important}.xl-visible[data-v-75982eb8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-75982eb8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-75982eb8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-75982eb8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-75982eb8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-75982eb8]{margin-left:26%}.col-no-margin-xxl-3[data-v-75982eb8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-75982eb8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-75982eb8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-75982eb8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-75982eb8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-75982eb8]{margin-left:52%}.col-no-margin-xxl-6[data-v-75982eb8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-75982eb8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-75982eb8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-75982eb8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-75982eb8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-75982eb8]{margin-left:78%}.col-no-margin-xxl-9[data-v-75982eb8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-75982eb8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-75982eb8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-75982eb8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-75982eb8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-75982eb8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-75982eb8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-75982eb8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-75982eb8]{display:none!important}.xxl-visible[data-v-75982eb8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-75982eb8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-75982eb8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-75982eb8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-75982eb8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-75982eb8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-75982eb8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-75982eb8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-75982eb8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-75982eb8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-75982eb8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-75982eb8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-75982eb8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-75982eb8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-75982eb8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-75982eb8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-75982eb8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-75982eb8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-75982eb8]{display:none!important}}.vertical-center[data-v-75982eb8]{display:flex;align-items:center}.horizontal-center[data-v-75982eb8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-75982eb8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-75982eb8]{display:none!important}.no-content[data-v-75982eb8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-75982eb8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-75982eb8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-75982eb8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-75982eb8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-75982eb8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-75982eb8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-75982eb8],.btn[data-v-75982eb8],button[data-v-75982eb8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-75982eb8],.btn-default[type=submit][data-v-75982eb8],.btn.btn-primary[data-v-75982eb8],.btn[type=submit][data-v-75982eb8],button.btn-primary[data-v-75982eb8],button[type=submit][data-v-75982eb8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-75982eb8],.btn-default .icon[data-v-75982eb8],button .icon[data-v-75982eb8]{margin-right:.5em}input[type=password][data-v-75982eb8],input[type=text][data-v-75982eb8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-75982eb8]:focus,input[type=text][data-v-75982eb8]:focus{border:1px solid #35b870}button[data-v-75982eb8],input[data-v-75982eb8]{outline:none}input[type=text][data-v-75982eb8]:hover,textarea[data-v-75982eb8]:hover{border:1px solid #9cdfb0}ul[data-v-75982eb8]{margin:0;padding:0;list-style:none}a[data-v-75982eb8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-75982eb8]:hover{color:#35b870}[data-v-75982eb8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-75982eb8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-75982eb8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-75982eb8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-75982eb8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-75982eb8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-75982eb8] .nav .path{cursor:pointer}.browser[data-v-75982eb8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-75982eb8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-75982eb8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-75982eb8],input[type=number][data-v-75982eb8],input[type=password][data-v-75982eb8],input[type=search][data-v-75982eb8],input[type=text][data-v-75982eb8],input[type=time][data-v-75982eb8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-75982eb8]:hover,input[type=number][data-v-75982eb8]:hover,input[type=password][data-v-75982eb8]:hover,input[type=search][data-v-75982eb8]:hover,input[type=text][data-v-75982eb8]:hover,input[type=time][data-v-75982eb8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-75982eb8]:focus,input[type=number][data-v-75982eb8]:focus,input[type=password][data-v-75982eb8]:focus,input[type=search][data-v-75982eb8]:focus,input[type=text][data-v-75982eb8]:focus,input[type=time][data-v-75982eb8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-75982eb8],input[type=number].with-icon[data-v-75982eb8],input[type=password].with-icon[data-v-75982eb8],input[type=search].with-icon[data-v-75982eb8],input[type=text].with-icon[data-v-75982eb8],input[type=time].with-icon[data-v-75982eb8]{padding-left:.3em}input[type=search][data-v-75982eb8],input[type=text][data-v-75982eb8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-75982eb8]{animation-fill-mode:both;animation-name:fadeIn-75982eb8;-webkit-animation-name:fadeIn-75982eb8}.fade-in[data-v-75982eb8],.fade-out[data-v-75982eb8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-75982eb8]{animation-fill-mode:both;animation-name:fadeOut-75982eb8;-webkit-animation-name:fadeOut-75982eb8}@keyframes fadeIn-75982eb8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-75982eb8{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-75982eb8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-75982eb8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-75982eb8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.music[data-v-75982eb8]{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.music .track[data-v-75982eb8]{text-align:center}.music .track .no-track[data-v-75982eb8],.music .track .unknown[data-v-75982eb8]{font-size:2em}.music .track .artist[data-v-75982eb8]{font-size:1.9em;font-weight:700;margin-bottom:.25em}.music .track .title[data-v-75982eb8]{font-size:1.8em;font-weight:400}.music .time[data-v-75982eb8]{width:100%;margin-top:1em;font-size:1.2em}.music .time .row[data-v-75982eb8]{padding:0 .5em}.music .time .time-total[data-v-75982eb8]{text-align:right}.music .time .progress-bar[data-v-75982eb8]{width:100%;height:1em;position:relative;margin-bottom:.75em}.music .time .progress-bar .total[data-v-75982eb8]{position:absolute;width:100%;height:100%;top:0;background:#ddd;border-radius:.5em}.music .time .progress-bar .elapsed[data-v-75982eb8]{position:absolute;width:100%;height:100%;top:0;background:linear-gradient(90deg,#c8ffd0,#d8efe8);border-radius:.5em;z-index:1}.music .playback-status[data-v-75982eb8]{position:absolute;bottom:0;border-top:1px solid #ddd;color:#757f70;width:100%;height:2em}.music .playback-status .status-property[data-v-75982eb8]{display:flex;align-items:center;justify-content:center;height:100%}.music .playback-status .active[data-v-75982eb8]{color:#35b870}.music .controls[data-v-75982eb8]{margin-top:.5em;font-size:1.2em}.music .controls button[data-v-75982eb8]{background:none;border:none}.music .controls button[data-v-75982eb8]:hover{color:#35b870}.music .controls button.play-pause[data-v-75982eb8]{color:#32b646;font-size:1.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3368.771f452b.css b/platypush/backend/http/webapp/dist/static/css/3368.467cedc6.css similarity index 66% rename from platypush/backend/http/webapp/dist/static/css/3368.771f452b.css rename to platypush/backend/http/webapp/dist/static/css/3368.467cedc6.css index e29a1a96..0738cda7 100644 --- a/platypush/backend/http/webapp/dist/static/css/3368.771f452b.css +++ b/platypush/backend/http/webapp/dist/static/css/3368.467cedc6.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(769px - 1px)){.tablet.from[data-v-043593ec]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-043593ec]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-043593ec]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-043593ec]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-043593ec]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-043593ec]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-043593ec]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-043593ec]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-043593ec]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-043593ec]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-043593ec]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-043593ec]{display:none}}@media screen and (min-width:769px){.mobile[data-v-043593ec]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-043593ec]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-043593ec]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-043593ec],input[type=password][data-v-043593ec],input[type=search][data-v-043593ec],input[type=text][data-v-043593ec]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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.56bab933.css b/platypush/backend/http/webapp/dist/static/css/3369.69c504e7.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/3369.56bab933.css rename to platypush/backend/http/webapp/dist/static/css/3369.69c504e7.css index c829b38e..2b63ab4b 100644 --- a/platypush/backend/http/webapp/dist/static/css/3369.56bab933.css +++ b/platypush/backend/http/webapp/dist/static/css/3369.69c504e7.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(769px - 1px)){.tablet.from[data-v-5c2a37ed]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-5c2a37ed]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5c2a37ed]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-5c2a37ed]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5c2a37ed]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-5c2a37ed]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5c2a37ed]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-5c2a37ed]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5c2a37ed]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-5c2a37ed]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5c2a37ed]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-5c2a37ed]{display:none}}@media screen and (min-width:769px){.mobile[data-v-5c2a37ed]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5c2a37ed]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-5c2a37ed]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-5c2a37ed],input[type=password][data-v-5c2a37ed],input[type=search][data-v-5c2a37ed],input[type=text][data-v-5c2a37ed]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/3390.481c441e.css b/platypush/backend/http/webapp/dist/static/css/3390.481c441e.css new file mode 100644 index 00000000..e0e83df8 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/3390.481c441e.css @@ -0,0 +1 @@ +.col-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3ff3db5a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3ff3db5a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3ff3db5a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3ff3db5a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3ff3db5a]:first-child{margin-left:26%!important}.col-offset-3[data-v-3ff3db5a]:not(first-child){margin-left:30%!important}.col-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3ff3db5a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3ff3db5a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3ff3db5a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3ff3db5a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3ff3db5a]:first-child{margin-left:52%!important}.col-offset-6[data-v-3ff3db5a]:not(first-child){margin-left:56%!important}.col-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3ff3db5a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3ff3db5a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3ff3db5a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3ff3db5a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3ff3db5a]:first-child{margin-left:78%!important}.col-offset-9[data-v-3ff3db5a]:not(first-child){margin-left:82%!important}.col-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3ff3db5a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3ff3db5a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3ff3db5a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3ff3db5a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-1[data-v-3ff3db5a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-2[data-v-3ff3db5a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-3[data-v-3ff3db5a]{margin-left:26%}.col-no-margin-s-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-4[data-v-3ff3db5a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-5[data-v-3ff3db5a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-6[data-v-3ff3db5a]{margin-left:52%}.col-no-margin-s-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-7[data-v-3ff3db5a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-8[data-v-3ff3db5a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-9[data-v-3ff3db5a]{margin-left:78%}.col-no-margin-s-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-10[data-v-3ff3db5a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-s-11[data-v-3ff3db5a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3ff3db5a]{display:none!important}.s-visible[data-v-3ff3db5a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-1[data-v-3ff3db5a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-2[data-v-3ff3db5a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-3[data-v-3ff3db5a]{margin-left:26%}.col-no-margin-m-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-4[data-v-3ff3db5a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-5[data-v-3ff3db5a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-6[data-v-3ff3db5a]{margin-left:52%}.col-no-margin-m-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-7[data-v-3ff3db5a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-8[data-v-3ff3db5a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-9[data-v-3ff3db5a]{margin-left:78%}.col-no-margin-m-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-10[data-v-3ff3db5a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-m-11[data-v-3ff3db5a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3ff3db5a]{display:none!important}.m-visible[data-v-3ff3db5a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-1[data-v-3ff3db5a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-2[data-v-3ff3db5a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-3[data-v-3ff3db5a]{margin-left:26%}.col-no-margin-l-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-4[data-v-3ff3db5a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-5[data-v-3ff3db5a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-6[data-v-3ff3db5a]{margin-left:52%}.col-no-margin-l-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-7[data-v-3ff3db5a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-8[data-v-3ff3db5a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-9[data-v-3ff3db5a]{margin-left:78%}.col-no-margin-l-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-10[data-v-3ff3db5a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-l-11[data-v-3ff3db5a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3ff3db5a]{display:none!important}.l-visible[data-v-3ff3db5a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-1[data-v-3ff3db5a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-2[data-v-3ff3db5a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-3[data-v-3ff3db5a]{margin-left:26%}.col-no-margin-xl-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-4[data-v-3ff3db5a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-5[data-v-3ff3db5a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-6[data-v-3ff3db5a]{margin-left:52%}.col-no-margin-xl-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-7[data-v-3ff3db5a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-8[data-v-3ff3db5a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-9[data-v-3ff3db5a]{margin-left:78%}.col-no-margin-xl-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-10[data-v-3ff3db5a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xl-11[data-v-3ff3db5a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3ff3db5a]{display:none!important}.xl-visible[data-v-3ff3db5a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3ff3db5a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3ff3db5a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3ff3db5a]{margin-left:26%}.col-no-margin-xxl-3[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3ff3db5a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3ff3db5a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3ff3db5a]{margin-left:52%}.col-no-margin-xxl-6[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3ff3db5a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3ff3db5a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3ff3db5a]{margin-left:78%}.col-no-margin-xxl-9[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3ff3db5a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3ff3db5a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3ff3db5a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3ff3db5a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3ff3db5a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3ff3db5a]{display:none!important}.xxl-visible[data-v-3ff3db5a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-3ff3db5a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-3ff3db5a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-3ff3db5a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-3ff3db5a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3ff3db5a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-3ff3db5a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3ff3db5a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-3ff3db5a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3ff3db5a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-3ff3db5a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3ff3db5a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-3ff3db5a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3ff3db5a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-3ff3db5a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3ff3db5a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-3ff3db5a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-3ff3db5a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3ff3db5a]{display:none!important}}.vertical-center[data-v-3ff3db5a]{display:flex;align-items:center}.horizontal-center[data-v-3ff3db5a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-3ff3db5a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3ff3db5a]{display:none!important}.no-content[data-v-3ff3db5a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-3ff3db5a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-3ff3db5a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-3ff3db5a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-3ff3db5a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-3ff3db5a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-3ff3db5a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-3ff3db5a],.btn[data-v-3ff3db5a],button[data-v-3ff3db5a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3ff3db5a],.btn-default[type=submit][data-v-3ff3db5a],.btn.btn-primary[data-v-3ff3db5a],.btn[type=submit][data-v-3ff3db5a],button.btn-primary[data-v-3ff3db5a],button[type=submit][data-v-3ff3db5a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3ff3db5a],.btn-default .icon[data-v-3ff3db5a],button .icon[data-v-3ff3db5a]{margin-right:.5em}input[type=password][data-v-3ff3db5a],input[type=text][data-v-3ff3db5a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3ff3db5a]:focus,input[type=text][data-v-3ff3db5a]:focus{border:1px solid #35b870}button[data-v-3ff3db5a],input[data-v-3ff3db5a]{outline:none}input[type=text][data-v-3ff3db5a]:hover,textarea[data-v-3ff3db5a]:hover{border:1px solid #9cdfb0}ul[data-v-3ff3db5a]{margin:0;padding:0;list-style:none}a[data-v-3ff3db5a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3ff3db5a]:hover{color:#35b870}[data-v-3ff3db5a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-3ff3db5a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-3ff3db5a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3ff3db5a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3ff3db5a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-3ff3db5a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-3ff3db5a] .nav .path{cursor:pointer}.browser[data-v-3ff3db5a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-3ff3db5a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-3ff3db5a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-3ff3db5a],input[type=number][data-v-3ff3db5a],input[type=password][data-v-3ff3db5a],input[type=search][data-v-3ff3db5a],input[type=text][data-v-3ff3db5a],input[type=time][data-v-3ff3db5a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-3ff3db5a]:hover,input[type=number][data-v-3ff3db5a]:hover,input[type=password][data-v-3ff3db5a]:hover,input[type=search][data-v-3ff3db5a]:hover,input[type=text][data-v-3ff3db5a]:hover,input[type=time][data-v-3ff3db5a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-3ff3db5a]:focus,input[type=number][data-v-3ff3db5a]:focus,input[type=password][data-v-3ff3db5a]:focus,input[type=search][data-v-3ff3db5a]:focus,input[type=text][data-v-3ff3db5a]:focus,input[type=time][data-v-3ff3db5a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-3ff3db5a],input[type=number].with-icon[data-v-3ff3db5a],input[type=password].with-icon[data-v-3ff3db5a],input[type=search].with-icon[data-v-3ff3db5a],input[type=text].with-icon[data-v-3ff3db5a],input[type=time].with-icon[data-v-3ff3db5a]{padding-left:.3em}input[type=search][data-v-3ff3db5a],input[type=text][data-v-3ff3db5a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-3ff3db5a]{animation-fill-mode:both;animation-name:fadeIn-3ff3db5a;-webkit-animation-name:fadeIn-3ff3db5a}.fade-in[data-v-3ff3db5a],.fade-out[data-v-3ff3db5a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-3ff3db5a]{animation-fill-mode:both;animation-name:fadeOut-3ff3db5a;-webkit-animation-name:fadeOut-3ff3db5a}@keyframes fadeIn-3ff3db5a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3ff3db5a{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-3ff3db5a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3ff3db5a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3ff3db5a]: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-3ff3db5a]{height:100%}.media-youtube-subscriptions .channel.item[data-v-3ff3db5a]{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-3ff3db5a]{width:100%;height:10em;display:flex;align-items:center;justify-content:center}.media-youtube-subscriptions .channel.item .image img[data-v-3ff3db5a]{width:5em;height:5em;border-radius:.5em;transition:filter .2s ease-in-out}.media-youtube-subscriptions .channel.item .title[data-v-3ff3db5a]{font-size:1.1em;margin-top:.5em}.media-youtube-subscriptions .channel.item[data-v-3ff3db5a]:hover{text-decoration:underline}.media-youtube-subscriptions .channel.item:hover img[data-v-3ff3db5a]{filter:contrast(70%)}.media-youtube-subscriptions .subscription-body[data-v-3ff3db5a]{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3559.5e597f7f.css b/platypush/backend/http/webapp/dist/static/css/3559.5665c422.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/3559.5e597f7f.css rename to platypush/backend/http/webapp/dist/static/css/3559.5665c422.css index 7fb2d938..dc3edf56 100644 --- a/platypush/backend/http/webapp/dist/static/css/3559.5e597f7f.css +++ b/platypush/backend/http/webapp/dist/static/css/3559.5665c422.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(769px - 1px)){.tablet.from[data-v-66f207d9]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-66f207d9]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-66f207d9]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-66f207d9]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-66f207d9]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-66f207d9]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-66f207d9]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-66f207d9]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-66f207d9]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-66f207d9]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-66f207d9]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-66f207d9]{display:none}}@media screen and (min-width:769px){.mobile[data-v-66f207d9]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-66f207d9]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-66f207d9]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-66f207d9],input[type=password][data-v-66f207d9],input[type=search][data-v-66f207d9],input[type=text][data-v-66f207d9]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/3594.eefea329.css b/platypush/backend/http/webapp/dist/static/css/3594.eefea329.css deleted file mode 100644 index f91e6c9c..00000000 --- a/platypush/backend/http/webapp/dist/static/css/3594.eefea329.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-150b6d72]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-150b6d72]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-150b6d72]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-150b6d72]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-150b6d72]:first-child{margin-left:26%!important}.col-offset-3[data-v-150b6d72]:not(first-child){margin-left:30%!important}.col-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-150b6d72]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-150b6d72]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-150b6d72]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-150b6d72]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-150b6d72]:first-child{margin-left:52%!important}.col-offset-6[data-v-150b6d72]:not(first-child){margin-left:56%!important}.col-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-150b6d72]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-150b6d72]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-150b6d72]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-150b6d72]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-150b6d72]:first-child{margin-left:78%!important}.col-offset-9[data-v-150b6d72]:not(first-child){margin-left:82%!important}.col-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-150b6d72]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-150b6d72]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-150b6d72]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-150b6d72]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-1[data-v-150b6d72]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-2[data-v-150b6d72]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-3[data-v-150b6d72]{margin-left:26%}.col-no-margin-s-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-4[data-v-150b6d72]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-5[data-v-150b6d72]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-6[data-v-150b6d72]{margin-left:52%}.col-no-margin-s-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-7[data-v-150b6d72]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-8[data-v-150b6d72]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-9[data-v-150b6d72]{margin-left:78%}.col-no-margin-s-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-10[data-v-150b6d72]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-150b6d72]:first-child{margin-left:0}.col-offset-s-11[data-v-150b6d72]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-s-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-150b6d72]{display:none!important}.s-visible[data-v-150b6d72]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-1[data-v-150b6d72]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-2[data-v-150b6d72]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-3[data-v-150b6d72]{margin-left:26%}.col-no-margin-m-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-4[data-v-150b6d72]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-5[data-v-150b6d72]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-6[data-v-150b6d72]{margin-left:52%}.col-no-margin-m-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-7[data-v-150b6d72]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-8[data-v-150b6d72]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-9[data-v-150b6d72]{margin-left:78%}.col-no-margin-m-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-10[data-v-150b6d72]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-150b6d72]:first-child{margin-left:0}.col-offset-m-11[data-v-150b6d72]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-m-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-150b6d72]{display:none!important}.m-visible[data-v-150b6d72]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-1[data-v-150b6d72]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-2[data-v-150b6d72]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-3[data-v-150b6d72]{margin-left:26%}.col-no-margin-l-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-4[data-v-150b6d72]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-5[data-v-150b6d72]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-6[data-v-150b6d72]{margin-left:52%}.col-no-margin-l-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-7[data-v-150b6d72]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-8[data-v-150b6d72]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-9[data-v-150b6d72]{margin-left:78%}.col-no-margin-l-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-10[data-v-150b6d72]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-150b6d72]:first-child{margin-left:0}.col-offset-l-11[data-v-150b6d72]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-l-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-150b6d72]{display:none!important}.l-visible[data-v-150b6d72]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-1[data-v-150b6d72]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-2[data-v-150b6d72]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-3[data-v-150b6d72]{margin-left:26%}.col-no-margin-xl-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-4[data-v-150b6d72]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-5[data-v-150b6d72]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-6[data-v-150b6d72]{margin-left:52%}.col-no-margin-xl-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-7[data-v-150b6d72]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-8[data-v-150b6d72]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-9[data-v-150b6d72]{margin-left:78%}.col-no-margin-xl-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-10[data-v-150b6d72]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xl-11[data-v-150b6d72]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-150b6d72]{display:none!important}.xl-visible[data-v-150b6d72]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-1[data-v-150b6d72]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-150b6d72]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-2[data-v-150b6d72]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-150b6d72]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-3[data-v-150b6d72]{margin-left:26%}.col-no-margin-xxl-3[data-v-150b6d72]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-4[data-v-150b6d72]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-150b6d72]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-5[data-v-150b6d72]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-150b6d72]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-6[data-v-150b6d72]{margin-left:52%}.col-no-margin-xxl-6[data-v-150b6d72]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-7[data-v-150b6d72]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-150b6d72]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-8[data-v-150b6d72]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-150b6d72]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-9[data-v-150b6d72]{margin-left:78%}.col-no-margin-xxl-9[data-v-150b6d72]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-10[data-v-150b6d72]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-150b6d72]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-150b6d72]:first-child{margin-left:0}.col-offset-xxl-11[data-v-150b6d72]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-150b6d72]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-150b6d72]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-150b6d72]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-150b6d72]{display:none!important}.xxl-visible[data-v-150b6d72]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-150b6d72]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-150b6d72]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-150b6d72]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-150b6d72]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-150b6d72]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-150b6d72]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-150b6d72]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-150b6d72]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-150b6d72]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-150b6d72]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-150b6d72]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-150b6d72]{display:none}}@media screen and (min-width:769px){.mobile[data-v-150b6d72]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-150b6d72]{display:none}}.vertical-center[data-v-150b6d72]{display:flex;align-items:center}.horizontal-center[data-v-150b6d72]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-150b6d72]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-150b6d72]{display:none!important}.no-content[data-v-150b6d72]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-150b6d72],.btn[data-v-150b6d72],button[data-v-150b6d72]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-150b6d72],.btn-default[type=submit][data-v-150b6d72],.btn.btn-primary[data-v-150b6d72],.btn[type=submit][data-v-150b6d72],button.btn-primary[data-v-150b6d72],button[type=submit][data-v-150b6d72]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-150b6d72],.btn-default .icon[data-v-150b6d72],button .icon[data-v-150b6d72]{margin-right:.5em}input[type=password][data-v-150b6d72],input[type=text][data-v-150b6d72]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-150b6d72]:focus,input[type=text][data-v-150b6d72]:focus{border:1px solid #35b870}button[data-v-150b6d72],input[data-v-150b6d72]{outline:none}input[type=text][data-v-150b6d72]:hover,textarea[data-v-150b6d72]:hover{border:1px solid #9cdfb0}ul[data-v-150b6d72]{margin:0;padding:0;list-style:none}a[data-v-150b6d72]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-150b6d72]:hover{color:#35b870}[data-v-150b6d72]::-webkit-scrollbar{width:.75em}[data-v-150b6d72]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-150b6d72]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-150b6d72]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-150b6d72]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-150b6d72],input[type=password][data-v-150b6d72],input[type=search][data-v-150b6d72],input[type=text][data-v-150b6d72]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-150b6d72]:hover,input[type=password][data-v-150b6d72]:hover,input[type=search][data-v-150b6d72]:hover,input[type=text][data-v-150b6d72]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-150b6d72]:focus,input[type=password][data-v-150b6d72]:focus,input[type=search][data-v-150b6d72]:focus,input[type=text][data-v-150b6d72]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-150b6d72],input[type=password].with-icon[data-v-150b6d72],input[type=search].with-icon[data-v-150b6d72],input[type=text].with-icon[data-v-150b6d72]{padding-left:.3em}input[type=search][data-v-150b6d72],input[type=text][data-v-150b6d72]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-150b6d72]{animation-fill-mode:both;animation-name:fadeIn-150b6d72;-webkit-animation-name:fadeIn-150b6d72}.fade-in[data-v-150b6d72],.fade-out[data-v-150b6d72]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-150b6d72]{animation-fill-mode:both;animation-name:fadeOut-150b6d72;-webkit-animation-name:fadeOut-150b6d72}@keyframes fadeIn-150b6d72{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-150b6d72{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-150b6d72]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-150b6d72]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-150b6d72]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.weather[data-v-150b6d72]{display:flex;flex-direction:column}.weather h1[data-v-150b6d72]{display:flex;justify-content:center;align-items:center}.weather .temperature[data-v-150b6d72]{font-size:2em;margin-left:.4em}.weather .summary[data-v-150b6d72]{font-size:1.1em;margin-top:.75em}.weather .owm-icon[data-v-150b6d72]{margin-right:-.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3661.c12867e9.css b/platypush/backend/http/webapp/dist/static/css/3661.c12867e9.css new file mode 100644 index 00000000..e73f86a3 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/3661.c12867e9.css @@ -0,0 +1 @@ +.col-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-2bc923a8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-2bc923a8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-2bc923a8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-2bc923a8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-2bc923a8]:first-child{margin-left:26%!important}.col-offset-3[data-v-2bc923a8]:not(first-child){margin-left:30%!important}.col-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-2bc923a8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-2bc923a8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-2bc923a8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-2bc923a8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-2bc923a8]:first-child{margin-left:52%!important}.col-offset-6[data-v-2bc923a8]:not(first-child){margin-left:56%!important}.col-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-2bc923a8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-2bc923a8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-2bc923a8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-2bc923a8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-2bc923a8]:first-child{margin-left:78%!important}.col-offset-9[data-v-2bc923a8]:not(first-child){margin-left:82%!important}.col-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-2bc923a8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-2bc923a8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-2bc923a8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-2bc923a8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-1[data-v-2bc923a8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-2[data-v-2bc923a8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-3[data-v-2bc923a8]{margin-left:26%}.col-no-margin-s-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-4[data-v-2bc923a8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-5[data-v-2bc923a8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-6[data-v-2bc923a8]{margin-left:52%}.col-no-margin-s-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-7[data-v-2bc923a8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-8[data-v-2bc923a8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-9[data-v-2bc923a8]{margin-left:78%}.col-no-margin-s-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-10[data-v-2bc923a8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-s-11[data-v-2bc923a8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-2bc923a8]{display:none!important}.s-visible[data-v-2bc923a8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-1[data-v-2bc923a8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-2[data-v-2bc923a8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-3[data-v-2bc923a8]{margin-left:26%}.col-no-margin-m-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-4[data-v-2bc923a8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-5[data-v-2bc923a8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-6[data-v-2bc923a8]{margin-left:52%}.col-no-margin-m-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-7[data-v-2bc923a8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-8[data-v-2bc923a8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-9[data-v-2bc923a8]{margin-left:78%}.col-no-margin-m-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-10[data-v-2bc923a8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-m-11[data-v-2bc923a8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-2bc923a8]{display:none!important}.m-visible[data-v-2bc923a8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-1[data-v-2bc923a8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-2[data-v-2bc923a8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-3[data-v-2bc923a8]{margin-left:26%}.col-no-margin-l-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-4[data-v-2bc923a8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-5[data-v-2bc923a8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-6[data-v-2bc923a8]{margin-left:52%}.col-no-margin-l-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-7[data-v-2bc923a8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-8[data-v-2bc923a8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-9[data-v-2bc923a8]{margin-left:78%}.col-no-margin-l-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-10[data-v-2bc923a8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-l-11[data-v-2bc923a8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-2bc923a8]{display:none!important}.l-visible[data-v-2bc923a8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-1[data-v-2bc923a8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-2[data-v-2bc923a8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-3[data-v-2bc923a8]{margin-left:26%}.col-no-margin-xl-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-4[data-v-2bc923a8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-5[data-v-2bc923a8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-6[data-v-2bc923a8]{margin-left:52%}.col-no-margin-xl-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-7[data-v-2bc923a8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-8[data-v-2bc923a8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-9[data-v-2bc923a8]{margin-left:78%}.col-no-margin-xl-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-10[data-v-2bc923a8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xl-11[data-v-2bc923a8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-2bc923a8]{display:none!important}.xl-visible[data-v-2bc923a8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-2bc923a8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-2bc923a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-2bc923a8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-2bc923a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-2bc923a8]{margin-left:26%}.col-no-margin-xxl-3[data-v-2bc923a8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-2bc923a8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-2bc923a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-2bc923a8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-2bc923a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-2bc923a8]{margin-left:52%}.col-no-margin-xxl-6[data-v-2bc923a8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-2bc923a8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-2bc923a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-2bc923a8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-2bc923a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-2bc923a8]{margin-left:78%}.col-no-margin-xxl-9[data-v-2bc923a8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-2bc923a8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-2bc923a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-2bc923a8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-2bc923a8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-2bc923a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-2bc923a8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-2bc923a8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-2bc923a8]{display:none!important}.xxl-visible[data-v-2bc923a8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-2bc923a8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-2bc923a8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-2bc923a8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-2bc923a8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-2bc923a8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-2bc923a8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2bc923a8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-2bc923a8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2bc923a8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-2bc923a8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2bc923a8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-2bc923a8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2bc923a8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-2bc923a8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2bc923a8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-2bc923a8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-2bc923a8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2bc923a8]{display:none!important}}.vertical-center[data-v-2bc923a8]{display:flex;align-items:center}.horizontal-center[data-v-2bc923a8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-2bc923a8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-2bc923a8]{display:none!important}.no-content[data-v-2bc923a8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-2bc923a8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-2bc923a8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-2bc923a8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-2bc923a8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-2bc923a8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-2bc923a8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-2bc923a8],.btn[data-v-2bc923a8],button[data-v-2bc923a8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-2bc923a8],.btn-default[type=submit][data-v-2bc923a8],.btn.btn-primary[data-v-2bc923a8],.btn[type=submit][data-v-2bc923a8],button.btn-primary[data-v-2bc923a8],button[type=submit][data-v-2bc923a8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-2bc923a8],.btn-default .icon[data-v-2bc923a8],button .icon[data-v-2bc923a8]{margin-right:.5em}input[type=password][data-v-2bc923a8],input[type=text][data-v-2bc923a8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-2bc923a8]:focus,input[type=text][data-v-2bc923a8]:focus{border:1px solid #35b870}button[data-v-2bc923a8],input[data-v-2bc923a8]{outline:none}input[type=text][data-v-2bc923a8]:hover,textarea[data-v-2bc923a8]:hover{border:1px solid #9cdfb0}ul[data-v-2bc923a8]{margin:0;padding:0;list-style:none}a[data-v-2bc923a8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-2bc923a8]:hover{color:#35b870}[data-v-2bc923a8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-2bc923a8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-2bc923a8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-2bc923a8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-2bc923a8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-2bc923a8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-2bc923a8] .nav .path{cursor:pointer}.browser[data-v-2bc923a8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-2bc923a8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-2bc923a8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-2bc923a8],input[type=number][data-v-2bc923a8],input[type=password][data-v-2bc923a8],input[type=search][data-v-2bc923a8],input[type=text][data-v-2bc923a8],input[type=time][data-v-2bc923a8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-2bc923a8]:hover,input[type=number][data-v-2bc923a8]:hover,input[type=password][data-v-2bc923a8]:hover,input[type=search][data-v-2bc923a8]:hover,input[type=text][data-v-2bc923a8]:hover,input[type=time][data-v-2bc923a8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-2bc923a8]:focus,input[type=number][data-v-2bc923a8]:focus,input[type=password][data-v-2bc923a8]:focus,input[type=search][data-v-2bc923a8]:focus,input[type=text][data-v-2bc923a8]:focus,input[type=time][data-v-2bc923a8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-2bc923a8],input[type=number].with-icon[data-v-2bc923a8],input[type=password].with-icon[data-v-2bc923a8],input[type=search].with-icon[data-v-2bc923a8],input[type=text].with-icon[data-v-2bc923a8],input[type=time].with-icon[data-v-2bc923a8]{padding-left:.3em}input[type=search][data-v-2bc923a8],input[type=text][data-v-2bc923a8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-2bc923a8]{animation-fill-mode:both;animation-name:fadeIn-2bc923a8;-webkit-animation-name:fadeIn-2bc923a8}.fade-in[data-v-2bc923a8],.fade-out[data-v-2bc923a8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-2bc923a8]{animation-fill-mode:both;animation-name:fadeOut-2bc923a8;-webkit-animation-name:fadeOut-2bc923a8}@keyframes fadeIn-2bc923a8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-2bc923a8{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-2bc923a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-2bc923a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-2bc923a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-2bc923a8] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-2bc923a8] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-2bc923a8] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-2bc923a8] .item .icon i{font-size:40px}[data-v-2bc923a8] .nav{height:2.5em}.nav .path .token .icon[data-v-2bc923a8]{margin-right:.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3671.e6547429.css b/platypush/backend/http/webapp/dist/static/css/3671.e6547429.css new file mode 100644 index 00000000..be346998 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/3671.e6547429.css @@ -0,0 +1 @@ +.col-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-21b0d859]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-21b0d859]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-21b0d859]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-21b0d859]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-21b0d859]:first-child{margin-left:26%!important}.col-offset-3[data-v-21b0d859]:not(first-child){margin-left:30%!important}.col-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-21b0d859]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-21b0d859]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-21b0d859]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-21b0d859]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-21b0d859]:first-child{margin-left:52%!important}.col-offset-6[data-v-21b0d859]:not(first-child){margin-left:56%!important}.col-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-21b0d859]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-21b0d859]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-21b0d859]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-21b0d859]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-21b0d859]:first-child{margin-left:78%!important}.col-offset-9[data-v-21b0d859]:not(first-child){margin-left:82%!important}.col-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-21b0d859]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-21b0d859]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-21b0d859]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-21b0d859]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-1[data-v-21b0d859]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-2[data-v-21b0d859]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-3[data-v-21b0d859]{margin-left:26%}.col-no-margin-s-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-4[data-v-21b0d859]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-5[data-v-21b0d859]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-6[data-v-21b0d859]{margin-left:52%}.col-no-margin-s-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-7[data-v-21b0d859]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-8[data-v-21b0d859]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-9[data-v-21b0d859]{margin-left:78%}.col-no-margin-s-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-10[data-v-21b0d859]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-21b0d859]:first-child{margin-left:0}.col-offset-s-11[data-v-21b0d859]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-s-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-21b0d859]{display:none!important}.s-visible[data-v-21b0d859]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-1[data-v-21b0d859]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-2[data-v-21b0d859]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-3[data-v-21b0d859]{margin-left:26%}.col-no-margin-m-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-4[data-v-21b0d859]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-5[data-v-21b0d859]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-6[data-v-21b0d859]{margin-left:52%}.col-no-margin-m-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-7[data-v-21b0d859]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-8[data-v-21b0d859]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-9[data-v-21b0d859]{margin-left:78%}.col-no-margin-m-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-10[data-v-21b0d859]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-21b0d859]:first-child{margin-left:0}.col-offset-m-11[data-v-21b0d859]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-m-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-21b0d859]{display:none!important}.m-visible[data-v-21b0d859]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-1[data-v-21b0d859]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-2[data-v-21b0d859]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-3[data-v-21b0d859]{margin-left:26%}.col-no-margin-l-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-4[data-v-21b0d859]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-5[data-v-21b0d859]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-6[data-v-21b0d859]{margin-left:52%}.col-no-margin-l-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-7[data-v-21b0d859]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-8[data-v-21b0d859]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-9[data-v-21b0d859]{margin-left:78%}.col-no-margin-l-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-10[data-v-21b0d859]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-21b0d859]:first-child{margin-left:0}.col-offset-l-11[data-v-21b0d859]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-l-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-21b0d859]{display:none!important}.l-visible[data-v-21b0d859]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-1[data-v-21b0d859]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-2[data-v-21b0d859]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-3[data-v-21b0d859]{margin-left:26%}.col-no-margin-xl-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-4[data-v-21b0d859]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-5[data-v-21b0d859]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-6[data-v-21b0d859]{margin-left:52%}.col-no-margin-xl-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-7[data-v-21b0d859]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-8[data-v-21b0d859]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-9[data-v-21b0d859]{margin-left:78%}.col-no-margin-xl-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-10[data-v-21b0d859]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xl-11[data-v-21b0d859]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-21b0d859]{display:none!important}.xl-visible[data-v-21b0d859]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-1[data-v-21b0d859]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-21b0d859]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-2[data-v-21b0d859]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-21b0d859]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-3[data-v-21b0d859]{margin-left:26%}.col-no-margin-xxl-3[data-v-21b0d859]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-4[data-v-21b0d859]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-21b0d859]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-5[data-v-21b0d859]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-21b0d859]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-6[data-v-21b0d859]{margin-left:52%}.col-no-margin-xxl-6[data-v-21b0d859]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-7[data-v-21b0d859]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-21b0d859]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-8[data-v-21b0d859]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-21b0d859]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-9[data-v-21b0d859]{margin-left:78%}.col-no-margin-xxl-9[data-v-21b0d859]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-10[data-v-21b0d859]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-21b0d859]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-21b0d859]:first-child{margin-left:0}.col-offset-xxl-11[data-v-21b0d859]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-21b0d859]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-21b0d859]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-21b0d859]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-21b0d859]{display:none!important}.xxl-visible[data-v-21b0d859]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-21b0d859]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-21b0d859]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-21b0d859]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-21b0d859]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-21b0d859]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-21b0d859]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-21b0d859]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-21b0d859]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-21b0d859]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-21b0d859]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-21b0d859]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-21b0d859]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-21b0d859]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-21b0d859]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-21b0d859]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-21b0d859]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-21b0d859]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-21b0d859]{display:none!important}}.vertical-center[data-v-21b0d859]{display:flex;align-items:center}.horizontal-center[data-v-21b0d859]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-21b0d859]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-21b0d859]{display:none!important}.no-content[data-v-21b0d859]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-21b0d859]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-21b0d859]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-21b0d859]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-21b0d859]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-21b0d859]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-21b0d859]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-21b0d859],.btn[data-v-21b0d859],button[data-v-21b0d859]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-21b0d859],.btn-default[type=submit][data-v-21b0d859],.btn.btn-primary[data-v-21b0d859],.btn[type=submit][data-v-21b0d859],button.btn-primary[data-v-21b0d859],button[type=submit][data-v-21b0d859]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-21b0d859],.btn-default .icon[data-v-21b0d859],button .icon[data-v-21b0d859]{margin-right:.5em}input[type=password][data-v-21b0d859],input[type=text][data-v-21b0d859]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-21b0d859]:focus,input[type=text][data-v-21b0d859]:focus{border:1px solid #35b870}button[data-v-21b0d859],input[data-v-21b0d859]{outline:none}input[type=text][data-v-21b0d859]:hover,textarea[data-v-21b0d859]:hover{border:1px solid #9cdfb0}ul[data-v-21b0d859]{margin:0;padding:0;list-style:none}a[data-v-21b0d859]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-21b0d859]:hover{color:#35b870}[data-v-21b0d859]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-21b0d859]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-21b0d859]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-21b0d859]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-21b0d859]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-21b0d859] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-21b0d859] .nav .path{cursor:pointer}.browser[data-v-21b0d859] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-21b0d859] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-21b0d859]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-21b0d859],input[type=number][data-v-21b0d859],input[type=password][data-v-21b0d859],input[type=search][data-v-21b0d859],input[type=text][data-v-21b0d859],input[type=time][data-v-21b0d859]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-21b0d859]:hover,input[type=number][data-v-21b0d859]:hover,input[type=password][data-v-21b0d859]:hover,input[type=search][data-v-21b0d859]:hover,input[type=text][data-v-21b0d859]:hover,input[type=time][data-v-21b0d859]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-21b0d859]:focus,input[type=number][data-v-21b0d859]:focus,input[type=password][data-v-21b0d859]:focus,input[type=search][data-v-21b0d859]:focus,input[type=text][data-v-21b0d859]:focus,input[type=time][data-v-21b0d859]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-21b0d859],input[type=number].with-icon[data-v-21b0d859],input[type=password].with-icon[data-v-21b0d859],input[type=search].with-icon[data-v-21b0d859],input[type=text].with-icon[data-v-21b0d859],input[type=time].with-icon[data-v-21b0d859]{padding-left:.3em}input[type=search][data-v-21b0d859],input[type=text][data-v-21b0d859]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-21b0d859]{animation-fill-mode:both;animation-name:fadeIn-21b0d859;-webkit-animation-name:fadeIn-21b0d859}.fade-in[data-v-21b0d859],.fade-out[data-v-21b0d859]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-21b0d859]{animation-fill-mode:both;animation-name:fadeOut-21b0d859;-webkit-animation-name:fadeOut-21b0d859}@keyframes fadeIn-21b0d859{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-21b0d859{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-21b0d859]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-21b0d859]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-21b0d859]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-youtube-channel[data-v-21b0d859]{height:100%;overflow-y:auto}.media-youtube-channel .header[data-v-21b0d859]{border-bottom:1px solid #ddd;padding-bottom:.5em}.media-youtube-channel .header .banner[data-v-21b0d859]{max-height:200px;display:flex;justify-content:center}.media-youtube-channel .header .banner img[data-v-21b0d859]{max-width:100%;max-height:100%}.media-youtube-channel .header .image[data-v-21b0d859]{height:100px;margin:-2.5em 2em .5em .5em}.media-youtube-channel .header .image img[data-v-21b0d859]{height:100%;border-radius:50%}.media-youtube-channel .header .row[data-v-21b0d859]{display:flex}@media screen and (min-width:1024px){.media-youtube-channel .header .row[data-v-21b0d859]{flex-direction:row}}.media-youtube-channel .header .row .info[data-v-21b0d859]{display:flex;flex-direction:column}.media-youtube-channel .header .title[data-v-21b0d859]{color:#23513a;font-size:1.7em;font-weight:700;margin:.5em 0;-webkit-text-decoration:dotted;text-decoration:dotted}.media-youtube-channel .header .title[data-v-21b0d859]:hover{color:#35b870}.media-youtube-channel .header .description[data-v-21b0d859]{font-size:.9em;margin-right:.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3694.ae679692.css b/platypush/backend/http/webapp/dist/static/css/3694.ae679692.css deleted file mode 100644 index c8766d3a..00000000 --- a/platypush/backend/http/webapp/dist/static/css/3694.ae679692.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-a4579524]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-1[data-v-a4579524]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a4579524]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a4579524]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a4579524]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-2[data-v-a4579524]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a4579524]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a4579524]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a4579524]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-3[data-v-a4579524]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a4579524]:first-child{margin-left:26%!important}.col-offset-3[data-v-a4579524]:not(first-child){margin-left:30%!important}.col-4[data-v-a4579524]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-4[data-v-a4579524]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a4579524]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a4579524]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a4579524]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-5[data-v-a4579524]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a4579524]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a4579524]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a4579524]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-6[data-v-a4579524]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a4579524]:first-child{margin-left:52%!important}.col-offset-6[data-v-a4579524]:not(first-child){margin-left:56%!important}.col-7[data-v-a4579524]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-7[data-v-a4579524]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a4579524]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a4579524]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a4579524]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-8[data-v-a4579524]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a4579524]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a4579524]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a4579524]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-9[data-v-a4579524]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a4579524]:first-child{margin-left:78%!important}.col-offset-9[data-v-a4579524]:not(first-child){margin-left:82%!important}.col-10[data-v-a4579524]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-10[data-v-a4579524]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a4579524]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a4579524]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a4579524]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a4579524]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a4579524]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-1[data-v-a4579524]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a4579524]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a4579524]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-2[data-v-a4579524]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a4579524]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a4579524]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-3[data-v-a4579524]{margin-left:26%}.col-no-margin-s-3[data-v-a4579524]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a4579524]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-4[data-v-a4579524]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a4579524]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a4579524]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-5[data-v-a4579524]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a4579524]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a4579524]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-6[data-v-a4579524]{margin-left:52%}.col-no-margin-s-6[data-v-a4579524]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a4579524]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-7[data-v-a4579524]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a4579524]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a4579524]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-8[data-v-a4579524]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a4579524]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a4579524]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-9[data-v-a4579524]{margin-left:78%}.col-no-margin-s-9[data-v-a4579524]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a4579524]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-10[data-v-a4579524]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a4579524]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a4579524]:first-child{margin-left:0}.col-offset-s-11[data-v-a4579524]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a4579524]{display:none!important}.s-visible[data-v-a4579524]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a4579524]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-1[data-v-a4579524]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a4579524]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a4579524]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-2[data-v-a4579524]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a4579524]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a4579524]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-3[data-v-a4579524]{margin-left:26%}.col-no-margin-m-3[data-v-a4579524]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a4579524]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-4[data-v-a4579524]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a4579524]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a4579524]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-5[data-v-a4579524]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a4579524]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a4579524]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-6[data-v-a4579524]{margin-left:52%}.col-no-margin-m-6[data-v-a4579524]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a4579524]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-7[data-v-a4579524]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a4579524]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a4579524]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-8[data-v-a4579524]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a4579524]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a4579524]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-9[data-v-a4579524]{margin-left:78%}.col-no-margin-m-9[data-v-a4579524]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a4579524]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-10[data-v-a4579524]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a4579524]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a4579524]:first-child{margin-left:0}.col-offset-m-11[data-v-a4579524]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a4579524]{display:none!important}.m-visible[data-v-a4579524]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a4579524]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-1[data-v-a4579524]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a4579524]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a4579524]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-2[data-v-a4579524]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a4579524]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a4579524]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-3[data-v-a4579524]{margin-left:26%}.col-no-margin-l-3[data-v-a4579524]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a4579524]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-4[data-v-a4579524]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a4579524]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a4579524]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-5[data-v-a4579524]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a4579524]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a4579524]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-6[data-v-a4579524]{margin-left:52%}.col-no-margin-l-6[data-v-a4579524]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a4579524]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-7[data-v-a4579524]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a4579524]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a4579524]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-8[data-v-a4579524]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a4579524]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a4579524]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-9[data-v-a4579524]{margin-left:78%}.col-no-margin-l-9[data-v-a4579524]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a4579524]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-10[data-v-a4579524]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a4579524]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a4579524]:first-child{margin-left:0}.col-offset-l-11[data-v-a4579524]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a4579524]{display:none!important}.l-visible[data-v-a4579524]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a4579524]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-1[data-v-a4579524]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a4579524]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a4579524]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-2[data-v-a4579524]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a4579524]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a4579524]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-3[data-v-a4579524]{margin-left:26%}.col-no-margin-xl-3[data-v-a4579524]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a4579524]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-4[data-v-a4579524]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a4579524]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a4579524]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-5[data-v-a4579524]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a4579524]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a4579524]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-6[data-v-a4579524]{margin-left:52%}.col-no-margin-xl-6[data-v-a4579524]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a4579524]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-7[data-v-a4579524]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a4579524]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a4579524]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-8[data-v-a4579524]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a4579524]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a4579524]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-9[data-v-a4579524]{margin-left:78%}.col-no-margin-xl-9[data-v-a4579524]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a4579524]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-10[data-v-a4579524]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a4579524]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a4579524]:first-child{margin-left:0}.col-offset-xl-11[data-v-a4579524]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a4579524]{display:none!important}.xl-visible[data-v-a4579524]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a4579524]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a4579524]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a4579524]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a4579524]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a4579524]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a4579524]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a4579524]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a4579524]{margin-left:26%}.col-no-margin-xxl-3[data-v-a4579524]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a4579524]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a4579524]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a4579524]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a4579524]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a4579524]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a4579524]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a4579524]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a4579524]{margin-left:52%}.col-no-margin-xxl-6[data-v-a4579524]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a4579524]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a4579524]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a4579524]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a4579524]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a4579524]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a4579524]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a4579524]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a4579524]{margin-left:78%}.col-no-margin-xxl-9[data-v-a4579524]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a4579524]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a4579524]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a4579524]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a4579524]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a4579524]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a4579524]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a4579524]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a4579524]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a4579524]{display:none!important}.xxl-visible[data-v-a4579524]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a4579524]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-a4579524]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a4579524]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-a4579524]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a4579524]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-a4579524]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a4579524]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-a4579524]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a4579524]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-a4579524]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a4579524]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-a4579524]{display:none}}@media screen and (min-width:769px){.mobile[data-v-a4579524]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a4579524]{display:none}}.vertical-center[data-v-a4579524]{display:flex;align-items:center}.horizontal-center[data-v-a4579524]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a4579524]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a4579524]{display:none!important}.no-content[data-v-a4579524]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-a4579524],.btn[data-v-a4579524],button[data-v-a4579524]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a4579524],.btn-default[type=submit][data-v-a4579524],.btn.btn-primary[data-v-a4579524],.btn[type=submit][data-v-a4579524],button.btn-primary[data-v-a4579524],button[type=submit][data-v-a4579524]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-a4579524],.btn-default .icon[data-v-a4579524],button .icon[data-v-a4579524]{margin-right:.5em}input[type=password][data-v-a4579524],input[type=text][data-v-a4579524]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a4579524]:focus,input[type=text][data-v-a4579524]:focus{border:1px solid #35b870}button[data-v-a4579524],input[data-v-a4579524]{outline:none}input[type=text][data-v-a4579524]:hover,textarea[data-v-a4579524]:hover{border:1px solid #9cdfb0}ul[data-v-a4579524]{margin:0;padding:0;list-style:none}a[data-v-a4579524]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a4579524]:hover{color:#35b870}[data-v-a4579524]::-webkit-scrollbar{width:.75em}[data-v-a4579524]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a4579524]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-a4579524]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-a4579524]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-a4579524],input[type=password][data-v-a4579524],input[type=search][data-v-a4579524],input[type=text][data-v-a4579524]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-a4579524]:hover,input[type=password][data-v-a4579524]:hover,input[type=search][data-v-a4579524]:hover,input[type=text][data-v-a4579524]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-a4579524]:focus,input[type=password][data-v-a4579524]:focus,input[type=search][data-v-a4579524]:focus,input[type=text][data-v-a4579524]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-a4579524],input[type=password].with-icon[data-v-a4579524],input[type=search].with-icon[data-v-a4579524],input[type=text].with-icon[data-v-a4579524]{padding-left:.3em}input[type=search][data-v-a4579524],input[type=text][data-v-a4579524]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a4579524]{animation-fill-mode:both;animation-name:fadeIn-a4579524;-webkit-animation-name:fadeIn-a4579524}.fade-in[data-v-a4579524],.fade-out[data-v-a4579524]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a4579524]{animation-fill-mode:both;animation-name:fadeOut-a4579524;-webkit-animation-name:fadeOut-a4579524}@keyframes fadeIn-a4579524{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a4579524{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-a4579524]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a4579524]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a4579524]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}button[data-v-a4579524]{border:0;background:none}button[data-v-a4579524]:hover{border:0}button:hover .icon[data-v-a4579524]{color:#35b870}button.enabled[data-v-a4579524]{color:#32b646}.extension[data-v-a4579524]{box-shadow:0 3px 2px -1px silver;flex-direction:column;display:none;overflow:hidden}@media screen and (max-width:calc(1024px - 1px)){.extension[data-v-a4579524]{display:flex;padding-top:.5em}}.extension .row[data-v-a4579524]{display:flex}.extension .buttons[data-v-a4579524]{justify-content:center;margin:0}.extension .list-controls[data-v-a4579524],.extension .volume-container[data-v-a4579524]{display:flex;align-items:center}.extension .list-controls button[data-v-a4579524],.extension .volume-container button[data-v-a4579524]{padding:0 .25em}.extension .list-controls[data-v-a4579524]{margin-top:-.5em;flex-flow:row-reverse}.extension .time[data-v-a4579524]:first-child{margin-left:.25em}.extension .time[data-v-a4579524]:last-child{margin-right:.25em}.extension .volume-slider[data-v-a4579524]{flex-grow:1}.controls[data-v-a4579524]{width:100%;height:5.5em;display:flex;padding:1em .5em;overflow:hidden}.controls .row[data-v-a4579524]{width:100%;display:flex}.controls .track-container[data-v-a4579524]{display:flex;flex-direction:column;justify-content:center;margin-left:0}@media screen and (max-width:calc(769px - 1px)){.controls .track-container[data-v-a4579524]{align-items:center}}.controls .track-container a[data-v-a4579524]{color:initial;text-decoration:none}.controls .track-container a[data-v-a4579524]:hover{color:#35b870}.controls .track-container .artist[data-v-a4579524],.controls .track-container .title[data-v-a4579524]{overflow:hidden;text-overflow:ellipsis}.controls .track-container .artist[data-v-a4579524]{opacity:.6;letter-spacing:.04em}.controls .track-container .title[data-v-a4579524]{font-weight:400;font-size:1em;letter-spacing:.05em;margin-bottom:.25em}.controls .playback-controls.mobile[data-v-a4579524]{display:none}@media screen and (max-width:calc(769px - 1px)){.controls .playback-controls.mobile[data-v-a4579524]{display:flex!important;align-items:center}}.controls .playback-controls.tablet[data-v-a4579524]{display:none}@media screen and (min-width:769px)and (max-width:1023px){.controls .playback-controls.tablet[data-v-a4579524]{display:flex!important;align-items:center}}.controls .playback-controls .row[data-v-a4579524]{justify-content:center}.controls .playback-controls .buttons[data-v-a4579524]{height:50%;margin-bottom:.5em;align-items:center}.controls .playback-controls button[data-v-a4579524]{padding:.5em;margin:0 .75em}.controls .playback-controls button .play-pause[data-v-a4579524]{color:#27ee5e;font-size:1.75em}.controls .playback-controls button .play-pause[data-v-a4579524]:hover{color:#38cf80}.controls .list-controls[data-v-a4579524]{height:50%;opacity:.7;display:flex;align-items:center;margin-bottom:1em;flex-flow:row-reverse}@media screen and (max-width:calc(1024px - 1px)){.controls .mobile.right-buttons[data-v-a4579524]{display:flex;align-items:center;justify-content:flex-end;flex:1}}.controls .pull-right button[data-v-a4579524]{padding:.5em}.controls .pull-right .volume-container[data-v-a4579524]{align-items:center;margin-top:-1.25em}.controls .pull-right .volume-container button[data-v-a4579524]{background:none}.controls .seek-slider[data-v-a4579524]{width:75%}.controls .volume-slider[data-v-a4579524]{width:75%;margin-right:.5em}.time[data-v-a4579524]{font-size:.7em;position:relative}.elapsed-time[data-v-a4579524]{text-align:right;float:right}.time-bar[data-v-a4579524]{flex-grow:1;margin:0 .5em}.col-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-70d7a7df]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-70d7a7df]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-70d7a7df]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-70d7a7df]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-70d7a7df]:first-child{margin-left:26%!important}.col-offset-3[data-v-70d7a7df]:not(first-child){margin-left:30%!important}.col-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-70d7a7df]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-70d7a7df]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-70d7a7df]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-70d7a7df]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-70d7a7df]:first-child{margin-left:52%!important}.col-offset-6[data-v-70d7a7df]:not(first-child){margin-left:56%!important}.col-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-70d7a7df]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-70d7a7df]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-70d7a7df]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-70d7a7df]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-70d7a7df]:first-child{margin-left:78%!important}.col-offset-9[data-v-70d7a7df]:not(first-child){margin-left:82%!important}.col-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-70d7a7df]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-70d7a7df]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-70d7a7df]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-70d7a7df]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-1[data-v-70d7a7df]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-2[data-v-70d7a7df]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-3[data-v-70d7a7df]{margin-left:26%}.col-no-margin-s-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-4[data-v-70d7a7df]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-5[data-v-70d7a7df]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-6[data-v-70d7a7df]{margin-left:52%}.col-no-margin-s-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-7[data-v-70d7a7df]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-8[data-v-70d7a7df]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-9[data-v-70d7a7df]{margin-left:78%}.col-no-margin-s-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-10[data-v-70d7a7df]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-s-11[data-v-70d7a7df]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-s-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-70d7a7df]{display:none!important}.s-visible[data-v-70d7a7df]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-1[data-v-70d7a7df]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-2[data-v-70d7a7df]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-3[data-v-70d7a7df]{margin-left:26%}.col-no-margin-m-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-4[data-v-70d7a7df]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-5[data-v-70d7a7df]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-6[data-v-70d7a7df]{margin-left:52%}.col-no-margin-m-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-7[data-v-70d7a7df]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-8[data-v-70d7a7df]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-9[data-v-70d7a7df]{margin-left:78%}.col-no-margin-m-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-10[data-v-70d7a7df]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-m-11[data-v-70d7a7df]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-m-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-70d7a7df]{display:none!important}.m-visible[data-v-70d7a7df]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-1[data-v-70d7a7df]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-2[data-v-70d7a7df]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-3[data-v-70d7a7df]{margin-left:26%}.col-no-margin-l-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-4[data-v-70d7a7df]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-5[data-v-70d7a7df]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-6[data-v-70d7a7df]{margin-left:52%}.col-no-margin-l-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-7[data-v-70d7a7df]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-8[data-v-70d7a7df]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-9[data-v-70d7a7df]{margin-left:78%}.col-no-margin-l-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-10[data-v-70d7a7df]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-l-11[data-v-70d7a7df]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-l-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-70d7a7df]{display:none!important}.l-visible[data-v-70d7a7df]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-1[data-v-70d7a7df]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-2[data-v-70d7a7df]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-3[data-v-70d7a7df]{margin-left:26%}.col-no-margin-xl-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-4[data-v-70d7a7df]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-5[data-v-70d7a7df]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-6[data-v-70d7a7df]{margin-left:52%}.col-no-margin-xl-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-7[data-v-70d7a7df]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-8[data-v-70d7a7df]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-9[data-v-70d7a7df]{margin-left:78%}.col-no-margin-xl-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-10[data-v-70d7a7df]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xl-11[data-v-70d7a7df]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-70d7a7df]{display:none!important}.xl-visible[data-v-70d7a7df]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-1[data-v-70d7a7df]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-70d7a7df]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-2[data-v-70d7a7df]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-70d7a7df]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-3[data-v-70d7a7df]{margin-left:26%}.col-no-margin-xxl-3[data-v-70d7a7df]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-4[data-v-70d7a7df]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-70d7a7df]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-5[data-v-70d7a7df]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-70d7a7df]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-6[data-v-70d7a7df]{margin-left:52%}.col-no-margin-xxl-6[data-v-70d7a7df]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-7[data-v-70d7a7df]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-70d7a7df]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-8[data-v-70d7a7df]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-70d7a7df]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-9[data-v-70d7a7df]{margin-left:78%}.col-no-margin-xxl-9[data-v-70d7a7df]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-10[data-v-70d7a7df]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-70d7a7df]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-70d7a7df]:first-child{margin-left:0}.col-offset-xxl-11[data-v-70d7a7df]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-70d7a7df]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-70d7a7df]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-70d7a7df]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-70d7a7df]{display:none!important}.xxl-visible[data-v-70d7a7df]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-70d7a7df]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-70d7a7df]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-70d7a7df]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-70d7a7df]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-70d7a7df]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-70d7a7df]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-70d7a7df]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-70d7a7df]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-70d7a7df]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-70d7a7df]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-70d7a7df]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-70d7a7df]{display:none}}@media screen and (min-width:769px){.mobile[data-v-70d7a7df]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-70d7a7df]{display:none}}.vertical-center[data-v-70d7a7df]{display:flex;align-items:center}.horizontal-center[data-v-70d7a7df]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-70d7a7df]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-70d7a7df]{display:none!important}.no-content[data-v-70d7a7df]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-70d7a7df],.btn[data-v-70d7a7df],button[data-v-70d7a7df]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-70d7a7df],.btn-default[type=submit][data-v-70d7a7df],.btn.btn-primary[data-v-70d7a7df],.btn[type=submit][data-v-70d7a7df],button.btn-primary[data-v-70d7a7df],button[type=submit][data-v-70d7a7df]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-70d7a7df],.btn-default .icon[data-v-70d7a7df],button .icon[data-v-70d7a7df]{margin-right:.5em}input[type=password][data-v-70d7a7df],input[type=text][data-v-70d7a7df]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-70d7a7df]:focus,input[type=text][data-v-70d7a7df]:focus{border:1px solid #35b870}button[data-v-70d7a7df],input[data-v-70d7a7df]{outline:none}input[type=text][data-v-70d7a7df]:hover,textarea[data-v-70d7a7df]:hover{border:1px solid #9cdfb0}ul[data-v-70d7a7df]{margin:0;padding:0;list-style:none}a[data-v-70d7a7df]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-70d7a7df]:hover{color:#35b870}[data-v-70d7a7df]::-webkit-scrollbar{width:.75em}[data-v-70d7a7df]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-70d7a7df]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-70d7a7df]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-70d7a7df]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-70d7a7df],input[type=password][data-v-70d7a7df],input[type=search][data-v-70d7a7df],input[type=text][data-v-70d7a7df]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-70d7a7df]:hover,input[type=password][data-v-70d7a7df]:hover,input[type=search][data-v-70d7a7df]:hover,input[type=text][data-v-70d7a7df]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-70d7a7df]:focus,input[type=password][data-v-70d7a7df]:focus,input[type=search][data-v-70d7a7df]:focus,input[type=text][data-v-70d7a7df]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-70d7a7df],input[type=password].with-icon[data-v-70d7a7df],input[type=search].with-icon[data-v-70d7a7df],input[type=text].with-icon[data-v-70d7a7df]{padding-left:.3em}input[type=search][data-v-70d7a7df],input[type=text][data-v-70d7a7df]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-70d7a7df]{animation-fill-mode:both;animation-name:fadeIn-70d7a7df;-webkit-animation-name:fadeIn-70d7a7df}.fade-in[data-v-70d7a7df],.fade-out[data-v-70d7a7df]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-70d7a7df]{animation-fill-mode:both;animation-name:fadeOut-70d7a7df;-webkit-animation-name:fadeOut-70d7a7df}@keyframes fadeIn-70d7a7df{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-70d7a7df{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-70d7a7df]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-70d7a7df]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-70d7a7df]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-container[data-v-70d7a7df]{width:100%;height:100%;display:flex;flex-direction:column;position:relative}.media-container .view-container[data-v-70d7a7df]{height:100%}.media-container .controls-container[data-v-70d7a7df]{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/3798.6a1b7cf0.css b/platypush/backend/http/webapp/dist/static/css/3798.6a1b7cf0.css deleted file mode 100644 index 0e6ebc3a..00000000 --- a/platypush/backend/http/webapp/dist/static/css/3798.6a1b7cf0.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-3bfa13d8],.entity .head .icon[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3bfa13d8]:first-child,.entity .head .icon[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3bfa13d8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3bfa13d8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3bfa13d8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3bfa13d8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3bfa13d8],.entity .head .value-and-toggler[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3bfa13d8]:first-child,.entity .head .value-and-toggler[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-3[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3bfa13d8]:first-child{margin-left:26%!important}.col-offset-3[data-v-3bfa13d8]:not(first-child){margin-left:30%!important}.col-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3bfa13d8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3bfa13d8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3bfa13d8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3bfa13d8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3bfa13d8]:first-child{margin-left:52%!important}.col-offset-6[data-v-3bfa13d8]:not(first-child){margin-left:56%!important}.col-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3bfa13d8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3bfa13d8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3bfa13d8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3bfa13d8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3bfa13d8]:first-child{margin-left:78%!important}.col-offset-9[data-v-3bfa13d8]:not(first-child){margin-left:82%!important}.col-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3bfa13d8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3bfa13d8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3bfa13d8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3bfa13d8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-1[data-v-3bfa13d8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-2[data-v-3bfa13d8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3bfa13d8],.entity .head .value-container[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3bfa13d8]:first-child,.entity .head .value-container[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-3[data-v-3bfa13d8]{margin-left:26%}.col-no-margin-s-3[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-4[data-v-3bfa13d8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-5[data-v-3bfa13d8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-6[data-v-3bfa13d8]{margin-left:52%}.col-no-margin-s-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-7[data-v-3bfa13d8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3bfa13d8],.entity .head .label[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3bfa13d8]:first-child,.entity .head .label[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-8[data-v-3bfa13d8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-9[data-v-3bfa13d8]{margin-left:78%}.col-no-margin-s-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-10[data-v-3bfa13d8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-s-11[data-v-3bfa13d8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-3bfa13d8],.attributes .child .value[data-v-3bfa13d8],.col-s-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-3bfa13d8]:first-child,.attributes .child .value[data-v-3bfa13d8]:first-child,.col-s-12[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3bfa13d8]{display:none!important}.s-visible[data-v-3bfa13d8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-1[data-v-3bfa13d8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3bfa13d8],.entity .head .value-container[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3bfa13d8]:first-child,.entity .head .value-container[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-2[data-v-3bfa13d8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-3[data-v-3bfa13d8]{margin-left:26%}.col-no-margin-m-3[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-4[data-v-3bfa13d8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-5[data-v-3bfa13d8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-3bfa13d8],.attributes .child .value[data-v-3bfa13d8],.col-m-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-3bfa13d8]:first-child,.attributes .child .value[data-v-3bfa13d8]:first-child,.col-m-6[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-6[data-v-3bfa13d8]{margin-left:52%}.col-no-margin-m-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-7[data-v-3bfa13d8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-8[data-v-3bfa13d8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3bfa13d8],.entity .head .label[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3bfa13d8]:first-child,.entity .head .label[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-9[data-v-3bfa13d8]{margin-left:78%}.col-no-margin-m-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-10[data-v-3bfa13d8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-m-11[data-v-3bfa13d8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3bfa13d8]{display:none!important}.m-visible[data-v-3bfa13d8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-1[data-v-3bfa13d8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-2[data-v-3bfa13d8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-3[data-v-3bfa13d8]{margin-left:26%}.col-no-margin-l-3[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-4[data-v-3bfa13d8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-5[data-v-3bfa13d8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-6[data-v-3bfa13d8]{margin-left:52%}.col-no-margin-l-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-7[data-v-3bfa13d8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-8[data-v-3bfa13d8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-9[data-v-3bfa13d8]{margin-left:78%}.col-no-margin-l-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-10[data-v-3bfa13d8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-l-11[data-v-3bfa13d8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3bfa13d8]{display:none!important}.l-visible[data-v-3bfa13d8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-1[data-v-3bfa13d8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-2[data-v-3bfa13d8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-3[data-v-3bfa13d8]{margin-left:26%}.col-no-margin-xl-3[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-4[data-v-3bfa13d8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-5[data-v-3bfa13d8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-6[data-v-3bfa13d8]{margin-left:52%}.col-no-margin-xl-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-7[data-v-3bfa13d8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-8[data-v-3bfa13d8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-9[data-v-3bfa13d8]{margin-left:78%}.col-no-margin-xl-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-10[data-v-3bfa13d8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xl-11[data-v-3bfa13d8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3bfa13d8]{display:none!important}.xl-visible[data-v-3bfa13d8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3bfa13d8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3bfa13d8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3bfa13d8]{margin-left:26%}.col-no-margin-xxl-3[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3bfa13d8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3bfa13d8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3bfa13d8]{margin-left:52%}.col-no-margin-xxl-6[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3bfa13d8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3bfa13d8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3bfa13d8]{margin-left:78%}.col-no-margin-xxl-9[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3bfa13d8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3bfa13d8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3bfa13d8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3bfa13d8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3bfa13d8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3bfa13d8]{display:none!important}.xxl-visible[data-v-3bfa13d8]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3bfa13d8]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-3bfa13d8]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3bfa13d8]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-3bfa13d8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3bfa13d8]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-3bfa13d8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3bfa13d8]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-3bfa13d8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3bfa13d8]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-3bfa13d8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3bfa13d8]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-3bfa13d8]{display:none}}@media screen and (min-width:769px){.mobile[data-v-3bfa13d8]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3bfa13d8]{display:none}}.vertical-center[data-v-3bfa13d8]{display:flex;align-items:center}.horizontal-center[data-v-3bfa13d8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-3bfa13d8],.pull-right[data-v-3bfa13d8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3bfa13d8]{display:none!important}.no-content[data-v-3bfa13d8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-3bfa13d8],.btn[data-v-3bfa13d8],button[data-v-3bfa13d8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3bfa13d8],.btn-default[type=submit][data-v-3bfa13d8],.btn.btn-primary[data-v-3bfa13d8],.btn[type=submit][data-v-3bfa13d8],button.btn-primary[data-v-3bfa13d8],button[type=submit][data-v-3bfa13d8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3bfa13d8],.btn-default .icon[data-v-3bfa13d8],button .icon[data-v-3bfa13d8]{margin-right:.5em}input[type=password][data-v-3bfa13d8],input[type=text][data-v-3bfa13d8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3bfa13d8]:focus,input[type=text][data-v-3bfa13d8]:focus{border:1px solid #35b870}button[data-v-3bfa13d8],input[data-v-3bfa13d8]{outline:none}input[type=text][data-v-3bfa13d8]:hover,textarea[data-v-3bfa13d8]:hover{border:1px solid #9cdfb0}ul[data-v-3bfa13d8]{margin:0;padding:0;list-style:none}a[data-v-3bfa13d8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3bfa13d8]:hover{color:#35b870}[data-v-3bfa13d8]::-webkit-scrollbar{width:.75em}[data-v-3bfa13d8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3bfa13d8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3bfa13d8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-3bfa13d8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-3bfa13d8],input[type=password][data-v-3bfa13d8],input[type=search][data-v-3bfa13d8],input[type=text][data-v-3bfa13d8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-3bfa13d8]:hover,input[type=password][data-v-3bfa13d8]:hover,input[type=search][data-v-3bfa13d8]:hover,input[type=text][data-v-3bfa13d8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-3bfa13d8]:focus,input[type=password][data-v-3bfa13d8]:focus,input[type=search][data-v-3bfa13d8]:focus,input[type=text][data-v-3bfa13d8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-3bfa13d8],input[type=password].with-icon[data-v-3bfa13d8],input[type=search].with-icon[data-v-3bfa13d8],input[type=text].with-icon[data-v-3bfa13d8]{padding-left:.3em}input[type=search][data-v-3bfa13d8],input[type=text][data-v-3bfa13d8]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-3bfa13d8],.fade-in[data-v-3bfa13d8]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-3bfa13d8;-webkit-animation-name:fadeIn-3bfa13d8}.fade-out[data-v-3bfa13d8]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-3bfa13d8;-webkit-animation-name:fadeOut-3bfa13d8}@keyframes fadeIn-3bfa13d8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3bfa13d8{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-3bfa13d8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3bfa13d8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3bfa13d8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-3bfa13d8]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-3bfa13d8]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-3bfa13d8]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-3bfa13d8]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-3bfa13d8]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-3bfa13d8]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-3bfa13d8]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-3bfa13d8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-3bfa13d8]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-3bfa13d8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-3bfa13d8]{margin-right:.5em}.entity .head .icon[data-v-3bfa13d8]:hover{color:#35b870}.entity .head .label[data-v-3bfa13d8]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-3bfa13d8]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-3bfa13d8]:hover{color:#35b870}.entity .head .value[data-v-3bfa13d8]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-3bfa13d8]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-3bfa13d8]{margin-right:2.5em}.entity .head .value-container[data-v-3bfa13d8]{min-width:7em}.entity .head .unit[data-v-3bfa13d8]{margin-left:.2em}.entity .head .pull-right[data-v-3bfa13d8],.entity .head .value-container[data-v-3bfa13d8]{padding-right:.5em}.entity .head .pull-right[data-v-3bfa13d8] .power-switch,.entity .head .value-container[data-v-3bfa13d8] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-3bfa13d8]{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-3bfa13d8]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-3bfa13d8]:hover{color:#35b870}.collapse-toggler[data-v-3bfa13d8]{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-3bfa13d8]:hover{color:#35b870}.attributes .child[data-v-3bfa13d8]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-3bfa13d8]{flex-direction:column}}.attributes .child[data-v-3bfa13d8]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-3bfa13d8]:hover{cursor:auto}.attributes .child.head[data-v-3bfa13d8]{cursor:pointer}.attributes .child.head[data-v-3bfa13d8]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-3bfa13d8]{font-weight:700}.attributes .child .value[data-v-3bfa13d8]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-3bfa13d8]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-3bfa13d8]:last-child,.entity-container-wrapper.with-children[data-v-3bfa13d8]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-3bfa13d8]{animation:blink-animation-3bfa13d8 1s steps(20,start)}@keyframes blink-animation-3bfa13d8{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.light-container .head .value-container button[data-v-3bfa13d8]{margin-right:.5em}.light-container .body .row[data-v-3bfa13d8]{display:flex;align-items:center;padding:.5em}.light-container .body .row .icon[data-v-3bfa13d8]{width:2em;margin-left:-.5em;text-align:center}.light-container .body .row .input[data-v-3bfa13d8]{width:calc(100% - 2em)}.light-container .body .row .input [type=color][data-v-3bfa13d8]{width:100%}.light-container .body .row .input[data-v-3bfa13d8] .slider{margin-top:.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/3826.fbeeb43c.css b/platypush/backend/http/webapp/dist/static/css/3826.53d49948.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/3826.fbeeb43c.css rename to platypush/backend/http/webapp/dist/static/css/3826.53d49948.css index 00042b09..049181aa 100644 --- a/platypush/backend/http/webapp/dist/static/css/3826.fbeeb43c.css +++ b/platypush/backend/http/webapp/dist/static/css/3826.53d49948.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(769px - 1px)){.tablet.from[data-v-3b38610c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-3b38610c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3b38610c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-3b38610c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3b38610c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-3b38610c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3b38610c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-3b38610c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3b38610c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-3b38610c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3b38610c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-3b38610c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-3b38610c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3b38610c]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-3b38610c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-3b38610c],input[type=password][data-v-3b38610c],input[type=search][data-v-3b38610c],input[type=text][data-v-3b38610c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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.fbe4d9b1.css b/platypush/backend/http/webapp/dist/static/css/3835.91d8befb.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/3835.fbe4d9b1.css rename to platypush/backend/http/webapp/dist/static/css/3835.91d8befb.css index 7f0611c4..c00ef393 100644 --- a/platypush/backend/http/webapp/dist/static/css/3835.fbe4d9b1.css +++ b/platypush/backend/http/webapp/dist/static/css/3835.91d8befb.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(769px - 1px)){.tablet.from[data-v-6aff1eff]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-6aff1eff]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6aff1eff]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-6aff1eff]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6aff1eff]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-6aff1eff]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6aff1eff]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-6aff1eff]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6aff1eff]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-6aff1eff]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6aff1eff]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-6aff1eff]{display:none}}@media screen and (min-width:769px){.mobile[data-v-6aff1eff]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6aff1eff]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-6aff1eff]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-6aff1eff],input[type=password][data-v-6aff1eff],input[type=search][data-v-6aff1eff],input[type=text][data-v-6aff1eff]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/4221.76c11dc1.css b/platypush/backend/http/webapp/dist/static/css/4221.76c11dc1.css new file mode 100644 index 00000000..d3214e48 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/4221.76c11dc1.css @@ -0,0 +1 @@ +.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}}.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/446.ac7021e0.css b/platypush/backend/http/webapp/dist/static/css/446.e0a96773.css similarity index 74% rename from platypush/backend/http/webapp/dist/static/css/446.ac7021e0.css rename to platypush/backend/http/webapp/dist/static/css/446.e0a96773.css index b6f1503b..be4af238 100644 --- a/platypush/backend/http/webapp/dist/static/css/446.ac7021e0.css +++ b/platypush/backend/http/webapp/dist/static/css/446.e0a96773.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(769px - 1px)){.tablet.from[data-v-0fad5251]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-0fad5251]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0fad5251]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-0fad5251]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0fad5251]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-0fad5251]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0fad5251]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-0fad5251]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0fad5251]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-0fad5251]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0fad5251]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-0fad5251]{display:none}}@media screen and (min-width:769px){.mobile[data-v-0fad5251]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0fad5251]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-0fad5251]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-0fad5251],input[type=password][data-v-0fad5251],input[type=search][data-v-0fad5251],input[type=text][data-v-0fad5251]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/4558.a091c93e.css b/platypush/backend/http/webapp/dist/static/css/4558.a091c93e.css deleted file mode 100644 index ad471e6e..00000000 --- a/platypush/backend/http/webapp/dist/static/css/4558.a091c93e.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6fec32b5]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6fec32b5]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6fec32b5]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6fec32b5]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6fec32b5]:first-child{margin-left:26%!important}.col-offset-3[data-v-6fec32b5]:not(first-child){margin-left:30%!important}.col-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6fec32b5]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6fec32b5]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6fec32b5]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6fec32b5]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6fec32b5]:first-child{margin-left:52%!important}.col-offset-6[data-v-6fec32b5]:not(first-child){margin-left:56%!important}.col-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6fec32b5]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6fec32b5]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6fec32b5]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6fec32b5]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6fec32b5]:first-child{margin-left:78%!important}.col-offset-9[data-v-6fec32b5]:not(first-child){margin-left:82%!important}.col-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6fec32b5]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6fec32b5]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6fec32b5]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6fec32b5]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-1[data-v-6fec32b5]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-2[data-v-6fec32b5]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-3[data-v-6fec32b5]{margin-left:26%}.col-no-margin-s-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-4[data-v-6fec32b5]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-5[data-v-6fec32b5]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-6[data-v-6fec32b5]{margin-left:52%}.col-no-margin-s-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-7[data-v-6fec32b5]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-8[data-v-6fec32b5]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-9[data-v-6fec32b5]{margin-left:78%}.col-no-margin-s-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-10[data-v-6fec32b5]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-s-11[data-v-6fec32b5]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6fec32b5]{display:none!important}.s-visible[data-v-6fec32b5]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-1[data-v-6fec32b5]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-2[data-v-6fec32b5]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-3[data-v-6fec32b5]{margin-left:26%}.col-no-margin-m-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-4[data-v-6fec32b5]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-5[data-v-6fec32b5]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-6[data-v-6fec32b5]{margin-left:52%}.col-no-margin-m-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-7[data-v-6fec32b5]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-8[data-v-6fec32b5]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-9[data-v-6fec32b5]{margin-left:78%}.col-no-margin-m-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-10[data-v-6fec32b5]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-m-11[data-v-6fec32b5]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6fec32b5]{display:none!important}.m-visible[data-v-6fec32b5]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-1[data-v-6fec32b5]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-2[data-v-6fec32b5]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-3[data-v-6fec32b5]{margin-left:26%}.col-no-margin-l-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-4[data-v-6fec32b5]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-5[data-v-6fec32b5]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-6[data-v-6fec32b5]{margin-left:52%}.col-no-margin-l-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-7[data-v-6fec32b5]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-8[data-v-6fec32b5]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-9[data-v-6fec32b5]{margin-left:78%}.col-no-margin-l-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-10[data-v-6fec32b5]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-l-11[data-v-6fec32b5]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6fec32b5]{display:none!important}.l-visible[data-v-6fec32b5]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-1[data-v-6fec32b5]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-2[data-v-6fec32b5]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-3[data-v-6fec32b5]{margin-left:26%}.col-no-margin-xl-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-4[data-v-6fec32b5]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-5[data-v-6fec32b5]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-6[data-v-6fec32b5]{margin-left:52%}.col-no-margin-xl-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-7[data-v-6fec32b5]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-8[data-v-6fec32b5]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-9[data-v-6fec32b5]{margin-left:78%}.col-no-margin-xl-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-10[data-v-6fec32b5]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xl-11[data-v-6fec32b5]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6fec32b5]{display:none!important}.xl-visible[data-v-6fec32b5]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6fec32b5]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6fec32b5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6fec32b5]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6fec32b5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6fec32b5]{margin-left:26%}.col-no-margin-xxl-3[data-v-6fec32b5]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6fec32b5]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6fec32b5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6fec32b5]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6fec32b5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6fec32b5]{margin-left:52%}.col-no-margin-xxl-6[data-v-6fec32b5]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6fec32b5]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6fec32b5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6fec32b5]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6fec32b5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6fec32b5]{margin-left:78%}.col-no-margin-xxl-9[data-v-6fec32b5]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6fec32b5]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6fec32b5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6fec32b5]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6fec32b5]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6fec32b5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6fec32b5]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6fec32b5]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6fec32b5]{display:none!important}.xxl-visible[data-v-6fec32b5]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6fec32b5]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-6fec32b5]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6fec32b5]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-6fec32b5]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6fec32b5]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-6fec32b5]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6fec32b5]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-6fec32b5]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6fec32b5]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-6fec32b5]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6fec32b5]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-6fec32b5]{display:none}}@media screen and (min-width:769px){.mobile[data-v-6fec32b5]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6fec32b5]{display:none}}.vertical-center[data-v-6fec32b5]{display:flex;align-items:center}.horizontal-center[data-v-6fec32b5]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6fec32b5]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6fec32b5]{display:none!important}.no-content[data-v-6fec32b5]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-6fec32b5],.btn[data-v-6fec32b5],button[data-v-6fec32b5]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6fec32b5],.btn-default[type=submit][data-v-6fec32b5],.btn.btn-primary[data-v-6fec32b5],.btn[type=submit][data-v-6fec32b5],button.btn-primary[data-v-6fec32b5],button[type=submit][data-v-6fec32b5]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6fec32b5],.btn-default .icon[data-v-6fec32b5],button .icon[data-v-6fec32b5]{margin-right:.5em}input[type=password][data-v-6fec32b5],input[type=text][data-v-6fec32b5]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6fec32b5]:focus,input[type=text][data-v-6fec32b5]:focus{border:1px solid #35b870}button[data-v-6fec32b5],input[data-v-6fec32b5]{outline:none}input[type=text][data-v-6fec32b5]:hover,textarea[data-v-6fec32b5]:hover{border:1px solid #9cdfb0}ul[data-v-6fec32b5]{margin:0;padding:0;list-style:none}a[data-v-6fec32b5]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6fec32b5]:hover{color:#35b870}[data-v-6fec32b5]::-webkit-scrollbar{width:.75em}[data-v-6fec32b5]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6fec32b5]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6fec32b5]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-6fec32b5]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-6fec32b5],input[type=password][data-v-6fec32b5],input[type=search][data-v-6fec32b5],input[type=text][data-v-6fec32b5]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-6fec32b5]:hover,input[type=password][data-v-6fec32b5]:hover,input[type=search][data-v-6fec32b5]:hover,input[type=text][data-v-6fec32b5]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-6fec32b5]:focus,input[type=password][data-v-6fec32b5]:focus,input[type=search][data-v-6fec32b5]:focus,input[type=text][data-v-6fec32b5]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-6fec32b5],input[type=password].with-icon[data-v-6fec32b5],input[type=search].with-icon[data-v-6fec32b5],input[type=text].with-icon[data-v-6fec32b5]{padding-left:.3em}input[type=search][data-v-6fec32b5],input[type=text][data-v-6fec32b5]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6fec32b5]{animation-fill-mode:both;animation-name:fadeIn-6fec32b5;-webkit-animation-name:fadeIn-6fec32b5}.fade-in[data-v-6fec32b5],.fade-out[data-v-6fec32b5]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6fec32b5]{animation-fill-mode:both;animation-name:fadeOut-6fec32b5;-webkit-animation-name:fadeOut-6fec32b5}@keyframes fadeIn-6fec32b5{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6fec32b5{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-6fec32b5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6fec32b5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6fec32b5]: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-6fec32b5]{width:100%;display:flex;flex-direction:column;align-items:center}.no-items-container .no-items[data-v-6fec32b5]{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;box-shadow:0 3px 2px -1px silver}@media screen and (min-width:769px){.no-items-container .no-items[data-v-6fec32b5]{min-width:80%}}@media screen and (min-width:1024px){.no-items-container .no-items[data-v-6fec32b5]{min-width:50%;max-width:35em}}@media screen and (min-width:1408px){.no-items-container .no-items[data-v-6fec32b5]{min-width:33%}}.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(769px - 1px)){.tablet.from[data-v-7b0732e4]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-7b0732e4]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7b0732e4]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-7b0732e4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7b0732e4]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-7b0732e4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7b0732e4]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-7b0732e4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7b0732e4]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-7b0732e4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7b0732e4]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-7b0732e4]{display:none}}@media screen and (min-width:769px){.mobile[data-v-7b0732e4]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7b0732e4]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-7b0732e4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-7b0732e4],input[type=password][data-v-7b0732e4],input[type=search][data-v-7b0732e4],input[type=text][data-v-7b0732e4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-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(769px - 1px)){.tablet.from[data-v-334516c0]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-334516c0]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-334516c0]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-334516c0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-334516c0]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-334516c0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-334516c0]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-334516c0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-334516c0]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-334516c0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-334516c0]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-334516c0]{display:none}}@media screen and (min-width:769px){.mobile[data-v-334516c0]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-334516c0]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-334516c0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-334516c0],input[type=password][data-v-334516c0],input[type=search][data-v-334516c0],input[type=text][data-v-334516c0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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%}.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(769px - 1px)){.tablet.from[data-v-3344f2bf]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-3344f2bf]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3344f2bf]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-3344f2bf]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3344f2bf]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-3344f2bf]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3344f2bf]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-3344f2bf]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3344f2bf]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-3344f2bf]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3344f2bf]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-3344f2bf]{display:none}}@media screen and (min-width:769px){.mobile[data-v-3344f2bf]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3344f2bf]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-3344f2bf]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-3344f2bf],input[type=password][data-v-3344f2bf],input[type=search][data-v-3344f2bf],input[type=text][data-v-3344f2bf]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-49689016]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-49689016]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-49689016]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-49689016]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-49689016]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-49689016]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-49689016]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-49689016]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-49689016]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-49689016]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-49689016]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-49689016]{display:none}}@media screen and (min-width:769px){.mobile[data-v-49689016]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-49689016]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-49689016]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-49689016],input[type=password][data-v-49689016],input[type=search][data-v-49689016],input[type=text][data-v-49689016]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-600cb1a8]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-600cb1a8]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-600cb1a8]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-600cb1a8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-600cb1a8]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-600cb1a8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-600cb1a8]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-600cb1a8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-600cb1a8]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-600cb1a8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-600cb1a8]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-600cb1a8]{display:none}}@media screen and (min-width:769px){.mobile[data-v-600cb1a8]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-600cb1a8]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-600cb1a8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-600cb1a8],input[type=password][data-v-600cb1a8],input[type=search][data-v-600cb1a8],input[type=text][data-v-600cb1a8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-1e2a8724],.entity .head .icon[data-v-1e2a8724]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1e2a8724]:first-child,.entity .head .icon[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1e2a8724]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1e2a8724]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1e2a8724]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1e2a8724]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1e2a8724],.entity .head .value-and-toggler[data-v-1e2a8724]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1e2a8724]:first-child,.entity .head .value-and-toggler[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-3[data-v-1e2a8724]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1e2a8724]:first-child{margin-left:26%!important}.col-offset-3[data-v-1e2a8724]:not(first-child){margin-left:30%!important}.col-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1e2a8724]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1e2a8724]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1e2a8724]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1e2a8724]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1e2a8724]:first-child{margin-left:52%!important}.col-offset-6[data-v-1e2a8724]:not(first-child){margin-left:56%!important}.col-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1e2a8724]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1e2a8724]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1e2a8724]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1e2a8724]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1e2a8724]:first-child{margin-left:78%!important}.col-offset-9[data-v-1e2a8724]:not(first-child){margin-left:82%!important}.col-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1e2a8724]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1e2a8724]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1e2a8724]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1e2a8724]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-1[data-v-1e2a8724]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-2[data-v-1e2a8724]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1e2a8724],.entity .head .value-container[data-v-1e2a8724]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1e2a8724]:first-child,.entity .head .value-container[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-3[data-v-1e2a8724]{margin-left:26%}.col-no-margin-s-3[data-v-1e2a8724]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-4[data-v-1e2a8724]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-5[data-v-1e2a8724]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-6[data-v-1e2a8724]{margin-left:52%}.col-no-margin-s-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-7[data-v-1e2a8724]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1e2a8724],.entity .head .label[data-v-1e2a8724]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1e2a8724]:first-child,.entity .head .label[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-8[data-v-1e2a8724]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-9[data-v-1e2a8724]{margin-left:78%}.col-no-margin-s-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-10[data-v-1e2a8724]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-s-11[data-v-1e2a8724]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-1e2a8724],.attributes .child .value[data-v-1e2a8724],.col-s-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-1e2a8724]:first-child,.attributes .child .value[data-v-1e2a8724]:first-child,.col-s-12[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1e2a8724]{display:none!important}.s-visible[data-v-1e2a8724]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-1[data-v-1e2a8724]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1e2a8724],.entity .head .value-container[data-v-1e2a8724]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1e2a8724]:first-child,.entity .head .value-container[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-2[data-v-1e2a8724]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1e2a8724]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-3[data-v-1e2a8724]{margin-left:26%}.col-no-margin-m-3[data-v-1e2a8724]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-4[data-v-1e2a8724]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-5[data-v-1e2a8724]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-1e2a8724],.attributes .child .value[data-v-1e2a8724],.col-m-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-1e2a8724]:first-child,.attributes .child .value[data-v-1e2a8724]:first-child,.col-m-6[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-6[data-v-1e2a8724]{margin-left:52%}.col-no-margin-m-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-7[data-v-1e2a8724]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-8[data-v-1e2a8724]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1e2a8724],.entity .head .label[data-v-1e2a8724]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1e2a8724]:first-child,.entity .head .label[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-9[data-v-1e2a8724]{margin-left:78%}.col-no-margin-m-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-10[data-v-1e2a8724]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-m-11[data-v-1e2a8724]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1e2a8724]{display:none!important}.m-visible[data-v-1e2a8724]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-1[data-v-1e2a8724]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-2[data-v-1e2a8724]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1e2a8724]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-3[data-v-1e2a8724]{margin-left:26%}.col-no-margin-l-3[data-v-1e2a8724]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-4[data-v-1e2a8724]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-5[data-v-1e2a8724]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-6[data-v-1e2a8724]{margin-left:52%}.col-no-margin-l-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-7[data-v-1e2a8724]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-8[data-v-1e2a8724]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-9[data-v-1e2a8724]{margin-left:78%}.col-no-margin-l-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-10[data-v-1e2a8724]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-l-11[data-v-1e2a8724]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1e2a8724]{display:none!important}.l-visible[data-v-1e2a8724]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-1[data-v-1e2a8724]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-2[data-v-1e2a8724]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1e2a8724]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-3[data-v-1e2a8724]{margin-left:26%}.col-no-margin-xl-3[data-v-1e2a8724]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-4[data-v-1e2a8724]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-5[data-v-1e2a8724]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-6[data-v-1e2a8724]{margin-left:52%}.col-no-margin-xl-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-7[data-v-1e2a8724]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-8[data-v-1e2a8724]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-9[data-v-1e2a8724]{margin-left:78%}.col-no-margin-xl-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-10[data-v-1e2a8724]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xl-11[data-v-1e2a8724]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1e2a8724]{display:none!important}.xl-visible[data-v-1e2a8724]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1e2a8724]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1e2a8724]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1e2a8724]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1e2a8724]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1e2a8724]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1e2a8724]{margin-left:26%}.col-no-margin-xxl-3[data-v-1e2a8724]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1e2a8724]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1e2a8724]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1e2a8724]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1e2a8724]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1e2a8724]{margin-left:52%}.col-no-margin-xxl-6[data-v-1e2a8724]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1e2a8724]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1e2a8724]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1e2a8724]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1e2a8724]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1e2a8724]{margin-left:78%}.col-no-margin-xxl-9[data-v-1e2a8724]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1e2a8724]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1e2a8724]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1e2a8724]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1e2a8724]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1e2a8724]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1e2a8724]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1e2a8724]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1e2a8724]{display:none!important}.xxl-visible[data-v-1e2a8724]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1e2a8724]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-1e2a8724]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1e2a8724]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-1e2a8724]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1e2a8724]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-1e2a8724]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1e2a8724]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-1e2a8724]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1e2a8724]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-1e2a8724]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1e2a8724]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-1e2a8724]{display:none}}@media screen and (min-width:769px){.mobile[data-v-1e2a8724]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1e2a8724]{display:none}}.vertical-center[data-v-1e2a8724]{display:flex;align-items:center}.horizontal-center[data-v-1e2a8724]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-1e2a8724],.pull-right[data-v-1e2a8724]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1e2a8724]{display:none!important}.no-content[data-v-1e2a8724]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-1e2a8724],.btn[data-v-1e2a8724],button[data-v-1e2a8724]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1e2a8724],.btn-default[type=submit][data-v-1e2a8724],.btn.btn-primary[data-v-1e2a8724],.btn[type=submit][data-v-1e2a8724],button.btn-primary[data-v-1e2a8724],button[type=submit][data-v-1e2a8724]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1e2a8724],.btn-default .icon[data-v-1e2a8724],button .icon[data-v-1e2a8724]{margin-right:.5em}input[type=password][data-v-1e2a8724],input[type=text][data-v-1e2a8724]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1e2a8724]:focus,input[type=text][data-v-1e2a8724]:focus{border:1px solid #35b870}button[data-v-1e2a8724],input[data-v-1e2a8724]{outline:none}input[type=text][data-v-1e2a8724]:hover,textarea[data-v-1e2a8724]:hover{border:1px solid #9cdfb0}ul[data-v-1e2a8724]{margin:0;padding:0;list-style:none}a[data-v-1e2a8724]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1e2a8724]:hover{color:#35b870}[data-v-1e2a8724]::-webkit-scrollbar{width:.75em}[data-v-1e2a8724]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1e2a8724]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1e2a8724]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-1e2a8724]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-1e2a8724],input[type=password][data-v-1e2a8724],input[type=search][data-v-1e2a8724],input[type=text][data-v-1e2a8724]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-1e2a8724]:hover,input[type=password][data-v-1e2a8724]:hover,input[type=search][data-v-1e2a8724]:hover,input[type=text][data-v-1e2a8724]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-1e2a8724]:focus,input[type=password][data-v-1e2a8724]:focus,input[type=search][data-v-1e2a8724]:focus,input[type=text][data-v-1e2a8724]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-1e2a8724],input[type=password].with-icon[data-v-1e2a8724],input[type=search].with-icon[data-v-1e2a8724],input[type=text].with-icon[data-v-1e2a8724]{padding-left:.3em}input[type=search][data-v-1e2a8724],input[type=text][data-v-1e2a8724]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-1e2a8724],.fade-in[data-v-1e2a8724]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-1e2a8724;-webkit-animation-name:fadeIn-1e2a8724}.fade-out[data-v-1e2a8724]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-1e2a8724;-webkit-animation-name:fadeOut-1e2a8724}@keyframes fadeIn-1e2a8724{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1e2a8724{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-1e2a8724]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1e2a8724]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1e2a8724]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-1e2a8724]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-1e2a8724]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-1e2a8724]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-1e2a8724]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-1e2a8724]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-1e2a8724]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-1e2a8724]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-1e2a8724]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-1e2a8724]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-1e2a8724]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-1e2a8724]{margin-right:.5em}.entity .head .icon[data-v-1e2a8724]:hover{color:#35b870}.entity .head .label[data-v-1e2a8724]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-1e2a8724]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-1e2a8724]:hover{color:#35b870}.entity .head .value[data-v-1e2a8724]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-1e2a8724]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-1e2a8724]{margin-right:2.5em}.entity .head .value-container[data-v-1e2a8724]{min-width:7em}.entity .head .unit[data-v-1e2a8724]{margin-left:.2em}.entity .head .pull-right[data-v-1e2a8724],.entity .head .value-container[data-v-1e2a8724]{padding-right:.5em}.entity .head .pull-right[data-v-1e2a8724] .power-switch,.entity .head .value-container[data-v-1e2a8724] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-1e2a8724]{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-1e2a8724]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-1e2a8724]:hover{color:#35b870}.collapse-toggler[data-v-1e2a8724]{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-1e2a8724]:hover{color:#35b870}.attributes .child[data-v-1e2a8724]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-1e2a8724]{flex-direction:column}}.attributes .child[data-v-1e2a8724]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-1e2a8724]:hover{cursor:auto}.attributes .child.head[data-v-1e2a8724]{cursor:pointer}.attributes .child.head[data-v-1e2a8724]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-1e2a8724]{font-weight:700}.attributes .child .value[data-v-1e2a8724]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-1e2a8724]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-1e2a8724]:last-child,.entity-container-wrapper.with-children[data-v-1e2a8724]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-1e2a8724]{animation:blink-animation-1e2a8724 1s steps(20,start)}@keyframes blink-animation-1e2a8724{0%{background:initial}50%{background:#8fefb7}to{background:initial}}[data-v-1e2a8724] .modal .body{padding:0}@media screen and (min-width:1024px){[data-v-1e2a8724] .modal .body{min-width:45em}}[data-v-1e2a8724] .modal .body .table-row{box-shadow:none;padding:.5em}[data-v-1e2a8724] .modal .icon-canvas{display:inline-flex;align-items:center}@media screen and (max-width:calc(769px - 1px)){[data-v-1e2a8724] .modal .icon-canvas .icon-container{justify-content:left}}@media screen and (min-width:769px){[data-v-1e2a8724] .modal .icon-canvas .icon-container{justify-content:right}}[data-v-1e2a8724] .modal .icon-editor{display:flex;flex-direction:column}[data-v-1e2a8724] .modal button{border:none;background:none;padding:0 .5em}[data-v-1e2a8724] .modal .help{font-size:.75em}[data-v-1e2a8724] .modal .delete-entity-container{color:#ad1717;cursor:pointer}[data-v-1e2a8724] .modal .delete-entity-container button{color:#ad1717}[data-v-1e2a8724] .modal .section{margin:0}[data-v-1e2a8724] .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-1e2a8724] .modal .section .section-title:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-1e2a8724] .modal .config-container .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-1e2a8724] .modal .config-container .title:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-1e2a8724] .modal .extra-info-container .value{white-space:pre-wrap;opacity:.8}[data-v-1e2a8724] .modal .value a,[data-v-1e2a8724] .modal .value.url{text-align:right;text-decoration:underline;opacity:.8}[data-v-1e2a8724] .modal .value a:hover,[data-v-1e2a8724] .modal .value.url:hover{opacity:.6}[data-v-1e2a8724] .modal .value .entity-image{max-height:5em}@media screen and (max-width:calc(768px - 1px)){[data-v-1e2a8724] .modal .entity-container-wrapper.collapsed{border-radius:0;box-shadow:none;border-bottom:1px solid #e1e4e8}}.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(769px - 1px)){.tablet.from[data-v-4e3d4a40]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-4e3d4a40]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4e3d4a40]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-4e3d4a40]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4e3d4a40]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-4e3d4a40]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4e3d4a40]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-4e3d4a40]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4e3d4a40]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-4e3d4a40]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4e3d4a40]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-4e3d4a40]{display:none}}@media screen and (min-width:769px){.mobile[data-v-4e3d4a40]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4e3d4a40]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-4e3d4a40]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-4e3d4a40],input[type=password][data-v-4e3d4a40],input[type=search][data-v-4e3d4a40],input[type=text][data-v-4e3d4a40]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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}}.col-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5fa5e0e4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5fa5e0e4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5fa5e0e4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5fa5e0e4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5fa5e0e4]:first-child{margin-left:26%!important}.col-offset-3[data-v-5fa5e0e4]:not(first-child){margin-left:30%!important}.col-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5fa5e0e4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5fa5e0e4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5fa5e0e4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5fa5e0e4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5fa5e0e4]:first-child{margin-left:52%!important}.col-offset-6[data-v-5fa5e0e4]:not(first-child){margin-left:56%!important}.col-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5fa5e0e4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5fa5e0e4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5fa5e0e4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5fa5e0e4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5fa5e0e4]:first-child{margin-left:78%!important}.col-offset-9[data-v-5fa5e0e4]:not(first-child){margin-left:82%!important}.col-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5fa5e0e4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5fa5e0e4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5fa5e0e4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5fa5e0e4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-1[data-v-5fa5e0e4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-2[data-v-5fa5e0e4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-3[data-v-5fa5e0e4]{margin-left:26%}.col-no-margin-s-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-4[data-v-5fa5e0e4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-5[data-v-5fa5e0e4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-6[data-v-5fa5e0e4]{margin-left:52%}.col-no-margin-s-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-7[data-v-5fa5e0e4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-8[data-v-5fa5e0e4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-9[data-v-5fa5e0e4]{margin-left:78%}.col-no-margin-s-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-10[data-v-5fa5e0e4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-s-11[data-v-5fa5e0e4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5fa5e0e4]{display:none!important}.s-visible[data-v-5fa5e0e4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-1[data-v-5fa5e0e4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-2[data-v-5fa5e0e4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-3[data-v-5fa5e0e4]{margin-left:26%}.col-no-margin-m-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-4[data-v-5fa5e0e4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-5[data-v-5fa5e0e4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-6[data-v-5fa5e0e4]{margin-left:52%}.col-no-margin-m-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-7[data-v-5fa5e0e4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-8[data-v-5fa5e0e4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-9[data-v-5fa5e0e4]{margin-left:78%}.col-no-margin-m-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-10[data-v-5fa5e0e4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-m-11[data-v-5fa5e0e4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5fa5e0e4]{display:none!important}.m-visible[data-v-5fa5e0e4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-1[data-v-5fa5e0e4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-2[data-v-5fa5e0e4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-3[data-v-5fa5e0e4]{margin-left:26%}.col-no-margin-l-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-4[data-v-5fa5e0e4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-5[data-v-5fa5e0e4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-6[data-v-5fa5e0e4]{margin-left:52%}.col-no-margin-l-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-7[data-v-5fa5e0e4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-8[data-v-5fa5e0e4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-9[data-v-5fa5e0e4]{margin-left:78%}.col-no-margin-l-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-10[data-v-5fa5e0e4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-l-11[data-v-5fa5e0e4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5fa5e0e4]{display:none!important}.l-visible[data-v-5fa5e0e4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-1[data-v-5fa5e0e4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-2[data-v-5fa5e0e4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-3[data-v-5fa5e0e4]{margin-left:26%}.col-no-margin-xl-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-4[data-v-5fa5e0e4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-5[data-v-5fa5e0e4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-6[data-v-5fa5e0e4]{margin-left:52%}.col-no-margin-xl-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-7[data-v-5fa5e0e4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-8[data-v-5fa5e0e4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-9[data-v-5fa5e0e4]{margin-left:78%}.col-no-margin-xl-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-10[data-v-5fa5e0e4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xl-11[data-v-5fa5e0e4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5fa5e0e4]{display:none!important}.xl-visible[data-v-5fa5e0e4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5fa5e0e4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5fa5e0e4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5fa5e0e4]{margin-left:26%}.col-no-margin-xxl-3[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5fa5e0e4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5fa5e0e4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5fa5e0e4]{margin-left:52%}.col-no-margin-xxl-6[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5fa5e0e4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5fa5e0e4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5fa5e0e4]{margin-left:78%}.col-no-margin-xxl-9[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5fa5e0e4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5fa5e0e4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5fa5e0e4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5fa5e0e4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5fa5e0e4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5fa5e0e4]{display:none!important}.xxl-visible[data-v-5fa5e0e4]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5fa5e0e4]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-5fa5e0e4]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5fa5e0e4]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-5fa5e0e4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5fa5e0e4]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-5fa5e0e4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5fa5e0e4]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-5fa5e0e4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5fa5e0e4]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-5fa5e0e4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5fa5e0e4]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-5fa5e0e4]{display:none}}@media screen and (min-width:769px){.mobile[data-v-5fa5e0e4]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5fa5e0e4]{display:none}}.vertical-center[data-v-5fa5e0e4]{display:flex;align-items:center}.horizontal-center[data-v-5fa5e0e4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5fa5e0e4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5fa5e0e4]{display:none!important}.no-content[data-v-5fa5e0e4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-5fa5e0e4],.btn[data-v-5fa5e0e4],button[data-v-5fa5e0e4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5fa5e0e4],.btn-default[type=submit][data-v-5fa5e0e4],.btn.btn-primary[data-v-5fa5e0e4],.btn[type=submit][data-v-5fa5e0e4],button.btn-primary[data-v-5fa5e0e4],button[type=submit][data-v-5fa5e0e4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5fa5e0e4],.btn-default .icon[data-v-5fa5e0e4],button .icon[data-v-5fa5e0e4]{margin-right:.5em}input[type=password][data-v-5fa5e0e4],input[type=text][data-v-5fa5e0e4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5fa5e0e4]:focus,input[type=text][data-v-5fa5e0e4]:focus{border:1px solid #35b870}button[data-v-5fa5e0e4],input[data-v-5fa5e0e4]{outline:none}input[type=text][data-v-5fa5e0e4]:hover,textarea[data-v-5fa5e0e4]:hover{border:1px solid #9cdfb0}ul[data-v-5fa5e0e4]{margin:0;padding:0;list-style:none}a[data-v-5fa5e0e4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5fa5e0e4]:hover{color:#35b870}[data-v-5fa5e0e4]::-webkit-scrollbar{width:.75em}[data-v-5fa5e0e4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5fa5e0e4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5fa5e0e4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-5fa5e0e4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-5fa5e0e4],input[type=password][data-v-5fa5e0e4],input[type=search][data-v-5fa5e0e4],input[type=text][data-v-5fa5e0e4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-5fa5e0e4]:hover,input[type=password][data-v-5fa5e0e4]:hover,input[type=search][data-v-5fa5e0e4]:hover,input[type=text][data-v-5fa5e0e4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-5fa5e0e4]:focus,input[type=password][data-v-5fa5e0e4]:focus,input[type=search][data-v-5fa5e0e4]:focus,input[type=text][data-v-5fa5e0e4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-5fa5e0e4],input[type=password].with-icon[data-v-5fa5e0e4],input[type=search].with-icon[data-v-5fa5e0e4],input[type=text].with-icon[data-v-5fa5e0e4]{padding-left:.3em}input[type=search][data-v-5fa5e0e4],input[type=text][data-v-5fa5e0e4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5fa5e0e4]{animation-fill-mode:both;animation-name:fadeIn-5fa5e0e4;-webkit-animation-name:fadeIn-5fa5e0e4}.fade-in[data-v-5fa5e0e4],.fade-out[data-v-5fa5e0e4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5fa5e0e4]{animation-fill-mode:both;animation-name:fadeOut-5fa5e0e4;-webkit-animation-name:fadeOut-5fa5e0e4}@keyframes fadeIn-5fa5e0e4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5fa5e0e4{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-5fa5e0e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5fa5e0e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5fa5e0e4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-5fa5e0e4]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-5fa5e0e4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-5fa5e0e4]{background:#8fefb7}.item.selected[data-v-5fa5e0e4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-5fa5e0e4]{border-top:2px solid #35b870}.item[data-v-5fa5e0e4]::-moz-selection{background:transparent!important}.item[data-v-5fa5e0e4]::selection{background:transparent!important}.item .title[data-v-5fa5e0e4]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-5fa5e0e4]{display:inline-flex;align-items:center}.item .side.right[data-v-5fa5e0e4]{display:inline-flex;justify-content:right}.item .actions[data-v-5fa5e0e4],.item .duration[data-v-5fa5e0e4]{display:inline-flex;align-items:center}.item .duration[data-v-5fa5e0e4]{font-size:.85em;opacity:.7}.item .actions[data-v-5fa5e0e4] button{opacity:.65}.item .icon[data-v-5fa5e0e4]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-5fa5e0e4] .dropdown-container .item{box-shadow:none}.item[data-v-5fa5e0e4] .dropdown-container button{background:none;border:none}.item[data-v-5fa5e0e4] .dropdown-container button:hover{color:#35b870}[data-v-5fa5e0e4] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-5fa5e0e4] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-5fa5e0e4] .table-row{flex-direction:row;align-items:center}}[data-v-5fa5e0e4] .table-row .title,[data-v-5fa5e0e4] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-5fa5e0e4] .table-row .title,[data-v-5fa5e0e4] .table-row .value{display:inline-flex}}[data-v-5fa5e0e4] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-5fa5e0e4] .table-row .title{width:30%}[data-v-5fa5e0e4] .table-row .value{justify-content:right}}.entities-container[data-v-5fa5e0e4]{--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-5fa5e0e4]{--groups-per-row:2}}@media screen and (min-width:1408px){.entities-container[data-v-5fa5e0e4]{--groups-per-row:3}}.entities-container button[data-v-5fa5e0e4]{background:transparent;border:0}.entities-container button[data-v-5fa5e0e4]:hover{color:#35b870}.entities-container header[data-v-5fa5e0e4]{width:calc(100% - 2px);height:2.5em;display:flex;background:#f8f8f8;margin-left:2px;box-shadow:0 3px 2px -1px silver;position:relative;z-index:1}.entities-container header .right[data-v-5fa5e0e4]{position:absolute;right:0;text-align:right;margin-right:.5em;padding-right:0}.entities-container header .right button[data-v-5fa5e0e4]{padding:.5em 0}.entities-container .groups-canvas[data-v-5fa5e0e4]{width:100%;height:calc(100% - 2.5em);overflow:auto}@media screen and (max-width:calc(768px - 1px)){.entities-container .groups-container[data-v-5fa5e0e4]{background:#f8f8f8}}@media screen and (max-width:calc(1023px - 1px)){.entities-container .groups-container[data-v-5fa5e0e4]{display:flex;flex-direction:column;align-items:center}}@media screen and (min-width:1024px){.entities-container .groups-container[data-v-5fa5e0e4]{-moz-column-count:var(--groups-per-row);column-count:var(--groups-per-row)}}.entities-container .group[data-v-5fa5e0e4]{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-5fa5e0e4]{padding:0;margin-bottom:1em}}@media screen and (min-width:769px){.entities-container .group[data-v-5fa5e0e4]{padding:1em}}.entities-container .group .frame[data-v-5fa5e0e4]{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-5fa5e0e4]{max-height:calc(100vh - 4.5em)}}.entities-container .group .header[data-v-5fa5e0e4]{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-5fa5e0e4]{border-bottom:1px solid #ddd}}@media screen and (min-width:769px){.entities-container .group .header[data-v-5fa5e0e4]{border-radius:1em 1em 0 0}}.entities-container .group .header .section[data-v-5fa5e0e4]{height:100%;display:table-cell;vertical-align:middle}.entities-container .group .header .section.left[data-v-5fa5e0e4],.entities-container .group .header .section.right[data-v-5fa5e0e4]{width:10%}.entities-container .group .header .section.right[data-v-5fa5e0e4]{text-align:right}.entities-container .group .header .section.center[data-v-5fa5e0e4]{width:80%;text-align:center}.entities-container .group .header .title[data-v-5fa5e0e4]{text-transform:capitalize}@media screen and (max-width:calc(768px - 1px)){.entities-container .group .header .title[data-v-5fa5e0e4]{font-weight:700}}.entities-container .group .body[data-v-5fa5e0e4]{max-height:calc(100% - 3.5em);overflow:auto;flex-grow:1}@media screen and (min-width:769px){.entities-container .group .body[data-v-5fa5e0e4]{background:#f8f8f8}}.entities-container .group .body .entity-frame[data-v-5fa5e0e4]{background:#fff}.entities-container .group .body .entity-frame[data-v-5fa5e0e4]:last-child{border-radius:0 0 1em 1em}@media screen and (max-width:calc(768px - 1px)){.entities-container[data-v-5fa5e0e4] .modal{width:calc(100% - 1em)}.entities-container[data-v-5fa5e0e4] .modal .table-row{border-bottom:1px solid #ddd}}.entities-container[data-v-5fa5e0e4] .modal .table-row .value{overflow:auto}@media screen and (max-width:calc(769px - 1px)){.entities-container[data-v-5fa5e0e4] .modal .content{width:100%}}@media screen and (min-width:769px){.entities-container[data-v-5fa5e0e4] .modal .content{min-width:30em}}.entities-container[data-v-5fa5e0e4] .modal .content .body{padding:0}.entities-container[data-v-5fa5e0e4] .modal .content .body .table-row{padding:.5em}.entities-container[data-v-5fa5e0e4] .dropdown-container .dropdown{min-width:10em;margin-left:0}.entities-container[data-v-5fa5e0e4] .dropdown-container .dropdown .item{box-shadow:none}.entities-container[data-v-5fa5e0e4] .dropdown-container button{background:none} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/4589.e78ef44e.css b/platypush/backend/http/webapp/dist/static/css/4589.d7fd389b.css similarity index 70% rename from platypush/backend/http/webapp/dist/static/css/4589.e78ef44e.css rename to platypush/backend/http/webapp/dist/static/css/4589.d7fd389b.css index ed3daba6..999c62eb 100644 --- a/platypush/backend/http/webapp/dist/static/css/4589.e78ef44e.css +++ b/platypush/backend/http/webapp/dist/static/css/4589.d7fd389b.css @@ -1 +1 @@ -.col-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-aa2b30ec]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-aa2b30ec]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-aa2b30ec]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-aa2b30ec]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-aa2b30ec]:first-child{margin-left:26%!important}.col-offset-3[data-v-aa2b30ec]:not(first-child){margin-left:30%!important}.col-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-aa2b30ec]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-aa2b30ec]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-aa2b30ec]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-aa2b30ec]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-aa2b30ec]:first-child{margin-left:52%!important}.col-offset-6[data-v-aa2b30ec]:not(first-child){margin-left:56%!important}.col-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-aa2b30ec]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-aa2b30ec]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-aa2b30ec]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-aa2b30ec]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-aa2b30ec]:first-child{margin-left:78%!important}.col-offset-9[data-v-aa2b30ec]:not(first-child){margin-left:82%!important}.col-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-aa2b30ec]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-aa2b30ec]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-aa2b30ec]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-aa2b30ec]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-1[data-v-aa2b30ec]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-2[data-v-aa2b30ec]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-3[data-v-aa2b30ec]{margin-left:26%}.col-no-margin-s-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-4[data-v-aa2b30ec]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-5[data-v-aa2b30ec]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-6[data-v-aa2b30ec]{margin-left:52%}.col-no-margin-s-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-7[data-v-aa2b30ec]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-8[data-v-aa2b30ec]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-9[data-v-aa2b30ec]{margin-left:78%}.col-no-margin-s-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-10[data-v-aa2b30ec]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-11[data-v-aa2b30ec]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-s-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-aa2b30ec]{display:none!important}.s-visible[data-v-aa2b30ec]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-1[data-v-aa2b30ec]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-2[data-v-aa2b30ec]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-3[data-v-aa2b30ec]{margin-left:26%}.col-no-margin-m-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-4[data-v-aa2b30ec]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-5[data-v-aa2b30ec]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-6[data-v-aa2b30ec]{margin-left:52%}.col-no-margin-m-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-7[data-v-aa2b30ec]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-8[data-v-aa2b30ec]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-9[data-v-aa2b30ec]{margin-left:78%}.col-no-margin-m-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-10[data-v-aa2b30ec]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-11[data-v-aa2b30ec]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-m-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-aa2b30ec]{display:none!important}.m-visible[data-v-aa2b30ec]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-1[data-v-aa2b30ec]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-2[data-v-aa2b30ec]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-3[data-v-aa2b30ec]{margin-left:26%}.col-no-margin-l-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-4[data-v-aa2b30ec]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-5[data-v-aa2b30ec]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-6[data-v-aa2b30ec]{margin-left:52%}.col-no-margin-l-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-7[data-v-aa2b30ec]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-8[data-v-aa2b30ec]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-9[data-v-aa2b30ec]{margin-left:78%}.col-no-margin-l-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-10[data-v-aa2b30ec]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-11[data-v-aa2b30ec]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-l-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-aa2b30ec]{display:none!important}.l-visible[data-v-aa2b30ec]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-1[data-v-aa2b30ec]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-2[data-v-aa2b30ec]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-3[data-v-aa2b30ec]{margin-left:26%}.col-no-margin-xl-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-4[data-v-aa2b30ec]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-5[data-v-aa2b30ec]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-6[data-v-aa2b30ec]{margin-left:52%}.col-no-margin-xl-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-7[data-v-aa2b30ec]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-8[data-v-aa2b30ec]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-9[data-v-aa2b30ec]{margin-left:78%}.col-no-margin-xl-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-10[data-v-aa2b30ec]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-11[data-v-aa2b30ec]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-aa2b30ec]{display:none!important}.xl-visible[data-v-aa2b30ec]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-1[data-v-aa2b30ec]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-2[data-v-aa2b30ec]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-3[data-v-aa2b30ec]{margin-left:26%}.col-no-margin-xxl-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-4[data-v-aa2b30ec]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-5[data-v-aa2b30ec]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-6[data-v-aa2b30ec]{margin-left:52%}.col-no-margin-xxl-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-7[data-v-aa2b30ec]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-8[data-v-aa2b30ec]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-9[data-v-aa2b30ec]{margin-left:78%}.col-no-margin-xxl-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-10[data-v-aa2b30ec]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-11[data-v-aa2b30ec]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-aa2b30ec]{display:none!important}.xxl-visible[data-v-aa2b30ec]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-aa2b30ec]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-aa2b30ec]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-aa2b30ec]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-aa2b30ec]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-aa2b30ec]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-aa2b30ec]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-aa2b30ec]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-aa2b30ec]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-aa2b30ec]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-aa2b30ec]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-aa2b30ec]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-aa2b30ec]{display:none}}@media screen and (min-width:769px){.mobile[data-v-aa2b30ec]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-aa2b30ec]{display:none}}.vertical-center[data-v-aa2b30ec]{display:flex;align-items:center}.horizontal-center[data-v-aa2b30ec]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-aa2b30ec]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-aa2b30ec]{display:none!important}.no-content[data-v-aa2b30ec]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-aa2b30ec],.btn[data-v-aa2b30ec],button[data-v-aa2b30ec]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-aa2b30ec],.btn-default[type=submit][data-v-aa2b30ec],.btn.btn-primary[data-v-aa2b30ec],.btn[type=submit][data-v-aa2b30ec],button.btn-primary[data-v-aa2b30ec],button[type=submit][data-v-aa2b30ec]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-aa2b30ec],.btn-default .icon[data-v-aa2b30ec],button .icon[data-v-aa2b30ec]{margin-right:.5em}input[type=password][data-v-aa2b30ec],input[type=text][data-v-aa2b30ec]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-aa2b30ec]:focus,input[type=text][data-v-aa2b30ec]:focus{border:1px solid #35b870}button[data-v-aa2b30ec],input[data-v-aa2b30ec]{outline:none}input[type=text][data-v-aa2b30ec]:hover,textarea[data-v-aa2b30ec]:hover{border:1px solid #9cdfb0}ul[data-v-aa2b30ec]{margin:0;padding:0;list-style:none}a[data-v-aa2b30ec]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-aa2b30ec]:hover{color:#35b870}[data-v-aa2b30ec]::-webkit-scrollbar{width:.75em}[data-v-aa2b30ec]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-aa2b30ec]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-aa2b30ec]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-aa2b30ec]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-aa2b30ec],input[type=password][data-v-aa2b30ec],input[type=search][data-v-aa2b30ec],input[type=text][data-v-aa2b30ec]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-aa2b30ec]:hover,input[type=password][data-v-aa2b30ec]:hover,input[type=search][data-v-aa2b30ec]:hover,input[type=text][data-v-aa2b30ec]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-aa2b30ec]:focus,input[type=password][data-v-aa2b30ec]:focus,input[type=search][data-v-aa2b30ec]:focus,input[type=text][data-v-aa2b30ec]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-aa2b30ec],input[type=password].with-icon[data-v-aa2b30ec],input[type=search].with-icon[data-v-aa2b30ec],input[type=text].with-icon[data-v-aa2b30ec]{padding-left:.3em}input[type=search][data-v-aa2b30ec],input[type=text][data-v-aa2b30ec]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-aa2b30ec]{animation-fill-mode:both;animation-name:fadeIn-aa2b30ec;-webkit-animation-name:fadeIn-aa2b30ec}.fade-in[data-v-aa2b30ec],.fade-out[data-v-aa2b30ec]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-aa2b30ec]{animation-fill-mode:both;animation-name:fadeOut-aa2b30ec;-webkit-animation-name:fadeOut-aa2b30ec}@keyframes fadeIn-aa2b30ec{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-aa2b30ec{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-aa2b30ec]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-aa2b30ec]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-aa2b30ec]: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-aa2b30ec]{width:100%;height:100%;display:flex;justify-content:center}.tv-samsung-ws-container .controls[data-v-aa2b30ec]{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 (min-width:769px){.tv-samsung-ws-container .controls[data-v-aa2b30ec]{justify-content:center}}@media screen and (min-width:1024px){.tv-samsung-ws-container .controls[data-v-aa2b30ec]{margin-top:2em}}.tv-samsung-ws-container .controls .power[data-v-aa2b30ec]{color:red}.tv-samsung-ws-container .controls button[data-v-aa2b30ec]{margin:.5em 0}.tv-samsung-ws-container .rows[data-v-aa2b30ec]{flex-direction:column}.tv-samsung-ws-container .rows * button[data-v-aa2b30ec]{width:100%}.tv-samsung-ws-container .section[data-v-aa2b30ec]{width:100%;display:flex;margin:.5em 0;padding:.5em 0;border-bottom:1px solid #ddd}.tv-samsung-ws-container .section[data-v-aa2b30ec]:first-child{margin-top:.5em}.tv-samsung-ws-container .section[data-v-aa2b30ec]:last-child{margin-bottom:1em}.tv-samsung-ws-container .directions[data-v-aa2b30ec]{flex-direction:column}.tv-samsung-ws-container .directions * button[data-v-aa2b30ec]{width:5em;height:4em}.tv-samsung-ws-container .channel[data-v-aa2b30ec],.tv-samsung-ws-container .colors[data-v-aa2b30ec],.tv-samsung-ws-container .volume[data-v-aa2b30ec]{text-align:center}.tv-samsung-ws-container .colors .color[data-v-aa2b30ec]{width:3em;height:3em;padding:0;border-radius:2em}.tv-samsung-ws-container .colors .color.red[data-v-aa2b30ec]{background:red}.tv-samsung-ws-container .colors .color.green[data-v-aa2b30ec]{background:green}.tv-samsung-ws-container .colors .color.yellow[data-v-aa2b30ec]{background:#ff0}.tv-samsung-ws-container .colors .color.blue[data-v-aa2b30ec]{background:blue} \ No newline at end of file +.col-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-aa2b30ec]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-aa2b30ec]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-aa2b30ec]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-aa2b30ec]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-aa2b30ec]:first-child{margin-left:26%!important}.col-offset-3[data-v-aa2b30ec]:not(first-child){margin-left:30%!important}.col-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-aa2b30ec]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-aa2b30ec]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-aa2b30ec]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-aa2b30ec]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-aa2b30ec]:first-child{margin-left:52%!important}.col-offset-6[data-v-aa2b30ec]:not(first-child){margin-left:56%!important}.col-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-aa2b30ec]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-aa2b30ec]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-aa2b30ec]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-aa2b30ec]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-aa2b30ec]:first-child{margin-left:78%!important}.col-offset-9[data-v-aa2b30ec]:not(first-child){margin-left:82%!important}.col-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-aa2b30ec]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-aa2b30ec]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-aa2b30ec]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-aa2b30ec]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-1[data-v-aa2b30ec]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-2[data-v-aa2b30ec]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-3[data-v-aa2b30ec]{margin-left:26%}.col-no-margin-s-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-4[data-v-aa2b30ec]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-5[data-v-aa2b30ec]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-6[data-v-aa2b30ec]{margin-left:52%}.col-no-margin-s-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-7[data-v-aa2b30ec]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-8[data-v-aa2b30ec]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-9[data-v-aa2b30ec]{margin-left:78%}.col-no-margin-s-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-10[data-v-aa2b30ec]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-s-11[data-v-aa2b30ec]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-s-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-aa2b30ec]{display:none!important}.s-visible[data-v-aa2b30ec]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-1[data-v-aa2b30ec]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-2[data-v-aa2b30ec]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-3[data-v-aa2b30ec]{margin-left:26%}.col-no-margin-m-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-4[data-v-aa2b30ec]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-5[data-v-aa2b30ec]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-6[data-v-aa2b30ec]{margin-left:52%}.col-no-margin-m-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-7[data-v-aa2b30ec]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-8[data-v-aa2b30ec]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-9[data-v-aa2b30ec]{margin-left:78%}.col-no-margin-m-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-10[data-v-aa2b30ec]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-m-11[data-v-aa2b30ec]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-m-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-aa2b30ec]{display:none!important}.m-visible[data-v-aa2b30ec]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-1[data-v-aa2b30ec]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-2[data-v-aa2b30ec]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-3[data-v-aa2b30ec]{margin-left:26%}.col-no-margin-l-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-4[data-v-aa2b30ec]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-5[data-v-aa2b30ec]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-6[data-v-aa2b30ec]{margin-left:52%}.col-no-margin-l-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-7[data-v-aa2b30ec]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-8[data-v-aa2b30ec]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-9[data-v-aa2b30ec]{margin-left:78%}.col-no-margin-l-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-10[data-v-aa2b30ec]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-l-11[data-v-aa2b30ec]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-l-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-aa2b30ec]{display:none!important}.l-visible[data-v-aa2b30ec]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-1[data-v-aa2b30ec]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-2[data-v-aa2b30ec]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-3[data-v-aa2b30ec]{margin-left:26%}.col-no-margin-xl-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-4[data-v-aa2b30ec]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-5[data-v-aa2b30ec]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-6[data-v-aa2b30ec]{margin-left:52%}.col-no-margin-xl-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-7[data-v-aa2b30ec]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-8[data-v-aa2b30ec]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-9[data-v-aa2b30ec]{margin-left:78%}.col-no-margin-xl-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-10[data-v-aa2b30ec]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xl-11[data-v-aa2b30ec]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-aa2b30ec]{display:none!important}.xl-visible[data-v-aa2b30ec]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-1[data-v-aa2b30ec]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-2[data-v-aa2b30ec]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-3[data-v-aa2b30ec]{margin-left:26%}.col-no-margin-xxl-3[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-4[data-v-aa2b30ec]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-5[data-v-aa2b30ec]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-6[data-v-aa2b30ec]{margin-left:52%}.col-no-margin-xxl-6[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-7[data-v-aa2b30ec]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-8[data-v-aa2b30ec]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-9[data-v-aa2b30ec]{margin-left:78%}.col-no-margin-xxl-9[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-10[data-v-aa2b30ec]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-aa2b30ec]:first-child{margin-left:0}.col-offset-xxl-11[data-v-aa2b30ec]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-aa2b30ec]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-aa2b30ec]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-aa2b30ec]{display:none!important}.xxl-visible[data-v-aa2b30ec]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-aa2b30ec]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-aa2b30ec]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-aa2b30ec]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-aa2b30ec]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-aa2b30ec]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-aa2b30ec]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-aa2b30ec]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-aa2b30ec]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-aa2b30ec]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-aa2b30ec]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-aa2b30ec]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-aa2b30ec]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-aa2b30ec]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-aa2b30ec]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-aa2b30ec]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-aa2b30ec]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-aa2b30ec]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-aa2b30ec]{display:none!important}}.vertical-center[data-v-aa2b30ec]{display:flex;align-items:center}.horizontal-center[data-v-aa2b30ec]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-aa2b30ec]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-aa2b30ec]{display:none!important}.no-content[data-v-aa2b30ec]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-aa2b30ec]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-aa2b30ec]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-aa2b30ec]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-aa2b30ec]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-aa2b30ec]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-aa2b30ec]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-aa2b30ec],.btn[data-v-aa2b30ec],button[data-v-aa2b30ec]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-aa2b30ec],.btn-default[type=submit][data-v-aa2b30ec],.btn.btn-primary[data-v-aa2b30ec],.btn[type=submit][data-v-aa2b30ec],button.btn-primary[data-v-aa2b30ec],button[type=submit][data-v-aa2b30ec]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-aa2b30ec],.btn-default .icon[data-v-aa2b30ec],button .icon[data-v-aa2b30ec]{margin-right:.5em}input[type=password][data-v-aa2b30ec],input[type=text][data-v-aa2b30ec]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-aa2b30ec]:focus,input[type=text][data-v-aa2b30ec]:focus{border:1px solid #35b870}button[data-v-aa2b30ec],input[data-v-aa2b30ec]{outline:none}input[type=text][data-v-aa2b30ec]:hover,textarea[data-v-aa2b30ec]:hover{border:1px solid #9cdfb0}ul[data-v-aa2b30ec]{margin:0;padding:0;list-style:none}a[data-v-aa2b30ec]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-aa2b30ec]:hover{color:#35b870}[data-v-aa2b30ec]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-aa2b30ec]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-aa2b30ec]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-aa2b30ec]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-aa2b30ec]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-aa2b30ec] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-aa2b30ec] .nav .path{cursor:pointer}.browser[data-v-aa2b30ec] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-aa2b30ec] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-aa2b30ec]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-aa2b30ec],input[type=number][data-v-aa2b30ec],input[type=password][data-v-aa2b30ec],input[type=search][data-v-aa2b30ec],input[type=text][data-v-aa2b30ec],input[type=time][data-v-aa2b30ec]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-aa2b30ec]:hover,input[type=number][data-v-aa2b30ec]:hover,input[type=password][data-v-aa2b30ec]:hover,input[type=search][data-v-aa2b30ec]:hover,input[type=text][data-v-aa2b30ec]:hover,input[type=time][data-v-aa2b30ec]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-aa2b30ec]:focus,input[type=number][data-v-aa2b30ec]:focus,input[type=password][data-v-aa2b30ec]:focus,input[type=search][data-v-aa2b30ec]:focus,input[type=text][data-v-aa2b30ec]:focus,input[type=time][data-v-aa2b30ec]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-aa2b30ec],input[type=number].with-icon[data-v-aa2b30ec],input[type=password].with-icon[data-v-aa2b30ec],input[type=search].with-icon[data-v-aa2b30ec],input[type=text].with-icon[data-v-aa2b30ec],input[type=time].with-icon[data-v-aa2b30ec]{padding-left:.3em}input[type=search][data-v-aa2b30ec],input[type=text][data-v-aa2b30ec]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-aa2b30ec]{animation-fill-mode:both;animation-name:fadeIn-aa2b30ec;-webkit-animation-name:fadeIn-aa2b30ec}.fade-in[data-v-aa2b30ec],.fade-out[data-v-aa2b30ec]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-aa2b30ec]{animation-fill-mode:both;animation-name:fadeOut-aa2b30ec;-webkit-animation-name:fadeOut-aa2b30ec}@keyframes fadeIn-aa2b30ec{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-aa2b30ec{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-aa2b30ec]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-aa2b30ec]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-aa2b30ec]: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-aa2b30ec]{width:100%;height:100%;display:flex;justify-content:center}.tv-samsung-ws-container .controls[data-v-aa2b30ec]{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 (min-width:769px){.tv-samsung-ws-container .controls[data-v-aa2b30ec]{justify-content:center}}@media screen and (min-width:1024px){.tv-samsung-ws-container .controls[data-v-aa2b30ec]{margin-top:2em}}.tv-samsung-ws-container .controls .power[data-v-aa2b30ec]{color:red}.tv-samsung-ws-container .controls button[data-v-aa2b30ec]{margin:.5em 0}.tv-samsung-ws-container .rows[data-v-aa2b30ec]{flex-direction:column}.tv-samsung-ws-container .rows * button[data-v-aa2b30ec]{width:100%}.tv-samsung-ws-container .section[data-v-aa2b30ec]{width:100%;display:flex;margin:.5em 0;padding:.5em 0;border-bottom:1px solid #ddd}.tv-samsung-ws-container .section[data-v-aa2b30ec]:first-child{margin-top:.5em}.tv-samsung-ws-container .section[data-v-aa2b30ec]:last-child{margin-bottom:1em}.tv-samsung-ws-container .directions[data-v-aa2b30ec]{flex-direction:column}.tv-samsung-ws-container .directions * button[data-v-aa2b30ec]{width:5em;height:4em}.tv-samsung-ws-container .channel[data-v-aa2b30ec],.tv-samsung-ws-container .colors[data-v-aa2b30ec],.tv-samsung-ws-container .volume[data-v-aa2b30ec]{text-align:center}.tv-samsung-ws-container .colors .color[data-v-aa2b30ec]{width:3em;height:3em;padding:0;border-radius:2em}.tv-samsung-ws-container .colors .color.red[data-v-aa2b30ec]{background:red}.tv-samsung-ws-container .colors .color.green[data-v-aa2b30ec]{background:green}.tv-samsung-ws-container .colors .color.yellow[data-v-aa2b30ec]{background:#ff0}.tv-samsung-ws-container .colors .color.blue[data-v-aa2b30ec]{background:blue} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/472.20f2f41f.css b/platypush/backend/http/webapp/dist/static/css/472.20f2f41f.css new file mode 100644 index 00000000..1d69355b --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/472.20f2f41f.css @@ -0,0 +1 @@ +.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}}.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.3ef3568e.css b/platypush/backend/http/webapp/dist/static/css/4790.3ef3568e.css new file mode 100644 index 00000000..f3b89229 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/4790.3ef3568e.css @@ -0,0 +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}}.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/5040.a5bd22c4.css b/platypush/backend/http/webapp/dist/static/css/5040.a5bd22c4.css deleted file mode 100644 index 8886c227..00000000 --- a/platypush/backend/http/webapp/dist/static/css/5040.a5bd22c4.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a6396ae8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a6396ae8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a6396ae8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a6396ae8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a6396ae8]:first-child{margin-left:26%!important}.col-offset-3[data-v-a6396ae8]:not(first-child){margin-left:30%!important}.col-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a6396ae8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a6396ae8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a6396ae8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a6396ae8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a6396ae8]:first-child{margin-left:52%!important}.col-offset-6[data-v-a6396ae8]:not(first-child){margin-left:56%!important}.col-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a6396ae8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a6396ae8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a6396ae8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a6396ae8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a6396ae8]:first-child{margin-left:78%!important}.col-offset-9[data-v-a6396ae8]:not(first-child){margin-left:82%!important}.col-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a6396ae8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a6396ae8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a6396ae8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a6396ae8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-1[data-v-a6396ae8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-2[data-v-a6396ae8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-3[data-v-a6396ae8]{margin-left:26%}.col-no-margin-s-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-4[data-v-a6396ae8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-5[data-v-a6396ae8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-6[data-v-a6396ae8]{margin-left:52%}.col-no-margin-s-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-7[data-v-a6396ae8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-8[data-v-a6396ae8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-9[data-v-a6396ae8]{margin-left:78%}.col-no-margin-s-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-10[data-v-a6396ae8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-s-11[data-v-a6396ae8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a6396ae8]{display:none!important}.s-visible[data-v-a6396ae8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-1[data-v-a6396ae8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-2[data-v-a6396ae8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-3[data-v-a6396ae8]{margin-left:26%}.col-no-margin-m-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-4[data-v-a6396ae8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-5[data-v-a6396ae8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-6[data-v-a6396ae8]{margin-left:52%}.col-no-margin-m-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-7[data-v-a6396ae8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-8[data-v-a6396ae8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-9[data-v-a6396ae8]{margin-left:78%}.col-no-margin-m-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-10[data-v-a6396ae8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-m-11[data-v-a6396ae8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a6396ae8]{display:none!important}.m-visible[data-v-a6396ae8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-1[data-v-a6396ae8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-2[data-v-a6396ae8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-3[data-v-a6396ae8]{margin-left:26%}.col-no-margin-l-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-4[data-v-a6396ae8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-5[data-v-a6396ae8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-6[data-v-a6396ae8]{margin-left:52%}.col-no-margin-l-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-7[data-v-a6396ae8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-8[data-v-a6396ae8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-9[data-v-a6396ae8]{margin-left:78%}.col-no-margin-l-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-10[data-v-a6396ae8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-l-11[data-v-a6396ae8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a6396ae8]{display:none!important}.l-visible[data-v-a6396ae8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-1[data-v-a6396ae8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-2[data-v-a6396ae8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-3[data-v-a6396ae8]{margin-left:26%}.col-no-margin-xl-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-4[data-v-a6396ae8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-5[data-v-a6396ae8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-6[data-v-a6396ae8]{margin-left:52%}.col-no-margin-xl-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-7[data-v-a6396ae8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-8[data-v-a6396ae8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-9[data-v-a6396ae8]{margin-left:78%}.col-no-margin-xl-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-10[data-v-a6396ae8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xl-11[data-v-a6396ae8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a6396ae8]{display:none!important}.xl-visible[data-v-a6396ae8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a6396ae8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a6396ae8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a6396ae8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a6396ae8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a6396ae8]{margin-left:26%}.col-no-margin-xxl-3[data-v-a6396ae8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a6396ae8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a6396ae8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a6396ae8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a6396ae8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a6396ae8]{margin-left:52%}.col-no-margin-xxl-6[data-v-a6396ae8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a6396ae8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a6396ae8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a6396ae8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a6396ae8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a6396ae8]{margin-left:78%}.col-no-margin-xxl-9[data-v-a6396ae8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a6396ae8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a6396ae8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a6396ae8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a6396ae8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a6396ae8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a6396ae8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a6396ae8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a6396ae8]{display:none!important}.xxl-visible[data-v-a6396ae8]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a6396ae8]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-a6396ae8]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a6396ae8]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-a6396ae8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a6396ae8]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-a6396ae8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a6396ae8]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-a6396ae8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a6396ae8]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-a6396ae8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a6396ae8]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-a6396ae8]{display:none}}@media screen and (min-width:769px){.mobile[data-v-a6396ae8]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a6396ae8]{display:none}}.vertical-center[data-v-a6396ae8]{display:flex;align-items:center}.horizontal-center[data-v-a6396ae8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a6396ae8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a6396ae8]{display:none!important}.no-content[data-v-a6396ae8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-a6396ae8],.btn[data-v-a6396ae8],button[data-v-a6396ae8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a6396ae8],.btn-default[type=submit][data-v-a6396ae8],.btn.btn-primary[data-v-a6396ae8],.btn[type=submit][data-v-a6396ae8],button.btn-primary[data-v-a6396ae8],button[type=submit][data-v-a6396ae8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-a6396ae8],.btn-default .icon[data-v-a6396ae8],button .icon[data-v-a6396ae8]{margin-right:.5em}input[type=password][data-v-a6396ae8],input[type=text][data-v-a6396ae8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a6396ae8]:focus,input[type=text][data-v-a6396ae8]:focus{border:1px solid #35b870}button[data-v-a6396ae8],input[data-v-a6396ae8]{outline:none}input[type=text][data-v-a6396ae8]:hover,textarea[data-v-a6396ae8]:hover{border:1px solid #9cdfb0}ul[data-v-a6396ae8]{margin:0;padding:0;list-style:none}a[data-v-a6396ae8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a6396ae8]:hover{color:#35b870}[data-v-a6396ae8]::-webkit-scrollbar{width:.75em}[data-v-a6396ae8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a6396ae8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-a6396ae8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-a6396ae8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-a6396ae8],input[type=password][data-v-a6396ae8],input[type=search][data-v-a6396ae8],input[type=text][data-v-a6396ae8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-a6396ae8]:hover,input[type=password][data-v-a6396ae8]:hover,input[type=search][data-v-a6396ae8]:hover,input[type=text][data-v-a6396ae8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-a6396ae8]:focus,input[type=password][data-v-a6396ae8]:focus,input[type=search][data-v-a6396ae8]:focus,input[type=text][data-v-a6396ae8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-a6396ae8],input[type=password].with-icon[data-v-a6396ae8],input[type=search].with-icon[data-v-a6396ae8],input[type=text].with-icon[data-v-a6396ae8]{padding-left:.3em}input[type=search][data-v-a6396ae8],input[type=text][data-v-a6396ae8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a6396ae8]{animation-fill-mode:both;animation-name:fadeIn-a6396ae8;-webkit-animation-name:fadeIn-a6396ae8}.fade-in[data-v-a6396ae8],.fade-out[data-v-a6396ae8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a6396ae8]{animation-fill-mode:both;animation-name:fadeOut-a6396ae8;-webkit-animation-name:fadeOut-a6396ae8}@keyframes fadeIn-a6396ae8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a6396ae8{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-a6396ae8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a6396ae8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a6396ae8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.power-switch[data-v-a6396ae8]{position:relative;transition:transform .3s;transform:scale(var(--scale,1)) translateZ(0)}.power-switch[data-v-a6396ae8]:active{--scale:.96}.power-switch.disabled[data-v-a6396ae8]{opacity:.6}.power-switch input[data-v-a6396ae8]{display:none}.power-switch input+label[data-v-a6396ae8]{border-radius:1em;display:inline-flex;cursor:pointer;position:relative;transition:box-shadow .4s}.power-switch input+label[data-v-a6396ae8]: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-a6396ae8]{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-a6396ae8]:before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;background:rgba(0,215,80,.5);opacity:var(--gradient,0);transition:opacity .4s}.power-switch input+label .switch .dot[data-v-a6396ae8]{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-a6396ae8]: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-a6396ae8]{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-a6396ae8]{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-a6396ae8]{pointer-events:none}.power-switch input:not(:checked)+label+span[data-v-a6396ae8]{opacity:1;transform:translateY(.6em)}.power-switch input:checked+label[data-v-a6396ae8]{--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/5059.e5cd6fe3.css b/platypush/backend/http/webapp/dist/static/css/5059.e5cd6fe3.css new file mode 100644 index 00000000..342fff6d --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5059.e5cd6fe3.css @@ -0,0 +1 @@ +.col-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-fc65dae6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-fc65dae6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-fc65dae6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-fc65dae6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-fc65dae6]:first-child{margin-left:26%!important}.col-offset-3[data-v-fc65dae6]:not(first-child){margin-left:30%!important}.col-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-fc65dae6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-fc65dae6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-fc65dae6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-fc65dae6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-fc65dae6]:first-child{margin-left:52%!important}.col-offset-6[data-v-fc65dae6]:not(first-child){margin-left:56%!important}.col-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-fc65dae6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-fc65dae6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-fc65dae6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-fc65dae6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-fc65dae6]:first-child{margin-left:78%!important}.col-offset-9[data-v-fc65dae6]:not(first-child){margin-left:82%!important}.col-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-fc65dae6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-fc65dae6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-fc65dae6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-fc65dae6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-1[data-v-fc65dae6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-2[data-v-fc65dae6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-3[data-v-fc65dae6]{margin-left:26%}.col-no-margin-s-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-4[data-v-fc65dae6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-5[data-v-fc65dae6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-6[data-v-fc65dae6]{margin-left:52%}.col-no-margin-s-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-7[data-v-fc65dae6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-8[data-v-fc65dae6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-9[data-v-fc65dae6]{margin-left:78%}.col-no-margin-s-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-10[data-v-fc65dae6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-s-11[data-v-fc65dae6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-fc65dae6]{display:none!important}.s-visible[data-v-fc65dae6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-1[data-v-fc65dae6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-2[data-v-fc65dae6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-3[data-v-fc65dae6]{margin-left:26%}.col-no-margin-m-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-4[data-v-fc65dae6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-5[data-v-fc65dae6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-6[data-v-fc65dae6]{margin-left:52%}.col-no-margin-m-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-7[data-v-fc65dae6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-8[data-v-fc65dae6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-9[data-v-fc65dae6]{margin-left:78%}.col-no-margin-m-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-10[data-v-fc65dae6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-m-11[data-v-fc65dae6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-fc65dae6]{display:none!important}.m-visible[data-v-fc65dae6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-1[data-v-fc65dae6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-2[data-v-fc65dae6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-3[data-v-fc65dae6]{margin-left:26%}.col-no-margin-l-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-4[data-v-fc65dae6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-5[data-v-fc65dae6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-6[data-v-fc65dae6]{margin-left:52%}.col-no-margin-l-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-7[data-v-fc65dae6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-8[data-v-fc65dae6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-9[data-v-fc65dae6]{margin-left:78%}.col-no-margin-l-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-10[data-v-fc65dae6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-l-11[data-v-fc65dae6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-fc65dae6]{display:none!important}.l-visible[data-v-fc65dae6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-1[data-v-fc65dae6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-2[data-v-fc65dae6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-3[data-v-fc65dae6]{margin-left:26%}.col-no-margin-xl-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-4[data-v-fc65dae6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-5[data-v-fc65dae6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-6[data-v-fc65dae6]{margin-left:52%}.col-no-margin-xl-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-7[data-v-fc65dae6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-8[data-v-fc65dae6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-9[data-v-fc65dae6]{margin-left:78%}.col-no-margin-xl-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-10[data-v-fc65dae6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xl-11[data-v-fc65dae6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-fc65dae6]{display:none!important}.xl-visible[data-v-fc65dae6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-fc65dae6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-fc65dae6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-fc65dae6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-fc65dae6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-fc65dae6]{margin-left:26%}.col-no-margin-xxl-3[data-v-fc65dae6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-fc65dae6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-fc65dae6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-fc65dae6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-fc65dae6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-fc65dae6]{margin-left:52%}.col-no-margin-xxl-6[data-v-fc65dae6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-fc65dae6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-fc65dae6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-fc65dae6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-fc65dae6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-fc65dae6]{margin-left:78%}.col-no-margin-xxl-9[data-v-fc65dae6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-fc65dae6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-fc65dae6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-fc65dae6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-fc65dae6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-fc65dae6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-fc65dae6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-fc65dae6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-fc65dae6]{display:none!important}.xxl-visible[data-v-fc65dae6]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-fc65dae6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-fc65dae6]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-fc65dae6]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-fc65dae6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-fc65dae6]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-fc65dae6]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-fc65dae6]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-fc65dae6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-fc65dae6]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-fc65dae6]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-fc65dae6]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-fc65dae6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-fc65dae6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-fc65dae6]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-fc65dae6]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-fc65dae6]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-fc65dae6]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-fc65dae6]{display:none!important}}.vertical-center[data-v-fc65dae6]{display:flex;align-items:center}.horizontal-center[data-v-fc65dae6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-fc65dae6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-fc65dae6]{display:none!important}.no-content[data-v-fc65dae6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-fc65dae6]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-fc65dae6]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-fc65dae6]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-fc65dae6]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-fc65dae6]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-fc65dae6]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-fc65dae6],.btn[data-v-fc65dae6],button[data-v-fc65dae6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-fc65dae6],.btn-default[type=submit][data-v-fc65dae6],.btn.btn-primary[data-v-fc65dae6],.btn[type=submit][data-v-fc65dae6],button.btn-primary[data-v-fc65dae6],button[type=submit][data-v-fc65dae6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-fc65dae6],.btn-default .icon[data-v-fc65dae6],button .icon[data-v-fc65dae6]{margin-right:.5em}input[type=password][data-v-fc65dae6],input[type=text][data-v-fc65dae6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-fc65dae6]:focus,input[type=text][data-v-fc65dae6]:focus{border:1px solid #35b870}button[data-v-fc65dae6],input[data-v-fc65dae6]{outline:none}input[type=text][data-v-fc65dae6]:hover,textarea[data-v-fc65dae6]:hover{border:1px solid #9cdfb0}ul[data-v-fc65dae6]{margin:0;padding:0;list-style:none}a[data-v-fc65dae6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-fc65dae6]:hover{color:#35b870}[data-v-fc65dae6]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-fc65dae6]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-fc65dae6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-fc65dae6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-fc65dae6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-fc65dae6] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-fc65dae6] .nav .path{cursor:pointer}.browser[data-v-fc65dae6] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-fc65dae6] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-fc65dae6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-fc65dae6],input[type=number][data-v-fc65dae6],input[type=password][data-v-fc65dae6],input[type=search][data-v-fc65dae6],input[type=text][data-v-fc65dae6],input[type=time][data-v-fc65dae6]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-fc65dae6]:hover,input[type=number][data-v-fc65dae6]:hover,input[type=password][data-v-fc65dae6]:hover,input[type=search][data-v-fc65dae6]:hover,input[type=text][data-v-fc65dae6]:hover,input[type=time][data-v-fc65dae6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-fc65dae6]:focus,input[type=number][data-v-fc65dae6]:focus,input[type=password][data-v-fc65dae6]:focus,input[type=search][data-v-fc65dae6]:focus,input[type=text][data-v-fc65dae6]:focus,input[type=time][data-v-fc65dae6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-fc65dae6],input[type=number].with-icon[data-v-fc65dae6],input[type=password].with-icon[data-v-fc65dae6],input[type=search].with-icon[data-v-fc65dae6],input[type=text].with-icon[data-v-fc65dae6],input[type=time].with-icon[data-v-fc65dae6]{padding-left:.3em}input[type=search][data-v-fc65dae6],input[type=text][data-v-fc65dae6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-fc65dae6]{animation-fill-mode:both;animation-name:fadeIn-fc65dae6;-webkit-animation-name:fadeIn-fc65dae6}.fade-in[data-v-fc65dae6],.fade-out[data-v-fc65dae6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-fc65dae6]{animation-fill-mode:both;animation-name:fadeOut-fc65dae6;-webkit-animation-name:fadeOut-fc65dae6}@keyframes fadeIn-fc65dae6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-fc65dae6{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-fc65dae6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-fc65dae6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-fc65dae6]: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-fc65dae6]{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5143.084a713f.css b/platypush/backend/http/webapp/dist/static/css/5143.084a713f.css new file mode 100644 index 00000000..d1bd0ddb --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5143.084a713f.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 .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}}.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}}.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}}.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-1f4db674]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1f4db674]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1f4db674]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1f4db674]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1f4db674]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1f4db674]:first-child{margin-left:26%!important}.col-offset-3[data-v-1f4db674]:not(first-child){margin-left:30%!important}.col-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1f4db674]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1f4db674]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1f4db674]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1f4db674]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1f4db674]:first-child{margin-left:52%!important}.col-offset-6[data-v-1f4db674]:not(first-child){margin-left:56%!important}.col-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1f4db674]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1f4db674]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1f4db674]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1f4db674]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1f4db674]:first-child{margin-left:78%!important}.col-offset-9[data-v-1f4db674]:not(first-child){margin-left:82%!important}.col-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1f4db674]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1f4db674]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1f4db674]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1f4db674]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-1[data-v-1f4db674]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-2[data-v-1f4db674]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-3[data-v-1f4db674]{margin-left:26%}.col-no-margin-s-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-4[data-v-1f4db674]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-5[data-v-1f4db674]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-6[data-v-1f4db674]{margin-left:52%}.col-no-margin-s-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-7[data-v-1f4db674]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-8[data-v-1f4db674]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-9[data-v-1f4db674]{margin-left:78%}.col-no-margin-s-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-10[data-v-1f4db674]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1f4db674]:first-child{margin-left:0}.col-offset-s-11[data-v-1f4db674]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1f4db674]{display:none!important}.s-visible[data-v-1f4db674]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-1[data-v-1f4db674]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-2[data-v-1f4db674]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-3[data-v-1f4db674]{margin-left:26%}.col-no-margin-m-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-4[data-v-1f4db674]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-5[data-v-1f4db674]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-6[data-v-1f4db674]{margin-left:52%}.col-no-margin-m-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-7[data-v-1f4db674]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-8[data-v-1f4db674]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-9[data-v-1f4db674]{margin-left:78%}.col-no-margin-m-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-10[data-v-1f4db674]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1f4db674]:first-child{margin-left:0}.col-offset-m-11[data-v-1f4db674]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1f4db674]{display:none!important}.m-visible[data-v-1f4db674]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-1[data-v-1f4db674]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-2[data-v-1f4db674]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-3[data-v-1f4db674]{margin-left:26%}.col-no-margin-l-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-4[data-v-1f4db674]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-5[data-v-1f4db674]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-6[data-v-1f4db674]{margin-left:52%}.col-no-margin-l-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-7[data-v-1f4db674]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-8[data-v-1f4db674]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-9[data-v-1f4db674]{margin-left:78%}.col-no-margin-l-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-10[data-v-1f4db674]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1f4db674]:first-child{margin-left:0}.col-offset-l-11[data-v-1f4db674]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1f4db674]{display:none!important}.l-visible[data-v-1f4db674]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-1[data-v-1f4db674]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-2[data-v-1f4db674]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-3[data-v-1f4db674]{margin-left:26%}.col-no-margin-xl-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-4[data-v-1f4db674]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-5[data-v-1f4db674]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-6[data-v-1f4db674]{margin-left:52%}.col-no-margin-xl-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-7[data-v-1f4db674]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-8[data-v-1f4db674]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-9[data-v-1f4db674]{margin-left:78%}.col-no-margin-xl-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-10[data-v-1f4db674]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xl-11[data-v-1f4db674]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1f4db674]{display:none!important}.xl-visible[data-v-1f4db674]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1f4db674]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1f4db674]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1f4db674]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1f4db674]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1f4db674]{margin-left:26%}.col-no-margin-xxl-3[data-v-1f4db674]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1f4db674]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1f4db674]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1f4db674]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1f4db674]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1f4db674]{margin-left:52%}.col-no-margin-xxl-6[data-v-1f4db674]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1f4db674]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1f4db674]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1f4db674]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1f4db674]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1f4db674]{margin-left:78%}.col-no-margin-xxl-9[data-v-1f4db674]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1f4db674]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1f4db674]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1f4db674]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1f4db674]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1f4db674]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1f4db674]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1f4db674]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1f4db674]{display:none!important}.xxl-visible[data-v-1f4db674]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1f4db674]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1f4db674]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1f4db674]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1f4db674]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1f4db674]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1f4db674]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1f4db674]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1f4db674]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1f4db674]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1f4db674]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1f4db674]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1f4db674]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1f4db674]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1f4db674]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1f4db674]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1f4db674]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1f4db674]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1f4db674]{display:none!important}}.vertical-center[data-v-1f4db674]{display:flex;align-items:center}.horizontal-center[data-v-1f4db674]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1f4db674]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1f4db674]{display:none!important}.no-content[data-v-1f4db674]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1f4db674]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1f4db674]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1f4db674]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1f4db674]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1f4db674]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1f4db674]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1f4db674],.btn[data-v-1f4db674],button[data-v-1f4db674]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1f4db674],.btn-default[type=submit][data-v-1f4db674],.btn.btn-primary[data-v-1f4db674],.btn[type=submit][data-v-1f4db674],button.btn-primary[data-v-1f4db674],button[type=submit][data-v-1f4db674]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1f4db674],.btn-default .icon[data-v-1f4db674],button .icon[data-v-1f4db674]{margin-right:.5em}input[type=password][data-v-1f4db674],input[type=text][data-v-1f4db674]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1f4db674]:focus,input[type=text][data-v-1f4db674]:focus{border:1px solid #35b870}button[data-v-1f4db674],input[data-v-1f4db674]{outline:none}input[type=text][data-v-1f4db674]:hover,textarea[data-v-1f4db674]:hover{border:1px solid #9cdfb0}ul[data-v-1f4db674]{margin:0;padding:0;list-style:none}a[data-v-1f4db674]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1f4db674]:hover{color:#35b870}[data-v-1f4db674]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1f4db674]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1f4db674]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1f4db674]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1f4db674]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1f4db674] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1f4db674] .nav .path{cursor:pointer}.browser[data-v-1f4db674] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1f4db674] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1f4db674]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1f4db674],input[type=number][data-v-1f4db674],input[type=password][data-v-1f4db674],input[type=search][data-v-1f4db674],input[type=text][data-v-1f4db674],input[type=time][data-v-1f4db674]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1f4db674]:hover,input[type=number][data-v-1f4db674]:hover,input[type=password][data-v-1f4db674]:hover,input[type=search][data-v-1f4db674]:hover,input[type=text][data-v-1f4db674]:hover,input[type=time][data-v-1f4db674]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1f4db674]:focus,input[type=number][data-v-1f4db674]:focus,input[type=password][data-v-1f4db674]:focus,input[type=search][data-v-1f4db674]:focus,input[type=text][data-v-1f4db674]:focus,input[type=time][data-v-1f4db674]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1f4db674],input[type=number].with-icon[data-v-1f4db674],input[type=password].with-icon[data-v-1f4db674],input[type=search].with-icon[data-v-1f4db674],input[type=text].with-icon[data-v-1f4db674],input[type=time].with-icon[data-v-1f4db674]{padding-left:.3em}input[type=search][data-v-1f4db674],input[type=text][data-v-1f4db674]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1f4db674]{animation-fill-mode:both;animation-name:fadeIn-1f4db674;-webkit-animation-name:fadeIn-1f4db674}.fade-in[data-v-1f4db674],.fade-out[data-v-1f4db674]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1f4db674]{animation-fill-mode:both;animation-name:fadeOut-1f4db674;-webkit-animation-name:fadeOut-1f4db674}@keyframes fadeIn-1f4db674{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1f4db674{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-1f4db674]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1f4db674]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1f4db674]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-1f4db674]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-1f4db674]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-1f4db674]{background:#8fefb7}.track.selected[data-v-1f4db674]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover[data-v-1f4db674]{border-top:2px solid #35b870}.track[data-v-1f4db674]::-moz-selection{background:transparent!important}.track[data-v-1f4db674]::selection{background:transparent!important}.track .title[data-v-1f4db674]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-1f4db674],.track .artist[data-v-1f4db674]{display:inline-flex;font-size:.9em}.track .artist[data-v-1f4db674]{opacity:.85}.track .album[data-v-1f4db674]{opacity:.7}.track .artist[data-v-1f4db674]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-1f4db674]{display:none}}.track .album[data-v-1f4db674]:before{content:"•";margin-right:.25em}.track .right-side[data-v-1f4db674]{display:flex;justify-content:flex-end}.track .actions[data-v-1f4db674],.track .duration[data-v-1f4db674]{display:inline-flex;align-items:center}.track .duration[data-v-1f4db674]{font-size:.85em;opacity:.7}.track .actions[data-v-1f4db674] button{opacity:.7}.playlist[data-v-1f4db674]{width:100%;height:100%;display:flex;flex-direction:column}.playlist .header-container button[data-v-1f4db674]{border:0;background:none}.playlist .header-container .filter[data-v-1f4db674]{display:flex;flex-direction:row;align-items:center}.playlist .header-container .filter label[data-v-1f4db674]{flex-grow:1}.playlist .header-container .filter label input[type=search][data-v-1f4db674]{width:100%}.playlist .header-container .buttons[data-v-1f4db674]{direction:rtl}.playlist .header-container .buttons .dropdown-container[data-v-1f4db674]{direction:ltr}.playlist[data-v-1f4db674] .header .back-btn{padding-left:.25em}.playlist .body[data-v-1f4db674]{height:calc(100% - 8.8em);overflow:auto}.playlist .no-content[data-v-1f4db674]{height:100%}.playing-icon[data-v-1f4db674]{display:inline-block;position:relative;margin-left:.75em;width:1.5em;height:1em}@keyframes playing_bar-1f4db674{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-1f4db674]{animation:.2s;display:block;position:absolute;bottom:0;width:.25em;height:100%;background:#38cf80;animation-name:playing_bar-1f4db674;animation-iteration-count:infinite}.playing-icon span[data-v-1f4db674]:first-child{left:0;animation-duration:2s}.playing-icon span[data-v-1f4db674]:nth-child(2){left:6px;animation-duration:4s}.playing-icon span[data-v-1f4db674]:nth-child(3){left:12px;animation-duration:1s}.playing-icon.paused span[data-v-1f4db674]{animation-play-state:paused}[data-v-1f4db674] .track-info-content .attr{opacity:.75}[data-v-1f4db674] .track-info-content .value{text-align:right}.col-1[data-v-00f69182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-1[data-v-00f69182]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-00f69182]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-00f69182]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-00f69182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-2[data-v-00f69182]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-00f69182]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-00f69182]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-00f69182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-3[data-v-00f69182]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-00f69182]:first-child{margin-left:26%!important}.col-offset-3[data-v-00f69182]:not(first-child){margin-left:30%!important}.col-4[data-v-00f69182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-4[data-v-00f69182]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-00f69182]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-00f69182]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-00f69182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-5[data-v-00f69182]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-00f69182]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-00f69182]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-00f69182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-6[data-v-00f69182]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-00f69182]:first-child{margin-left:52%!important}.col-offset-6[data-v-00f69182]:not(first-child){margin-left:56%!important}.col-7[data-v-00f69182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-7[data-v-00f69182]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-00f69182]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-00f69182]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-00f69182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-8[data-v-00f69182]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-00f69182]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-00f69182]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-00f69182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-9[data-v-00f69182]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-00f69182]:first-child{margin-left:78%!important}.col-offset-9[data-v-00f69182]:not(first-child){margin-left:82%!important}.col-10[data-v-00f69182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-10[data-v-00f69182]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-00f69182]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-00f69182]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-00f69182]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-00f69182]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-00f69182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-1[data-v-00f69182]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-00f69182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-00f69182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-2[data-v-00f69182]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-00f69182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-00f69182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-3[data-v-00f69182]{margin-left:26%}.col-no-margin-s-3[data-v-00f69182]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-00f69182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-4[data-v-00f69182]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-00f69182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-00f69182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-5[data-v-00f69182]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-00f69182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-00f69182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-6[data-v-00f69182]{margin-left:52%}.col-no-margin-s-6[data-v-00f69182]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-00f69182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-7[data-v-00f69182]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-00f69182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-00f69182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-8[data-v-00f69182]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-00f69182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-00f69182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-9[data-v-00f69182]{margin-left:78%}.col-no-margin-s-9[data-v-00f69182]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-00f69182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-10[data-v-00f69182]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-00f69182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-00f69182]:first-child{margin-left:0}.col-offset-s-11[data-v-00f69182]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-s-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-00f69182]{display:none!important}.s-visible[data-v-00f69182]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-00f69182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-1[data-v-00f69182]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-00f69182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-00f69182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-2[data-v-00f69182]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-00f69182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-00f69182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-3[data-v-00f69182]{margin-left:26%}.col-no-margin-m-3[data-v-00f69182]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-00f69182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-4[data-v-00f69182]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-00f69182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-00f69182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-5[data-v-00f69182]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-00f69182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-00f69182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-6[data-v-00f69182]{margin-left:52%}.col-no-margin-m-6[data-v-00f69182]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-00f69182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-7[data-v-00f69182]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-00f69182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-00f69182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-8[data-v-00f69182]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-00f69182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-00f69182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-9[data-v-00f69182]{margin-left:78%}.col-no-margin-m-9[data-v-00f69182]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-00f69182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-10[data-v-00f69182]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-00f69182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-00f69182]:first-child{margin-left:0}.col-offset-m-11[data-v-00f69182]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-m-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-00f69182]{display:none!important}.m-visible[data-v-00f69182]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-00f69182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-1[data-v-00f69182]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-00f69182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-00f69182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-2[data-v-00f69182]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-00f69182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-00f69182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-3[data-v-00f69182]{margin-left:26%}.col-no-margin-l-3[data-v-00f69182]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-00f69182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-4[data-v-00f69182]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-00f69182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-00f69182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-5[data-v-00f69182]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-00f69182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-00f69182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-6[data-v-00f69182]{margin-left:52%}.col-no-margin-l-6[data-v-00f69182]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-00f69182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-7[data-v-00f69182]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-00f69182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-00f69182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-8[data-v-00f69182]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-00f69182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-00f69182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-9[data-v-00f69182]{margin-left:78%}.col-no-margin-l-9[data-v-00f69182]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-00f69182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-10[data-v-00f69182]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-00f69182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-00f69182]:first-child{margin-left:0}.col-offset-l-11[data-v-00f69182]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-l-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-00f69182]{display:none!important}.l-visible[data-v-00f69182]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-00f69182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-1[data-v-00f69182]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-00f69182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-00f69182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-2[data-v-00f69182]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-00f69182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-00f69182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-3[data-v-00f69182]{margin-left:26%}.col-no-margin-xl-3[data-v-00f69182]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-00f69182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-4[data-v-00f69182]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-00f69182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-00f69182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-5[data-v-00f69182]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-00f69182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-00f69182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-6[data-v-00f69182]{margin-left:52%}.col-no-margin-xl-6[data-v-00f69182]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-00f69182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-7[data-v-00f69182]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-00f69182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-00f69182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-8[data-v-00f69182]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-00f69182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-00f69182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-9[data-v-00f69182]{margin-left:78%}.col-no-margin-xl-9[data-v-00f69182]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-00f69182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-10[data-v-00f69182]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-00f69182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-00f69182]:first-child{margin-left:0}.col-offset-xl-11[data-v-00f69182]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-00f69182]{display:none!important}.xl-visible[data-v-00f69182]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-00f69182]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-1[data-v-00f69182]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-00f69182]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-00f69182]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-2[data-v-00f69182]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-00f69182]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-00f69182]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-3[data-v-00f69182]{margin-left:26%}.col-no-margin-xxl-3[data-v-00f69182]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-00f69182]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-4[data-v-00f69182]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-00f69182]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-00f69182]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-5[data-v-00f69182]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-00f69182]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-00f69182]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-6[data-v-00f69182]{margin-left:52%}.col-no-margin-xxl-6[data-v-00f69182]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-00f69182]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-7[data-v-00f69182]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-00f69182]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-00f69182]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-8[data-v-00f69182]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-00f69182]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-00f69182]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-9[data-v-00f69182]{margin-left:78%}.col-no-margin-xxl-9[data-v-00f69182]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-00f69182]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-10[data-v-00f69182]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-00f69182]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-00f69182]:first-child{margin-left:0}.col-offset-xxl-11[data-v-00f69182]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-00f69182]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-00f69182]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-00f69182]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-00f69182]{display:none!important}.xxl-visible[data-v-00f69182]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-00f69182]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-00f69182]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-00f69182]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-00f69182]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-00f69182]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-00f69182]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-00f69182]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-00f69182]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-00f69182]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-00f69182]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-00f69182]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-00f69182]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-00f69182]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-00f69182]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-00f69182]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-00f69182]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-00f69182]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-00f69182]{display:none!important}}.vertical-center[data-v-00f69182]{display:flex;align-items:center}.horizontal-center[data-v-00f69182]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-00f69182]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-00f69182]{display:none!important}.no-content[data-v-00f69182]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-00f69182]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-00f69182]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-00f69182]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-00f69182]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-00f69182]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-00f69182]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-00f69182],.btn[data-v-00f69182],button[data-v-00f69182]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-00f69182],.btn-default[type=submit][data-v-00f69182],.btn.btn-primary[data-v-00f69182],.btn[type=submit][data-v-00f69182],button.btn-primary[data-v-00f69182],button[type=submit][data-v-00f69182]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-00f69182],.btn-default .icon[data-v-00f69182],button .icon[data-v-00f69182]{margin-right:.5em}input[type=password][data-v-00f69182],input[type=text][data-v-00f69182]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-00f69182]:focus,input[type=text][data-v-00f69182]:focus{border:1px solid #35b870}button[data-v-00f69182],input[data-v-00f69182]{outline:none}input[type=text][data-v-00f69182]:hover,textarea[data-v-00f69182]:hover{border:1px solid #9cdfb0}ul[data-v-00f69182]{margin:0;padding:0;list-style:none}a[data-v-00f69182]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-00f69182]:hover{color:#35b870}[data-v-00f69182]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-00f69182]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-00f69182]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-00f69182]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-00f69182]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-00f69182] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-00f69182] .nav .path{cursor:pointer}.browser[data-v-00f69182] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-00f69182] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-00f69182]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-00f69182],input[type=number][data-v-00f69182],input[type=password][data-v-00f69182],input[type=search][data-v-00f69182],input[type=text][data-v-00f69182],input[type=time][data-v-00f69182]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-00f69182]:hover,input[type=number][data-v-00f69182]:hover,input[type=password][data-v-00f69182]:hover,input[type=search][data-v-00f69182]:hover,input[type=text][data-v-00f69182]:hover,input[type=time][data-v-00f69182]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-00f69182]:focus,input[type=number][data-v-00f69182]:focus,input[type=password][data-v-00f69182]:focus,input[type=search][data-v-00f69182]:focus,input[type=text][data-v-00f69182]:focus,input[type=time][data-v-00f69182]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-00f69182],input[type=number].with-icon[data-v-00f69182],input[type=password].with-icon[data-v-00f69182],input[type=search].with-icon[data-v-00f69182],input[type=text].with-icon[data-v-00f69182],input[type=time].with-icon[data-v-00f69182]{padding-left:.3em}input[type=search][data-v-00f69182],input[type=text][data-v-00f69182]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-00f69182]{animation-fill-mode:both;animation-name:fadeIn-00f69182;-webkit-animation-name:fadeIn-00f69182}.fade-in[data-v-00f69182],.fade-out[data-v-00f69182]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-00f69182]{animation-fill-mode:both;animation-name:fadeOut-00f69182;-webkit-animation-name:fadeOut-00f69182}@keyframes fadeIn-00f69182{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-00f69182{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-00f69182]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-00f69182]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-00f69182]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-00f69182]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-00f69182]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-00f69182]{background:#8fefb7}.track.selected[data-v-00f69182]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover[data-v-00f69182]{border-top:2px solid #35b870}.track[data-v-00f69182]::-moz-selection{background:transparent!important}.track[data-v-00f69182]::selection{background:transparent!important}.track .title[data-v-00f69182]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-00f69182],.track .artist[data-v-00f69182]{display:inline-flex;font-size:.9em}.track .artist[data-v-00f69182]{opacity:.85}.track .album[data-v-00f69182]{opacity:.7}.track .artist[data-v-00f69182]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-00f69182]{display:none}}.track .album[data-v-00f69182]:before{content:"•";margin-right:.25em}.track .right-side[data-v-00f69182]{display:flex;justify-content:flex-end}.track .actions[data-v-00f69182],.track .duration[data-v-00f69182]{display:inline-flex;align-items:center}.track .duration[data-v-00f69182]{font-size:.85em;opacity:.7}.track .actions[data-v-00f69182] button{opacity:.7}.playlists[data-v-00f69182]{width:100%;display:flex;flex-direction:column}.playlists .header-container .filter input[data-v-00f69182]{width:100%}.playlists .body[data-v-00f69182]{height:calc(100% - 8.8em);overflow:auto}.playlists .no-content[data-v-00f69182]{height:100%}.playlists .playlist[data-v-00f69182]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.playlists .playlist[data-v-00f69182]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.playlists .playlist.active[data-v-00f69182]{background:#8fefb7}.playlists .playlist.selected[data-v-00f69182]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.playlists .playlist .right-side[data-v-00f69182]{display:flex;justify-content:flex-end}.playlists .header .buttons[data-v-00f69182]{display:flex;align-items:flex-end;justify-content:flex-end}.editor-container[data-v-00f69182]{width:100%;height:100%;display:flex;flex-direction:column}.editor-container .header-container[data-v-00f69182]{width:100%}.editor-container[data-v-00f69182] .header .back-btn{padding-left:.25em}.editor-container[data-v-00f69182] .header .search-box input{width:65%}.editor-container .editor[data-v-00f69182]{width:100%;height:calc(100% - 8.8em);display:flex;flex-direction:column;overflow:auto}.col-1[data-v-6596df38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-1[data-v-6596df38]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6596df38]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6596df38]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6596df38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-2[data-v-6596df38]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6596df38]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6596df38]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6596df38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-3[data-v-6596df38]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6596df38]:first-child{margin-left:26%!important}.col-offset-3[data-v-6596df38]:not(first-child){margin-left:30%!important}.col-4[data-v-6596df38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-4[data-v-6596df38]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6596df38]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6596df38]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6596df38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-5[data-v-6596df38]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6596df38]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6596df38]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6596df38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-6[data-v-6596df38]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6596df38]:first-child{margin-left:52%!important}.col-offset-6[data-v-6596df38]:not(first-child){margin-left:56%!important}.col-7[data-v-6596df38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-7[data-v-6596df38]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6596df38]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6596df38]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6596df38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-8[data-v-6596df38]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6596df38]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6596df38]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6596df38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-9[data-v-6596df38]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6596df38]:first-child{margin-left:78%!important}.col-offset-9[data-v-6596df38]:not(first-child){margin-left:82%!important}.col-10[data-v-6596df38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-10[data-v-6596df38]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6596df38]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6596df38]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6596df38]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6596df38]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6596df38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-1[data-v-6596df38]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6596df38]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6596df38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-2[data-v-6596df38]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6596df38]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6596df38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-3[data-v-6596df38]{margin-left:26%}.col-no-margin-s-3[data-v-6596df38]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6596df38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-4[data-v-6596df38]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6596df38]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6596df38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-5[data-v-6596df38]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6596df38]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6596df38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-6[data-v-6596df38]{margin-left:52%}.col-no-margin-s-6[data-v-6596df38]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6596df38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-7[data-v-6596df38]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6596df38]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6596df38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-8[data-v-6596df38]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6596df38]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6596df38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-9[data-v-6596df38]{margin-left:78%}.col-no-margin-s-9[data-v-6596df38]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6596df38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-10[data-v-6596df38]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6596df38]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6596df38]:first-child{margin-left:0}.col-offset-s-11[data-v-6596df38]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6596df38]{display:none!important}.s-visible[data-v-6596df38]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6596df38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-1[data-v-6596df38]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6596df38]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6596df38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-2[data-v-6596df38]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6596df38]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6596df38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-3[data-v-6596df38]{margin-left:26%}.col-no-margin-m-3[data-v-6596df38]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6596df38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-4[data-v-6596df38]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6596df38]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6596df38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-5[data-v-6596df38]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6596df38]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6596df38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-6[data-v-6596df38]{margin-left:52%}.col-no-margin-m-6[data-v-6596df38]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6596df38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-7[data-v-6596df38]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6596df38]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6596df38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-8[data-v-6596df38]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6596df38]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6596df38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-9[data-v-6596df38]{margin-left:78%}.col-no-margin-m-9[data-v-6596df38]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6596df38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-10[data-v-6596df38]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6596df38]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6596df38]:first-child{margin-left:0}.col-offset-m-11[data-v-6596df38]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6596df38]{display:none!important}.m-visible[data-v-6596df38]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6596df38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-1[data-v-6596df38]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6596df38]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6596df38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-2[data-v-6596df38]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6596df38]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6596df38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-3[data-v-6596df38]{margin-left:26%}.col-no-margin-l-3[data-v-6596df38]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6596df38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-4[data-v-6596df38]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6596df38]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6596df38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-5[data-v-6596df38]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6596df38]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6596df38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-6[data-v-6596df38]{margin-left:52%}.col-no-margin-l-6[data-v-6596df38]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6596df38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-7[data-v-6596df38]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6596df38]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6596df38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-8[data-v-6596df38]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6596df38]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6596df38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-9[data-v-6596df38]{margin-left:78%}.col-no-margin-l-9[data-v-6596df38]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6596df38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-10[data-v-6596df38]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6596df38]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6596df38]:first-child{margin-left:0}.col-offset-l-11[data-v-6596df38]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6596df38]{display:none!important}.l-visible[data-v-6596df38]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6596df38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-1[data-v-6596df38]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6596df38]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6596df38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-2[data-v-6596df38]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6596df38]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6596df38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-3[data-v-6596df38]{margin-left:26%}.col-no-margin-xl-3[data-v-6596df38]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6596df38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-4[data-v-6596df38]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6596df38]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6596df38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-5[data-v-6596df38]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6596df38]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6596df38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-6[data-v-6596df38]{margin-left:52%}.col-no-margin-xl-6[data-v-6596df38]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6596df38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-7[data-v-6596df38]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6596df38]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6596df38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-8[data-v-6596df38]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6596df38]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6596df38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-9[data-v-6596df38]{margin-left:78%}.col-no-margin-xl-9[data-v-6596df38]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6596df38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-10[data-v-6596df38]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6596df38]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6596df38]:first-child{margin-left:0}.col-offset-xl-11[data-v-6596df38]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6596df38]{display:none!important}.xl-visible[data-v-6596df38]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6596df38]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6596df38]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6596df38]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6596df38]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6596df38]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6596df38]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6596df38]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6596df38]{margin-left:26%}.col-no-margin-xxl-3[data-v-6596df38]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6596df38]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6596df38]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6596df38]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6596df38]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6596df38]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6596df38]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6596df38]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6596df38]{margin-left:52%}.col-no-margin-xxl-6[data-v-6596df38]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6596df38]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6596df38]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6596df38]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6596df38]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6596df38]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6596df38]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6596df38]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6596df38]{margin-left:78%}.col-no-margin-xxl-9[data-v-6596df38]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6596df38]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6596df38]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6596df38]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6596df38]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6596df38]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6596df38]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6596df38]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6596df38]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6596df38]{display:none!important}.xxl-visible[data-v-6596df38]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-6596df38]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-6596df38]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-6596df38]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-6596df38]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6596df38]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-6596df38]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6596df38]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-6596df38]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6596df38]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-6596df38]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6596df38]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-6596df38]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6596df38]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-6596df38]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6596df38]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-6596df38]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-6596df38]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6596df38]{display:none!important}}.vertical-center[data-v-6596df38]{display:flex;align-items:center}.horizontal-center[data-v-6596df38]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6596df38]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6596df38]{display:none!important}.no-content[data-v-6596df38]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-6596df38]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-6596df38]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-6596df38]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-6596df38]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-6596df38]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-6596df38]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-6596df38],.btn[data-v-6596df38],button[data-v-6596df38]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6596df38],.btn-default[type=submit][data-v-6596df38],.btn.btn-primary[data-v-6596df38],.btn[type=submit][data-v-6596df38],button.btn-primary[data-v-6596df38],button[type=submit][data-v-6596df38]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6596df38],.btn-default .icon[data-v-6596df38],button .icon[data-v-6596df38]{margin-right:.5em}input[type=password][data-v-6596df38],input[type=text][data-v-6596df38]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6596df38]:focus,input[type=text][data-v-6596df38]:focus{border:1px solid #35b870}button[data-v-6596df38],input[data-v-6596df38]{outline:none}input[type=text][data-v-6596df38]:hover,textarea[data-v-6596df38]:hover{border:1px solid #9cdfb0}ul[data-v-6596df38]{margin:0;padding:0;list-style:none}a[data-v-6596df38]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6596df38]:hover{color:#35b870}[data-v-6596df38]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-6596df38]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-6596df38]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6596df38]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6596df38]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-6596df38] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-6596df38] .nav .path{cursor:pointer}.browser[data-v-6596df38] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-6596df38] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-6596df38]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-6596df38],input[type=number][data-v-6596df38],input[type=password][data-v-6596df38],input[type=search][data-v-6596df38],input[type=text][data-v-6596df38],input[type=time][data-v-6596df38]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-6596df38]:hover,input[type=number][data-v-6596df38]:hover,input[type=password][data-v-6596df38]:hover,input[type=search][data-v-6596df38]:hover,input[type=text][data-v-6596df38]:hover,input[type=time][data-v-6596df38]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-6596df38]:focus,input[type=number][data-v-6596df38]:focus,input[type=password][data-v-6596df38]:focus,input[type=search][data-v-6596df38]:focus,input[type=text][data-v-6596df38]:focus,input[type=time][data-v-6596df38]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-6596df38],input[type=number].with-icon[data-v-6596df38],input[type=password].with-icon[data-v-6596df38],input[type=search].with-icon[data-v-6596df38],input[type=text].with-icon[data-v-6596df38],input[type=time].with-icon[data-v-6596df38]{padding-left:.3em}input[type=search][data-v-6596df38],input[type=text][data-v-6596df38]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6596df38]{animation-fill-mode:both;animation-name:fadeIn-6596df38;-webkit-animation-name:fadeIn-6596df38}.fade-in[data-v-6596df38],.fade-out[data-v-6596df38]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6596df38]{animation-fill-mode:both;animation-name:fadeOut-6596df38;-webkit-animation-name:fadeOut-6596df38}@keyframes fadeIn-6596df38{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6596df38{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-6596df38]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6596df38]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6596df38]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-6596df38]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-6596df38]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-6596df38]{background:#8fefb7}.track.selected[data-v-6596df38]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover[data-v-6596df38]{border-top:2px solid #35b870}.track[data-v-6596df38]::-moz-selection{background:transparent!important}.track[data-v-6596df38]::selection{background:transparent!important}.track .title[data-v-6596df38]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-6596df38],.track .artist[data-v-6596df38]{display:inline-flex;font-size:.9em}.track .artist[data-v-6596df38]{opacity:.85}.track .album[data-v-6596df38]{opacity:.7}.track .artist[data-v-6596df38]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-6596df38]{display:none}}.track .album[data-v-6596df38]:before{content:"•";margin-right:.25em}.track .right-side[data-v-6596df38]{display:flex;justify-content:flex-end}.track .actions[data-v-6596df38],.track .duration[data-v-6596df38]{display:inline-flex;align-items:center}.track .duration[data-v-6596df38]{font-size:.85em;opacity:.7}.track .actions[data-v-6596df38] button{opacity:.7}.search[data-v-6596df38]{width:100%;height:calc(100% - 5.5em);display:flex;flex-direction:column;position:relative}.search .nav-toggler.floating[data-v-6596df38]{position:absolute;top:0;right:0;z-index:1}.search .form-container[data-v-6596df38],.search[data-v-6596df38]:not(.form-collapsed){justify-content:center;align-items:center}.search .form-container[data-v-6596df38]{width:100%;height:100%;display:flex;flex-grow:1}.search form[data-v-6596df38]{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-6596df38]{margin:.25em 0}.search form input[type=text][data-v-6596df38]{width:100%}.search form[data-v-6596df38] .form-footer{height:3em;padding-right:0;border:0}.search form[data-v-6596df38] button{border:0}.search form[data-v-6596df38] button[type=submit]{background:none}.search form[data-v-6596df38] button:hover{border:0;color:#38cf80}.search .results[data-v-6596df38]{height:calc(100% - 3.3em);flex-grow:1;overflow:auto}.search[data-v-6596df38] .header{display:flex;width:100%;align-items:center}.search[data-v-6596df38] .header .search-box{width:70%;display:flex;align-items:center}.search[data-v-6596df38] .header .search-box .back-btn{margin-left:0;padding-left:0}.search[data-v-6596df38] .header .search-box input[type=search]{width:100%}.search[data-v-6596df38] .header .buttons{width:30%;display:inline-flex;justify-content:flex-end;margin:0}.col-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-31ebd80c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-31ebd80c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-31ebd80c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-31ebd80c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-31ebd80c]:first-child{margin-left:26%!important}.col-offset-3[data-v-31ebd80c]:not(first-child){margin-left:30%!important}.col-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-31ebd80c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-31ebd80c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-31ebd80c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-31ebd80c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-31ebd80c]:first-child{margin-left:52%!important}.col-offset-6[data-v-31ebd80c]:not(first-child){margin-left:56%!important}.col-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-31ebd80c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-31ebd80c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-31ebd80c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-31ebd80c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-31ebd80c]:first-child{margin-left:78%!important}.col-offset-9[data-v-31ebd80c]:not(first-child){margin-left:82%!important}.col-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-31ebd80c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-31ebd80c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-31ebd80c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-31ebd80c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-1[data-v-31ebd80c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-2[data-v-31ebd80c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-3[data-v-31ebd80c]{margin-left:26%}.col-no-margin-s-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-4[data-v-31ebd80c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-5[data-v-31ebd80c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-6[data-v-31ebd80c]{margin-left:52%}.col-no-margin-s-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-7[data-v-31ebd80c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-8[data-v-31ebd80c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-9[data-v-31ebd80c]{margin-left:78%}.col-no-margin-s-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-10[data-v-31ebd80c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-s-11[data-v-31ebd80c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-31ebd80c]{display:none!important}.s-visible[data-v-31ebd80c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-1[data-v-31ebd80c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-2[data-v-31ebd80c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-3[data-v-31ebd80c]{margin-left:26%}.col-no-margin-m-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-4[data-v-31ebd80c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-5[data-v-31ebd80c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-6[data-v-31ebd80c]{margin-left:52%}.col-no-margin-m-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-7[data-v-31ebd80c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-8[data-v-31ebd80c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-9[data-v-31ebd80c]{margin-left:78%}.col-no-margin-m-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-10[data-v-31ebd80c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-m-11[data-v-31ebd80c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-31ebd80c]{display:none!important}.m-visible[data-v-31ebd80c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-1[data-v-31ebd80c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-2[data-v-31ebd80c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-3[data-v-31ebd80c]{margin-left:26%}.col-no-margin-l-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-4[data-v-31ebd80c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-5[data-v-31ebd80c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-6[data-v-31ebd80c]{margin-left:52%}.col-no-margin-l-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-7[data-v-31ebd80c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-8[data-v-31ebd80c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-9[data-v-31ebd80c]{margin-left:78%}.col-no-margin-l-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-10[data-v-31ebd80c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-l-11[data-v-31ebd80c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-31ebd80c]{display:none!important}.l-visible[data-v-31ebd80c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-1[data-v-31ebd80c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-2[data-v-31ebd80c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-3[data-v-31ebd80c]{margin-left:26%}.col-no-margin-xl-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-4[data-v-31ebd80c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-5[data-v-31ebd80c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-6[data-v-31ebd80c]{margin-left:52%}.col-no-margin-xl-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-7[data-v-31ebd80c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-8[data-v-31ebd80c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-9[data-v-31ebd80c]{margin-left:78%}.col-no-margin-xl-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-10[data-v-31ebd80c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xl-11[data-v-31ebd80c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-31ebd80c]{display:none!important}.xl-visible[data-v-31ebd80c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-31ebd80c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-31ebd80c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-31ebd80c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-31ebd80c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-31ebd80c]{margin-left:26%}.col-no-margin-xxl-3[data-v-31ebd80c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-31ebd80c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-31ebd80c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-31ebd80c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-31ebd80c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-31ebd80c]{margin-left:52%}.col-no-margin-xxl-6[data-v-31ebd80c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-31ebd80c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-31ebd80c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-31ebd80c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-31ebd80c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-31ebd80c]{margin-left:78%}.col-no-margin-xxl-9[data-v-31ebd80c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-31ebd80c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-31ebd80c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-31ebd80c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-31ebd80c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-31ebd80c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-31ebd80c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-31ebd80c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-31ebd80c]{display:none!important}.xxl-visible[data-v-31ebd80c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-31ebd80c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-31ebd80c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-31ebd80c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-31ebd80c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-31ebd80c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-31ebd80c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-31ebd80c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-31ebd80c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-31ebd80c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-31ebd80c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-31ebd80c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-31ebd80c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-31ebd80c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-31ebd80c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-31ebd80c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-31ebd80c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-31ebd80c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-31ebd80c]{display:none!important}}.vertical-center[data-v-31ebd80c]{display:flex;align-items:center}.horizontal-center[data-v-31ebd80c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-31ebd80c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-31ebd80c]{display:none!important}.no-content[data-v-31ebd80c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-31ebd80c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-31ebd80c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-31ebd80c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-31ebd80c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-31ebd80c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-31ebd80c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-31ebd80c],.btn[data-v-31ebd80c],button[data-v-31ebd80c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-31ebd80c],.btn-default[type=submit][data-v-31ebd80c],.btn.btn-primary[data-v-31ebd80c],.btn[type=submit][data-v-31ebd80c],button.btn-primary[data-v-31ebd80c],button[type=submit][data-v-31ebd80c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-31ebd80c],.btn-default .icon[data-v-31ebd80c],button .icon[data-v-31ebd80c]{margin-right:.5em}input[type=password][data-v-31ebd80c],input[type=text][data-v-31ebd80c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-31ebd80c]:focus,input[type=text][data-v-31ebd80c]:focus{border:1px solid #35b870}button[data-v-31ebd80c],input[data-v-31ebd80c]{outline:none}input[type=text][data-v-31ebd80c]:hover,textarea[data-v-31ebd80c]:hover{border:1px solid #9cdfb0}ul[data-v-31ebd80c]{margin:0;padding:0;list-style:none}a[data-v-31ebd80c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-31ebd80c]:hover{color:#35b870}[data-v-31ebd80c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-31ebd80c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-31ebd80c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-31ebd80c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-31ebd80c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-31ebd80c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-31ebd80c] .nav .path{cursor:pointer}.browser[data-v-31ebd80c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-31ebd80c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-31ebd80c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-31ebd80c],input[type=number][data-v-31ebd80c],input[type=password][data-v-31ebd80c],input[type=search][data-v-31ebd80c],input[type=text][data-v-31ebd80c],input[type=time][data-v-31ebd80c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-31ebd80c]:hover,input[type=number][data-v-31ebd80c]:hover,input[type=password][data-v-31ebd80c]:hover,input[type=search][data-v-31ebd80c]:hover,input[type=text][data-v-31ebd80c]:hover,input[type=time][data-v-31ebd80c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-31ebd80c]:focus,input[type=number][data-v-31ebd80c]:focus,input[type=password][data-v-31ebd80c]:focus,input[type=search][data-v-31ebd80c]:focus,input[type=text][data-v-31ebd80c]:focus,input[type=time][data-v-31ebd80c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-31ebd80c],input[type=number].with-icon[data-v-31ebd80c],input[type=password].with-icon[data-v-31ebd80c],input[type=search].with-icon[data-v-31ebd80c],input[type=text].with-icon[data-v-31ebd80c],input[type=time].with-icon[data-v-31ebd80c]{padding-left:.3em}input[type=search][data-v-31ebd80c],input[type=text][data-v-31ebd80c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-31ebd80c]{animation-fill-mode:both;animation-name:fadeIn-31ebd80c;-webkit-animation-name:fadeIn-31ebd80c}.fade-in[data-v-31ebd80c],.fade-out[data-v-31ebd80c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-31ebd80c]{animation-fill-mode:both;animation-name:fadeOut-31ebd80c;-webkit-animation-name:fadeOut-31ebd80c}@keyframes fadeIn-31ebd80c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-31ebd80c{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-31ebd80c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-31ebd80c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-31ebd80c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.track[data-v-31ebd80c]{display:flex;justify-content:center;padding:.75em .25em .25em .25em;box-shadow:0 2.5px 2px -1px silver;cursor:pointer}.track[data-v-31ebd80c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.track.active[data-v-31ebd80c]{background:#8fefb7}.track.selected[data-v-31ebd80c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.track.dragover[data-v-31ebd80c]{border-top:2px solid #35b870}.track[data-v-31ebd80c]::-moz-selection{background:transparent!important}.track[data-v-31ebd80c]::selection{background:transparent!important}.track .title[data-v-31ebd80c]{font-size:1em;font-weight:400;margin:0}.track .album[data-v-31ebd80c],.track .artist[data-v-31ebd80c]{display:inline-flex;font-size:.9em}.track .artist[data-v-31ebd80c]{opacity:.85}.track .album[data-v-31ebd80c]{opacity:.7}.track .artist[data-v-31ebd80c]{margin-right:.25em;font-weight:700}@media screen and (max-width:calc(769px - 1px)){.track .album[data-v-31ebd80c]{display:none}}.track .album[data-v-31ebd80c]:before{content:"•";margin-right:.25em}.track .right-side[data-v-31ebd80c]{display:flex;justify-content:flex-end}.track .actions[data-v-31ebd80c],.track .duration[data-v-31ebd80c]{display:inline-flex;align-items:center}.track .duration[data-v-31ebd80c]{font-size:.85em;opacity:.7}.track .actions[data-v-31ebd80c] button{opacity:.7}.library[data-v-31ebd80c]{width:100%;display:flex;flex-direction:column}.library .results[data-v-31ebd80c]{overflow:auto;height:100%}.library .results .track[data-v-31ebd80c]{display:flex;align-items:center;justify-content:left}.library .results .track .left-side[data-v-31ebd80c]{display:inline-flex;align-items:center}.library .results .icon[data-v-31ebd80c]{opacity:.5;margin-right:.75em}.library[data-v-31ebd80c] .header{display:flex;width:100%;align-items:center}.library[data-v-31ebd80c] .header .search-box{width:70%}.library[data-v-31ebd80c] .header .search-box input[type=search]{width:100%}.library[data-v-31ebd80c] .header .buttons{width:30%;display:inline-flex;justify-content:right;margin:0}.col-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7c07f13e]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7c07f13e]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7c07f13e]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7c07f13e]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7c07f13e]:first-child{margin-left:26%!important}.col-offset-3[data-v-7c07f13e]:not(first-child){margin-left:30%!important}.col-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7c07f13e]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7c07f13e]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7c07f13e]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7c07f13e]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7c07f13e]:first-child{margin-left:52%!important}.col-offset-6[data-v-7c07f13e]:not(first-child){margin-left:56%!important}.col-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7c07f13e]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7c07f13e]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7c07f13e]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7c07f13e]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7c07f13e]:first-child{margin-left:78%!important}.col-offset-9[data-v-7c07f13e]:not(first-child){margin-left:82%!important}.col-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7c07f13e]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7c07f13e]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7c07f13e]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7c07f13e]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-1[data-v-7c07f13e]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-2[data-v-7c07f13e]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-3[data-v-7c07f13e]{margin-left:26%}.col-no-margin-s-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-4[data-v-7c07f13e]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-5[data-v-7c07f13e]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-6[data-v-7c07f13e]{margin-left:52%}.col-no-margin-s-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-7[data-v-7c07f13e]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-8[data-v-7c07f13e]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-9[data-v-7c07f13e]{margin-left:78%}.col-no-margin-s-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-10[data-v-7c07f13e]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-s-11[data-v-7c07f13e]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7c07f13e]{display:none!important}.s-visible[data-v-7c07f13e]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-1[data-v-7c07f13e]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-2[data-v-7c07f13e]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-3[data-v-7c07f13e]{margin-left:26%}.col-no-margin-m-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-4[data-v-7c07f13e]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-5[data-v-7c07f13e]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-6[data-v-7c07f13e]{margin-left:52%}.col-no-margin-m-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-7[data-v-7c07f13e]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-8[data-v-7c07f13e]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-9[data-v-7c07f13e]{margin-left:78%}.col-no-margin-m-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-10[data-v-7c07f13e]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-m-11[data-v-7c07f13e]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7c07f13e]{display:none!important}.m-visible[data-v-7c07f13e]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-1[data-v-7c07f13e]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-2[data-v-7c07f13e]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-3[data-v-7c07f13e]{margin-left:26%}.col-no-margin-l-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-4[data-v-7c07f13e]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-5[data-v-7c07f13e]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-6[data-v-7c07f13e]{margin-left:52%}.col-no-margin-l-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-7[data-v-7c07f13e]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-8[data-v-7c07f13e]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-9[data-v-7c07f13e]{margin-left:78%}.col-no-margin-l-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-10[data-v-7c07f13e]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-l-11[data-v-7c07f13e]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7c07f13e]{display:none!important}.l-visible[data-v-7c07f13e]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-1[data-v-7c07f13e]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-2[data-v-7c07f13e]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-3[data-v-7c07f13e]{margin-left:26%}.col-no-margin-xl-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-4[data-v-7c07f13e]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-5[data-v-7c07f13e]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-6[data-v-7c07f13e]{margin-left:52%}.col-no-margin-xl-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-7[data-v-7c07f13e]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-8[data-v-7c07f13e]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-9[data-v-7c07f13e]{margin-left:78%}.col-no-margin-xl-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-10[data-v-7c07f13e]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xl-11[data-v-7c07f13e]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7c07f13e]{display:none!important}.xl-visible[data-v-7c07f13e]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7c07f13e]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7c07f13e]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7c07f13e]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7c07f13e]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7c07f13e]{margin-left:26%}.col-no-margin-xxl-3[data-v-7c07f13e]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7c07f13e]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7c07f13e]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7c07f13e]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7c07f13e]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7c07f13e]{margin-left:52%}.col-no-margin-xxl-6[data-v-7c07f13e]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7c07f13e]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7c07f13e]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7c07f13e]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7c07f13e]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7c07f13e]{margin-left:78%}.col-no-margin-xxl-9[data-v-7c07f13e]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7c07f13e]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7c07f13e]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7c07f13e]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7c07f13e]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7c07f13e]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7c07f13e]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7c07f13e]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7c07f13e]{display:none!important}.xxl-visible[data-v-7c07f13e]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7c07f13e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7c07f13e]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7c07f13e]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7c07f13e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7c07f13e]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7c07f13e]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7c07f13e]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7c07f13e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7c07f13e]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7c07f13e]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7c07f13e]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7c07f13e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7c07f13e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7c07f13e]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7c07f13e]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7c07f13e]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7c07f13e]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7c07f13e]{display:none!important}}.vertical-center[data-v-7c07f13e]{display:flex;align-items:center}.horizontal-center[data-v-7c07f13e]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7c07f13e]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7c07f13e]{display:none!important}.no-content[data-v-7c07f13e]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7c07f13e]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7c07f13e]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7c07f13e]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7c07f13e]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7c07f13e]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7c07f13e]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7c07f13e],.btn[data-v-7c07f13e],button[data-v-7c07f13e]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7c07f13e],.btn-default[type=submit][data-v-7c07f13e],.btn.btn-primary[data-v-7c07f13e],.btn[type=submit][data-v-7c07f13e],button.btn-primary[data-v-7c07f13e],button[type=submit][data-v-7c07f13e]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7c07f13e],.btn-default .icon[data-v-7c07f13e],button .icon[data-v-7c07f13e]{margin-right:.5em}input[type=password][data-v-7c07f13e],input[type=text][data-v-7c07f13e]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7c07f13e]:focus,input[type=text][data-v-7c07f13e]:focus{border:1px solid #35b870}button[data-v-7c07f13e],input[data-v-7c07f13e]{outline:none}input[type=text][data-v-7c07f13e]:hover,textarea[data-v-7c07f13e]:hover{border:1px solid #9cdfb0}ul[data-v-7c07f13e]{margin:0;padding:0;list-style:none}a[data-v-7c07f13e]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7c07f13e]:hover{color:#35b870}[data-v-7c07f13e]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7c07f13e]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7c07f13e]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7c07f13e]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7c07f13e]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7c07f13e] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7c07f13e] .nav .path{cursor:pointer}.browser[data-v-7c07f13e] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7c07f13e] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7c07f13e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7c07f13e],input[type=number][data-v-7c07f13e],input[type=password][data-v-7c07f13e],input[type=search][data-v-7c07f13e],input[type=text][data-v-7c07f13e],input[type=time][data-v-7c07f13e]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7c07f13e]:hover,input[type=number][data-v-7c07f13e]:hover,input[type=password][data-v-7c07f13e]:hover,input[type=search][data-v-7c07f13e]:hover,input[type=text][data-v-7c07f13e]:hover,input[type=time][data-v-7c07f13e]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7c07f13e]:focus,input[type=number][data-v-7c07f13e]:focus,input[type=password][data-v-7c07f13e]:focus,input[type=search][data-v-7c07f13e]:focus,input[type=text][data-v-7c07f13e]:focus,input[type=time][data-v-7c07f13e]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7c07f13e],input[type=number].with-icon[data-v-7c07f13e],input[type=password].with-icon[data-v-7c07f13e],input[type=search].with-icon[data-v-7c07f13e],input[type=text].with-icon[data-v-7c07f13e],input[type=time].with-icon[data-v-7c07f13e]{padding-left:.3em}input[type=search][data-v-7c07f13e],input[type=text][data-v-7c07f13e]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7c07f13e]{animation-fill-mode:both;animation-name:fadeIn-7c07f13e;-webkit-animation-name:fadeIn-7c07f13e}.fade-in[data-v-7c07f13e],.fade-out[data-v-7c07f13e]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7c07f13e]{animation-fill-mode:both;animation-name:fadeOut-7c07f13e;-webkit-animation-name:fadeOut-7c07f13e}@keyframes fadeIn-7c07f13e{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7c07f13e{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-7c07f13e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7c07f13e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7c07f13e]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-7c07f13e]{height:100%;background:#fff;display:flex;flex-direction:row-reverse}main .view-container[data-v-7c07f13e]{display:flex;flex-grow:1;overflow:auto}main[data-v-7c07f13e] button{background:none;padding:.5em .75em;border:0}main[data-v-7c07f13e] button:hover{border:0;color:#35b870}main[data-v-7c07f13e] a{color:#000;opacity:.65}main[data-v-7c07f13e] a:hover{opacity:.75;border-bottom:1px dotted}.playlists-modal-container[data-v-7c07f13e] .body{display:flex;flex-direction:column;padding:0!important}.playlists-modal-container[data-v-7c07f13e] .filter{padding:.33em;background-color:#e4eae8;border-bottom:1px solid #ddd}.playlists-modal-container[data-v-7c07f13e] .filter input{width:90%}.playlists-modal-container[data-v-7c07f13e] .playlists{overflow:auto;padding:1.5em}.playlists-modal-container[data-v-7c07f13e] .playlists label{display:flex;align-items:center}.playlists-modal-container[data-v-7c07f13e] .playlists label:not(:last-child){margin-bottom:.5em}.playlists-modal-container[data-v-7c07f13e] .playlists label .name{margin-left:.5em}.track-info-container[data-v-7c07f13e] .body{height:15em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.track-info-container[data-v-7c07f13e] .body{width:25em}}@media screen and (min-width:769px){.track-info-container[data-v-7c07f13e] .body{width:35em}}.track-info-container[data-v-7c07f13e] .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/5193.b8dcc633.css b/platypush/backend/http/webapp/dist/static/css/5193.b8dcc633.css new file mode 100644 index 00000000..b3e6c32e --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5193.b8dcc633.css @@ -0,0 +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}}.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/5207.d95cde39.css b/platypush/backend/http/webapp/dist/static/css/5207.e1e8949a.css similarity index 75% rename from platypush/backend/http/webapp/dist/static/css/5207.d95cde39.css rename to platypush/backend/http/webapp/dist/static/css/5207.e1e8949a.css index fbeb07c5..6649c009 100644 --- a/platypush/backend/http/webapp/dist/static/css/5207.d95cde39.css +++ b/platypush/backend/http/webapp/dist/static/css/5207.e1e8949a.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(769px - 1px)){.tablet.from{display:none}}@media screen and (min-width:1024px){.tablet.until{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none}}@media screen and (min-width:1024px){.tablet.only{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none}}@media screen and (min-width:1216px){.desktop.until{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none}}@media screen and (min-width:1216px){.desktop.only{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none}}@media screen and (min-width:1408px){.widescreen.until{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none}}@media screen and (min-width:1408px){.widescreen.only{display:none}}@media screen and (min-width:769px){.mobile{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none}}.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}.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:.75em}::-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}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number],input[type=password],input[type=search],input[type=text]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].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}}.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 .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}}.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.2250c5c9.css b/platypush/backend/http/webapp/dist/static/css/5285.2250c5c9.css new file mode 100644 index 00000000..7670c87a --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5285.2250c5c9.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 .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}}.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}}.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}}.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}}.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}}.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}}.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.32a328a7.css b/platypush/backend/http/webapp/dist/static/css/5329.2f2c6a0e.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/5329.32a328a7.css rename to platypush/backend/http/webapp/dist/static/css/5329.2f2c6a0e.css index 8a6fb1c5..b9c9ebb5 100644 --- a/platypush/backend/http/webapp/dist/static/css/5329.32a328a7.css +++ b/platypush/backend/http/webapp/dist/static/css/5329.2f2c6a0e.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(769px - 1px)){.tablet.from[data-v-d7813182]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-d7813182]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d7813182]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-d7813182]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d7813182]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-d7813182]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d7813182]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-d7813182]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d7813182]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-d7813182]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d7813182]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-d7813182]{display:none}}@media screen and (min-width:769px){.mobile[data-v-d7813182]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d7813182]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-d7813182]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-d7813182],input[type=password][data-v-d7813182],input[type=search][data-v-d7813182],input[type=text][data-v-d7813182]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/5638.089f217d.css b/platypush/backend/http/webapp/dist/static/css/5638.05ee3a45.css similarity index 73% rename from platypush/backend/http/webapp/dist/static/css/5638.089f217d.css rename to platypush/backend/http/webapp/dist/static/css/5638.05ee3a45.css index 28da1712..daadfbec 100644 --- a/platypush/backend/http/webapp/dist/static/css/5638.089f217d.css +++ b/platypush/backend/http/webapp/dist/static/css/5638.05ee3a45.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(769px - 1px)){.tablet.from[data-v-44a3b988]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-44a3b988]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-44a3b988]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-44a3b988]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-44a3b988]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-44a3b988]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-44a3b988]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-44a3b988]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-44a3b988]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-44a3b988]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-44a3b988]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-44a3b988]{display:none}}@media screen and (min-width:769px){.mobile[data-v-44a3b988]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-44a3b988]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-44a3b988]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-44a3b988],input[type=password][data-v-44a3b988],input[type=search][data-v-44a3b988],input[type=text][data-v-44a3b988]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/5747.1d5887e4.css b/platypush/backend/http/webapp/dist/static/css/5747.1d5887e4.css deleted file mode 100644 index b155b66e..00000000 --- a/platypush/backend/http/webapp/dist/static/css/5747.1d5887e4.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f3388e1c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f3388e1c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f3388e1c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f3388e1c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f3388e1c]:first-child{margin-left:26%!important}.col-offset-3[data-v-f3388e1c]:not(first-child){margin-left:30%!important}.col-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f3388e1c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f3388e1c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f3388e1c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f3388e1c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f3388e1c]:first-child{margin-left:52%!important}.col-offset-6[data-v-f3388e1c]:not(first-child){margin-left:56%!important}.col-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f3388e1c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f3388e1c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f3388e1c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f3388e1c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f3388e1c]:first-child{margin-left:78%!important}.col-offset-9[data-v-f3388e1c]:not(first-child){margin-left:82%!important}.col-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f3388e1c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f3388e1c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f3388e1c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f3388e1c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-1[data-v-f3388e1c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-2[data-v-f3388e1c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-3[data-v-f3388e1c]{margin-left:26%}.col-no-margin-s-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-4[data-v-f3388e1c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-5[data-v-f3388e1c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-6[data-v-f3388e1c]{margin-left:52%}.col-no-margin-s-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-7[data-v-f3388e1c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-8[data-v-f3388e1c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-9[data-v-f3388e1c]{margin-left:78%}.col-no-margin-s-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-10[data-v-f3388e1c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-s-11[data-v-f3388e1c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f3388e1c]{display:none!important}.s-visible[data-v-f3388e1c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-1[data-v-f3388e1c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-2[data-v-f3388e1c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-3[data-v-f3388e1c]{margin-left:26%}.col-no-margin-m-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-4[data-v-f3388e1c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-5[data-v-f3388e1c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-6[data-v-f3388e1c]{margin-left:52%}.col-no-margin-m-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-7[data-v-f3388e1c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-8[data-v-f3388e1c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-9[data-v-f3388e1c]{margin-left:78%}.col-no-margin-m-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-10[data-v-f3388e1c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-m-11[data-v-f3388e1c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f3388e1c]{display:none!important}.m-visible[data-v-f3388e1c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-1[data-v-f3388e1c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-2[data-v-f3388e1c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-3[data-v-f3388e1c]{margin-left:26%}.col-no-margin-l-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-4[data-v-f3388e1c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-5[data-v-f3388e1c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-6[data-v-f3388e1c]{margin-left:52%}.col-no-margin-l-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-7[data-v-f3388e1c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-8[data-v-f3388e1c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-9[data-v-f3388e1c]{margin-left:78%}.col-no-margin-l-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-10[data-v-f3388e1c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-l-11[data-v-f3388e1c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f3388e1c]{display:none!important}.l-visible[data-v-f3388e1c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-1[data-v-f3388e1c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-2[data-v-f3388e1c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-3[data-v-f3388e1c]{margin-left:26%}.col-no-margin-xl-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-4[data-v-f3388e1c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-5[data-v-f3388e1c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-6[data-v-f3388e1c]{margin-left:52%}.col-no-margin-xl-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-7[data-v-f3388e1c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-8[data-v-f3388e1c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-9[data-v-f3388e1c]{margin-left:78%}.col-no-margin-xl-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-10[data-v-f3388e1c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xl-11[data-v-f3388e1c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f3388e1c]{display:none!important}.xl-visible[data-v-f3388e1c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f3388e1c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f3388e1c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f3388e1c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f3388e1c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f3388e1c]{margin-left:26%}.col-no-margin-xxl-3[data-v-f3388e1c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f3388e1c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f3388e1c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f3388e1c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f3388e1c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f3388e1c]{margin-left:52%}.col-no-margin-xxl-6[data-v-f3388e1c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f3388e1c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f3388e1c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f3388e1c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f3388e1c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f3388e1c]{margin-left:78%}.col-no-margin-xxl-9[data-v-f3388e1c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f3388e1c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f3388e1c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f3388e1c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f3388e1c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f3388e1c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f3388e1c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f3388e1c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f3388e1c]{display:none!important}.xxl-visible[data-v-f3388e1c]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f3388e1c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-f3388e1c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f3388e1c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-f3388e1c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f3388e1c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-f3388e1c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f3388e1c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-f3388e1c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f3388e1c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-f3388e1c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f3388e1c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-f3388e1c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-f3388e1c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f3388e1c]{display:none}}.vertical-center[data-v-f3388e1c]{display:flex;align-items:center}.horizontal-center[data-v-f3388e1c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f3388e1c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f3388e1c]{display:none!important}.no-content[data-v-f3388e1c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-f3388e1c],.btn[data-v-f3388e1c],button[data-v-f3388e1c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f3388e1c],.btn-default[type=submit][data-v-f3388e1c],.btn.btn-primary[data-v-f3388e1c],.btn[type=submit][data-v-f3388e1c],button.btn-primary[data-v-f3388e1c],button[type=submit][data-v-f3388e1c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-f3388e1c],.btn-default .icon[data-v-f3388e1c],button .icon[data-v-f3388e1c]{margin-right:.5em}input[type=password][data-v-f3388e1c],input[type=text][data-v-f3388e1c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f3388e1c]:focus,input[type=text][data-v-f3388e1c]:focus{border:1px solid #35b870}button[data-v-f3388e1c],input[data-v-f3388e1c]{outline:none}input[type=text][data-v-f3388e1c]:hover,textarea[data-v-f3388e1c]:hover{border:1px solid #9cdfb0}ul[data-v-f3388e1c]{margin:0;padding:0;list-style:none}a[data-v-f3388e1c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f3388e1c]:hover{color:#35b870}[data-v-f3388e1c]::-webkit-scrollbar{width:.75em}[data-v-f3388e1c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f3388e1c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-f3388e1c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-f3388e1c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-f3388e1c],input[type=password][data-v-f3388e1c],input[type=search][data-v-f3388e1c],input[type=text][data-v-f3388e1c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-f3388e1c]:hover,input[type=password][data-v-f3388e1c]:hover,input[type=search][data-v-f3388e1c]:hover,input[type=text][data-v-f3388e1c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-f3388e1c]:focus,input[type=password][data-v-f3388e1c]:focus,input[type=search][data-v-f3388e1c]:focus,input[type=text][data-v-f3388e1c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-f3388e1c],input[type=password].with-icon[data-v-f3388e1c],input[type=search].with-icon[data-v-f3388e1c],input[type=text].with-icon[data-v-f3388e1c]{padding-left:.3em}input[type=search][data-v-f3388e1c],input[type=text][data-v-f3388e1c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f3388e1c]{animation-fill-mode:both;animation-name:fadeIn-f3388e1c;-webkit-animation-name:fadeIn-f3388e1c}.fade-in[data-v-f3388e1c],.fade-out[data-v-f3388e1c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f3388e1c]{animation-fill-mode:both;animation-name:fadeOut-f3388e1c;-webkit-animation-name:fadeOut-f3388e1c}@keyframes fadeIn-f3388e1c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f3388e1c{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-f3388e1c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f3388e1c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f3388e1c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.plugins[data-v-f3388e1c]{display:none}.no-results[data-v-f3388e1c]{padding:1em}.players[data-v-f3388e1c] .dropdown{direction:ltr}.players[data-v-f3388e1c] .dropdown .item{padding:.5em}.players[data-v-f3388e1c] .dropdown .icon{margin-right:1em!important}.players[data-v-f3388e1c] .refresh{font-weight:700;font-size:.8em;opacity:.7}.players[data-v-f3388e1c] .player.selected{color:#32b646}.col-1[data-v-b32391be]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-1[data-v-b32391be]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-b32391be]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-b32391be]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-b32391be]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-2[data-v-b32391be]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-b32391be]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-b32391be]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-b32391be]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-3[data-v-b32391be]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-b32391be]:first-child{margin-left:26%!important}.col-offset-3[data-v-b32391be]:not(first-child){margin-left:30%!important}.col-4[data-v-b32391be]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-4[data-v-b32391be]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-b32391be]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-b32391be]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-b32391be]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-5[data-v-b32391be]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-b32391be]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-b32391be]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-b32391be]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-6[data-v-b32391be]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-b32391be]:first-child{margin-left:52%!important}.col-offset-6[data-v-b32391be]:not(first-child){margin-left:56%!important}.col-7[data-v-b32391be]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-7[data-v-b32391be]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-b32391be]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-b32391be]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-b32391be]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-8[data-v-b32391be]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-b32391be]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-b32391be]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-b32391be]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-9[data-v-b32391be]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-b32391be]:first-child{margin-left:78%!important}.col-offset-9[data-v-b32391be]:not(first-child){margin-left:82%!important}.col-10[data-v-b32391be]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-10[data-v-b32391be]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-b32391be]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-b32391be]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-b32391be]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-b32391be]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-b32391be]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-1[data-v-b32391be]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-b32391be]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-b32391be]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-2[data-v-b32391be]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-b32391be]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-b32391be]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-3[data-v-b32391be]{margin-left:26%}.col-no-margin-s-3[data-v-b32391be]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-b32391be]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-4[data-v-b32391be]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-b32391be]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-b32391be]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-5[data-v-b32391be]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-b32391be]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-b32391be]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-6[data-v-b32391be]{margin-left:52%}.col-no-margin-s-6[data-v-b32391be]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-b32391be]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-7[data-v-b32391be]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-b32391be]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-b32391be]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-8[data-v-b32391be]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-b32391be]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-b32391be]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-9[data-v-b32391be]{margin-left:78%}.col-no-margin-s-9[data-v-b32391be]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-b32391be]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-10[data-v-b32391be]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-b32391be]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-b32391be]:first-child{margin-left:0}.col-offset-s-11[data-v-b32391be]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-s-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-b32391be]{display:none!important}.s-visible[data-v-b32391be]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-b32391be]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-1[data-v-b32391be]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-b32391be]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-b32391be]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-2[data-v-b32391be]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-b32391be]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-b32391be]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-3[data-v-b32391be]{margin-left:26%}.col-no-margin-m-3[data-v-b32391be]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-b32391be]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-4[data-v-b32391be]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-b32391be]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-b32391be]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-5[data-v-b32391be]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-b32391be]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-b32391be]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-6[data-v-b32391be]{margin-left:52%}.col-no-margin-m-6[data-v-b32391be]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-b32391be]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-7[data-v-b32391be]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-b32391be]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-b32391be]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-8[data-v-b32391be]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-b32391be]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-b32391be]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-9[data-v-b32391be]{margin-left:78%}.col-no-margin-m-9[data-v-b32391be]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-b32391be]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-10[data-v-b32391be]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-b32391be]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-b32391be]:first-child{margin-left:0}.col-offset-m-11[data-v-b32391be]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-m-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-b32391be]{display:none!important}.m-visible[data-v-b32391be]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-b32391be]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-1[data-v-b32391be]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-b32391be]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-b32391be]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-2[data-v-b32391be]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-b32391be]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-b32391be]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-3[data-v-b32391be]{margin-left:26%}.col-no-margin-l-3[data-v-b32391be]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-b32391be]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-4[data-v-b32391be]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-b32391be]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-b32391be]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-5[data-v-b32391be]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-b32391be]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-b32391be]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-6[data-v-b32391be]{margin-left:52%}.col-no-margin-l-6[data-v-b32391be]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-b32391be]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-7[data-v-b32391be]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-b32391be]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-b32391be]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-8[data-v-b32391be]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-b32391be]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-b32391be]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-9[data-v-b32391be]{margin-left:78%}.col-no-margin-l-9[data-v-b32391be]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-b32391be]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-10[data-v-b32391be]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-b32391be]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-b32391be]:first-child{margin-left:0}.col-offset-l-11[data-v-b32391be]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-l-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-b32391be]{display:none!important}.l-visible[data-v-b32391be]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-b32391be]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-1[data-v-b32391be]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-b32391be]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-b32391be]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-2[data-v-b32391be]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-b32391be]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-b32391be]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-3[data-v-b32391be]{margin-left:26%}.col-no-margin-xl-3[data-v-b32391be]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-b32391be]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-4[data-v-b32391be]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-b32391be]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-b32391be]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-5[data-v-b32391be]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-b32391be]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-b32391be]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-6[data-v-b32391be]{margin-left:52%}.col-no-margin-xl-6[data-v-b32391be]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-b32391be]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-7[data-v-b32391be]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-b32391be]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-b32391be]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-8[data-v-b32391be]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-b32391be]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-b32391be]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-9[data-v-b32391be]{margin-left:78%}.col-no-margin-xl-9[data-v-b32391be]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-b32391be]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-10[data-v-b32391be]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-b32391be]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-b32391be]:first-child{margin-left:0}.col-offset-xl-11[data-v-b32391be]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-b32391be]{display:none!important}.xl-visible[data-v-b32391be]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-b32391be]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-1[data-v-b32391be]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-b32391be]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-b32391be]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-2[data-v-b32391be]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-b32391be]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-b32391be]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-3[data-v-b32391be]{margin-left:26%}.col-no-margin-xxl-3[data-v-b32391be]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-b32391be]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-4[data-v-b32391be]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-b32391be]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-b32391be]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-5[data-v-b32391be]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-b32391be]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-b32391be]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-6[data-v-b32391be]{margin-left:52%}.col-no-margin-xxl-6[data-v-b32391be]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-b32391be]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-7[data-v-b32391be]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-b32391be]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-b32391be]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-8[data-v-b32391be]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-b32391be]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-b32391be]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-9[data-v-b32391be]{margin-left:78%}.col-no-margin-xxl-9[data-v-b32391be]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-b32391be]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-10[data-v-b32391be]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-b32391be]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-b32391be]:first-child{margin-left:0}.col-offset-xxl-11[data-v-b32391be]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-b32391be]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-b32391be]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-b32391be]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-b32391be]{display:none!important}.xxl-visible[data-v-b32391be]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-b32391be]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-b32391be]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-b32391be]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-b32391be]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-b32391be]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-b32391be]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-b32391be]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-b32391be]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-b32391be]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-b32391be]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-b32391be]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-b32391be]{display:none}}@media screen and (min-width:769px){.mobile[data-v-b32391be]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-b32391be]{display:none}}.vertical-center[data-v-b32391be]{display:flex;align-items:center}.horizontal-center[data-v-b32391be]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-b32391be]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-b32391be]{display:none!important}.no-content[data-v-b32391be]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-b32391be],.btn[data-v-b32391be],button[data-v-b32391be]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-b32391be],.btn-default[type=submit][data-v-b32391be],.btn.btn-primary[data-v-b32391be],.btn[type=submit][data-v-b32391be],button.btn-primary[data-v-b32391be],button[type=submit][data-v-b32391be]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-b32391be],.btn-default .icon[data-v-b32391be],button .icon[data-v-b32391be]{margin-right:.5em}input[type=password][data-v-b32391be],input[type=text][data-v-b32391be]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-b32391be]:focus,input[type=text][data-v-b32391be]:focus{border:1px solid #35b870}button[data-v-b32391be],input[data-v-b32391be]{outline:none}input[type=text][data-v-b32391be]:hover,textarea[data-v-b32391be]:hover{border:1px solid #9cdfb0}ul[data-v-b32391be]{margin:0;padding:0;list-style:none}a[data-v-b32391be]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-b32391be]:hover{color:#35b870}[data-v-b32391be]::-webkit-scrollbar{width:.75em}[data-v-b32391be]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-b32391be]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-b32391be]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-b32391be]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-b32391be],input[type=password][data-v-b32391be],input[type=search][data-v-b32391be],input[type=text][data-v-b32391be]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-b32391be]:hover,input[type=password][data-v-b32391be]:hover,input[type=search][data-v-b32391be]:hover,input[type=text][data-v-b32391be]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-b32391be]:focus,input[type=password][data-v-b32391be]:focus,input[type=search][data-v-b32391be]:focus,input[type=text][data-v-b32391be]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-b32391be],input[type=password].with-icon[data-v-b32391be],input[type=search].with-icon[data-v-b32391be],input[type=text].with-icon[data-v-b32391be]{padding-left:.3em}input[type=search][data-v-b32391be],input[type=text][data-v-b32391be]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-b32391be]{animation-fill-mode:both;animation-name:fadeIn-b32391be;-webkit-animation-name:fadeIn-b32391be}.fade-in[data-v-b32391be],.fade-out[data-v-b32391be]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-b32391be]{animation-fill-mode:both;animation-name:fadeOut-b32391be;-webkit-animation-name:fadeOut-b32391be}@keyframes fadeIn-b32391be{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-b32391be{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-b32391be]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-b32391be]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-b32391be]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header[data-v-b32391be]{width:100%;height:3.3em;position:relative;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header .filter-btn.selected[data-v-b32391be]{color:#32b646}.header .row[data-v-b32391be]{display:flex;align-items:center}.header.with-filter[data-v-b32391be]{height:6.3em;padding-bottom:0}.header .side[data-v-b32391be]{display:inline-flex;align-items:center}.header .side.right[data-v-b32391be]{justify-content:right;direction:rtl}.header[data-v-b32391be] button{background:none;padding:0 .25em;border:0;margin-right:.25em}.header[data-v-b32391be] button:hover{color:#38cf80}.header form[data-v-b32391be]{width:100%;padding:0;border:0;border-radius:0;box-shadow:none;background:initial}.header .search-box[data-v-b32391be]{width:100%;margin-left:.5em}.header .search-box input[type=search][data-v-b32391be]{width:100%}.header .filter[data-v-b32391be]{width:100%;height:3em;margin-top:.5em}.header .filter label[data-v-b32391be]{display:inline-flex;flex-direction:row;margin-right:1em}.header .captions-btn[data-v-b32391be],.header .filter label input[data-v-b32391be]{margin-right:.5em}.header .captions-btn.selected[data-v-b32391be]{color:#32b646}.col-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-28611e6c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-28611e6c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-28611e6c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-28611e6c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-28611e6c]:first-child{margin-left:26%!important}.col-offset-3[data-v-28611e6c]:not(first-child){margin-left:30%!important}.col-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-28611e6c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-28611e6c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-28611e6c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-28611e6c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-28611e6c]:first-child{margin-left:52%!important}.col-offset-6[data-v-28611e6c]:not(first-child){margin-left:56%!important}.col-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-28611e6c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-28611e6c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-28611e6c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-28611e6c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-28611e6c]:first-child{margin-left:78%!important}.col-offset-9[data-v-28611e6c]:not(first-child){margin-left:82%!important}.col-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-28611e6c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-28611e6c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-28611e6c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-28611e6c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-1[data-v-28611e6c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-2[data-v-28611e6c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-3[data-v-28611e6c]{margin-left:26%}.col-no-margin-s-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-4[data-v-28611e6c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-5[data-v-28611e6c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-6[data-v-28611e6c]{margin-left:52%}.col-no-margin-s-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-7[data-v-28611e6c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-8[data-v-28611e6c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-9[data-v-28611e6c]{margin-left:78%}.col-no-margin-s-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-10[data-v-28611e6c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-28611e6c]:first-child{margin-left:0}.col-offset-s-11[data-v-28611e6c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-28611e6c]{display:none!important}.s-visible[data-v-28611e6c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-1[data-v-28611e6c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-2[data-v-28611e6c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-3[data-v-28611e6c]{margin-left:26%}.col-no-margin-m-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-4[data-v-28611e6c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-5[data-v-28611e6c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-6[data-v-28611e6c]{margin-left:52%}.col-no-margin-m-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-7[data-v-28611e6c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-8[data-v-28611e6c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-9[data-v-28611e6c]{margin-left:78%}.col-no-margin-m-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-10[data-v-28611e6c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-28611e6c]:first-child{margin-left:0}.col-offset-m-11[data-v-28611e6c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-28611e6c]{display:none!important}.m-visible[data-v-28611e6c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-1[data-v-28611e6c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-2[data-v-28611e6c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-3[data-v-28611e6c]{margin-left:26%}.col-no-margin-l-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-4[data-v-28611e6c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-5[data-v-28611e6c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-6[data-v-28611e6c]{margin-left:52%}.col-no-margin-l-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-7[data-v-28611e6c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-8[data-v-28611e6c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-9[data-v-28611e6c]{margin-left:78%}.col-no-margin-l-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-10[data-v-28611e6c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-28611e6c]:first-child{margin-left:0}.col-offset-l-11[data-v-28611e6c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-28611e6c]{display:none!important}.l-visible[data-v-28611e6c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-1[data-v-28611e6c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-2[data-v-28611e6c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-3[data-v-28611e6c]{margin-left:26%}.col-no-margin-xl-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-4[data-v-28611e6c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-5[data-v-28611e6c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-6[data-v-28611e6c]{margin-left:52%}.col-no-margin-xl-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-7[data-v-28611e6c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-8[data-v-28611e6c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-9[data-v-28611e6c]{margin-left:78%}.col-no-margin-xl-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-10[data-v-28611e6c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xl-11[data-v-28611e6c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-28611e6c]{display:none!important}.xl-visible[data-v-28611e6c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-28611e6c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-28611e6c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-28611e6c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-28611e6c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-28611e6c]{margin-left:26%}.col-no-margin-xxl-3[data-v-28611e6c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-28611e6c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-28611e6c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-28611e6c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-28611e6c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-28611e6c]{margin-left:52%}.col-no-margin-xxl-6[data-v-28611e6c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-28611e6c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-28611e6c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-28611e6c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-28611e6c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-28611e6c]{margin-left:78%}.col-no-margin-xxl-9[data-v-28611e6c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-28611e6c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-28611e6c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-28611e6c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-28611e6c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-28611e6c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-28611e6c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-28611e6c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-28611e6c]{display:none!important}.xxl-visible[data-v-28611e6c]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-28611e6c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-28611e6c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-28611e6c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-28611e6c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-28611e6c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-28611e6c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-28611e6c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-28611e6c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-28611e6c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-28611e6c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-28611e6c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-28611e6c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-28611e6c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-28611e6c]{display:none}}.vertical-center[data-v-28611e6c]{display:flex;align-items:center}.horizontal-center[data-v-28611e6c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-28611e6c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-28611e6c]{display:none!important}.no-content[data-v-28611e6c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-28611e6c],.btn[data-v-28611e6c],button[data-v-28611e6c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-28611e6c],.btn-default[type=submit][data-v-28611e6c],.btn.btn-primary[data-v-28611e6c],.btn[type=submit][data-v-28611e6c],button.btn-primary[data-v-28611e6c],button[type=submit][data-v-28611e6c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-28611e6c],.btn-default .icon[data-v-28611e6c],button .icon[data-v-28611e6c]{margin-right:.5em}input[type=password][data-v-28611e6c],input[type=text][data-v-28611e6c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-28611e6c]:focus,input[type=text][data-v-28611e6c]:focus{border:1px solid #35b870}button[data-v-28611e6c],input[data-v-28611e6c]{outline:none}input[type=text][data-v-28611e6c]:hover,textarea[data-v-28611e6c]:hover{border:1px solid #9cdfb0}ul[data-v-28611e6c]{margin:0;padding:0;list-style:none}a[data-v-28611e6c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-28611e6c]:hover{color:#35b870}[data-v-28611e6c]::-webkit-scrollbar{width:.75em}[data-v-28611e6c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-28611e6c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-28611e6c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-28611e6c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-28611e6c],input[type=password][data-v-28611e6c],input[type=search][data-v-28611e6c],input[type=text][data-v-28611e6c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-28611e6c]:hover,input[type=password][data-v-28611e6c]:hover,input[type=search][data-v-28611e6c]:hover,input[type=text][data-v-28611e6c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-28611e6c]:focus,input[type=password][data-v-28611e6c]:focus,input[type=search][data-v-28611e6c]:focus,input[type=text][data-v-28611e6c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-28611e6c],input[type=password].with-icon[data-v-28611e6c],input[type=search].with-icon[data-v-28611e6c],input[type=text].with-icon[data-v-28611e6c]{padding-left:.3em}input[type=search][data-v-28611e6c],input[type=text][data-v-28611e6c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-28611e6c]{animation-fill-mode:both;animation-name:fadeIn-28611e6c;-webkit-animation-name:fadeIn-28611e6c}.fade-in[data-v-28611e6c],.fade-out[data-v-28611e6c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-28611e6c]{animation-fill-mode:both;animation-name:fadeOut-28611e6c;-webkit-animation-name:fadeOut-28611e6c}@keyframes fadeIn-28611e6c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-28611e6c{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-28611e6c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-28611e6c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-28611e6c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.row[data-v-28611e6c]{display:flex;min-height:3em;padding:.5em 1em}@media screen and (max-width:calc(769px - 1px)){.row[data-v-28611e6c]{flex-direction:column}}@media screen and (min-width:769px){.row[data-v-28611e6c]{align-items:center}}.row[data-v-28611e6c]:not(:last-child){border-bottom:1px solid #ddd}.row[data-v-28611e6c]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);border-radius:.5em}.row .side[data-v-28611e6c]{align-items:center;display:inline-flex}.row .side.url[data-v-28611e6c]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media screen and (max-width:calc(769px - 1px)){.row .side[data-v-28611e6c]{display:flex}.row .side.left[data-v-28611e6c]{font-weight:700}.row .side.right[data-v-28611e6c]{justify-content:left}}@media screen and (min-width:769px){.row .side[data-v-28611e6c]{display:inline-flex}.row .side.left[data-v-28611e6c]{width:22%;margin-right:3%}.row .side.right[data-v-28611e6c]{width:75%;justify-content:right}}.col-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4597e14d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4597e14d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4597e14d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4597e14d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4597e14d]:first-child{margin-left:26%!important}.col-offset-3[data-v-4597e14d]:not(first-child){margin-left:30%!important}.col-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4597e14d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4597e14d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4597e14d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4597e14d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4597e14d]:first-child{margin-left:52%!important}.col-offset-6[data-v-4597e14d]:not(first-child){margin-left:56%!important}.col-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4597e14d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4597e14d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4597e14d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4597e14d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4597e14d]:first-child{margin-left:78%!important}.col-offset-9[data-v-4597e14d]:not(first-child){margin-left:82%!important}.col-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4597e14d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4597e14d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4597e14d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4597e14d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-1[data-v-4597e14d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-2[data-v-4597e14d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-3[data-v-4597e14d]{margin-left:26%}.col-no-margin-s-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-4[data-v-4597e14d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-5[data-v-4597e14d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-6[data-v-4597e14d]{margin-left:52%}.col-no-margin-s-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-7[data-v-4597e14d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-8[data-v-4597e14d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-9[data-v-4597e14d]{margin-left:78%}.col-no-margin-s-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-10[data-v-4597e14d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4597e14d]:first-child{margin-left:0}.col-offset-s-11[data-v-4597e14d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4597e14d]{display:none!important}.s-visible[data-v-4597e14d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-1[data-v-4597e14d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-2[data-v-4597e14d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-3[data-v-4597e14d]{margin-left:26%}.col-no-margin-m-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-4[data-v-4597e14d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-5[data-v-4597e14d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-6[data-v-4597e14d]{margin-left:52%}.col-no-margin-m-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-7[data-v-4597e14d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-8[data-v-4597e14d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-9[data-v-4597e14d]{margin-left:78%}.col-no-margin-m-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-10[data-v-4597e14d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4597e14d]:first-child{margin-left:0}.col-offset-m-11[data-v-4597e14d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4597e14d]{display:none!important}.m-visible[data-v-4597e14d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-1[data-v-4597e14d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-2[data-v-4597e14d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-3[data-v-4597e14d]{margin-left:26%}.col-no-margin-l-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-4[data-v-4597e14d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-5[data-v-4597e14d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-6[data-v-4597e14d]{margin-left:52%}.col-no-margin-l-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-7[data-v-4597e14d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-8[data-v-4597e14d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-9[data-v-4597e14d]{margin-left:78%}.col-no-margin-l-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-10[data-v-4597e14d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4597e14d]:first-child{margin-left:0}.col-offset-l-11[data-v-4597e14d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4597e14d]{display:none!important}.l-visible[data-v-4597e14d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-1[data-v-4597e14d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-2[data-v-4597e14d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-3[data-v-4597e14d]{margin-left:26%}.col-no-margin-xl-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-4[data-v-4597e14d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-5[data-v-4597e14d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-6[data-v-4597e14d]{margin-left:52%}.col-no-margin-xl-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-7[data-v-4597e14d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-8[data-v-4597e14d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-9[data-v-4597e14d]{margin-left:78%}.col-no-margin-xl-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-10[data-v-4597e14d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xl-11[data-v-4597e14d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4597e14d]{display:none!important}.xl-visible[data-v-4597e14d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4597e14d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4597e14d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4597e14d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4597e14d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4597e14d]{margin-left:26%}.col-no-margin-xxl-3[data-v-4597e14d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4597e14d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4597e14d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4597e14d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4597e14d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4597e14d]{margin-left:52%}.col-no-margin-xxl-6[data-v-4597e14d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4597e14d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4597e14d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4597e14d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4597e14d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4597e14d]{margin-left:78%}.col-no-margin-xxl-9[data-v-4597e14d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4597e14d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4597e14d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4597e14d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4597e14d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4597e14d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4597e14d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4597e14d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4597e14d]{display:none!important}.xxl-visible[data-v-4597e14d]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4597e14d]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-4597e14d]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4597e14d]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-4597e14d]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4597e14d]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-4597e14d]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4597e14d]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-4597e14d]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4597e14d]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-4597e14d]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4597e14d]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-4597e14d]{display:none}}@media screen and (min-width:769px){.mobile[data-v-4597e14d]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4597e14d]{display:none}}.vertical-center[data-v-4597e14d]{display:flex;align-items:center}.horizontal-center[data-v-4597e14d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4597e14d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4597e14d]{display:none!important}.no-content[data-v-4597e14d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-4597e14d],.btn[data-v-4597e14d],button[data-v-4597e14d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4597e14d],.btn-default[type=submit][data-v-4597e14d],.btn.btn-primary[data-v-4597e14d],.btn[type=submit][data-v-4597e14d],button.btn-primary[data-v-4597e14d],button[type=submit][data-v-4597e14d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4597e14d],.btn-default .icon[data-v-4597e14d],button .icon[data-v-4597e14d]{margin-right:.5em}input[type=password][data-v-4597e14d],input[type=text][data-v-4597e14d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4597e14d]:focus,input[type=text][data-v-4597e14d]:focus{border:1px solid #35b870}button[data-v-4597e14d],input[data-v-4597e14d]{outline:none}input[type=text][data-v-4597e14d]:hover,textarea[data-v-4597e14d]:hover{border:1px solid #9cdfb0}ul[data-v-4597e14d]{margin:0;padding:0;list-style:none}a[data-v-4597e14d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4597e14d]:hover{color:#35b870}[data-v-4597e14d]::-webkit-scrollbar{width:.75em}[data-v-4597e14d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4597e14d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4597e14d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-4597e14d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-4597e14d],input[type=password][data-v-4597e14d],input[type=search][data-v-4597e14d],input[type=text][data-v-4597e14d]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-4597e14d]:hover,input[type=password][data-v-4597e14d]:hover,input[type=search][data-v-4597e14d]:hover,input[type=text][data-v-4597e14d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-4597e14d]:focus,input[type=password][data-v-4597e14d]:focus,input[type=search][data-v-4597e14d]:focus,input[type=text][data-v-4597e14d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-4597e14d],input[type=password].with-icon[data-v-4597e14d],input[type=search].with-icon[data-v-4597e14d],input[type=text].with-icon[data-v-4597e14d]{padding-left:.3em}input[type=search][data-v-4597e14d],input[type=text][data-v-4597e14d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4597e14d]{animation-fill-mode:both;animation-name:fadeIn-4597e14d;-webkit-animation-name:fadeIn-4597e14d}.fade-in[data-v-4597e14d],.fade-out[data-v-4597e14d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4597e14d]{animation-fill-mode:both;animation-name:fadeOut-4597e14d;-webkit-animation-name:fadeOut-4597e14d}@keyframes fadeIn-4597e14d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4597e14d{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-4597e14d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4597e14d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4597e14d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}nav[data-v-4597e14d]{width:2.8em;height:100%;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 li[data-v-4597e14d]{display:flex;align-items:center;font-size:1.2em;cursor:pointer;list-style:none;padding:.6em;opacity:.7}nav li.selected[data-v-4597e14d],nav li[data-v-4597e14d]:hover{border-radius:1.2em;margin:0 .2em}nav li[data-v-4597e14d]:hover{background:rgba(160,245,178,.6)}nav li.selected[data-v-4597e14d]{background:rgba(160,245,178,.95)}.col-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4a59b6d2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4a59b6d2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4a59b6d2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4a59b6d2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4a59b6d2]:first-child{margin-left:26%!important}.col-offset-3[data-v-4a59b6d2]:not(first-child){margin-left:30%!important}.col-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4a59b6d2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4a59b6d2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4a59b6d2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4a59b6d2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4a59b6d2]:first-child{margin-left:52%!important}.col-offset-6[data-v-4a59b6d2]:not(first-child){margin-left:56%!important}.col-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4a59b6d2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4a59b6d2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4a59b6d2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4a59b6d2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4a59b6d2]:first-child{margin-left:78%!important}.col-offset-9[data-v-4a59b6d2]:not(first-child){margin-left:82%!important}.col-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4a59b6d2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4a59b6d2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4a59b6d2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4a59b6d2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-1[data-v-4a59b6d2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-2[data-v-4a59b6d2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-3[data-v-4a59b6d2]{margin-left:26%}.col-no-margin-s-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-4[data-v-4a59b6d2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-5[data-v-4a59b6d2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-6[data-v-4a59b6d2]{margin-left:52%}.col-no-margin-s-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-7[data-v-4a59b6d2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-8[data-v-4a59b6d2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-9[data-v-4a59b6d2]{margin-left:78%}.col-no-margin-s-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-10[data-v-4a59b6d2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-s-11[data-v-4a59b6d2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4a59b6d2]{display:none!important}.s-visible[data-v-4a59b6d2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-1[data-v-4a59b6d2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-2[data-v-4a59b6d2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-3[data-v-4a59b6d2]{margin-left:26%}.col-no-margin-m-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-4[data-v-4a59b6d2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-5[data-v-4a59b6d2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-6[data-v-4a59b6d2]{margin-left:52%}.col-no-margin-m-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-7[data-v-4a59b6d2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-8[data-v-4a59b6d2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-9[data-v-4a59b6d2]{margin-left:78%}.col-no-margin-m-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-10[data-v-4a59b6d2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-m-11[data-v-4a59b6d2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4a59b6d2]{display:none!important}.m-visible[data-v-4a59b6d2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-1[data-v-4a59b6d2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-2[data-v-4a59b6d2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-3[data-v-4a59b6d2]{margin-left:26%}.col-no-margin-l-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-4[data-v-4a59b6d2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-5[data-v-4a59b6d2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-6[data-v-4a59b6d2]{margin-left:52%}.col-no-margin-l-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-7[data-v-4a59b6d2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-8[data-v-4a59b6d2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-9[data-v-4a59b6d2]{margin-left:78%}.col-no-margin-l-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-10[data-v-4a59b6d2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-l-11[data-v-4a59b6d2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4a59b6d2]{display:none!important}.l-visible[data-v-4a59b6d2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-1[data-v-4a59b6d2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-2[data-v-4a59b6d2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-3[data-v-4a59b6d2]{margin-left:26%}.col-no-margin-xl-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-4[data-v-4a59b6d2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-5[data-v-4a59b6d2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-6[data-v-4a59b6d2]{margin-left:52%}.col-no-margin-xl-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-7[data-v-4a59b6d2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-8[data-v-4a59b6d2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-9[data-v-4a59b6d2]{margin-left:78%}.col-no-margin-xl-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-10[data-v-4a59b6d2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xl-11[data-v-4a59b6d2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4a59b6d2]{display:none!important}.xl-visible[data-v-4a59b6d2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4a59b6d2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4a59b6d2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4a59b6d2]{margin-left:26%}.col-no-margin-xxl-3[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4a59b6d2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4a59b6d2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4a59b6d2]{margin-left:52%}.col-no-margin-xxl-6[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4a59b6d2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4a59b6d2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4a59b6d2]{margin-left:78%}.col-no-margin-xxl-9[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4a59b6d2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4a59b6d2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4a59b6d2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4a59b6d2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4a59b6d2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4a59b6d2]{display:none!important}.xxl-visible[data-v-4a59b6d2]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4a59b6d2]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-4a59b6d2]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4a59b6d2]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-4a59b6d2]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4a59b6d2]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-4a59b6d2]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4a59b6d2]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-4a59b6d2]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4a59b6d2]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-4a59b6d2]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4a59b6d2]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-4a59b6d2]{display:none}}@media screen and (min-width:769px){.mobile[data-v-4a59b6d2]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4a59b6d2]{display:none}}.vertical-center[data-v-4a59b6d2]{display:flex;align-items:center}.horizontal-center[data-v-4a59b6d2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4a59b6d2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4a59b6d2]{display:none!important}.no-content[data-v-4a59b6d2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-4a59b6d2],.btn[data-v-4a59b6d2],button[data-v-4a59b6d2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4a59b6d2],.btn-default[type=submit][data-v-4a59b6d2],.btn.btn-primary[data-v-4a59b6d2],.btn[type=submit][data-v-4a59b6d2],button.btn-primary[data-v-4a59b6d2],button[type=submit][data-v-4a59b6d2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4a59b6d2],.btn-default .icon[data-v-4a59b6d2],button .icon[data-v-4a59b6d2]{margin-right:.5em}input[type=password][data-v-4a59b6d2],input[type=text][data-v-4a59b6d2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4a59b6d2]:focus,input[type=text][data-v-4a59b6d2]:focus{border:1px solid #35b870}button[data-v-4a59b6d2],input[data-v-4a59b6d2]{outline:none}input[type=text][data-v-4a59b6d2]:hover,textarea[data-v-4a59b6d2]:hover{border:1px solid #9cdfb0}ul[data-v-4a59b6d2]{margin:0;padding:0;list-style:none}a[data-v-4a59b6d2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4a59b6d2]:hover{color:#35b870}[data-v-4a59b6d2]::-webkit-scrollbar{width:.75em}[data-v-4a59b6d2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4a59b6d2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4a59b6d2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-4a59b6d2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-4a59b6d2],input[type=password][data-v-4a59b6d2],input[type=search][data-v-4a59b6d2],input[type=text][data-v-4a59b6d2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-4a59b6d2]:hover,input[type=password][data-v-4a59b6d2]:hover,input[type=search][data-v-4a59b6d2]:hover,input[type=text][data-v-4a59b6d2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-4a59b6d2]:focus,input[type=password][data-v-4a59b6d2]:focus,input[type=search][data-v-4a59b6d2]:focus,input[type=text][data-v-4a59b6d2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-4a59b6d2],input[type=password].with-icon[data-v-4a59b6d2],input[type=search].with-icon[data-v-4a59b6d2],input[type=text].with-icon[data-v-4a59b6d2]{padding-left:.3em}input[type=search][data-v-4a59b6d2],input[type=text][data-v-4a59b6d2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4a59b6d2]{animation-fill-mode:both;animation-name:fadeIn-4a59b6d2;-webkit-animation-name:fadeIn-4a59b6d2}.fade-in[data-v-4a59b6d2],.fade-out[data-v-4a59b6d2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4a59b6d2]{animation-fill-mode:both;animation-name:fadeOut-4a59b6d2;-webkit-animation-name:fadeOut-4a59b6d2}@keyframes fadeIn-4a59b6d2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4a59b6d2{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-4a59b6d2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4a59b6d2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4a59b6d2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-4a59b6d2]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-4a59b6d2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-4a59b6d2]{background:#8fefb7}.item.selected[data-v-4a59b6d2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-4a59b6d2]{border-top:2px solid #35b870}.item[data-v-4a59b6d2]::-moz-selection{background:transparent!important}.item[data-v-4a59b6d2]::selection{background:transparent!important}.item .title[data-v-4a59b6d2]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-4a59b6d2]{display:inline-flex;align-items:center}.item .side.right[data-v-4a59b6d2]{display:inline-flex;justify-content:right}.item .actions[data-v-4a59b6d2],.item .duration[data-v-4a59b6d2]{display:inline-flex;align-items:center}.item .duration[data-v-4a59b6d2]{font-size:.85em;opacity:.7}.item .actions[data-v-4a59b6d2] button{opacity:.65}.item .icon[data-v-4a59b6d2]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-4a59b6d2] .dropdown-container .item{box-shadow:none}.item[data-v-4a59b6d2] .dropdown-container button{background:none;border:none}.item[data-v-4a59b6d2] .dropdown-container button:hover{color:#35b870}[data-v-4a59b6d2] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-4a59b6d2] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-4a59b6d2] .table-row{flex-direction:row;align-items:center}}[data-v-4a59b6d2] .table-row .title,[data-v-4a59b6d2] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-4a59b6d2] .table-row .title,[data-v-4a59b6d2] .table-row .value{display:inline-flex}}[data-v-4a59b6d2] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-4a59b6d2] .table-row .title{width:30%}[data-v-4a59b6d2] .table-row .value{justify-content:right}}.media-results[data-v-4a59b6d2]{width:100%;height:100%;background:#fff;overflow:auto}.media-results .item[data-v-4a59b6d2]{display:flex;align-items:center}.media-results .item.selected[data-v-4a59b6d2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.media-results .item .side[data-v-4a59b6d2]{display:inline-flex;align-items:center}.media-results .item .side.right[data-v-4a59b6d2]{justify-content:flex-end;margin-right:.5em}.media-results .item .side[data-v-4a59b6d2] .dropdown-container .item{box-shadow:none}.media-results .item .side[data-v-4a59b6d2] .dropdown-container button{border:0;padding:0;background:none;opacity:.7}.media-results .item .side[data-v-4a59b6d2] .dropdown-container button:hover{color:#38cf80}.media-results .no-content[data-v-4a59b6d2]{height:100%}.media-results .icon .fa-youtube[data-v-4a59b6d2]{color:#d21}.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(769px - 1px)){.tablet.from[data-v-77ae3705]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-77ae3705]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-77ae3705]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-77ae3705]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-77ae3705]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-77ae3705]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-77ae3705]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-77ae3705]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-77ae3705]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-77ae3705]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-77ae3705]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-77ae3705]{display:none}}@media screen and (min-width:769px){.mobile[data-v-77ae3705]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-77ae3705]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-77ae3705]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-77ae3705],input[type=password][data-v-77ae3705],input[type=search][data-v-77ae3705],input[type=text][data-v-77ae3705]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-a2e5c946]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a2e5c946]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a2e5c946]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a2e5c946]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a2e5c946]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a2e5c946]:first-child{margin-left:26%!important}.col-offset-3[data-v-a2e5c946]:not(first-child){margin-left:30%!important}.col-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a2e5c946]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a2e5c946]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a2e5c946]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a2e5c946]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a2e5c946]:first-child{margin-left:52%!important}.col-offset-6[data-v-a2e5c946]:not(first-child){margin-left:56%!important}.col-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a2e5c946]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a2e5c946]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a2e5c946]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a2e5c946]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a2e5c946]:first-child{margin-left:78%!important}.col-offset-9[data-v-a2e5c946]:not(first-child){margin-left:82%!important}.col-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a2e5c946]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a2e5c946]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a2e5c946]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a2e5c946]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-1[data-v-a2e5c946]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-2[data-v-a2e5c946]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-3[data-v-a2e5c946]{margin-left:26%}.col-no-margin-s-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-4[data-v-a2e5c946]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-5[data-v-a2e5c946]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-6[data-v-a2e5c946]{margin-left:52%}.col-no-margin-s-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-7[data-v-a2e5c946]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-8[data-v-a2e5c946]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-9[data-v-a2e5c946]{margin-left:78%}.col-no-margin-s-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-10[data-v-a2e5c946]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-s-11[data-v-a2e5c946]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a2e5c946]{display:none!important}.s-visible[data-v-a2e5c946]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-1[data-v-a2e5c946]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-2[data-v-a2e5c946]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-3[data-v-a2e5c946]{margin-left:26%}.col-no-margin-m-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-4[data-v-a2e5c946]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-5[data-v-a2e5c946]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-6[data-v-a2e5c946]{margin-left:52%}.col-no-margin-m-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-7[data-v-a2e5c946]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-8[data-v-a2e5c946]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-9[data-v-a2e5c946]{margin-left:78%}.col-no-margin-m-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-10[data-v-a2e5c946]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-m-11[data-v-a2e5c946]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a2e5c946]{display:none!important}.m-visible[data-v-a2e5c946]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-1[data-v-a2e5c946]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-2[data-v-a2e5c946]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-3[data-v-a2e5c946]{margin-left:26%}.col-no-margin-l-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-4[data-v-a2e5c946]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-5[data-v-a2e5c946]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-6[data-v-a2e5c946]{margin-left:52%}.col-no-margin-l-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-7[data-v-a2e5c946]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-8[data-v-a2e5c946]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-9[data-v-a2e5c946]{margin-left:78%}.col-no-margin-l-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-10[data-v-a2e5c946]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-l-11[data-v-a2e5c946]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a2e5c946]{display:none!important}.l-visible[data-v-a2e5c946]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-1[data-v-a2e5c946]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-2[data-v-a2e5c946]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-3[data-v-a2e5c946]{margin-left:26%}.col-no-margin-xl-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-4[data-v-a2e5c946]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-5[data-v-a2e5c946]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-6[data-v-a2e5c946]{margin-left:52%}.col-no-margin-xl-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-7[data-v-a2e5c946]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-8[data-v-a2e5c946]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-9[data-v-a2e5c946]{margin-left:78%}.col-no-margin-xl-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-10[data-v-a2e5c946]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xl-11[data-v-a2e5c946]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a2e5c946]{display:none!important}.xl-visible[data-v-a2e5c946]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a2e5c946]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a2e5c946]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a2e5c946]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a2e5c946]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a2e5c946]{margin-left:26%}.col-no-margin-xxl-3[data-v-a2e5c946]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a2e5c946]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a2e5c946]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a2e5c946]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a2e5c946]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a2e5c946]{margin-left:52%}.col-no-margin-xxl-6[data-v-a2e5c946]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a2e5c946]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a2e5c946]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a2e5c946]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a2e5c946]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a2e5c946]{margin-left:78%}.col-no-margin-xxl-9[data-v-a2e5c946]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a2e5c946]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a2e5c946]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a2e5c946]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a2e5c946]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a2e5c946]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a2e5c946]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a2e5c946]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a2e5c946]{display:none!important}.xxl-visible[data-v-a2e5c946]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a2e5c946]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-a2e5c946]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a2e5c946]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-a2e5c946]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a2e5c946]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-a2e5c946]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a2e5c946]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-a2e5c946]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a2e5c946]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-a2e5c946]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a2e5c946]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-a2e5c946]{display:none}}@media screen and (min-width:769px){.mobile[data-v-a2e5c946]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a2e5c946]{display:none}}.vertical-center[data-v-a2e5c946]{display:flex;align-items:center}.horizontal-center[data-v-a2e5c946]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a2e5c946]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a2e5c946]{display:none!important}.no-content[data-v-a2e5c946]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-a2e5c946],.btn[data-v-a2e5c946],button[data-v-a2e5c946]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a2e5c946],.btn-default[type=submit][data-v-a2e5c946],.btn.btn-primary[data-v-a2e5c946],.btn[type=submit][data-v-a2e5c946],button.btn-primary[data-v-a2e5c946],button[type=submit][data-v-a2e5c946]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-a2e5c946],.btn-default .icon[data-v-a2e5c946],button .icon[data-v-a2e5c946]{margin-right:.5em}input[type=password][data-v-a2e5c946],input[type=text][data-v-a2e5c946]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a2e5c946]:focus,input[type=text][data-v-a2e5c946]:focus{border:1px solid #35b870}button[data-v-a2e5c946],input[data-v-a2e5c946]{outline:none}input[type=text][data-v-a2e5c946]:hover,textarea[data-v-a2e5c946]:hover{border:1px solid #9cdfb0}ul[data-v-a2e5c946]{margin:0;padding:0;list-style:none}a[data-v-a2e5c946]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a2e5c946]:hover{color:#35b870}[data-v-a2e5c946]::-webkit-scrollbar{width:.75em}[data-v-a2e5c946]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a2e5c946]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-a2e5c946]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-a2e5c946]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-a2e5c946],input[type=password][data-v-a2e5c946],input[type=search][data-v-a2e5c946],input[type=text][data-v-a2e5c946]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-a2e5c946]:hover,input[type=password][data-v-a2e5c946]:hover,input[type=search][data-v-a2e5c946]:hover,input[type=text][data-v-a2e5c946]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-a2e5c946]:focus,input[type=password][data-v-a2e5c946]:focus,input[type=search][data-v-a2e5c946]:focus,input[type=text][data-v-a2e5c946]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-a2e5c946],input[type=password].with-icon[data-v-a2e5c946],input[type=search].with-icon[data-v-a2e5c946],input[type=text].with-icon[data-v-a2e5c946]{padding-left:.3em}input[type=search][data-v-a2e5c946],input[type=text][data-v-a2e5c946]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a2e5c946]{animation-fill-mode:both;animation-name:fadeIn-a2e5c946;-webkit-animation-name:fadeIn-a2e5c946}.fade-in[data-v-a2e5c946],.fade-out[data-v-a2e5c946]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a2e5c946]{animation-fill-mode:both;animation-name:fadeOut-a2e5c946;-webkit-animation-name:fadeOut-a2e5c946}@keyframes fadeIn-a2e5c946{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a2e5c946{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-a2e5c946]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a2e5c946]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a2e5c946]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-a2e5c946]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-a2e5c946]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-a2e5c946]{background:#8fefb7}.item.selected[data-v-a2e5c946]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-a2e5c946]{border-top:2px solid #35b870}.item[data-v-a2e5c946]::-moz-selection{background:transparent!important}.item[data-v-a2e5c946]::selection{background:transparent!important}.item .title[data-v-a2e5c946]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-a2e5c946]{display:inline-flex;align-items:center}.item .side.right[data-v-a2e5c946]{display:inline-flex;justify-content:right}.item .actions[data-v-a2e5c946],.item .duration[data-v-a2e5c946]{display:inline-flex;align-items:center}.item .duration[data-v-a2e5c946]{font-size:.85em;opacity:.7}.item .actions[data-v-a2e5c946] button{opacity:.65}.item .icon[data-v-a2e5c946]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-a2e5c946] .dropdown-container .item{box-shadow:none}.item[data-v-a2e5c946] .dropdown-container button{background:none;border:none}.item[data-v-a2e5c946] .dropdown-container button:hover{color:#35b870}[data-v-a2e5c946] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-a2e5c946] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-a2e5c946] .table-row{flex-direction:row;align-items:center}}[data-v-a2e5c946] .table-row .title,[data-v-a2e5c946] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-a2e5c946] .table-row .title,[data-v-a2e5c946] .table-row .value{display:inline-flex}}[data-v-a2e5c946] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-a2e5c946] .table-row .title{width:30%}[data-v-a2e5c946] .table-row .value{justify-content:right}}.browser-container .item .actions[data-v-a2e5c946]{display:inline-flex;justify-content:right}.col-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6935b96b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6935b96b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6935b96b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6935b96b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6935b96b]:first-child{margin-left:26%!important}.col-offset-3[data-v-6935b96b]:not(first-child){margin-left:30%!important}.col-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6935b96b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6935b96b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6935b96b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6935b96b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6935b96b]:first-child{margin-left:52%!important}.col-offset-6[data-v-6935b96b]:not(first-child){margin-left:56%!important}.col-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6935b96b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6935b96b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6935b96b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6935b96b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6935b96b]:first-child{margin-left:78%!important}.col-offset-9[data-v-6935b96b]:not(first-child){margin-left:82%!important}.col-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6935b96b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6935b96b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6935b96b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6935b96b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-1[data-v-6935b96b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-2[data-v-6935b96b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-3[data-v-6935b96b]{margin-left:26%}.col-no-margin-s-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-4[data-v-6935b96b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-5[data-v-6935b96b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-6[data-v-6935b96b]{margin-left:52%}.col-no-margin-s-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-7[data-v-6935b96b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-8[data-v-6935b96b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-9[data-v-6935b96b]{margin-left:78%}.col-no-margin-s-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-10[data-v-6935b96b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6935b96b]:first-child{margin-left:0}.col-offset-s-11[data-v-6935b96b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6935b96b]{display:none!important}.s-visible[data-v-6935b96b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-1[data-v-6935b96b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-2[data-v-6935b96b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-3[data-v-6935b96b]{margin-left:26%}.col-no-margin-m-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-4[data-v-6935b96b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-5[data-v-6935b96b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-6[data-v-6935b96b]{margin-left:52%}.col-no-margin-m-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-7[data-v-6935b96b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-8[data-v-6935b96b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-9[data-v-6935b96b]{margin-left:78%}.col-no-margin-m-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-10[data-v-6935b96b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6935b96b]:first-child{margin-left:0}.col-offset-m-11[data-v-6935b96b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6935b96b]{display:none!important}.m-visible[data-v-6935b96b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-1[data-v-6935b96b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-2[data-v-6935b96b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-3[data-v-6935b96b]{margin-left:26%}.col-no-margin-l-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-4[data-v-6935b96b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-5[data-v-6935b96b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-6[data-v-6935b96b]{margin-left:52%}.col-no-margin-l-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-7[data-v-6935b96b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-8[data-v-6935b96b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-9[data-v-6935b96b]{margin-left:78%}.col-no-margin-l-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-10[data-v-6935b96b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6935b96b]:first-child{margin-left:0}.col-offset-l-11[data-v-6935b96b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6935b96b]{display:none!important}.l-visible[data-v-6935b96b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-1[data-v-6935b96b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-2[data-v-6935b96b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-3[data-v-6935b96b]{margin-left:26%}.col-no-margin-xl-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-4[data-v-6935b96b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-5[data-v-6935b96b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-6[data-v-6935b96b]{margin-left:52%}.col-no-margin-xl-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-7[data-v-6935b96b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-8[data-v-6935b96b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-9[data-v-6935b96b]{margin-left:78%}.col-no-margin-xl-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-10[data-v-6935b96b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xl-11[data-v-6935b96b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6935b96b]{display:none!important}.xl-visible[data-v-6935b96b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6935b96b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6935b96b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6935b96b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6935b96b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6935b96b]{margin-left:26%}.col-no-margin-xxl-3[data-v-6935b96b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6935b96b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6935b96b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6935b96b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6935b96b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6935b96b]{margin-left:52%}.col-no-margin-xxl-6[data-v-6935b96b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6935b96b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6935b96b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6935b96b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6935b96b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6935b96b]{margin-left:78%}.col-no-margin-xxl-9[data-v-6935b96b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6935b96b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6935b96b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6935b96b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6935b96b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6935b96b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6935b96b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6935b96b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6935b96b]{display:none!important}.xxl-visible[data-v-6935b96b]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6935b96b]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-6935b96b]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6935b96b]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-6935b96b]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6935b96b]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-6935b96b]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6935b96b]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-6935b96b]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6935b96b]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-6935b96b]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6935b96b]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-6935b96b]{display:none}}@media screen and (min-width:769px){.mobile[data-v-6935b96b]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6935b96b]{display:none}}.vertical-center[data-v-6935b96b]{display:flex;align-items:center}.horizontal-center[data-v-6935b96b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6935b96b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6935b96b]{display:none!important}.no-content[data-v-6935b96b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-6935b96b],.btn[data-v-6935b96b],button[data-v-6935b96b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6935b96b],.btn-default[type=submit][data-v-6935b96b],.btn.btn-primary[data-v-6935b96b],.btn[type=submit][data-v-6935b96b],button.btn-primary[data-v-6935b96b],button[type=submit][data-v-6935b96b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6935b96b],.btn-default .icon[data-v-6935b96b],button .icon[data-v-6935b96b]{margin-right:.5em}input[type=password][data-v-6935b96b],input[type=text][data-v-6935b96b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6935b96b]:focus,input[type=text][data-v-6935b96b]:focus{border:1px solid #35b870}button[data-v-6935b96b],input[data-v-6935b96b]{outline:none}input[type=text][data-v-6935b96b]:hover,textarea[data-v-6935b96b]:hover{border:1px solid #9cdfb0}ul[data-v-6935b96b]{margin:0;padding:0;list-style:none}a[data-v-6935b96b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6935b96b]:hover{color:#35b870}[data-v-6935b96b]::-webkit-scrollbar{width:.75em}[data-v-6935b96b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6935b96b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6935b96b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-6935b96b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-6935b96b],input[type=password][data-v-6935b96b],input[type=search][data-v-6935b96b],input[type=text][data-v-6935b96b]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-6935b96b]:hover,input[type=password][data-v-6935b96b]:hover,input[type=search][data-v-6935b96b]:hover,input[type=text][data-v-6935b96b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-6935b96b]:focus,input[type=password][data-v-6935b96b]:focus,input[type=search][data-v-6935b96b]:focus,input[type=text][data-v-6935b96b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-6935b96b],input[type=password].with-icon[data-v-6935b96b],input[type=search].with-icon[data-v-6935b96b],input[type=text].with-icon[data-v-6935b96b]{padding-left:.3em}input[type=search][data-v-6935b96b],input[type=text][data-v-6935b96b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6935b96b]{animation-fill-mode:both;animation-name:fadeIn-6935b96b;-webkit-animation-name:fadeIn-6935b96b}.fade-in[data-v-6935b96b],.fade-out[data-v-6935b96b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6935b96b]{animation-fill-mode:both;animation-name:fadeOut-6935b96b;-webkit-animation-name:fadeOut-6935b96b}@keyframes fadeIn-6935b96b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6935b96b{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-6935b96b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6935b96b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6935b96b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-plugin[data-v-6935b96b]{width:100%}.media-plugin main[data-v-6935b96b]{width:100%;height:100%;display:flex;flex-direction:row-reverse}.media-plugin main .view-container[data-v-6935b96b]{display:flex;flex-direction:column;flex-grow:1;overflow:auto;background:#fff}.media-plugin main .body-container[data-v-6935b96b]{height:calc(100% - 8.8em);padding-top:.1em;overflow:auto}.media-plugin main .body-container.expanded-header[data-v-6935b96b]{height:calc(100% - 11.8em)}[data-v-6935b96b] .loading{z-index:10}[data-v-6935b96b] .media-info-container .modal-container .content{max-width:75%}[data-v-6935b96b] .media-info-container .modal-container .body{padding:1em .5em;overflow:auto}[data-v-6935b96b] .subtitles-container .body{padding:0!important}[data-v-6935b96b] .subtitles-container .body .item{padding:1em}[data-v-6935b96b] .play-url-container .body{padding:1em!important}[data-v-6935b96b] .play-url-container form{padding:0;margin:0;border:none;border-radius:0;box-shadow:none}[data-v-6935b96b] .play-url-container input[type=text]{width:100%}[data-v-6935b96b] .play-url-container [type=submit]{background:initial;border-color:initial;border-radius:1.5em}[data-v-6935b96b] .play-url-container [type=submit]:hover{color:#38cf80}[data-v-6935b96b] .play-url-container .footer{display:flex;justify-content:right;padding:0}[data-v-6935b96b] .media-info-container .modal{max-width:70em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5794.82cc8a21.css b/platypush/backend/http/webapp/dist/static/css/5794.a98cd7fb.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/5794.82cc8a21.css rename to platypush/backend/http/webapp/dist/static/css/5794.a98cd7fb.css index 5eed0a91..a2bc7684 100644 --- a/platypush/backend/http/webapp/dist/static/css/5794.82cc8a21.css +++ b/platypush/backend/http/webapp/dist/static/css/5794.a98cd7fb.css @@ -1 +1 @@ -.col-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a0c26180]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a0c26180]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a0c26180]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a0c26180]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a0c26180]:first-child{margin-left:26%!important}.col-offset-3[data-v-a0c26180]:not(first-child){margin-left:30%!important}.col-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a0c26180]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a0c26180]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a0c26180]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a0c26180]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a0c26180]:first-child{margin-left:52%!important}.col-offset-6[data-v-a0c26180]:not(first-child){margin-left:56%!important}.col-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a0c26180]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a0c26180]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a0c26180]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a0c26180]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a0c26180]:first-child{margin-left:78%!important}.col-offset-9[data-v-a0c26180]:not(first-child){margin-left:82%!important}.col-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a0c26180]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a0c26180]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a0c26180]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a0c26180]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-1[data-v-a0c26180]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-2[data-v-a0c26180]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-3[data-v-a0c26180]{margin-left:26%}.col-no-margin-s-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-4[data-v-a0c26180]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-5[data-v-a0c26180]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-6[data-v-a0c26180]{margin-left:52%}.col-no-margin-s-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-7[data-v-a0c26180]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-8[data-v-a0c26180]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-9[data-v-a0c26180]{margin-left:78%}.col-no-margin-s-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-10[data-v-a0c26180]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-11[data-v-a0c26180]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a0c26180]{display:none!important}.s-visible[data-v-a0c26180]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-1[data-v-a0c26180]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-2[data-v-a0c26180]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-3[data-v-a0c26180]{margin-left:26%}.col-no-margin-m-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-4[data-v-a0c26180]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-5[data-v-a0c26180]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-6[data-v-a0c26180]{margin-left:52%}.col-no-margin-m-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-7[data-v-a0c26180]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-8[data-v-a0c26180]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-9[data-v-a0c26180]{margin-left:78%}.col-no-margin-m-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-10[data-v-a0c26180]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-11[data-v-a0c26180]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a0c26180]{display:none!important}.m-visible[data-v-a0c26180]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-1[data-v-a0c26180]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-2[data-v-a0c26180]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-3[data-v-a0c26180]{margin-left:26%}.col-no-margin-l-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-4[data-v-a0c26180]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-5[data-v-a0c26180]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-6[data-v-a0c26180]{margin-left:52%}.col-no-margin-l-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-7[data-v-a0c26180]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-8[data-v-a0c26180]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-9[data-v-a0c26180]{margin-left:78%}.col-no-margin-l-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-10[data-v-a0c26180]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-11[data-v-a0c26180]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a0c26180]{display:none!important}.l-visible[data-v-a0c26180]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-1[data-v-a0c26180]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-2[data-v-a0c26180]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-3[data-v-a0c26180]{margin-left:26%}.col-no-margin-xl-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-4[data-v-a0c26180]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-5[data-v-a0c26180]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-6[data-v-a0c26180]{margin-left:52%}.col-no-margin-xl-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-7[data-v-a0c26180]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-8[data-v-a0c26180]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-9[data-v-a0c26180]{margin-left:78%}.col-no-margin-xl-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-10[data-v-a0c26180]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-11[data-v-a0c26180]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a0c26180]{display:none!important}.xl-visible[data-v-a0c26180]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a0c26180]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a0c26180]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a0c26180]{margin-left:26%}.col-no-margin-xxl-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a0c26180]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a0c26180]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a0c26180]{margin-left:52%}.col-no-margin-xxl-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a0c26180]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a0c26180]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a0c26180]{margin-left:78%}.col-no-margin-xxl-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a0c26180]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a0c26180]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a0c26180]{display:none!important}.xxl-visible[data-v-a0c26180]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a0c26180]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-a0c26180]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a0c26180]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-a0c26180]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a0c26180]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-a0c26180]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a0c26180]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-a0c26180]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a0c26180]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-a0c26180]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a0c26180]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-a0c26180]{display:none}}@media screen and (min-width:769px){.mobile[data-v-a0c26180]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a0c26180]{display:none}}.vertical-center[data-v-a0c26180]{display:flex;align-items:center}.horizontal-center[data-v-a0c26180]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a0c26180]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a0c26180]{display:none!important}.no-content[data-v-a0c26180]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-a0c26180],.btn[data-v-a0c26180],button[data-v-a0c26180]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a0c26180],.btn-default[type=submit][data-v-a0c26180],.btn.btn-primary[data-v-a0c26180],.btn[type=submit][data-v-a0c26180],button.btn-primary[data-v-a0c26180],button[type=submit][data-v-a0c26180]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-a0c26180],.btn-default .icon[data-v-a0c26180],button .icon[data-v-a0c26180]{margin-right:.5em}input[type=password][data-v-a0c26180],input[type=text][data-v-a0c26180]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a0c26180]:focus,input[type=text][data-v-a0c26180]:focus{border:1px solid #35b870}button[data-v-a0c26180],input[data-v-a0c26180]{outline:none}input[type=text][data-v-a0c26180]:hover,textarea[data-v-a0c26180]:hover{border:1px solid #9cdfb0}ul[data-v-a0c26180]{margin:0;padding:0;list-style:none}a[data-v-a0c26180]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a0c26180]:hover{color:#35b870}[data-v-a0c26180]::-webkit-scrollbar{width:.75em}[data-v-a0c26180]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a0c26180]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-a0c26180]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-a0c26180]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-a0c26180],input[type=password][data-v-a0c26180],input[type=search][data-v-a0c26180],input[type=text][data-v-a0c26180]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-a0c26180]:hover,input[type=password][data-v-a0c26180]:hover,input[type=search][data-v-a0c26180]:hover,input[type=text][data-v-a0c26180]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-a0c26180]:focus,input[type=password][data-v-a0c26180]:focus,input[type=search][data-v-a0c26180]:focus,input[type=text][data-v-a0c26180]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-a0c26180],input[type=password].with-icon[data-v-a0c26180],input[type=search].with-icon[data-v-a0c26180],input[type=text].with-icon[data-v-a0c26180]{padding-left:.3em}input[type=search][data-v-a0c26180],input[type=text][data-v-a0c26180]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a0c26180]{animation-fill-mode:both;animation-name:fadeIn-a0c26180;-webkit-animation-name:fadeIn-a0c26180}.fade-in[data-v-a0c26180],.fade-out[data-v-a0c26180]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a0c26180]{animation-fill-mode:both;animation-name:fadeOut-a0c26180;-webkit-animation-name:fadeOut-a0c26180}@keyframes fadeIn-a0c26180{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a0c26180{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-a0c26180]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a0c26180]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a0c26180]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.camera[data-v-a0c26180]{width:100%;height:100%;background:#fff;overflow:auto;display:flex;flex-direction:column;align-items:center;padding-top:3em}.camera .camera-container[data-v-a0c26180]{display:flex;flex-direction:column;align-items:center;background:#101520}.camera .camera-container .frame-container[data-v-a0c26180]{position:relative}.camera .camera-container .frame[data-v-a0c26180],.camera .camera-container .no-frame[data-v-a0c26180]{position:absolute;top:0;width:100%;height:100%}.camera .camera-container .frame[data-v-a0c26180]{z-index:1}.camera .camera-container .no-frame[data-v-a0c26180]{display:flex;color:#fff;align-items:center;justify-content:center;z-index:2;background:#000}.camera .camera-container .controls[data-v-a0c26180]{width:100%;display:flex;border-top:1px solid #202530;padding:.5em .25em}.camera .camera-container .controls .left[data-v-a0c26180],.camera .camera-container .controls .right[data-v-a0c26180]{width:50%}.camera .camera-container .controls .right[data-v-a0c26180]{text-align:right}.camera .camera-container .controls button[data-v-a0c26180]{background:none;color:#fff;border:none}.camera .camera-container .controls button[data-v-a0c26180]:hover{color:#38cf80}.camera .url[data-v-a0c26180]{display:flex;margin:1em}@media screen and (max-width:calc(769px - 1px)){.camera .url[data-v-a0c26180]{width:80%}}@media screen and (min-width:769px){.camera .url[data-v-a0c26180]{width:640px}}.camera .url .row[data-v-a0c26180]{width:100%;display:flex;align-items:center}.camera .url .name[data-v-a0c26180]{width:140px}.camera .url input[data-v-a0c26180]{width:500px;font-weight:400}.camera .params[data-v-a0c26180]{display:flex;flex-direction:column;margin:-2em}@media screen and (min-width:769px){.camera .params[data-v-a0c26180]{width:640px}}.camera .params label[data-v-a0c26180]{font-weight:400}.camera .params .head[data-v-a0c26180]{display:flex;justify-content:center}.camera .params .head label[data-v-a0c26180]{width:100%;display:flex;justify-content:right}.camera .params .head label .name[data-v-a0c26180]{margin-right:1em}.camera .params .row[data-v-a0c26180]{width:100%;display:flex;align-items:center;padding:.5em 1em}.camera .params .row .name[data-v-a0c26180]{width:30%}.camera .params .row input[data-v-a0c26180]{width:70%}.camera .params .row[data-v-a0c26180]:nth-child(2n){background:#f1f3f2}.camera .params .row[data-v-a0c26180]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (max-width:calc(769px - 1px)){.camera .modal .content[data-v-a0c26180]{width:90%!important}}.camera .camera-selector[data-v-a0c26180]{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-a0c26180],.camera .camera-selector .right[data-v-a0c26180]{display:flex}.camera .camera-selector .left[data-v-a0c26180]{width:90%}.camera .camera-selector .right[data-v-a0c26180]{width:10%;justify-content:right}.camera .camera-selector label[data-v-a0c26180]{width:100%;padding-left:1em}.camera .camera-selector label select[data-v-a0c26180]{width:100%}.camera .camera-selector button[data-v-a0c26180]{background:none;border:none}.camera .camera-selector button[data-v-a0c26180]:hover{color:#35b870}.camera .camera-container[data-v-a0c26180]{margin-top:2em;min-width:640px;min-height:calc(480px + 3.5em)}.camera .camera-container .frame-container[data-v-a0c26180]{min-width:640px;min-height:480px}.camera .camera-container .controls[data-v-a0c26180]{height:3.5em} \ No newline at end of file +.col-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a0c26180]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a0c26180]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a0c26180]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a0c26180]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a0c26180]:first-child{margin-left:26%!important}.col-offset-3[data-v-a0c26180]:not(first-child){margin-left:30%!important}.col-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a0c26180]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a0c26180]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a0c26180]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a0c26180]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a0c26180]:first-child{margin-left:52%!important}.col-offset-6[data-v-a0c26180]:not(first-child){margin-left:56%!important}.col-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a0c26180]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a0c26180]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a0c26180]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a0c26180]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a0c26180]:first-child{margin-left:78%!important}.col-offset-9[data-v-a0c26180]:not(first-child){margin-left:82%!important}.col-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a0c26180]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a0c26180]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a0c26180]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a0c26180]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-1[data-v-a0c26180]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-2[data-v-a0c26180]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-3[data-v-a0c26180]{margin-left:26%}.col-no-margin-s-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-4[data-v-a0c26180]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-5[data-v-a0c26180]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-6[data-v-a0c26180]{margin-left:52%}.col-no-margin-s-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-7[data-v-a0c26180]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-8[data-v-a0c26180]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-9[data-v-a0c26180]{margin-left:78%}.col-no-margin-s-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-10[data-v-a0c26180]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a0c26180]:first-child{margin-left:0}.col-offset-s-11[data-v-a0c26180]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a0c26180]{display:none!important}.s-visible[data-v-a0c26180]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-1[data-v-a0c26180]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-2[data-v-a0c26180]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-3[data-v-a0c26180]{margin-left:26%}.col-no-margin-m-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-4[data-v-a0c26180]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-5[data-v-a0c26180]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-6[data-v-a0c26180]{margin-left:52%}.col-no-margin-m-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-7[data-v-a0c26180]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-8[data-v-a0c26180]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-9[data-v-a0c26180]{margin-left:78%}.col-no-margin-m-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-10[data-v-a0c26180]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a0c26180]:first-child{margin-left:0}.col-offset-m-11[data-v-a0c26180]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a0c26180]{display:none!important}.m-visible[data-v-a0c26180]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-1[data-v-a0c26180]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-2[data-v-a0c26180]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-3[data-v-a0c26180]{margin-left:26%}.col-no-margin-l-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-4[data-v-a0c26180]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-5[data-v-a0c26180]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-6[data-v-a0c26180]{margin-left:52%}.col-no-margin-l-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-7[data-v-a0c26180]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-8[data-v-a0c26180]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-9[data-v-a0c26180]{margin-left:78%}.col-no-margin-l-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-10[data-v-a0c26180]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a0c26180]:first-child{margin-left:0}.col-offset-l-11[data-v-a0c26180]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a0c26180]{display:none!important}.l-visible[data-v-a0c26180]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-1[data-v-a0c26180]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-2[data-v-a0c26180]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-3[data-v-a0c26180]{margin-left:26%}.col-no-margin-xl-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-4[data-v-a0c26180]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-5[data-v-a0c26180]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-6[data-v-a0c26180]{margin-left:52%}.col-no-margin-xl-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-7[data-v-a0c26180]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-8[data-v-a0c26180]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-9[data-v-a0c26180]{margin-left:78%}.col-no-margin-xl-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-10[data-v-a0c26180]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xl-11[data-v-a0c26180]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a0c26180]{display:none!important}.xl-visible[data-v-a0c26180]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a0c26180]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a0c26180]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a0c26180]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a0c26180]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a0c26180]{margin-left:26%}.col-no-margin-xxl-3[data-v-a0c26180]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a0c26180]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a0c26180]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a0c26180]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a0c26180]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a0c26180]{margin-left:52%}.col-no-margin-xxl-6[data-v-a0c26180]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a0c26180]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a0c26180]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a0c26180]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a0c26180]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a0c26180]{margin-left:78%}.col-no-margin-xxl-9[data-v-a0c26180]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a0c26180]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a0c26180]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a0c26180]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a0c26180]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a0c26180]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a0c26180]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a0c26180]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a0c26180]{display:none!important}.xxl-visible[data-v-a0c26180]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-a0c26180]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-a0c26180]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-a0c26180]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-a0c26180]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a0c26180]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-a0c26180]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a0c26180]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-a0c26180]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a0c26180]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-a0c26180]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a0c26180]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-a0c26180]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a0c26180]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-a0c26180]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a0c26180]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-a0c26180]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-a0c26180]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a0c26180]{display:none!important}}.vertical-center[data-v-a0c26180]{display:flex;align-items:center}.horizontal-center[data-v-a0c26180]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a0c26180]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a0c26180]{display:none!important}.no-content[data-v-a0c26180]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-a0c26180]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-a0c26180]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-a0c26180]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-a0c26180]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-a0c26180]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-a0c26180]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-a0c26180],.btn[data-v-a0c26180],button[data-v-a0c26180]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a0c26180],.btn-default[type=submit][data-v-a0c26180],.btn.btn-primary[data-v-a0c26180],.btn[type=submit][data-v-a0c26180],button.btn-primary[data-v-a0c26180],button[type=submit][data-v-a0c26180]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-a0c26180],.btn-default .icon[data-v-a0c26180],button .icon[data-v-a0c26180]{margin-right:.5em}input[type=password][data-v-a0c26180],input[type=text][data-v-a0c26180]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a0c26180]:focus,input[type=text][data-v-a0c26180]:focus{border:1px solid #35b870}button[data-v-a0c26180],input[data-v-a0c26180]{outline:none}input[type=text][data-v-a0c26180]:hover,textarea[data-v-a0c26180]:hover{border:1px solid #9cdfb0}ul[data-v-a0c26180]{margin:0;padding:0;list-style:none}a[data-v-a0c26180]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a0c26180]:hover{color:#35b870}[data-v-a0c26180]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-a0c26180]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-a0c26180]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a0c26180]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-a0c26180]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-a0c26180] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-a0c26180] .nav .path{cursor:pointer}.browser[data-v-a0c26180] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-a0c26180] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-a0c26180]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-a0c26180],input[type=number][data-v-a0c26180],input[type=password][data-v-a0c26180],input[type=search][data-v-a0c26180],input[type=text][data-v-a0c26180],input[type=time][data-v-a0c26180]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-a0c26180]:hover,input[type=number][data-v-a0c26180]:hover,input[type=password][data-v-a0c26180]:hover,input[type=search][data-v-a0c26180]:hover,input[type=text][data-v-a0c26180]:hover,input[type=time][data-v-a0c26180]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-a0c26180]:focus,input[type=number][data-v-a0c26180]:focus,input[type=password][data-v-a0c26180]:focus,input[type=search][data-v-a0c26180]:focus,input[type=text][data-v-a0c26180]:focus,input[type=time][data-v-a0c26180]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-a0c26180],input[type=number].with-icon[data-v-a0c26180],input[type=password].with-icon[data-v-a0c26180],input[type=search].with-icon[data-v-a0c26180],input[type=text].with-icon[data-v-a0c26180],input[type=time].with-icon[data-v-a0c26180]{padding-left:.3em}input[type=search][data-v-a0c26180],input[type=text][data-v-a0c26180]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a0c26180]{animation-fill-mode:both;animation-name:fadeIn-a0c26180;-webkit-animation-name:fadeIn-a0c26180}.fade-in[data-v-a0c26180],.fade-out[data-v-a0c26180]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a0c26180]{animation-fill-mode:both;animation-name:fadeOut-a0c26180;-webkit-animation-name:fadeOut-a0c26180}@keyframes fadeIn-a0c26180{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a0c26180{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-a0c26180]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a0c26180]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a0c26180]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.camera[data-v-a0c26180]{width:100%;height:100%;background:#fff;overflow:auto;display:flex;flex-direction:column;align-items:center;padding-top:3em}.camera .camera-container[data-v-a0c26180]{display:flex;flex-direction:column;align-items:center;background:#101520}.camera .camera-container .frame-container[data-v-a0c26180]{position:relative}.camera .camera-container .frame[data-v-a0c26180],.camera .camera-container .no-frame[data-v-a0c26180]{position:absolute;top:0;width:100%;height:100%}.camera .camera-container .frame[data-v-a0c26180]{z-index:1}.camera .camera-container .no-frame[data-v-a0c26180]{display:flex;color:#fff;align-items:center;justify-content:center;z-index:2;background:#000}.camera .camera-container .controls[data-v-a0c26180]{width:100%;display:flex;border-top:1px solid #202530;padding:.5em .25em}.camera .camera-container .controls .left[data-v-a0c26180],.camera .camera-container .controls .right[data-v-a0c26180]{width:50%}.camera .camera-container .controls .right[data-v-a0c26180]{text-align:right}.camera .camera-container .controls button[data-v-a0c26180]{background:none;color:#fff;border:none}.camera .camera-container .controls button[data-v-a0c26180]:hover{color:#38cf80}.camera .url[data-v-a0c26180]{display:flex;margin:1em}@media screen and (max-width:calc(769px - 1px)){.camera .url[data-v-a0c26180]{width:80%}}@media screen and (min-width:769px){.camera .url[data-v-a0c26180]{width:640px}}.camera .url .row[data-v-a0c26180]{width:100%;display:flex;align-items:center}.camera .url .name[data-v-a0c26180]{width:140px}.camera .url input[data-v-a0c26180]{width:500px;font-weight:400}.camera .params[data-v-a0c26180]{display:flex;flex-direction:column;margin:-2em}@media screen and (min-width:769px){.camera .params[data-v-a0c26180]{width:640px}}.camera .params label[data-v-a0c26180]{font-weight:400}.camera .params .head[data-v-a0c26180]{display:flex;justify-content:center}.camera .params .head label[data-v-a0c26180]{width:100%;display:flex;justify-content:right}.camera .params .head label .name[data-v-a0c26180]{margin-right:1em}.camera .params .row[data-v-a0c26180]{width:100%;display:flex;align-items:center;padding:.5em 1em}.camera .params .row .name[data-v-a0c26180]{width:30%}.camera .params .row input[data-v-a0c26180]{width:70%}.camera .params .row[data-v-a0c26180]:nth-child(2n){background:#f1f3f2}.camera .params .row[data-v-a0c26180]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (max-width:calc(769px - 1px)){.camera .modal .content[data-v-a0c26180]{width:90%!important}}.camera .camera-selector[data-v-a0c26180]{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-a0c26180],.camera .camera-selector .right[data-v-a0c26180]{display:flex}.camera .camera-selector .left[data-v-a0c26180]{width:90%}.camera .camera-selector .right[data-v-a0c26180]{width:10%;justify-content:right}.camera .camera-selector label[data-v-a0c26180]{width:100%;padding-left:1em}.camera .camera-selector label select[data-v-a0c26180]{width:100%}.camera .camera-selector button[data-v-a0c26180]{background:none;border:none}.camera .camera-selector button[data-v-a0c26180]:hover{color:#35b870}.camera .camera-container[data-v-a0c26180]{margin-top:2em;min-width:640px;min-height:calc(480px + 3.5em)}.camera .camera-container .frame-container[data-v-a0c26180]{min-width:640px;min-height:480px}.camera .camera-container .controls[data-v-a0c26180]{height:3.5em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5795.3b193db6.css b/platypush/backend/http/webapp/dist/static/css/5795.3b193db6.css new file mode 100644 index 00000000..4cc92b3a --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5795.3b193db6.css @@ -0,0 +1 @@ +.col-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-23564003]:first-child{margin-left:0}.col-no-margin-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-23564003]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-23564003]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-23564003]:first-child{margin-left:0}.col-no-margin-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-23564003]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-23564003]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-23564003]:first-child{margin-left:0}.col-no-margin-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-23564003]:first-child{margin-left:26%!important}.col-offset-3[data-v-23564003]:not(first-child){margin-left:30%!important}.col-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-23564003]:first-child{margin-left:0}.col-no-margin-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-23564003]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-23564003]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-23564003]:first-child{margin-left:0}.col-no-margin-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-23564003]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-23564003]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-23564003]:first-child{margin-left:0}.col-no-margin-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-23564003]:first-child{margin-left:52%!important}.col-offset-6[data-v-23564003]:not(first-child){margin-left:56%!important}.col-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-23564003]:first-child{margin-left:0}.col-no-margin-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-23564003]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-23564003]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-23564003]:first-child{margin-left:0}.col-no-margin-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-23564003]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-23564003]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-23564003]:first-child{margin-left:0}.col-no-margin-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-23564003]:first-child{margin-left:78%!important}.col-offset-9[data-v-23564003]:not(first-child){margin-left:82%!important}.col-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-23564003]:first-child{margin-left:0}.col-no-margin-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-23564003]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-23564003]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-23564003]:first-child{margin-left:0}.col-no-margin-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-23564003]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-23564003]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-23564003]:first-child{margin-left:0}.col-offset-s-1[data-v-23564003]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-23564003]:first-child{margin-left:0}.col-offset-s-2[data-v-23564003]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-23564003]:first-child{margin-left:0}.col-offset-s-3[data-v-23564003]{margin-left:26%}.col-no-margin-s-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-23564003]:first-child{margin-left:0}.col-offset-s-4[data-v-23564003]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-23564003]:first-child{margin-left:0}.col-offset-s-5[data-v-23564003]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-23564003]:first-child{margin-left:0}.col-offset-s-6[data-v-23564003]{margin-left:52%}.col-no-margin-s-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-23564003]:first-child{margin-left:0}.col-offset-s-7[data-v-23564003]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-23564003]:first-child{margin-left:0}.col-offset-s-8[data-v-23564003]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-23564003]:first-child{margin-left:0}.col-offset-s-9[data-v-23564003]{margin-left:78%}.col-no-margin-s-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-23564003]:first-child{margin-left:0}.col-offset-s-10[data-v-23564003]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-23564003]:first-child{margin-left:0}.col-offset-s-11[data-v-23564003]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-s-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-23564003]{display:none!important}.s-visible[data-v-23564003]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-23564003]:first-child{margin-left:0}.col-offset-m-1[data-v-23564003]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-23564003]:first-child{margin-left:0}.col-offset-m-2[data-v-23564003]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-23564003]:first-child{margin-left:0}.col-offset-m-3[data-v-23564003]{margin-left:26%}.col-no-margin-m-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-23564003]:first-child{margin-left:0}.col-offset-m-4[data-v-23564003]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-23564003]:first-child{margin-left:0}.col-offset-m-5[data-v-23564003]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-23564003]:first-child{margin-left:0}.col-offset-m-6[data-v-23564003]{margin-left:52%}.col-no-margin-m-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-23564003]:first-child{margin-left:0}.col-offset-m-7[data-v-23564003]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-23564003]:first-child{margin-left:0}.col-offset-m-8[data-v-23564003]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-23564003]:first-child{margin-left:0}.col-offset-m-9[data-v-23564003]{margin-left:78%}.col-no-margin-m-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-23564003]:first-child{margin-left:0}.col-offset-m-10[data-v-23564003]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-23564003]:first-child{margin-left:0}.col-offset-m-11[data-v-23564003]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-m-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-23564003]{display:none!important}.m-visible[data-v-23564003]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-23564003]:first-child{margin-left:0}.col-offset-l-1[data-v-23564003]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-23564003]:first-child{margin-left:0}.col-offset-l-2[data-v-23564003]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-23564003]:first-child{margin-left:0}.col-offset-l-3[data-v-23564003]{margin-left:26%}.col-no-margin-l-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-23564003]:first-child{margin-left:0}.col-offset-l-4[data-v-23564003]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-23564003]:first-child{margin-left:0}.col-offset-l-5[data-v-23564003]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-23564003]:first-child{margin-left:0}.col-offset-l-6[data-v-23564003]{margin-left:52%}.col-no-margin-l-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-23564003]:first-child{margin-left:0}.col-offset-l-7[data-v-23564003]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-23564003]:first-child{margin-left:0}.col-offset-l-8[data-v-23564003]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-23564003]:first-child{margin-left:0}.col-offset-l-9[data-v-23564003]{margin-left:78%}.col-no-margin-l-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-23564003]:first-child{margin-left:0}.col-offset-l-10[data-v-23564003]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-23564003]:first-child{margin-left:0}.col-offset-l-11[data-v-23564003]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-l-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-23564003]{display:none!important}.l-visible[data-v-23564003]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-1[data-v-23564003]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-2[data-v-23564003]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-3[data-v-23564003]{margin-left:26%}.col-no-margin-xl-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-4[data-v-23564003]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-5[data-v-23564003]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-6[data-v-23564003]{margin-left:52%}.col-no-margin-xl-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-7[data-v-23564003]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-8[data-v-23564003]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-9[data-v-23564003]{margin-left:78%}.col-no-margin-xl-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-10[data-v-23564003]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-11[data-v-23564003]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-23564003]{display:none!important}.xl-visible[data-v-23564003]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-1[data-v-23564003]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-2[data-v-23564003]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-3[data-v-23564003]{margin-left:26%}.col-no-margin-xxl-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-4[data-v-23564003]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-5[data-v-23564003]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-6[data-v-23564003]{margin-left:52%}.col-no-margin-xxl-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-7[data-v-23564003]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-8[data-v-23564003]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-9[data-v-23564003]{margin-left:78%}.col-no-margin-xxl-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-10[data-v-23564003]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-11[data-v-23564003]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-23564003]{display:none!important}.xxl-visible[data-v-23564003]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-23564003]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-23564003]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-23564003]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-23564003]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-23564003]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-23564003]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-23564003]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-23564003]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-23564003]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-23564003]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-23564003]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-23564003]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-23564003]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-23564003]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-23564003]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-23564003]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-23564003]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-23564003]{display:none!important}}.vertical-center[data-v-23564003]{display:flex;align-items:center}.horizontal-center[data-v-23564003]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-23564003]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-23564003]{display:none!important}.no-content[data-v-23564003]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-23564003]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-23564003]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-23564003]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-23564003]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-23564003]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-23564003]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-23564003],.btn[data-v-23564003],button[data-v-23564003]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-23564003],.btn-default[type=submit][data-v-23564003],.btn.btn-primary[data-v-23564003],.btn[type=submit][data-v-23564003],button.btn-primary[data-v-23564003],button[type=submit][data-v-23564003]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-23564003],.btn-default .icon[data-v-23564003],button .icon[data-v-23564003]{margin-right:.5em}input[type=password][data-v-23564003],input[type=text][data-v-23564003]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-23564003]:focus,input[type=text][data-v-23564003]:focus{border:1px solid #35b870}button[data-v-23564003],input[data-v-23564003]{outline:none}input[type=text][data-v-23564003]:hover,textarea[data-v-23564003]:hover{border:1px solid #9cdfb0}ul[data-v-23564003]{margin:0;padding:0;list-style:none}a[data-v-23564003]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-23564003]:hover{color:#35b870}[data-v-23564003]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-23564003]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-23564003]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-23564003]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-23564003]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-23564003] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-23564003] .nav .path{cursor:pointer}.browser[data-v-23564003] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-23564003] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-23564003]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-23564003],input[type=number][data-v-23564003],input[type=password][data-v-23564003],input[type=search][data-v-23564003],input[type=text][data-v-23564003],input[type=time][data-v-23564003]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-23564003]:hover,input[type=number][data-v-23564003]:hover,input[type=password][data-v-23564003]:hover,input[type=search][data-v-23564003]:hover,input[type=text][data-v-23564003]:hover,input[type=time][data-v-23564003]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-23564003]:focus,input[type=number][data-v-23564003]:focus,input[type=password][data-v-23564003]:focus,input[type=search][data-v-23564003]:focus,input[type=text][data-v-23564003]:focus,input[type=time][data-v-23564003]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-23564003],input[type=number].with-icon[data-v-23564003],input[type=password].with-icon[data-v-23564003],input[type=search].with-icon[data-v-23564003],input[type=text].with-icon[data-v-23564003],input[type=time].with-icon[data-v-23564003]{padding-left:.3em}input[type=search][data-v-23564003],input[type=text][data-v-23564003]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-23564003]{animation-fill-mode:both;animation-name:fadeIn-23564003;-webkit-animation-name:fadeIn-23564003}.fade-in[data-v-23564003],.fade-out[data-v-23564003]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-23564003]{animation-fill-mode:both;animation-name:fadeOut-23564003;-webkit-animation-name:fadeOut-23564003}@keyframes fadeIn-23564003{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-23564003{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-23564003]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-23564003]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-23564003]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-23564003] .modal .dialog-content{padding:1em}[data-v-23564003] .modal .body{padding:1.5em}[data-v-23564003] .modal .buttons{display:flex;flex-direction:row;justify-content:right;margin-bottom:1em;border:0;border-radius:0}[data-v-23564003] .modal .buttons button{margin-right:1em;padding:.5em 1em;border:1px solid #ddd;border-radius:1em}[data-v-23564003] .modal .buttons button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}form[data-v-23564003]{display:flex;flex-direction:column!important}form .buttons[data-v-23564003]{flex-direction:row!important}.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}}.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/5795.fe136332.css b/platypush/backend/http/webapp/dist/static/css/5795.fe136332.css deleted file mode 100644 index 9c1531f1..00000000 --- a/platypush/backend/http/webapp/dist/static/css/5795.fe136332.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-23564003]:first-child{margin-left:0}.col-no-margin-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-23564003]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-23564003]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-23564003]:first-child{margin-left:0}.col-no-margin-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-23564003]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-23564003]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-23564003]:first-child{margin-left:0}.col-no-margin-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-23564003]:first-child{margin-left:26%!important}.col-offset-3[data-v-23564003]:not(first-child){margin-left:30%!important}.col-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-23564003]:first-child{margin-left:0}.col-no-margin-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-23564003]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-23564003]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-23564003]:first-child{margin-left:0}.col-no-margin-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-23564003]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-23564003]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-23564003]:first-child{margin-left:0}.col-no-margin-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-23564003]:first-child{margin-left:52%!important}.col-offset-6[data-v-23564003]:not(first-child){margin-left:56%!important}.col-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-23564003]:first-child{margin-left:0}.col-no-margin-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-23564003]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-23564003]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-23564003]:first-child{margin-left:0}.col-no-margin-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-23564003]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-23564003]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-23564003]:first-child{margin-left:0}.col-no-margin-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-23564003]:first-child{margin-left:78%!important}.col-offset-9[data-v-23564003]:not(first-child){margin-left:82%!important}.col-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-23564003]:first-child{margin-left:0}.col-no-margin-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-23564003]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-23564003]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-23564003]:first-child{margin-left:0}.col-no-margin-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-23564003]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-23564003]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-23564003]:first-child{margin-left:0}.col-offset-s-1[data-v-23564003]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-23564003]:first-child{margin-left:0}.col-offset-s-2[data-v-23564003]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-23564003]:first-child{margin-left:0}.col-offset-s-3[data-v-23564003]{margin-left:26%}.col-no-margin-s-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-23564003]:first-child{margin-left:0}.col-offset-s-4[data-v-23564003]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-23564003]:first-child{margin-left:0}.col-offset-s-5[data-v-23564003]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-23564003]:first-child{margin-left:0}.col-offset-s-6[data-v-23564003]{margin-left:52%}.col-no-margin-s-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-23564003]:first-child{margin-left:0}.col-offset-s-7[data-v-23564003]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-23564003]:first-child{margin-left:0}.col-offset-s-8[data-v-23564003]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-23564003]:first-child{margin-left:0}.col-offset-s-9[data-v-23564003]{margin-left:78%}.col-no-margin-s-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-23564003]:first-child{margin-left:0}.col-offset-s-10[data-v-23564003]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-23564003]:first-child{margin-left:0}.col-offset-s-11[data-v-23564003]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-s-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-23564003]{display:none!important}.s-visible[data-v-23564003]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-23564003]:first-child{margin-left:0}.col-offset-m-1[data-v-23564003]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-23564003]:first-child{margin-left:0}.col-offset-m-2[data-v-23564003]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-23564003]:first-child{margin-left:0}.col-offset-m-3[data-v-23564003]{margin-left:26%}.col-no-margin-m-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-23564003]:first-child{margin-left:0}.col-offset-m-4[data-v-23564003]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-23564003]:first-child{margin-left:0}.col-offset-m-5[data-v-23564003]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-23564003]:first-child{margin-left:0}.col-offset-m-6[data-v-23564003]{margin-left:52%}.col-no-margin-m-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-23564003]:first-child{margin-left:0}.col-offset-m-7[data-v-23564003]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-23564003]:first-child{margin-left:0}.col-offset-m-8[data-v-23564003]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-23564003]:first-child{margin-left:0}.col-offset-m-9[data-v-23564003]{margin-left:78%}.col-no-margin-m-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-23564003]:first-child{margin-left:0}.col-offset-m-10[data-v-23564003]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-23564003]:first-child{margin-left:0}.col-offset-m-11[data-v-23564003]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-m-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-23564003]{display:none!important}.m-visible[data-v-23564003]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-23564003]:first-child{margin-left:0}.col-offset-l-1[data-v-23564003]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-23564003]:first-child{margin-left:0}.col-offset-l-2[data-v-23564003]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-23564003]:first-child{margin-left:0}.col-offset-l-3[data-v-23564003]{margin-left:26%}.col-no-margin-l-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-23564003]:first-child{margin-left:0}.col-offset-l-4[data-v-23564003]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-23564003]:first-child{margin-left:0}.col-offset-l-5[data-v-23564003]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-23564003]:first-child{margin-left:0}.col-offset-l-6[data-v-23564003]{margin-left:52%}.col-no-margin-l-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-23564003]:first-child{margin-left:0}.col-offset-l-7[data-v-23564003]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-23564003]:first-child{margin-left:0}.col-offset-l-8[data-v-23564003]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-23564003]:first-child{margin-left:0}.col-offset-l-9[data-v-23564003]{margin-left:78%}.col-no-margin-l-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-23564003]:first-child{margin-left:0}.col-offset-l-10[data-v-23564003]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-23564003]:first-child{margin-left:0}.col-offset-l-11[data-v-23564003]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-l-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-23564003]{display:none!important}.l-visible[data-v-23564003]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-1[data-v-23564003]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-2[data-v-23564003]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-3[data-v-23564003]{margin-left:26%}.col-no-margin-xl-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-4[data-v-23564003]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-5[data-v-23564003]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-6[data-v-23564003]{margin-left:52%}.col-no-margin-xl-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-7[data-v-23564003]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-8[data-v-23564003]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-9[data-v-23564003]{margin-left:78%}.col-no-margin-xl-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-10[data-v-23564003]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-23564003]:first-child{margin-left:0}.col-offset-xl-11[data-v-23564003]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-23564003]{display:none!important}.xl-visible[data-v-23564003]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-23564003]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-1[data-v-23564003]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-23564003]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-23564003]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-2[data-v-23564003]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-23564003]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-23564003]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-3[data-v-23564003]{margin-left:26%}.col-no-margin-xxl-3[data-v-23564003]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-23564003]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-4[data-v-23564003]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-23564003]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-23564003]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-5[data-v-23564003]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-23564003]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-23564003]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-6[data-v-23564003]{margin-left:52%}.col-no-margin-xxl-6[data-v-23564003]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-23564003]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-7[data-v-23564003]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-23564003]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-23564003]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-8[data-v-23564003]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-23564003]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-23564003]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-9[data-v-23564003]{margin-left:78%}.col-no-margin-xxl-9[data-v-23564003]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-23564003]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-10[data-v-23564003]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-23564003]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-23564003]:first-child{margin-left:0}.col-offset-xxl-11[data-v-23564003]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-23564003]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-23564003]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-23564003]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-23564003]{display:none!important}.xxl-visible[data-v-23564003]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-23564003]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-23564003]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-23564003]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-23564003]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-23564003]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-23564003]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-23564003]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-23564003]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-23564003]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-23564003]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-23564003]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-23564003]{display:none}}@media screen and (min-width:769px){.mobile[data-v-23564003]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-23564003]{display:none}}.vertical-center[data-v-23564003]{display:flex;align-items:center}.horizontal-center[data-v-23564003]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-23564003]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-23564003]{display:none!important}.no-content[data-v-23564003]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-23564003],.btn[data-v-23564003],button[data-v-23564003]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-23564003],.btn-default[type=submit][data-v-23564003],.btn.btn-primary[data-v-23564003],.btn[type=submit][data-v-23564003],button.btn-primary[data-v-23564003],button[type=submit][data-v-23564003]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-23564003],.btn-default .icon[data-v-23564003],button .icon[data-v-23564003]{margin-right:.5em}input[type=password][data-v-23564003],input[type=text][data-v-23564003]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-23564003]:focus,input[type=text][data-v-23564003]:focus{border:1px solid #35b870}button[data-v-23564003],input[data-v-23564003]{outline:none}input[type=text][data-v-23564003]:hover,textarea[data-v-23564003]:hover{border:1px solid #9cdfb0}ul[data-v-23564003]{margin:0;padding:0;list-style:none}a[data-v-23564003]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-23564003]:hover{color:#35b870}[data-v-23564003]::-webkit-scrollbar{width:.75em}[data-v-23564003]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-23564003]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-23564003]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-23564003]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-23564003],input[type=password][data-v-23564003],input[type=search][data-v-23564003],input[type=text][data-v-23564003]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-23564003]:hover,input[type=password][data-v-23564003]:hover,input[type=search][data-v-23564003]:hover,input[type=text][data-v-23564003]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-23564003]:focus,input[type=password][data-v-23564003]:focus,input[type=search][data-v-23564003]:focus,input[type=text][data-v-23564003]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-23564003],input[type=password].with-icon[data-v-23564003],input[type=search].with-icon[data-v-23564003],input[type=text].with-icon[data-v-23564003]{padding-left:.3em}input[type=search][data-v-23564003],input[type=text][data-v-23564003]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-23564003]{animation-fill-mode:both;animation-name:fadeIn-23564003;-webkit-animation-name:fadeIn-23564003}.fade-in[data-v-23564003],.fade-out[data-v-23564003]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-23564003]{animation-fill-mode:both;animation-name:fadeOut-23564003;-webkit-animation-name:fadeOut-23564003}@keyframes fadeIn-23564003{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-23564003{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-23564003]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-23564003]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-23564003]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-23564003] .modal .dialog-content{padding:1em}[data-v-23564003] .modal .body{padding:1.5em}[data-v-23564003] .modal .buttons{display:flex;flex-direction:row;justify-content:right;margin-bottom:1em;border:0;border-radius:0}[data-v-23564003] .modal .buttons button{margin-right:1em;padding:.5em 1em;border:1px solid #ddd;border-radius:1em}[data-v-23564003] .modal .buttons button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}form[data-v-23564003]{display:flex;flex-direction:column!important}form .buttons[data-v-23564003]{flex-direction:row!important}.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(769px - 1px)){.tablet.from[data-v-d7bb5c5e]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-d7bb5c5e]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-d7bb5c5e]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-d7bb5c5e]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-d7bb5c5e]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-d7bb5c5e]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-d7bb5c5e]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-d7bb5c5e]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-d7bb5c5e]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-d7bb5c5e]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-d7bb5c5e]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-d7bb5c5e]{display:none}}@media screen and (min-width:769px){.mobile[data-v-d7bb5c5e]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-d7bb5c5e]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-d7bb5c5e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-d7bb5c5e],input[type=password][data-v-d7bb5c5e],input[type=search][data-v-d7bb5c5e],input[type=text][data-v-d7bb5c5e]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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/5833.e1e503a2.css b/platypush/backend/http/webapp/dist/static/css/5833.e1e503a2.css new file mode 100644 index 00000000..574362a6 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5833.e1e503a2.css @@ -0,0 +1 @@ +.col-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-66236cc4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-66236cc4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-66236cc4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-66236cc4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-66236cc4]:first-child{margin-left:26%!important}.col-offset-3[data-v-66236cc4]:not(first-child){margin-left:30%!important}.col-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-66236cc4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-66236cc4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-66236cc4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-66236cc4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-66236cc4]:first-child{margin-left:52%!important}.col-offset-6[data-v-66236cc4]:not(first-child){margin-left:56%!important}.col-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-66236cc4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-66236cc4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-66236cc4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-66236cc4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-66236cc4]:first-child{margin-left:78%!important}.col-offset-9[data-v-66236cc4]:not(first-child){margin-left:82%!important}.col-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-66236cc4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-66236cc4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-66236cc4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-66236cc4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-1[data-v-66236cc4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-2[data-v-66236cc4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-3[data-v-66236cc4]{margin-left:26%}.col-no-margin-s-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-4[data-v-66236cc4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-5[data-v-66236cc4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-6[data-v-66236cc4]{margin-left:52%}.col-no-margin-s-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-7[data-v-66236cc4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-8[data-v-66236cc4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-9[data-v-66236cc4]{margin-left:78%}.col-no-margin-s-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-10[data-v-66236cc4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-66236cc4]:first-child{margin-left:0}.col-offset-s-11[data-v-66236cc4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-66236cc4]{display:none!important}.s-visible[data-v-66236cc4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-1[data-v-66236cc4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-2[data-v-66236cc4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-3[data-v-66236cc4]{margin-left:26%}.col-no-margin-m-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-4[data-v-66236cc4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-5[data-v-66236cc4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-6[data-v-66236cc4]{margin-left:52%}.col-no-margin-m-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-7[data-v-66236cc4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-8[data-v-66236cc4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-9[data-v-66236cc4]{margin-left:78%}.col-no-margin-m-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-10[data-v-66236cc4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-66236cc4]:first-child{margin-left:0}.col-offset-m-11[data-v-66236cc4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-66236cc4]{display:none!important}.m-visible[data-v-66236cc4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-1[data-v-66236cc4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-2[data-v-66236cc4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-3[data-v-66236cc4]{margin-left:26%}.col-no-margin-l-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-4[data-v-66236cc4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-5[data-v-66236cc4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-6[data-v-66236cc4]{margin-left:52%}.col-no-margin-l-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-7[data-v-66236cc4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-8[data-v-66236cc4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-9[data-v-66236cc4]{margin-left:78%}.col-no-margin-l-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-10[data-v-66236cc4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-66236cc4]:first-child{margin-left:0}.col-offset-l-11[data-v-66236cc4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-66236cc4]{display:none!important}.l-visible[data-v-66236cc4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-1[data-v-66236cc4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-2[data-v-66236cc4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-3[data-v-66236cc4]{margin-left:26%}.col-no-margin-xl-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-4[data-v-66236cc4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-5[data-v-66236cc4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-6[data-v-66236cc4]{margin-left:52%}.col-no-margin-xl-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-7[data-v-66236cc4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-8[data-v-66236cc4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-9[data-v-66236cc4]{margin-left:78%}.col-no-margin-xl-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-10[data-v-66236cc4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xl-11[data-v-66236cc4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-66236cc4]{display:none!important}.xl-visible[data-v-66236cc4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-66236cc4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-66236cc4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-66236cc4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-66236cc4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-66236cc4]{margin-left:26%}.col-no-margin-xxl-3[data-v-66236cc4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-66236cc4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-66236cc4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-66236cc4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-66236cc4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-66236cc4]{margin-left:52%}.col-no-margin-xxl-6[data-v-66236cc4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-66236cc4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-66236cc4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-66236cc4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-66236cc4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-66236cc4]{margin-left:78%}.col-no-margin-xxl-9[data-v-66236cc4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-66236cc4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-66236cc4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-66236cc4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-66236cc4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-66236cc4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-66236cc4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-66236cc4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-66236cc4]{display:none!important}.xxl-visible[data-v-66236cc4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-66236cc4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-66236cc4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-66236cc4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-66236cc4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-66236cc4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-66236cc4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-66236cc4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-66236cc4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-66236cc4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-66236cc4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-66236cc4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-66236cc4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-66236cc4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-66236cc4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-66236cc4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-66236cc4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-66236cc4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-66236cc4]{display:none!important}}.vertical-center[data-v-66236cc4]{display:flex;align-items:center}.horizontal-center[data-v-66236cc4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-66236cc4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-66236cc4]{display:none!important}.no-content[data-v-66236cc4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-66236cc4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-66236cc4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-66236cc4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-66236cc4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-66236cc4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-66236cc4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-66236cc4],.btn[data-v-66236cc4],button[data-v-66236cc4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-66236cc4],.btn-default[type=submit][data-v-66236cc4],.btn.btn-primary[data-v-66236cc4],.btn[type=submit][data-v-66236cc4],button.btn-primary[data-v-66236cc4],button[type=submit][data-v-66236cc4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-66236cc4],.btn-default .icon[data-v-66236cc4],button .icon[data-v-66236cc4]{margin-right:.5em}input[type=password][data-v-66236cc4],input[type=text][data-v-66236cc4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-66236cc4]:focus,input[type=text][data-v-66236cc4]:focus{border:1px solid #35b870}button[data-v-66236cc4],input[data-v-66236cc4]{outline:none}input[type=text][data-v-66236cc4]:hover,textarea[data-v-66236cc4]:hover{border:1px solid #9cdfb0}ul[data-v-66236cc4]{margin:0;padding:0;list-style:none}a[data-v-66236cc4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-66236cc4]:hover{color:#35b870}[data-v-66236cc4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-66236cc4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-66236cc4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-66236cc4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-66236cc4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-66236cc4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-66236cc4] .nav .path{cursor:pointer}.browser[data-v-66236cc4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-66236cc4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-66236cc4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-66236cc4],input[type=number][data-v-66236cc4],input[type=password][data-v-66236cc4],input[type=search][data-v-66236cc4],input[type=text][data-v-66236cc4],input[type=time][data-v-66236cc4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-66236cc4]:hover,input[type=number][data-v-66236cc4]:hover,input[type=password][data-v-66236cc4]:hover,input[type=search][data-v-66236cc4]:hover,input[type=text][data-v-66236cc4]:hover,input[type=time][data-v-66236cc4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-66236cc4]:focus,input[type=number][data-v-66236cc4]:focus,input[type=password][data-v-66236cc4]:focus,input[type=search][data-v-66236cc4]:focus,input[type=text][data-v-66236cc4]:focus,input[type=time][data-v-66236cc4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-66236cc4],input[type=number].with-icon[data-v-66236cc4],input[type=password].with-icon[data-v-66236cc4],input[type=search].with-icon[data-v-66236cc4],input[type=text].with-icon[data-v-66236cc4],input[type=time].with-icon[data-v-66236cc4]{padding-left:.3em}input[type=search][data-v-66236cc4],input[type=text][data-v-66236cc4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-66236cc4]{animation-fill-mode:both;animation-name:fadeIn-66236cc4;-webkit-animation-name:fadeIn-66236cc4}.fade-in[data-v-66236cc4],.fade-out[data-v-66236cc4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-66236cc4]{animation-fill-mode:both;animation-name:fadeOut-66236cc4;-webkit-animation-name:fadeOut-66236cc4}@keyframes fadeIn-66236cc4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-66236cc4{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-66236cc4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-66236cc4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-66236cc4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-youtube-playlist[data-v-66236cc4]{height:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/5906.52ba6beb.css b/platypush/backend/http/webapp/dist/static/css/5906.52ba6beb.css new file mode 100644 index 00000000..1a9729d2 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5906.52ba6beb.css @@ -0,0 +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}}.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/5931.e6c8f94d.css b/platypush/backend/http/webapp/dist/static/css/5931.e6c8f94d.css new file mode 100644 index 00000000..918da9c0 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/5931.e6c8f94d.css @@ -0,0 +1 @@ +.col-1[data-v-e008e860]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-1[data-v-e008e860]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-e008e860]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-e008e860]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-e008e860]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-2[data-v-e008e860]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-e008e860]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-e008e860]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-e008e860]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-3[data-v-e008e860]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-e008e860]:first-child{margin-left:26%!important}.col-offset-3[data-v-e008e860]:not(first-child){margin-left:30%!important}.col-4[data-v-e008e860]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-4[data-v-e008e860]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-e008e860]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-e008e860]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-e008e860]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-5[data-v-e008e860]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-e008e860]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-e008e860]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-e008e860]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-6[data-v-e008e860]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-e008e860]:first-child{margin-left:52%!important}.col-offset-6[data-v-e008e860]:not(first-child){margin-left:56%!important}.col-7[data-v-e008e860]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-7[data-v-e008e860]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-e008e860]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-e008e860]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-e008e860]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-8[data-v-e008e860]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-e008e860]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-e008e860]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-e008e860]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-9[data-v-e008e860]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-e008e860]:first-child{margin-left:78%!important}.col-offset-9[data-v-e008e860]:not(first-child){margin-left:82%!important}.col-10[data-v-e008e860]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-10[data-v-e008e860]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-e008e860]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-e008e860]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-e008e860]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-e008e860]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-e008e860]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-1[data-v-e008e860]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-e008e860]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-e008e860]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-2[data-v-e008e860]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-e008e860]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-e008e860]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-3[data-v-e008e860]{margin-left:26%}.col-no-margin-s-3[data-v-e008e860]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-e008e860]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-4[data-v-e008e860]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-e008e860]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-e008e860]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-5[data-v-e008e860]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-e008e860]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-e008e860]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-6[data-v-e008e860]{margin-left:52%}.col-no-margin-s-6[data-v-e008e860]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-e008e860]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-7[data-v-e008e860]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-e008e860]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-e008e860]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-8[data-v-e008e860]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-e008e860]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-e008e860]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-9[data-v-e008e860]{margin-left:78%}.col-no-margin-s-9[data-v-e008e860]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-e008e860]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-10[data-v-e008e860]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-e008e860]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-e008e860]:first-child{margin-left:0}.col-offset-s-11[data-v-e008e860]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-s-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-e008e860]{display:none!important}.s-visible[data-v-e008e860]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-e008e860]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-1[data-v-e008e860]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-e008e860]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-e008e860]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-2[data-v-e008e860]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-e008e860]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-e008e860]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-3[data-v-e008e860]{margin-left:26%}.col-no-margin-m-3[data-v-e008e860]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-e008e860]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-4[data-v-e008e860]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-e008e860]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-e008e860]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-5[data-v-e008e860]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-e008e860]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-e008e860]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-6[data-v-e008e860]{margin-left:52%}.col-no-margin-m-6[data-v-e008e860]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-e008e860]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-7[data-v-e008e860]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-e008e860]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-e008e860]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-8[data-v-e008e860]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-e008e860]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-e008e860]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-9[data-v-e008e860]{margin-left:78%}.col-no-margin-m-9[data-v-e008e860]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-e008e860]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-10[data-v-e008e860]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-e008e860]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-e008e860]:first-child{margin-left:0}.col-offset-m-11[data-v-e008e860]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-m-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-e008e860]{display:none!important}.m-visible[data-v-e008e860]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-e008e860]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-1[data-v-e008e860]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-e008e860]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-e008e860]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-2[data-v-e008e860]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-e008e860]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-e008e860]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-3[data-v-e008e860]{margin-left:26%}.col-no-margin-l-3[data-v-e008e860]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-e008e860]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-4[data-v-e008e860]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-e008e860]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-e008e860]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-5[data-v-e008e860]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-e008e860]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-e008e860]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-6[data-v-e008e860]{margin-left:52%}.col-no-margin-l-6[data-v-e008e860]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-e008e860]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-7[data-v-e008e860]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-e008e860]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-e008e860]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-8[data-v-e008e860]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-e008e860]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-e008e860]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-9[data-v-e008e860]{margin-left:78%}.col-no-margin-l-9[data-v-e008e860]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-e008e860]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-10[data-v-e008e860]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-e008e860]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-e008e860]:first-child{margin-left:0}.col-offset-l-11[data-v-e008e860]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-l-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-e008e860]{display:none!important}.l-visible[data-v-e008e860]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-e008e860]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-1[data-v-e008e860]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-e008e860]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-e008e860]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-2[data-v-e008e860]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-e008e860]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-e008e860]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-3[data-v-e008e860]{margin-left:26%}.col-no-margin-xl-3[data-v-e008e860]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-e008e860]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-4[data-v-e008e860]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-e008e860]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-e008e860]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-5[data-v-e008e860]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-e008e860]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-e008e860]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-6[data-v-e008e860]{margin-left:52%}.col-no-margin-xl-6[data-v-e008e860]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-e008e860]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-7[data-v-e008e860]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-e008e860]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-e008e860]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-8[data-v-e008e860]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-e008e860]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-e008e860]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-9[data-v-e008e860]{margin-left:78%}.col-no-margin-xl-9[data-v-e008e860]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-e008e860]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-10[data-v-e008e860]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-e008e860]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-e008e860]:first-child{margin-left:0}.col-offset-xl-11[data-v-e008e860]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-e008e860]{display:none!important}.xl-visible[data-v-e008e860]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-e008e860]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-1[data-v-e008e860]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-e008e860]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-e008e860]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-2[data-v-e008e860]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-e008e860]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-e008e860]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-3[data-v-e008e860]{margin-left:26%}.col-no-margin-xxl-3[data-v-e008e860]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-e008e860]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-4[data-v-e008e860]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-e008e860]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-e008e860]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-5[data-v-e008e860]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-e008e860]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-e008e860]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-6[data-v-e008e860]{margin-left:52%}.col-no-margin-xxl-6[data-v-e008e860]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-e008e860]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-7[data-v-e008e860]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-e008e860]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-e008e860]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-8[data-v-e008e860]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-e008e860]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-e008e860]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-9[data-v-e008e860]{margin-left:78%}.col-no-margin-xxl-9[data-v-e008e860]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-e008e860]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-10[data-v-e008e860]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-e008e860]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-e008e860]:first-child{margin-left:0}.col-offset-xxl-11[data-v-e008e860]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-e008e860]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-e008e860]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-e008e860]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-e008e860]{display:none!important}.xxl-visible[data-v-e008e860]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-e008e860]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-e008e860]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-e008e860]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-e008e860]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-e008e860]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-e008e860]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e008e860]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-e008e860]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e008e860]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-e008e860]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e008e860]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-e008e860]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e008e860]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-e008e860]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e008e860]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-e008e860]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-e008e860]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e008e860]{display:none!important}}.vertical-center[data-v-e008e860]{display:flex;align-items:center}.horizontal-center[data-v-e008e860]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-e008e860]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-e008e860]{display:none!important}.no-content[data-v-e008e860]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-e008e860]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-e008e860]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-e008e860]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-e008e860]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-e008e860]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-e008e860]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-e008e860],.btn[data-v-e008e860],button[data-v-e008e860]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-e008e860],.btn-default[type=submit][data-v-e008e860],.btn.btn-primary[data-v-e008e860],.btn[type=submit][data-v-e008e860],button.btn-primary[data-v-e008e860],button[type=submit][data-v-e008e860]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-e008e860],.btn-default .icon[data-v-e008e860],button .icon[data-v-e008e860]{margin-right:.5em}input[type=password][data-v-e008e860],input[type=text][data-v-e008e860]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-e008e860]:focus,input[type=text][data-v-e008e860]:focus{border:1px solid #35b870}button[data-v-e008e860],input[data-v-e008e860]{outline:none}input[type=text][data-v-e008e860]:hover,textarea[data-v-e008e860]:hover{border:1px solid #9cdfb0}ul[data-v-e008e860]{margin:0;padding:0;list-style:none}a[data-v-e008e860]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-e008e860]:hover{color:#35b870}[data-v-e008e860]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-e008e860]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-e008e860]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-e008e860]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-e008e860]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-e008e860] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-e008e860] .nav .path{cursor:pointer}.browser[data-v-e008e860] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-e008e860] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-e008e860]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-e008e860],input[type=number][data-v-e008e860],input[type=password][data-v-e008e860],input[type=search][data-v-e008e860],input[type=text][data-v-e008e860],input[type=time][data-v-e008e860]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-e008e860]:hover,input[type=number][data-v-e008e860]:hover,input[type=password][data-v-e008e860]:hover,input[type=search][data-v-e008e860]:hover,input[type=text][data-v-e008e860]:hover,input[type=time][data-v-e008e860]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-e008e860]:focus,input[type=number][data-v-e008e860]:focus,input[type=password][data-v-e008e860]:focus,input[type=search][data-v-e008e860]:focus,input[type=text][data-v-e008e860]:focus,input[type=time][data-v-e008e860]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-e008e860],input[type=number].with-icon[data-v-e008e860],input[type=password].with-icon[data-v-e008e860],input[type=search].with-icon[data-v-e008e860],input[type=text].with-icon[data-v-e008e860],input[type=time].with-icon[data-v-e008e860]{padding-left:.3em}input[type=search][data-v-e008e860],input[type=text][data-v-e008e860]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-e008e860]{animation-fill-mode:both;animation-name:fadeIn-e008e860;-webkit-animation-name:fadeIn-e008e860}.fade-in[data-v-e008e860],.fade-out[data-v-e008e860]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-e008e860]{animation-fill-mode:both;animation-name:fadeOut-e008e860;-webkit-animation-name:fadeOut-e008e860}@keyframes fadeIn-e008e860{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-e008e860{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-e008e860]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-e008e860]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-e008e860]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.grid[data-v-e008e860] .item{height:100px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid #ddd;cursor:pointer}.grid[data-v-e008e860] .item:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.grid[data-v-e008e860] .item .icon{height:60%;display:inline-flex;justify-content:center}.grid[data-v-e008e860] .item .icon i{font-size:40px}[data-v-e008e860] .nav{height:2.5em}.media-youtube-browser .browser[data-v-e008e860],.media-youtube-browser[data-v-e008e860]{height:100%}.media-youtube-browser .body[data-v-e008e860]{height:calc(100% - 2.5em - 2px);margin-top:2px} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6062.b6571ed4.css b/platypush/backend/http/webapp/dist/static/css/6062.b6571ed4.css new file mode 100644 index 00000000..5a098ac5 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/6062.b6571ed4.css @@ -0,0 +1 @@ +.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}}.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}}.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}}.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}}.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}}.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/6079.bfe15119.css b/platypush/backend/http/webapp/dist/static/css/6079.f88a21ae.css similarity index 69% rename from platypush/backend/http/webapp/dist/static/css/6079.bfe15119.css rename to platypush/backend/http/webapp/dist/static/css/6079.f88a21ae.css index a69d83b7..f7657d2e 100644 --- a/platypush/backend/http/webapp/dist/static/css/6079.bfe15119.css +++ b/platypush/backend/http/webapp/dist/static/css/6079.f88a21ae.css @@ -1 +1 @@ -.col-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7351a8a4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7351a8a4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7351a8a4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7351a8a4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7351a8a4],[data-v-7351a8a4] .modal-body .row .attr{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7351a8a4]:first-child,[data-v-7351a8a4] .modal-body .row .attr:first-child{margin-left:0}.col-no-margin-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7351a8a4]:first-child{margin-left:26%!important}.col-offset-3[data-v-7351a8a4]:not(first-child){margin-left:30%!important}.col-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7351a8a4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7351a8a4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7351a8a4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7351a8a4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7351a8a4]:first-child{margin-left:52%!important}.col-offset-6[data-v-7351a8a4]:not(first-child){margin-left:56%!important}.col-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7351a8a4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7351a8a4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7351a8a4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7351a8a4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7351a8a4],[data-v-7351a8a4] .modal-body .row .value{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7351a8a4]:first-child,[data-v-7351a8a4] .modal-body .row .value:first-child{margin-left:0}.col-no-margin-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7351a8a4]:first-child{margin-left:78%!important}.col-offset-9[data-v-7351a8a4]:not(first-child){margin-left:82%!important}.col-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7351a8a4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7351a8a4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7351a8a4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7351a8a4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-1[data-v-7351a8a4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-2[data-v-7351a8a4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-3[data-v-7351a8a4]{margin-left:26%}.col-no-margin-s-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-4[data-v-7351a8a4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-5[data-v-7351a8a4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-6[data-v-7351a8a4]{margin-left:52%}.col-no-margin-s-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-7[data-v-7351a8a4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-8[data-v-7351a8a4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-9[data-v-7351a8a4]{margin-left:78%}.col-no-margin-s-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-10[data-v-7351a8a4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-11[data-v-7351a8a4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7351a8a4]{display:none!important}.s-visible[data-v-7351a8a4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-1[data-v-7351a8a4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-2[data-v-7351a8a4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-3[data-v-7351a8a4]{margin-left:26%}.col-no-margin-m-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-4[data-v-7351a8a4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-5[data-v-7351a8a4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-6[data-v-7351a8a4]{margin-left:52%}.col-no-margin-m-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-7[data-v-7351a8a4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-8[data-v-7351a8a4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-9[data-v-7351a8a4]{margin-left:78%}.col-no-margin-m-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-10[data-v-7351a8a4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-11[data-v-7351a8a4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7351a8a4]{display:none!important}.m-visible[data-v-7351a8a4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-1[data-v-7351a8a4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-2[data-v-7351a8a4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-3[data-v-7351a8a4]{margin-left:26%}.col-no-margin-l-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-4[data-v-7351a8a4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-5[data-v-7351a8a4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-6[data-v-7351a8a4]{margin-left:52%}.col-no-margin-l-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-7[data-v-7351a8a4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-8[data-v-7351a8a4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-9[data-v-7351a8a4]{margin-left:78%}.col-no-margin-l-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-10[data-v-7351a8a4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-11[data-v-7351a8a4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7351a8a4]{display:none!important}.l-visible[data-v-7351a8a4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-1[data-v-7351a8a4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-2[data-v-7351a8a4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-3[data-v-7351a8a4]{margin-left:26%}.col-no-margin-xl-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-4[data-v-7351a8a4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-5[data-v-7351a8a4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-6[data-v-7351a8a4]{margin-left:52%}.col-no-margin-xl-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-7[data-v-7351a8a4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-8[data-v-7351a8a4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-9[data-v-7351a8a4]{margin-left:78%}.col-no-margin-xl-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-10[data-v-7351a8a4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-11[data-v-7351a8a4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7351a8a4]{display:none!important}.xl-visible[data-v-7351a8a4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7351a8a4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7351a8a4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7351a8a4]{margin-left:26%}.col-no-margin-xxl-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7351a8a4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7351a8a4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7351a8a4]{margin-left:52%}.col-no-margin-xxl-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7351a8a4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7351a8a4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7351a8a4]{margin-left:78%}.col-no-margin-xxl-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7351a8a4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7351a8a4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7351a8a4]{display:none!important}.xxl-visible[data-v-7351a8a4]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7351a8a4]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-7351a8a4]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7351a8a4]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-7351a8a4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7351a8a4]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-7351a8a4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7351a8a4]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-7351a8a4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7351a8a4]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-7351a8a4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7351a8a4]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-7351a8a4]{display:none}}@media screen and (min-width:769px){.mobile[data-v-7351a8a4]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7351a8a4]{display:none}}.vertical-center[data-v-7351a8a4]{display:flex;align-items:center}.horizontal-center[data-v-7351a8a4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7351a8a4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7351a8a4]{display:none!important}.no-content[data-v-7351a8a4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-7351a8a4],.btn[data-v-7351a8a4],button[data-v-7351a8a4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7351a8a4],.btn-default[type=submit][data-v-7351a8a4],.btn.btn-primary[data-v-7351a8a4],.btn[type=submit][data-v-7351a8a4],button.btn-primary[data-v-7351a8a4],button[type=submit][data-v-7351a8a4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7351a8a4],.btn-default .icon[data-v-7351a8a4],button .icon[data-v-7351a8a4]{margin-right:.5em}input[type=password][data-v-7351a8a4],input[type=text][data-v-7351a8a4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7351a8a4]:focus,input[type=text][data-v-7351a8a4]:focus{border:1px solid #35b870}button[data-v-7351a8a4],input[data-v-7351a8a4]{outline:none}input[type=text][data-v-7351a8a4]:hover,textarea[data-v-7351a8a4]:hover{border:1px solid #9cdfb0}ul[data-v-7351a8a4]{margin:0;padding:0;list-style:none}a[data-v-7351a8a4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7351a8a4]:hover{color:#35b870}[data-v-7351a8a4]::-webkit-scrollbar{width:.75em}[data-v-7351a8a4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7351a8a4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7351a8a4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-7351a8a4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-7351a8a4],input[type=password][data-v-7351a8a4],input[type=search][data-v-7351a8a4],input[type=text][data-v-7351a8a4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-7351a8a4]:hover,input[type=password][data-v-7351a8a4]:hover,input[type=search][data-v-7351a8a4]:hover,input[type=text][data-v-7351a8a4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-7351a8a4]:focus,input[type=password][data-v-7351a8a4]:focus,input[type=search][data-v-7351a8a4]:focus,input[type=text][data-v-7351a8a4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-7351a8a4],input[type=password].with-icon[data-v-7351a8a4],input[type=search].with-icon[data-v-7351a8a4],input[type=text].with-icon[data-v-7351a8a4]{padding-left:.3em}input[type=search][data-v-7351a8a4],input[type=text][data-v-7351a8a4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7351a8a4]{animation-fill-mode:both;animation-name:fadeIn-7351a8a4;-webkit-animation-name:fadeIn-7351a8a4}.fade-in[data-v-7351a8a4],.fade-out[data-v-7351a8a4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7351a8a4]{animation-fill-mode:both;animation-name:fadeOut-7351a8a4;-webkit-animation-name:fadeOut-7351a8a4}@keyframes fadeIn-7351a8a4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7351a8a4{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-7351a8a4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7351a8a4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7351a8a4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-7351a8a4]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-7351a8a4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-7351a8a4]{background:#8fefb7}.item.selected[data-v-7351a8a4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-7351a8a4]{border-top:2px solid #35b870}.item[data-v-7351a8a4]::-moz-selection{background:transparent!important}.item[data-v-7351a8a4]::selection{background:transparent!important}.item .title[data-v-7351a8a4]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-7351a8a4]{display:inline-flex;align-items:center}.item .side.right[data-v-7351a8a4]{display:inline-flex;justify-content:right}.item .actions[data-v-7351a8a4],.item .duration[data-v-7351a8a4]{display:inline-flex;align-items:center}.item .duration[data-v-7351a8a4]{font-size:.85em;opacity:.7}.item .actions[data-v-7351a8a4] button{opacity:.65}.item .icon[data-v-7351a8a4]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-7351a8a4] .dropdown-container .item{box-shadow:none}.item[data-v-7351a8a4] .dropdown-container button{background:none;border:none}.item[data-v-7351a8a4] .dropdown-container button:hover{color:#35b870}[data-v-7351a8a4] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-7351a8a4] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-7351a8a4] .table-row{flex-direction:row;align-items:center}}[data-v-7351a8a4] .table-row .title,[data-v-7351a8a4] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-7351a8a4] .table-row .title,[data-v-7351a8a4] .table-row .value{display:inline-flex}}[data-v-7351a8a4] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-7351a8a4] .table-row .title{width:30%}[data-v-7351a8a4] .table-row .value{justify-content:right}}.torrent-transfers[data-v-7351a8a4]{height:100%;background:#fff}.torrent-transfers .no-content[data-v-7351a8a4]{height:100%}[data-v-7351a8a4] .modal-body .row{display:flex;border-bottom:1px solid #e1e4e8;padding:.5em .25em;border-radius:.5em}[data-v-7351a8a4] .modal-body .row:hover{background-color:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-7351a8a4] .modal-body .row .attr{display:inline-flex}[data-v-7351a8a4] .modal-body .row .value{display:inline-flex;justify-content:right}[data-v-7351a8a4] .modal-body .row .value.nowrap{overflow:hidden;white-space:nowrap;text-overflow:clip}[data-v-7351a8a4] .modal-body .dropdown-container .row{box-shadow:none;border:none}[data-v-7351a8a4] .modal-body .dropdown-container button{border:none;background:none}[data-v-7351a8a4] .modal-body .dropdown-container button:hover{color:#35b870} \ No newline at end of file +.col-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7351a8a4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7351a8a4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7351a8a4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7351a8a4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7351a8a4],[data-v-7351a8a4] .modal-body .row .attr{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7351a8a4]:first-child,[data-v-7351a8a4] .modal-body .row .attr:first-child{margin-left:0}.col-no-margin-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7351a8a4]:first-child{margin-left:26%!important}.col-offset-3[data-v-7351a8a4]:not(first-child){margin-left:30%!important}.col-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7351a8a4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7351a8a4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7351a8a4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7351a8a4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7351a8a4]:first-child{margin-left:52%!important}.col-offset-6[data-v-7351a8a4]:not(first-child){margin-left:56%!important}.col-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7351a8a4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7351a8a4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7351a8a4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7351a8a4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7351a8a4],[data-v-7351a8a4] .modal-body .row .value{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7351a8a4]:first-child,[data-v-7351a8a4] .modal-body .row .value:first-child{margin-left:0}.col-no-margin-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7351a8a4]:first-child{margin-left:78%!important}.col-offset-9[data-v-7351a8a4]:not(first-child){margin-left:82%!important}.col-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7351a8a4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7351a8a4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7351a8a4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7351a8a4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-1[data-v-7351a8a4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-2[data-v-7351a8a4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-3[data-v-7351a8a4]{margin-left:26%}.col-no-margin-s-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-4[data-v-7351a8a4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-5[data-v-7351a8a4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-6[data-v-7351a8a4]{margin-left:52%}.col-no-margin-s-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-7[data-v-7351a8a4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-8[data-v-7351a8a4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-9[data-v-7351a8a4]{margin-left:78%}.col-no-margin-s-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-10[data-v-7351a8a4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-s-11[data-v-7351a8a4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7351a8a4]{display:none!important}.s-visible[data-v-7351a8a4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-1[data-v-7351a8a4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-2[data-v-7351a8a4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-3[data-v-7351a8a4]{margin-left:26%}.col-no-margin-m-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-4[data-v-7351a8a4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-5[data-v-7351a8a4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-6[data-v-7351a8a4]{margin-left:52%}.col-no-margin-m-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-7[data-v-7351a8a4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-8[data-v-7351a8a4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-9[data-v-7351a8a4]{margin-left:78%}.col-no-margin-m-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-10[data-v-7351a8a4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-m-11[data-v-7351a8a4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7351a8a4]{display:none!important}.m-visible[data-v-7351a8a4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-1[data-v-7351a8a4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-2[data-v-7351a8a4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-3[data-v-7351a8a4]{margin-left:26%}.col-no-margin-l-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-4[data-v-7351a8a4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-5[data-v-7351a8a4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-6[data-v-7351a8a4]{margin-left:52%}.col-no-margin-l-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-7[data-v-7351a8a4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-8[data-v-7351a8a4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-9[data-v-7351a8a4]{margin-left:78%}.col-no-margin-l-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-10[data-v-7351a8a4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-l-11[data-v-7351a8a4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7351a8a4]{display:none!important}.l-visible[data-v-7351a8a4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-1[data-v-7351a8a4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-2[data-v-7351a8a4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-3[data-v-7351a8a4]{margin-left:26%}.col-no-margin-xl-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-4[data-v-7351a8a4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-5[data-v-7351a8a4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-6[data-v-7351a8a4]{margin-left:52%}.col-no-margin-xl-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-7[data-v-7351a8a4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-8[data-v-7351a8a4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-9[data-v-7351a8a4]{margin-left:78%}.col-no-margin-xl-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-10[data-v-7351a8a4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xl-11[data-v-7351a8a4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7351a8a4]{display:none!important}.xl-visible[data-v-7351a8a4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7351a8a4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7351a8a4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7351a8a4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7351a8a4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7351a8a4]{margin-left:26%}.col-no-margin-xxl-3[data-v-7351a8a4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7351a8a4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7351a8a4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7351a8a4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7351a8a4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7351a8a4]{margin-left:52%}.col-no-margin-xxl-6[data-v-7351a8a4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7351a8a4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7351a8a4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7351a8a4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7351a8a4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7351a8a4]{margin-left:78%}.col-no-margin-xxl-9[data-v-7351a8a4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7351a8a4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7351a8a4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7351a8a4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7351a8a4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7351a8a4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7351a8a4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7351a8a4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7351a8a4]{display:none!important}.xxl-visible[data-v-7351a8a4]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-7351a8a4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-7351a8a4]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-7351a8a4]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-7351a8a4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7351a8a4]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-7351a8a4]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7351a8a4]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-7351a8a4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7351a8a4]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-7351a8a4]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7351a8a4]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-7351a8a4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7351a8a4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-7351a8a4]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7351a8a4]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-7351a8a4]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-7351a8a4]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7351a8a4]{display:none!important}}.vertical-center[data-v-7351a8a4]{display:flex;align-items:center}.horizontal-center[data-v-7351a8a4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7351a8a4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7351a8a4]{display:none!important}.no-content[data-v-7351a8a4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-7351a8a4]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-7351a8a4]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-7351a8a4]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-7351a8a4]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-7351a8a4]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-7351a8a4]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-7351a8a4],.btn[data-v-7351a8a4],button[data-v-7351a8a4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7351a8a4],.btn-default[type=submit][data-v-7351a8a4],.btn.btn-primary[data-v-7351a8a4],.btn[type=submit][data-v-7351a8a4],button.btn-primary[data-v-7351a8a4],button[type=submit][data-v-7351a8a4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7351a8a4],.btn-default .icon[data-v-7351a8a4],button .icon[data-v-7351a8a4]{margin-right:.5em}input[type=password][data-v-7351a8a4],input[type=text][data-v-7351a8a4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7351a8a4]:focus,input[type=text][data-v-7351a8a4]:focus{border:1px solid #35b870}button[data-v-7351a8a4],input[data-v-7351a8a4]{outline:none}input[type=text][data-v-7351a8a4]:hover,textarea[data-v-7351a8a4]:hover{border:1px solid #9cdfb0}ul[data-v-7351a8a4]{margin:0;padding:0;list-style:none}a[data-v-7351a8a4]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7351a8a4]:hover{color:#35b870}[data-v-7351a8a4]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-7351a8a4]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-7351a8a4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7351a8a4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7351a8a4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-7351a8a4] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-7351a8a4] .nav .path{cursor:pointer}.browser[data-v-7351a8a4] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-7351a8a4] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-7351a8a4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-7351a8a4],input[type=number][data-v-7351a8a4],input[type=password][data-v-7351a8a4],input[type=search][data-v-7351a8a4],input[type=text][data-v-7351a8a4],input[type=time][data-v-7351a8a4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-7351a8a4]:hover,input[type=number][data-v-7351a8a4]:hover,input[type=password][data-v-7351a8a4]:hover,input[type=search][data-v-7351a8a4]:hover,input[type=text][data-v-7351a8a4]:hover,input[type=time][data-v-7351a8a4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-7351a8a4]:focus,input[type=number][data-v-7351a8a4]:focus,input[type=password][data-v-7351a8a4]:focus,input[type=search][data-v-7351a8a4]:focus,input[type=text][data-v-7351a8a4]:focus,input[type=time][data-v-7351a8a4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-7351a8a4],input[type=number].with-icon[data-v-7351a8a4],input[type=password].with-icon[data-v-7351a8a4],input[type=search].with-icon[data-v-7351a8a4],input[type=text].with-icon[data-v-7351a8a4],input[type=time].with-icon[data-v-7351a8a4]{padding-left:.3em}input[type=search][data-v-7351a8a4],input[type=text][data-v-7351a8a4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7351a8a4]{animation-fill-mode:both;animation-name:fadeIn-7351a8a4;-webkit-animation-name:fadeIn-7351a8a4}.fade-in[data-v-7351a8a4],.fade-out[data-v-7351a8a4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7351a8a4]{animation-fill-mode:both;animation-name:fadeOut-7351a8a4;-webkit-animation-name:fadeOut-7351a8a4}@keyframes fadeIn-7351a8a4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7351a8a4{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-7351a8a4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7351a8a4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7351a8a4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-7351a8a4]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-7351a8a4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-7351a8a4]{background:#8fefb7}.item.selected[data-v-7351a8a4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-7351a8a4]{border-top:2px solid #35b870}.item[data-v-7351a8a4]::-moz-selection{background:transparent!important}.item[data-v-7351a8a4]::selection{background:transparent!important}.item .title[data-v-7351a8a4]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-7351a8a4]{display:inline-flex;align-items:center}.item .side.right[data-v-7351a8a4]{display:inline-flex;justify-content:right}.item .actions[data-v-7351a8a4],.item .duration[data-v-7351a8a4]{display:inline-flex;align-items:center}.item .duration[data-v-7351a8a4]{font-size:.85em;opacity:.7}.item .actions[data-v-7351a8a4] button{opacity:.65}.item .icon[data-v-7351a8a4]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-7351a8a4] .dropdown-container .item{box-shadow:none}.item[data-v-7351a8a4] .dropdown-container button{background:none;border:none}.item[data-v-7351a8a4] .dropdown-container button:hover{color:#35b870}[data-v-7351a8a4] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-7351a8a4] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-7351a8a4] .table-row{flex-direction:row;align-items:center}}[data-v-7351a8a4] .table-row .title,[data-v-7351a8a4] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-7351a8a4] .table-row .title,[data-v-7351a8a4] .table-row .value{display:inline-flex}}[data-v-7351a8a4] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-7351a8a4] .table-row .title{width:30%}[data-v-7351a8a4] .table-row .value{justify-content:right}}.torrent-transfers[data-v-7351a8a4]{height:100%;background:#fff}.torrent-transfers .no-content[data-v-7351a8a4]{height:100%}[data-v-7351a8a4] .modal-body .row{display:flex;border-bottom:1px solid #e1e4e8;padding:.5em .25em;border-radius:.5em}[data-v-7351a8a4] .modal-body .row:hover{background-color:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-7351a8a4] .modal-body .row .attr{display:inline-flex}[data-v-7351a8a4] .modal-body .row .value{display:inline-flex;justify-content:right}[data-v-7351a8a4] .modal-body .row .value.nowrap{overflow:hidden;white-space:nowrap;text-overflow:clip}[data-v-7351a8a4] .modal-body .dropdown-container .row{box-shadow:none;border:none}[data-v-7351a8a4] .modal-body .dropdown-container button{border:none;background:none}[data-v-7351a8a4] .modal-body .dropdown-container button:hover{color:#35b870} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6215.a48cbf18.css b/platypush/backend/http/webapp/dist/static/css/6215.a48cbf18.css deleted file mode 100644 index b1e428d9..00000000 --- a/platypush/backend/http/webapp/dist/static/css/6215.a48cbf18.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-12b0e65b]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-12b0e65b]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-12b0e65b]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-12b0e65b]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-12b0e65b]:first-child{margin-left:26%!important}.col-offset-3[data-v-12b0e65b]:not(first-child){margin-left:30%!important}.col-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-12b0e65b]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-12b0e65b]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-12b0e65b]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-12b0e65b]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-12b0e65b]:first-child{margin-left:52%!important}.col-offset-6[data-v-12b0e65b]:not(first-child){margin-left:56%!important}.col-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-12b0e65b]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-12b0e65b]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-12b0e65b]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-12b0e65b]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-12b0e65b]:first-child{margin-left:78%!important}.col-offset-9[data-v-12b0e65b]:not(first-child){margin-left:82%!important}.col-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-12b0e65b]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-12b0e65b]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-12b0e65b]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-12b0e65b]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-1[data-v-12b0e65b]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-2[data-v-12b0e65b]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-3[data-v-12b0e65b]{margin-left:26%}.col-no-margin-s-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-4[data-v-12b0e65b]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-5[data-v-12b0e65b]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-6[data-v-12b0e65b]{margin-left:52%}.col-no-margin-s-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-7[data-v-12b0e65b]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-8[data-v-12b0e65b]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-9[data-v-12b0e65b]{margin-left:78%}.col-no-margin-s-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-10[data-v-12b0e65b]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-s-11[data-v-12b0e65b]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-s-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-12b0e65b]{display:none!important}.s-visible[data-v-12b0e65b]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-1[data-v-12b0e65b]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-2[data-v-12b0e65b]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-3[data-v-12b0e65b]{margin-left:26%}.col-no-margin-m-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-4[data-v-12b0e65b]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-5[data-v-12b0e65b]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-6[data-v-12b0e65b]{margin-left:52%}.col-no-margin-m-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-7[data-v-12b0e65b]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-8[data-v-12b0e65b]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-9[data-v-12b0e65b]{margin-left:78%}.col-no-margin-m-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-10[data-v-12b0e65b]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-m-11[data-v-12b0e65b]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-m-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-12b0e65b]{display:none!important}.m-visible[data-v-12b0e65b]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-1[data-v-12b0e65b]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-2[data-v-12b0e65b]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-3[data-v-12b0e65b]{margin-left:26%}.col-no-margin-l-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-4[data-v-12b0e65b]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-5[data-v-12b0e65b]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-6[data-v-12b0e65b]{margin-left:52%}.col-no-margin-l-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-7[data-v-12b0e65b]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-8[data-v-12b0e65b]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-9[data-v-12b0e65b]{margin-left:78%}.col-no-margin-l-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-10[data-v-12b0e65b]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-l-11[data-v-12b0e65b]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-l-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-12b0e65b]{display:none!important}.l-visible[data-v-12b0e65b]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-1[data-v-12b0e65b]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-2[data-v-12b0e65b]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-3[data-v-12b0e65b]{margin-left:26%}.col-no-margin-xl-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-4[data-v-12b0e65b]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-5[data-v-12b0e65b]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-6[data-v-12b0e65b]{margin-left:52%}.col-no-margin-xl-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-7[data-v-12b0e65b]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-8[data-v-12b0e65b]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-9[data-v-12b0e65b]{margin-left:78%}.col-no-margin-xl-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-10[data-v-12b0e65b]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xl-11[data-v-12b0e65b]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-12b0e65b]{display:none!important}.xl-visible[data-v-12b0e65b]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-1[data-v-12b0e65b]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-12b0e65b]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-2[data-v-12b0e65b]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-12b0e65b]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-3[data-v-12b0e65b]{margin-left:26%}.col-no-margin-xxl-3[data-v-12b0e65b]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-4[data-v-12b0e65b]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-12b0e65b]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-5[data-v-12b0e65b]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-12b0e65b]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-6[data-v-12b0e65b]{margin-left:52%}.col-no-margin-xxl-6[data-v-12b0e65b]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-7[data-v-12b0e65b]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-12b0e65b]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-8[data-v-12b0e65b]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-12b0e65b]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-9[data-v-12b0e65b]{margin-left:78%}.col-no-margin-xxl-9[data-v-12b0e65b]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-10[data-v-12b0e65b]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-12b0e65b]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-12b0e65b]:first-child{margin-left:0}.col-offset-xxl-11[data-v-12b0e65b]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-12b0e65b]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-12b0e65b]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-12b0e65b]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-12b0e65b]{display:none!important}.xxl-visible[data-v-12b0e65b]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-12b0e65b]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-12b0e65b]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-12b0e65b]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-12b0e65b]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-12b0e65b]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-12b0e65b]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-12b0e65b]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-12b0e65b]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-12b0e65b]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-12b0e65b]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-12b0e65b]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-12b0e65b]{display:none}}@media screen and (min-width:769px){.mobile[data-v-12b0e65b]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-12b0e65b]{display:none}}.vertical-center[data-v-12b0e65b]{display:flex;align-items:center}.horizontal-center[data-v-12b0e65b]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-12b0e65b]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-12b0e65b]{display:none!important}.no-content[data-v-12b0e65b]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-12b0e65b],.btn[data-v-12b0e65b],button[data-v-12b0e65b]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-12b0e65b],.btn-default[type=submit][data-v-12b0e65b],.btn.btn-primary[data-v-12b0e65b],.btn[type=submit][data-v-12b0e65b],button.btn-primary[data-v-12b0e65b],button[type=submit][data-v-12b0e65b]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-12b0e65b],.btn-default .icon[data-v-12b0e65b],button .icon[data-v-12b0e65b]{margin-right:.5em}input[type=password][data-v-12b0e65b],input[type=text][data-v-12b0e65b]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-12b0e65b]:focus,input[type=text][data-v-12b0e65b]:focus{border:1px solid #35b870}button[data-v-12b0e65b],input[data-v-12b0e65b]{outline:none}input[type=text][data-v-12b0e65b]:hover,textarea[data-v-12b0e65b]:hover{border:1px solid #9cdfb0}ul[data-v-12b0e65b]{margin:0;padding:0;list-style:none}a[data-v-12b0e65b]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-12b0e65b]:hover{color:#35b870}[data-v-12b0e65b]::-webkit-scrollbar{width:.75em}[data-v-12b0e65b]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-12b0e65b]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-12b0e65b]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-12b0e65b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-12b0e65b],input[type=password][data-v-12b0e65b],input[type=search][data-v-12b0e65b],input[type=text][data-v-12b0e65b]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-12b0e65b]:hover,input[type=password][data-v-12b0e65b]:hover,input[type=search][data-v-12b0e65b]:hover,input[type=text][data-v-12b0e65b]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-12b0e65b]:focus,input[type=password][data-v-12b0e65b]:focus,input[type=search][data-v-12b0e65b]:focus,input[type=text][data-v-12b0e65b]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-12b0e65b],input[type=password].with-icon[data-v-12b0e65b],input[type=search].with-icon[data-v-12b0e65b],input[type=text].with-icon[data-v-12b0e65b]{padding-left:.3em}input[type=search][data-v-12b0e65b],input[type=text][data-v-12b0e65b]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-12b0e65b]{animation-fill-mode:both;animation-name:fadeIn-12b0e65b;-webkit-animation-name:fadeIn-12b0e65b}.fade-in[data-v-12b0e65b],.fade-out[data-v-12b0e65b]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-12b0e65b]{animation-fill-mode:both;animation-name:fadeOut-12b0e65b;-webkit-animation-name:fadeOut-12b0e65b}@keyframes fadeIn-12b0e65b{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-12b0e65b{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-12b0e65b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-12b0e65b]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-12b0e65b]: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-12b0e65b]{flex-direction:column;border-bottom:1px solid #e1e4e8}.client .controls[data-v-12b0e65b],.client .name[data-v-12b0e65b]{width:100%;display:flex}}.client.offline[data-v-12b0e65b]{color:#9b9b9b}.client[data-v-12b0e65b]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (max-width:calc(769px - 1px)){.client .name[data-v-12b0e65b]{padding-bottom:.5em}}.client .name[data-v-12b0e65b]:hover{color:#35b870;cursor:pointer}.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(769px - 1px)){.tablet.from[data-v-748fccb4]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-748fccb4]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-748fccb4]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-748fccb4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-748fccb4]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-748fccb4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-748fccb4]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-748fccb4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-748fccb4]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-748fccb4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-748fccb4]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-748fccb4]{display:none}}@media screen and (min-width:769px){.mobile[data-v-748fccb4]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-748fccb4]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-748fccb4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-748fccb4],input[type=password][data-v-748fccb4],input[type=search][data-v-748fccb4],input[type=text][data-v-748fccb4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-7bce419a]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-7bce419a]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7bce419a]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-7bce419a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7bce419a]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-7bce419a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7bce419a]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-7bce419a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7bce419a]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-7bce419a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7bce419a]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-7bce419a]{display:none}}@media screen and (min-width:769px){.mobile[data-v-7bce419a]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7bce419a]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-7bce419a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-7bce419a],input[type=password][data-v-7bce419a],input[type=search][data-v-7bce419a],input[type=text][data-v-7bce419a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-353ffa58]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-353ffa58]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-353ffa58]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-353ffa58]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-353ffa58]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-353ffa58]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-353ffa58]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-353ffa58]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-353ffa58]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-353ffa58]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-353ffa58]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-353ffa58]{display:none}}@media screen and (min-width:769px){.mobile[data-v-353ffa58]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-353ffa58]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-353ffa58]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-353ffa58],input[type=password][data-v-353ffa58],input[type=search][data-v-353ffa58],input[type=text][data-v-353ffa58]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-0e55ac54]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-0e55ac54]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0e55ac54]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-0e55ac54]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0e55ac54]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-0e55ac54]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0e55ac54]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-0e55ac54]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0e55ac54]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-0e55ac54]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0e55ac54]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-0e55ac54]{display:none}}@media screen and (min-width:769px){.mobile[data-v-0e55ac54]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0e55ac54]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-0e55ac54]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-0e55ac54],input[type=password][data-v-0e55ac54],input[type=search][data-v-0e55ac54],input[type=text][data-v-0e55ac54]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-c8d6283a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-c8d6283a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-c8d6283a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-c8d6283a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-c8d6283a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-c8d6283a]:first-child{margin-left:26%!important}.col-offset-3[data-v-c8d6283a]:not(first-child){margin-left:30%!important}.col-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-c8d6283a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-c8d6283a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-c8d6283a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-c8d6283a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-c8d6283a]:first-child{margin-left:52%!important}.col-offset-6[data-v-c8d6283a]:not(first-child){margin-left:56%!important}.col-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-c8d6283a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-c8d6283a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-c8d6283a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-c8d6283a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-c8d6283a]:first-child{margin-left:78%!important}.col-offset-9[data-v-c8d6283a]:not(first-child){margin-left:82%!important}.col-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-c8d6283a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-c8d6283a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-c8d6283a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-c8d6283a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-1[data-v-c8d6283a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-2[data-v-c8d6283a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-3[data-v-c8d6283a]{margin-left:26%}.col-no-margin-s-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-4[data-v-c8d6283a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-5[data-v-c8d6283a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-6[data-v-c8d6283a]{margin-left:52%}.col-no-margin-s-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-7[data-v-c8d6283a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-8[data-v-c8d6283a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-9[data-v-c8d6283a]{margin-left:78%}.col-no-margin-s-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-10[data-v-c8d6283a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-s-11[data-v-c8d6283a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-c8d6283a]{display:none!important}.s-visible[data-v-c8d6283a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-1[data-v-c8d6283a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-2[data-v-c8d6283a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-3[data-v-c8d6283a]{margin-left:26%}.col-no-margin-m-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-4[data-v-c8d6283a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-5[data-v-c8d6283a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-6[data-v-c8d6283a]{margin-left:52%}.col-no-margin-m-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-7[data-v-c8d6283a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-8[data-v-c8d6283a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-9[data-v-c8d6283a]{margin-left:78%}.col-no-margin-m-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-10[data-v-c8d6283a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-m-11[data-v-c8d6283a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-c8d6283a]{display:none!important}.m-visible[data-v-c8d6283a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-1[data-v-c8d6283a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-2[data-v-c8d6283a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-3[data-v-c8d6283a]{margin-left:26%}.col-no-margin-l-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-4[data-v-c8d6283a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-5[data-v-c8d6283a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-6[data-v-c8d6283a]{margin-left:52%}.col-no-margin-l-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-7[data-v-c8d6283a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-8[data-v-c8d6283a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-9[data-v-c8d6283a]{margin-left:78%}.col-no-margin-l-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-10[data-v-c8d6283a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-l-11[data-v-c8d6283a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-c8d6283a]{display:none!important}.l-visible[data-v-c8d6283a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-1[data-v-c8d6283a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-2[data-v-c8d6283a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-3[data-v-c8d6283a]{margin-left:26%}.col-no-margin-xl-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-4[data-v-c8d6283a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-5[data-v-c8d6283a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-6[data-v-c8d6283a]{margin-left:52%}.col-no-margin-xl-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-7[data-v-c8d6283a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-8[data-v-c8d6283a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-9[data-v-c8d6283a]{margin-left:78%}.col-no-margin-xl-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-10[data-v-c8d6283a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xl-11[data-v-c8d6283a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-c8d6283a]{display:none!important}.xl-visible[data-v-c8d6283a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-c8d6283a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-c8d6283a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-c8d6283a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-c8d6283a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-c8d6283a]{margin-left:26%}.col-no-margin-xxl-3[data-v-c8d6283a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-c8d6283a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-c8d6283a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-c8d6283a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-c8d6283a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-c8d6283a]{margin-left:52%}.col-no-margin-xxl-6[data-v-c8d6283a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-c8d6283a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-c8d6283a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-c8d6283a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-c8d6283a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-c8d6283a]{margin-left:78%}.col-no-margin-xxl-9[data-v-c8d6283a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-c8d6283a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-c8d6283a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-c8d6283a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-c8d6283a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-c8d6283a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-c8d6283a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-c8d6283a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-c8d6283a]{display:none!important}.xxl-visible[data-v-c8d6283a]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-c8d6283a]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-c8d6283a]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-c8d6283a]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-c8d6283a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-c8d6283a]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-c8d6283a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-c8d6283a]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-c8d6283a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-c8d6283a]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-c8d6283a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-c8d6283a]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-c8d6283a]{display:none}}@media screen and (min-width:769px){.mobile[data-v-c8d6283a]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-c8d6283a]{display:none}}.vertical-center[data-v-c8d6283a]{display:flex;align-items:center}.horizontal-center[data-v-c8d6283a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-c8d6283a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-c8d6283a]{display:none!important}.no-content[data-v-c8d6283a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-c8d6283a],.btn[data-v-c8d6283a],button[data-v-c8d6283a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-c8d6283a],.btn-default[type=submit][data-v-c8d6283a],.btn.btn-primary[data-v-c8d6283a],.btn[type=submit][data-v-c8d6283a],button.btn-primary[data-v-c8d6283a],button[type=submit][data-v-c8d6283a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-c8d6283a],.btn-default .icon[data-v-c8d6283a],button .icon[data-v-c8d6283a]{margin-right:.5em}input[type=password][data-v-c8d6283a],input[type=text][data-v-c8d6283a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-c8d6283a]:focus,input[type=text][data-v-c8d6283a]:focus{border:1px solid #35b870}button[data-v-c8d6283a],input[data-v-c8d6283a]{outline:none}input[type=text][data-v-c8d6283a]:hover,textarea[data-v-c8d6283a]:hover{border:1px solid #9cdfb0}ul[data-v-c8d6283a]{margin:0;padding:0;list-style:none}a[data-v-c8d6283a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-c8d6283a]:hover{color:#35b870}[data-v-c8d6283a]::-webkit-scrollbar{width:.75em}[data-v-c8d6283a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-c8d6283a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-c8d6283a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-c8d6283a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-c8d6283a],input[type=password][data-v-c8d6283a],input[type=search][data-v-c8d6283a],input[type=text][data-v-c8d6283a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-c8d6283a]:hover,input[type=password][data-v-c8d6283a]:hover,input[type=search][data-v-c8d6283a]:hover,input[type=text][data-v-c8d6283a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-c8d6283a]:focus,input[type=password][data-v-c8d6283a]:focus,input[type=search][data-v-c8d6283a]:focus,input[type=text][data-v-c8d6283a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-c8d6283a],input[type=password].with-icon[data-v-c8d6283a],input[type=search].with-icon[data-v-c8d6283a],input[type=text].with-icon[data-v-c8d6283a]{padding-left:.3em}input[type=search][data-v-c8d6283a],input[type=text][data-v-c8d6283a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-c8d6283a]{animation-fill-mode:both;animation-name:fadeIn-c8d6283a;-webkit-animation-name:fadeIn-c8d6283a}.fade-in[data-v-c8d6283a],.fade-out[data-v-c8d6283a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-c8d6283a]{animation-fill-mode:both;animation-name:fadeOut-c8d6283a;-webkit-animation-name:fadeOut-c8d6283a}@keyframes fadeIn-c8d6283a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-c8d6283a{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-c8d6283a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-c8d6283a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-c8d6283a]: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-c8d6283a]{width:100%;overflow:auto;background:#fff}[data-v-c8d6283a] .info .modal .content{width:90%;max-width:800px}[data-v-c8d6283a] .info .modal .body{padding:0}[data-v-c8d6283a] .info .row{display:flex;align-items:center;border-radius:.75em;padding:1em}@media screen and (max-width:calc(769px - 1px)){[data-v-c8d6283a] .info .row{flex-direction:column;border-bottom:1px solid #e1e4e8}}@media screen and (min-width:1024px){[data-v-c8d6283a] .info .row{padding:1em 2em}}[data-v-c8d6283a] .info .row .label{margin-bottom:0}[data-v-c8d6283a] .info .row .value{display:flex}@media screen and (min-width:769px){[data-v-c8d6283a] .info .row .value{justify-content:right}}@media screen and (max-width:calc(769px - 1px)){[data-v-c8d6283a] .info .row .value{width:100%;margin-left:0}[data-v-c8d6283a] .info .row .label{width:100%;display:flex}}[data-v-c8d6283a] .info .row:nth-child(odd){background:#fff}[data-v-c8d6283a] .info .row:nth-child(2n){background:#f4f5f6}[data-v-c8d6283a] .info .row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}[data-v-c8d6283a] .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-c8d6283a]{width:95vw}}@media screen and (min-width:769px){.music-snapcast-container .modal[data-v-c8d6283a]{width:70vw}}@media screen and (min-width:1024px){.music-snapcast-container .modal[data-v-c8d6283a]{width:45vw}} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/6324.157a52a9.css b/platypush/backend/http/webapp/dist/static/css/6324.bb3e2171.css similarity index 66% rename from platypush/backend/http/webapp/dist/static/css/6324.157a52a9.css rename to platypush/backend/http/webapp/dist/static/css/6324.bb3e2171.css index 5ac60fae..10e9bc24 100644 --- a/platypush/backend/http/webapp/dist/static/css/6324.157a52a9.css +++ b/platypush/backend/http/webapp/dist/static/css/6324.bb3e2171.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(769px - 1px)){.tablet.from[data-v-31c67fb5]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-31c67fb5]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-31c67fb5]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-31c67fb5]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-31c67fb5]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-31c67fb5]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-31c67fb5]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-31c67fb5]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-31c67fb5]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-31c67fb5]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-31c67fb5]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-31c67fb5]{display:none}}@media screen and (min-width:769px){.mobile[data-v-31c67fb5]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-31c67fb5]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-31c67fb5]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-31c67fb5],input[type=password][data-v-31c67fb5],input[type=search][data-v-31c67fb5],input[type=text][data-v-31c67fb5]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/65.65fe087a.css b/platypush/backend/http/webapp/dist/static/css/65.cb15a9a6.css similarity index 66% rename from platypush/backend/http/webapp/dist/static/css/65.65fe087a.css rename to platypush/backend/http/webapp/dist/static/css/65.cb15a9a6.css index d3350bef..ea159cf7 100644 --- a/platypush/backend/http/webapp/dist/static/css/65.65fe087a.css +++ b/platypush/backend/http/webapp/dist/static/css/65.cb15a9a6.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(769px - 1px)){.tablet.from{display:none}}@media screen and (min-width:1024px){.tablet.until{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none}}@media screen and (min-width:1024px){.tablet.only{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none}}@media screen and (min-width:1216px){.desktop.until{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none}}@media screen and (min-width:1216px){.desktop.only{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none}}@media screen and (min-width:1408px){.widescreen.until{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none}}@media screen and (min-width:1408px){.widescreen.only{display:none}}@media screen and (min-width:769px){.mobile{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none}}.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}.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:.75em}::-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}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number],input[type=password],input[type=search],input[type=text]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].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}}.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 .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}}.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/6523.d4d5365a.css b/platypush/backend/http/webapp/dist/static/css/6523.d6576265.css similarity index 74% rename from platypush/backend/http/webapp/dist/static/css/6523.d4d5365a.css rename to platypush/backend/http/webapp/dist/static/css/6523.d6576265.css index f40e3df3..1ca80131 100644 --- a/platypush/backend/http/webapp/dist/static/css/6523.d4d5365a.css +++ b/platypush/backend/http/webapp/dist/static/css/6523.d6576265.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(769px - 1px)){.tablet.from[data-v-24745ce0]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-24745ce0]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-24745ce0]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-24745ce0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-24745ce0]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-24745ce0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-24745ce0]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-24745ce0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-24745ce0]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-24745ce0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-24745ce0]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-24745ce0]{display:none}}@media screen and (min-width:769px){.mobile[data-v-24745ce0]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-24745ce0]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-24745ce0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-24745ce0],input[type=password][data-v-24745ce0],input[type=search][data-v-24745ce0],input[type=text][data-v-24745ce0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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.77bbcd33.css b/platypush/backend/http/webapp/dist/static/css/6561.77bbcd33.css new file mode 100644 index 00000000..17a85a85 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/6561.77bbcd33.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 .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}}.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.f0cece07.css b/platypush/backend/http/webapp/dist/static/css/6561.f0cece07.css deleted file mode 100644 index 73e9696b..00000000 --- a/platypush/backend/http/webapp/dist/static/css/6561.f0cece07.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(769px - 1px)){.tablet.from{display:none}}@media screen and (min-width:1024px){.tablet.until{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none}}@media screen and (min-width:1024px){.tablet.only{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none}}@media screen and (min-width:1216px){.desktop.until{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none}}@media screen and (min-width:1216px){.desktop.only{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none}}@media screen and (min-width:1408px){.widescreen.until{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none}}@media screen and (min-width:1408px){.widescreen.only{display:none}}@media screen and (min-width:769px){.mobile{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none}}.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}.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:.75em}::-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}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number],input[type=password],input[type=search],input[type=text]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].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}}.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/6579.04ad63dc.css b/platypush/backend/http/webapp/dist/static/css/6579.04ad63dc.css new file mode 100644 index 00000000..5ab8d259 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/6579.04ad63dc.css @@ -0,0 +1 @@ +.col-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4f7cc8e3]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4f7cc8e3]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4f7cc8e3]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4f7cc8e3]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4f7cc8e3]:first-child{margin-left:26%!important}.col-offset-3[data-v-4f7cc8e3]:not(first-child){margin-left:30%!important}.col-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4f7cc8e3]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4f7cc8e3]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4f7cc8e3]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4f7cc8e3]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4f7cc8e3]:first-child{margin-left:52%!important}.col-offset-6[data-v-4f7cc8e3]:not(first-child){margin-left:56%!important}.col-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4f7cc8e3]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4f7cc8e3]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4f7cc8e3]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4f7cc8e3]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4f7cc8e3]:first-child{margin-left:78%!important}.col-offset-9[data-v-4f7cc8e3]:not(first-child){margin-left:82%!important}.col-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4f7cc8e3]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4f7cc8e3]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4f7cc8e3]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4f7cc8e3]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-1[data-v-4f7cc8e3]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-2[data-v-4f7cc8e3]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-3[data-v-4f7cc8e3]{margin-left:26%}.col-no-margin-s-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-4[data-v-4f7cc8e3]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-5[data-v-4f7cc8e3]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-6[data-v-4f7cc8e3]{margin-left:52%}.col-no-margin-s-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-7[data-v-4f7cc8e3]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-8[data-v-4f7cc8e3]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-9[data-v-4f7cc8e3]{margin-left:78%}.col-no-margin-s-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-10[data-v-4f7cc8e3]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-s-11[data-v-4f7cc8e3]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4f7cc8e3]{display:none!important}.s-visible[data-v-4f7cc8e3]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-1[data-v-4f7cc8e3]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-2[data-v-4f7cc8e3]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-3[data-v-4f7cc8e3]{margin-left:26%}.col-no-margin-m-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-4[data-v-4f7cc8e3]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-5[data-v-4f7cc8e3]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-6[data-v-4f7cc8e3]{margin-left:52%}.col-no-margin-m-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-7[data-v-4f7cc8e3]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-8[data-v-4f7cc8e3]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-9[data-v-4f7cc8e3]{margin-left:78%}.col-no-margin-m-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-10[data-v-4f7cc8e3]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-m-11[data-v-4f7cc8e3]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4f7cc8e3]{display:none!important}.m-visible[data-v-4f7cc8e3]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-1[data-v-4f7cc8e3]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-2[data-v-4f7cc8e3]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-3[data-v-4f7cc8e3]{margin-left:26%}.col-no-margin-l-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-4[data-v-4f7cc8e3]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-5[data-v-4f7cc8e3]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-6[data-v-4f7cc8e3]{margin-left:52%}.col-no-margin-l-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-7[data-v-4f7cc8e3]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-8[data-v-4f7cc8e3]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-9[data-v-4f7cc8e3]{margin-left:78%}.col-no-margin-l-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-10[data-v-4f7cc8e3]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-l-11[data-v-4f7cc8e3]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4f7cc8e3]{display:none!important}.l-visible[data-v-4f7cc8e3]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-1[data-v-4f7cc8e3]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-2[data-v-4f7cc8e3]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-3[data-v-4f7cc8e3]{margin-left:26%}.col-no-margin-xl-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-4[data-v-4f7cc8e3]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-5[data-v-4f7cc8e3]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-6[data-v-4f7cc8e3]{margin-left:52%}.col-no-margin-xl-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-7[data-v-4f7cc8e3]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-8[data-v-4f7cc8e3]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-9[data-v-4f7cc8e3]{margin-left:78%}.col-no-margin-xl-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-10[data-v-4f7cc8e3]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xl-11[data-v-4f7cc8e3]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4f7cc8e3]{display:none!important}.xl-visible[data-v-4f7cc8e3]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4f7cc8e3]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4f7cc8e3]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4f7cc8e3]{margin-left:26%}.col-no-margin-xxl-3[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4f7cc8e3]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4f7cc8e3]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4f7cc8e3]{margin-left:52%}.col-no-margin-xxl-6[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4f7cc8e3]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4f7cc8e3]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4f7cc8e3]{margin-left:78%}.col-no-margin-xxl-9[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4f7cc8e3]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4f7cc8e3]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4f7cc8e3]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4f7cc8e3]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4f7cc8e3]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4f7cc8e3]{display:none!important}.xxl-visible[data-v-4f7cc8e3]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4f7cc8e3]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4f7cc8e3]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4f7cc8e3]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4f7cc8e3]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4f7cc8e3]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4f7cc8e3]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4f7cc8e3]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4f7cc8e3]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4f7cc8e3]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4f7cc8e3]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4f7cc8e3]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4f7cc8e3]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4f7cc8e3]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4f7cc8e3]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4f7cc8e3]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4f7cc8e3]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4f7cc8e3]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4f7cc8e3]{display:none!important}}.vertical-center[data-v-4f7cc8e3]{display:flex;align-items:center}.horizontal-center[data-v-4f7cc8e3]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4f7cc8e3]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4f7cc8e3]{display:none!important}.no-content[data-v-4f7cc8e3]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4f7cc8e3]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4f7cc8e3]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4f7cc8e3]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4f7cc8e3]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4f7cc8e3]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4f7cc8e3]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4f7cc8e3],.btn[data-v-4f7cc8e3],button[data-v-4f7cc8e3]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4f7cc8e3],.btn-default[type=submit][data-v-4f7cc8e3],.btn.btn-primary[data-v-4f7cc8e3],.btn[type=submit][data-v-4f7cc8e3],button.btn-primary[data-v-4f7cc8e3],button[type=submit][data-v-4f7cc8e3]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4f7cc8e3],.btn-default .icon[data-v-4f7cc8e3],button .icon[data-v-4f7cc8e3]{margin-right:.5em}input[type=password][data-v-4f7cc8e3],input[type=text][data-v-4f7cc8e3]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4f7cc8e3]:focus,input[type=text][data-v-4f7cc8e3]:focus{border:1px solid #35b870}button[data-v-4f7cc8e3],input[data-v-4f7cc8e3]{outline:none}input[type=text][data-v-4f7cc8e3]:hover,textarea[data-v-4f7cc8e3]:hover{border:1px solid #9cdfb0}ul[data-v-4f7cc8e3]{margin:0;padding:0;list-style:none}a[data-v-4f7cc8e3]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4f7cc8e3]:hover{color:#35b870}[data-v-4f7cc8e3]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4f7cc8e3]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4f7cc8e3]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4f7cc8e3]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4f7cc8e3]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4f7cc8e3] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4f7cc8e3] .nav .path{cursor:pointer}.browser[data-v-4f7cc8e3] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4f7cc8e3] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-4f7cc8e3]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4f7cc8e3],input[type=number][data-v-4f7cc8e3],input[type=password][data-v-4f7cc8e3],input[type=search][data-v-4f7cc8e3],input[type=text][data-v-4f7cc8e3],input[type=time][data-v-4f7cc8e3]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-4f7cc8e3]:hover,input[type=number][data-v-4f7cc8e3]:hover,input[type=password][data-v-4f7cc8e3]:hover,input[type=search][data-v-4f7cc8e3]:hover,input[type=text][data-v-4f7cc8e3]:hover,input[type=time][data-v-4f7cc8e3]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4f7cc8e3]:focus,input[type=number][data-v-4f7cc8e3]:focus,input[type=password][data-v-4f7cc8e3]:focus,input[type=search][data-v-4f7cc8e3]:focus,input[type=text][data-v-4f7cc8e3]:focus,input[type=time][data-v-4f7cc8e3]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4f7cc8e3],input[type=number].with-icon[data-v-4f7cc8e3],input[type=password].with-icon[data-v-4f7cc8e3],input[type=search].with-icon[data-v-4f7cc8e3],input[type=text].with-icon[data-v-4f7cc8e3],input[type=time].with-icon[data-v-4f7cc8e3]{padding-left:.3em}input[type=search][data-v-4f7cc8e3],input[type=text][data-v-4f7cc8e3]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4f7cc8e3]{animation-fill-mode:both;animation-name:fadeIn-4f7cc8e3;-webkit-animation-name:fadeIn-4f7cc8e3}.fade-in[data-v-4f7cc8e3],.fade-out[data-v-4f7cc8e3]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4f7cc8e3]{animation-fill-mode:both;animation-name:fadeOut-4f7cc8e3;-webkit-animation-name:fadeOut-4f7cc8e3}@keyframes fadeIn-4f7cc8e3{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4f7cc8e3{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-4f7cc8e3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4f7cc8e3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4f7cc8e3]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.media-youtube-playlists .playlist-body[data-v-4f7cc8e3],.media-youtube-playlists[data-v-4f7cc8e3]{height:100%}.media-youtube-playlists[data-v-4f7cc8e3] .playlist.item{cursor:pointer}.media-youtube-playlists[data-v-4f7cc8e3] .playlist.item .title{font-size:1.1em;margin-top:.5em}.media-youtube-playlists[data-v-4f7cc8e3] .playlist.item:hover{text-decoration:underline}.media-youtube-playlists[data-v-4f7cc8e3] .playlist.item:hover img{filter:contrast(70%)} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/669.73188f7e.css b/platypush/backend/http/webapp/dist/static/css/669.73188f7e.css new file mode 100644 index 00000000..fc1f3d98 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/669.73188f7e.css @@ -0,0 +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}}.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/7184.e666172f.css b/platypush/backend/http/webapp/dist/static/css/7184.e666172f.css deleted file mode 100644 index f2f6df9f..00000000 --- a/platypush/backend/http/webapp/dist/static/css/7184.e666172f.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(769px - 1px)){.tablet.from[data-v-42318a2b]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-42318a2b]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-42318a2b]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-42318a2b]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-42318a2b]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-42318a2b]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-42318a2b]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-42318a2b]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-42318a2b]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-42318a2b]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-42318a2b]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-42318a2b]{display:none}}@media screen and (min-width:769px){.mobile[data-v-42318a2b]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-42318a2b]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-42318a2b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-42318a2b],input[type=password][data-v-42318a2b],input[type=search][data-v-42318a2b],input[type=text][data-v-42318a2b]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-e2726892]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-1[data-v-e2726892]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-e2726892]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-e2726892]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-e2726892]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-2[data-v-e2726892]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-e2726892]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-e2726892]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-e2726892]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-3[data-v-e2726892]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-e2726892]:first-child{margin-left:26%!important}.col-offset-3[data-v-e2726892]:not(first-child){margin-left:30%!important}.col-4[data-v-e2726892]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-4[data-v-e2726892]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-e2726892]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-e2726892]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-e2726892]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-5[data-v-e2726892]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-e2726892]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-e2726892]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-e2726892]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-6[data-v-e2726892]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-e2726892]:first-child{margin-left:52%!important}.col-offset-6[data-v-e2726892]:not(first-child){margin-left:56%!important}.col-7[data-v-e2726892]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-7[data-v-e2726892]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-e2726892]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-e2726892]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-e2726892]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-8[data-v-e2726892]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-e2726892]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-e2726892]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-e2726892]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-9[data-v-e2726892]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-e2726892]:first-child{margin-left:78%!important}.col-offset-9[data-v-e2726892]:not(first-child){margin-left:82%!important}.col-10[data-v-e2726892]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-10[data-v-e2726892]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-e2726892]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-e2726892]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-e2726892]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-e2726892]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-e2726892]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-1[data-v-e2726892]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-e2726892]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-e2726892]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-2[data-v-e2726892]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-e2726892]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-e2726892]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-3[data-v-e2726892]{margin-left:26%}.col-no-margin-s-3[data-v-e2726892]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-e2726892]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-4[data-v-e2726892]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-e2726892]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-e2726892]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-5[data-v-e2726892]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-e2726892]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-e2726892]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-6[data-v-e2726892]{margin-left:52%}.col-no-margin-s-6[data-v-e2726892]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-e2726892]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-7[data-v-e2726892]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-e2726892]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-e2726892]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-8[data-v-e2726892]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-e2726892]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-e2726892]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-9[data-v-e2726892]{margin-left:78%}.col-no-margin-s-9[data-v-e2726892]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-e2726892]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-10[data-v-e2726892]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-e2726892]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-e2726892]:first-child{margin-left:0}.col-offset-s-11[data-v-e2726892]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-s-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-e2726892]{display:none!important}.s-visible[data-v-e2726892]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-e2726892]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-1[data-v-e2726892]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-e2726892]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-e2726892]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-2[data-v-e2726892]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-e2726892]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-e2726892]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-3[data-v-e2726892]{margin-left:26%}.col-no-margin-m-3[data-v-e2726892]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-e2726892]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-4[data-v-e2726892]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-e2726892]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-e2726892]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-5[data-v-e2726892]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-e2726892]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-e2726892]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-6[data-v-e2726892]{margin-left:52%}.col-no-margin-m-6[data-v-e2726892]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-e2726892]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-7[data-v-e2726892]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-e2726892]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-e2726892]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-8[data-v-e2726892]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-e2726892]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-e2726892]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-9[data-v-e2726892]{margin-left:78%}.col-no-margin-m-9[data-v-e2726892]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-e2726892]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-10[data-v-e2726892]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-e2726892]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-e2726892]:first-child{margin-left:0}.col-offset-m-11[data-v-e2726892]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-m-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-e2726892]{display:none!important}.m-visible[data-v-e2726892]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-e2726892]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-1[data-v-e2726892]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-e2726892]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-e2726892]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-2[data-v-e2726892]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-e2726892]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-e2726892]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-3[data-v-e2726892]{margin-left:26%}.col-no-margin-l-3[data-v-e2726892]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-e2726892]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-4[data-v-e2726892]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-e2726892]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-e2726892]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-5[data-v-e2726892]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-e2726892]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-e2726892]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-6[data-v-e2726892]{margin-left:52%}.col-no-margin-l-6[data-v-e2726892]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-e2726892]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-7[data-v-e2726892]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-e2726892]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-e2726892]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-8[data-v-e2726892]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-e2726892]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-e2726892]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-9[data-v-e2726892]{margin-left:78%}.col-no-margin-l-9[data-v-e2726892]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-e2726892]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-10[data-v-e2726892]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-e2726892]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-e2726892]:first-child{margin-left:0}.col-offset-l-11[data-v-e2726892]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-l-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-e2726892]{display:none!important}.l-visible[data-v-e2726892]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-e2726892]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-1[data-v-e2726892]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-e2726892]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-e2726892]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-2[data-v-e2726892]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-e2726892]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-e2726892]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-3[data-v-e2726892]{margin-left:26%}.col-no-margin-xl-3[data-v-e2726892]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-e2726892]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-4[data-v-e2726892]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-e2726892]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-e2726892]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-5[data-v-e2726892]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-e2726892]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-e2726892]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-6[data-v-e2726892]{margin-left:52%}.col-no-margin-xl-6[data-v-e2726892]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-e2726892]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-7[data-v-e2726892]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-e2726892]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-e2726892]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-8[data-v-e2726892]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-e2726892]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-e2726892]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-9[data-v-e2726892]{margin-left:78%}.col-no-margin-xl-9[data-v-e2726892]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-e2726892]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-10[data-v-e2726892]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-e2726892]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-e2726892]:first-child{margin-left:0}.col-offset-xl-11[data-v-e2726892]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-e2726892]{display:none!important}.xl-visible[data-v-e2726892]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-e2726892]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-1[data-v-e2726892]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-e2726892]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-e2726892]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-2[data-v-e2726892]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-e2726892]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-e2726892]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-3[data-v-e2726892]{margin-left:26%}.col-no-margin-xxl-3[data-v-e2726892]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-e2726892]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-4[data-v-e2726892]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-e2726892]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-e2726892]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-5[data-v-e2726892]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-e2726892]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-e2726892]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-6[data-v-e2726892]{margin-left:52%}.col-no-margin-xxl-6[data-v-e2726892]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-e2726892]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-7[data-v-e2726892]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-e2726892]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-e2726892]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-8[data-v-e2726892]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-e2726892]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-e2726892]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-9[data-v-e2726892]{margin-left:78%}.col-no-margin-xxl-9[data-v-e2726892]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-e2726892]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-10[data-v-e2726892]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-e2726892]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-e2726892]:first-child{margin-left:0}.col-offset-xxl-11[data-v-e2726892]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-e2726892]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-e2726892]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-e2726892]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-e2726892]{display:none!important}.xxl-visible[data-v-e2726892]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-e2726892]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-e2726892]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e2726892]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-e2726892]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e2726892]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-e2726892]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e2726892]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-e2726892]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e2726892]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-e2726892]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e2726892]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-e2726892]{display:none}}@media screen and (min-width:769px){.mobile[data-v-e2726892]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e2726892]{display:none}}.vertical-center[data-v-e2726892]{display:flex;align-items:center}.horizontal-center[data-v-e2726892]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-e2726892]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-e2726892]{display:none!important}.no-content[data-v-e2726892]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-e2726892],.btn[data-v-e2726892],button[data-v-e2726892]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-e2726892],.btn-default[type=submit][data-v-e2726892],.btn.btn-primary[data-v-e2726892],.btn[type=submit][data-v-e2726892],button.btn-primary[data-v-e2726892],button[type=submit][data-v-e2726892]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-e2726892],.btn-default .icon[data-v-e2726892],button .icon[data-v-e2726892]{margin-right:.5em}input[type=password][data-v-e2726892],input[type=text][data-v-e2726892]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-e2726892]:focus,input[type=text][data-v-e2726892]:focus{border:1px solid #35b870}button[data-v-e2726892],input[data-v-e2726892]{outline:none}input[type=text][data-v-e2726892]:hover,textarea[data-v-e2726892]:hover{border:1px solid #9cdfb0}ul[data-v-e2726892]{margin:0;padding:0;list-style:none}a[data-v-e2726892]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-e2726892]:hover{color:#35b870}[data-v-e2726892]::-webkit-scrollbar{width:.75em}[data-v-e2726892]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-e2726892]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-e2726892]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-e2726892]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-e2726892],input[type=password][data-v-e2726892],input[type=search][data-v-e2726892],input[type=text][data-v-e2726892]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-e2726892]:hover,input[type=password][data-v-e2726892]:hover,input[type=search][data-v-e2726892]:hover,input[type=text][data-v-e2726892]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-e2726892]:focus,input[type=password][data-v-e2726892]:focus,input[type=search][data-v-e2726892]:focus,input[type=text][data-v-e2726892]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-e2726892],input[type=password].with-icon[data-v-e2726892],input[type=search].with-icon[data-v-e2726892],input[type=text].with-icon[data-v-e2726892]{padding-left:.3em}input[type=search][data-v-e2726892],input[type=text][data-v-e2726892]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-e2726892]{animation-fill-mode:both;animation-name:fadeIn-e2726892;-webkit-animation-name:fadeIn-e2726892}.fade-in[data-v-e2726892],.fade-out[data-v-e2726892]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-e2726892]{animation-fill-mode:both;animation-name:fadeOut-e2726892;-webkit-animation-name:fadeOut-e2726892}@keyframes fadeIn-e2726892{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-e2726892{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-e2726892]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-e2726892]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-e2726892]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.controls[data-v-e2726892]{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-e2726892],.controls[data-v-e2726892]{width:100%;display:flex;align-items:center}.controls .control[data-v-e2726892]{padding-top:.25em}.controls .icon[data-v-e2726892]{opacity:.7}.controls input[type=color][data-v-e2726892]{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(769px - 1px)){.tablet.from[data-v-52168252]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-52168252]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-52168252]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-52168252]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-52168252]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-52168252]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-52168252]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-52168252]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-52168252]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-52168252]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-52168252]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-52168252]{display:none}}@media screen and (min-width:769px){.mobile[data-v-52168252]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-52168252]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-52168252]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-52168252],input[type=password][data-v-52168252],input[type=search][data-v-52168252],input[type=text][data-v-52168252]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-981c5de0]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-981c5de0]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-981c5de0]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-981c5de0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-981c5de0]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-981c5de0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-981c5de0]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-981c5de0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-981c5de0]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-981c5de0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-981c5de0]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-981c5de0]{display:none}}@media screen and (min-width:769px){.mobile[data-v-981c5de0]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-981c5de0]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-981c5de0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-981c5de0],input[type=password][data-v-981c5de0],input[type=search][data-v-981c5de0],input[type=text][data-v-981c5de0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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:rgba(0,215,80,.5);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-71cae6ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-71cae6ae]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-71cae6ae]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-71cae6ae]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-71cae6ae]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-71cae6ae]:first-child{margin-left:26%!important}.col-offset-3[data-v-71cae6ae]:not(first-child){margin-left:30%!important}.col-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-71cae6ae]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-71cae6ae]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-71cae6ae]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-71cae6ae]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-71cae6ae]:first-child{margin-left:52%!important}.col-offset-6[data-v-71cae6ae]:not(first-child){margin-left:56%!important}.col-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-71cae6ae]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-71cae6ae]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-71cae6ae]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-71cae6ae]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-71cae6ae]:first-child{margin-left:78%!important}.col-offset-9[data-v-71cae6ae]:not(first-child){margin-left:82%!important}.col-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-71cae6ae]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-71cae6ae]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-71cae6ae]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-71cae6ae]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-1[data-v-71cae6ae]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-2[data-v-71cae6ae]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-3[data-v-71cae6ae]{margin-left:26%}.col-no-margin-s-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-4[data-v-71cae6ae]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-5[data-v-71cae6ae]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-6[data-v-71cae6ae]{margin-left:52%}.col-no-margin-s-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-7[data-v-71cae6ae]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-8[data-v-71cae6ae]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-9[data-v-71cae6ae]{margin-left:78%}.col-no-margin-s-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-10[data-v-71cae6ae]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-s-11[data-v-71cae6ae]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-s-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-71cae6ae]{display:none!important}.s-visible[data-v-71cae6ae]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-1[data-v-71cae6ae]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-2[data-v-71cae6ae]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-3[data-v-71cae6ae]{margin-left:26%}.col-no-margin-m-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-4[data-v-71cae6ae]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-5[data-v-71cae6ae]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-6[data-v-71cae6ae]{margin-left:52%}.col-no-margin-m-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-7[data-v-71cae6ae]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-8[data-v-71cae6ae]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-9[data-v-71cae6ae]{margin-left:78%}.col-no-margin-m-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-10[data-v-71cae6ae]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-m-11[data-v-71cae6ae]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-m-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-71cae6ae]{display:none!important}.m-visible[data-v-71cae6ae]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-1[data-v-71cae6ae]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-2[data-v-71cae6ae]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-3[data-v-71cae6ae]{margin-left:26%}.col-no-margin-l-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-4[data-v-71cae6ae]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-5[data-v-71cae6ae]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-6[data-v-71cae6ae]{margin-left:52%}.col-no-margin-l-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-7[data-v-71cae6ae]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-8[data-v-71cae6ae]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-9[data-v-71cae6ae]{margin-left:78%}.col-no-margin-l-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-10[data-v-71cae6ae]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-l-11[data-v-71cae6ae]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-l-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-71cae6ae]{display:none!important}.l-visible[data-v-71cae6ae]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-1[data-v-71cae6ae]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-2[data-v-71cae6ae]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-3[data-v-71cae6ae]{margin-left:26%}.col-no-margin-xl-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-4[data-v-71cae6ae]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-5[data-v-71cae6ae]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-6[data-v-71cae6ae]{margin-left:52%}.col-no-margin-xl-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-7[data-v-71cae6ae]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-8[data-v-71cae6ae]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-9[data-v-71cae6ae]{margin-left:78%}.col-no-margin-xl-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-10[data-v-71cae6ae]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xl-11[data-v-71cae6ae]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-71cae6ae]{display:none!important}.xl-visible[data-v-71cae6ae]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-1[data-v-71cae6ae]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-71cae6ae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-2[data-v-71cae6ae]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-71cae6ae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-3[data-v-71cae6ae]{margin-left:26%}.col-no-margin-xxl-3[data-v-71cae6ae]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-4[data-v-71cae6ae]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-71cae6ae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-5[data-v-71cae6ae]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-71cae6ae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-6[data-v-71cae6ae]{margin-left:52%}.col-no-margin-xxl-6[data-v-71cae6ae]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-7[data-v-71cae6ae]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-71cae6ae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-8[data-v-71cae6ae]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-71cae6ae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-9[data-v-71cae6ae]{margin-left:78%}.col-no-margin-xxl-9[data-v-71cae6ae]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-10[data-v-71cae6ae]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-71cae6ae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-71cae6ae]:first-child{margin-left:0}.col-offset-xxl-11[data-v-71cae6ae]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-71cae6ae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-71cae6ae]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-71cae6ae]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-71cae6ae]{display:none!important}.xxl-visible[data-v-71cae6ae]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-71cae6ae]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-71cae6ae]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-71cae6ae]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-71cae6ae]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-71cae6ae]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-71cae6ae]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-71cae6ae]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-71cae6ae]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-71cae6ae]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-71cae6ae]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-71cae6ae]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-71cae6ae]{display:none}}@media screen and (min-width:769px){.mobile[data-v-71cae6ae]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-71cae6ae]{display:none}}.vertical-center[data-v-71cae6ae]{display:flex;align-items:center}.horizontal-center[data-v-71cae6ae]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-71cae6ae]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-71cae6ae]{display:none!important}.no-content[data-v-71cae6ae]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-71cae6ae],.btn[data-v-71cae6ae],button[data-v-71cae6ae]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-71cae6ae],.btn-default[type=submit][data-v-71cae6ae],.btn.btn-primary[data-v-71cae6ae],.btn[type=submit][data-v-71cae6ae],button.btn-primary[data-v-71cae6ae],button[type=submit][data-v-71cae6ae]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-71cae6ae],.btn-default .icon[data-v-71cae6ae],button .icon[data-v-71cae6ae]{margin-right:.5em}input[type=password][data-v-71cae6ae],input[type=text][data-v-71cae6ae]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-71cae6ae]:focus,input[type=text][data-v-71cae6ae]:focus{border:1px solid #35b870}button[data-v-71cae6ae],input[data-v-71cae6ae]{outline:none}input[type=text][data-v-71cae6ae]:hover,textarea[data-v-71cae6ae]:hover{border:1px solid #9cdfb0}ul[data-v-71cae6ae]{margin:0;padding:0;list-style:none}a[data-v-71cae6ae]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-71cae6ae]:hover{color:#35b870}[data-v-71cae6ae]::-webkit-scrollbar{width:.75em}[data-v-71cae6ae]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-71cae6ae]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-71cae6ae]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-71cae6ae]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-71cae6ae],input[type=password][data-v-71cae6ae],input[type=search][data-v-71cae6ae],input[type=text][data-v-71cae6ae]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-71cae6ae]:hover,input[type=password][data-v-71cae6ae]:hover,input[type=search][data-v-71cae6ae]:hover,input[type=text][data-v-71cae6ae]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-71cae6ae]:focus,input[type=password][data-v-71cae6ae]:focus,input[type=search][data-v-71cae6ae]:focus,input[type=text][data-v-71cae6ae]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-71cae6ae],input[type=password].with-icon[data-v-71cae6ae],input[type=search].with-icon[data-v-71cae6ae],input[type=text].with-icon[data-v-71cae6ae]{padding-left:.3em}input[type=search][data-v-71cae6ae],input[type=text][data-v-71cae6ae]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-71cae6ae]{animation-fill-mode:both;animation-name:fadeIn-71cae6ae;-webkit-animation-name:fadeIn-71cae6ae}.fade-in[data-v-71cae6ae],.fade-out[data-v-71cae6ae]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-71cae6ae]{animation-fill-mode:both;animation-name:fadeOut-71cae6ae;-webkit-animation-name:fadeOut-71cae6ae}@keyframes fadeIn-71cae6ae{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-71cae6ae{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-71cae6ae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-71cae6ae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-71cae6ae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.animation-container[data-v-71cae6ae]{width:100%}.animation-container .animation-header[data-v-71cae6ae],.animation-container .animation[data-v-71cae6ae]{padding-bottom:.5em;margin-bottom:.5em;box-shadow:0 3px 2px -1px silver}.controls[data-v-71cae6ae]{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-71cae6ae]{width:100%}.controls .row[data-v-71cae6ae]{width:100%;display:flex;align-items:center;padding:.5em 0}.controls .row>div[data-v-71cae6ae]:last-child{text-align:right}.controls .control[data-v-71cae6ae]{padding-top:.25em}.controls .lights[data-v-71cae6ae]{padding-top:.5em;width:100%}.controls .lights .row[data-v-71cae6ae]{display:flex;align-items:center}.controls .lights label[data-v-71cae6ae]{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(769px - 1px)){.tablet.from[data-v-781dd72c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-781dd72c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-781dd72c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-781dd72c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-781dd72c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-781dd72c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-781dd72c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-781dd72c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-781dd72c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-781dd72c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-781dd72c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-781dd72c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-781dd72c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-781dd72c]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-781dd72c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-781dd72c],input[type=password][data-v-781dd72c],input[type=search][data-v-781dd72c],input[type=text][data-v-781dd72c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from{display:none}}@media screen and (min-width:1024px){.tablet.until{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none}}@media screen and (min-width:1024px){.tablet.only{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none}}@media screen and (min-width:1216px){.desktop.until{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none}}@media screen and (min-width:1216px){.desktop.only{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none}}@media screen and (min-width:1408px){.widescreen.until{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none}}@media screen and (min-width:1408px){.widescreen.only{display:none}}@media screen and (min-width:769px){.mobile{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none}}.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}.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:.75em}::-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}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number],input[type=password],input[type=search],input[type=text]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].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}}.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/729.d9e08bd0.css b/platypush/backend/http/webapp/dist/static/css/729.16b20067.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/729.d9e08bd0.css rename to platypush/backend/http/webapp/dist/static/css/729.16b20067.css index 738041b2..aae327a4 100644 --- a/platypush/backend/http/webapp/dist/static/css/729.d9e08bd0.css +++ b/platypush/backend/http/webapp/dist/static/css/729.16b20067.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(769px - 1px)){.tablet.from[data-v-75599bb7]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-75599bb7]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-75599bb7]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-75599bb7]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-75599bb7]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-75599bb7]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-75599bb7]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-75599bb7]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-75599bb7]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-75599bb7]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-75599bb7]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-75599bb7]{display:none}}@media screen and (min-width:769px){.mobile[data-v-75599bb7]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-75599bb7]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-75599bb7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-75599bb7],input[type=password][data-v-75599bb7],input[type=search][data-v-75599bb7],input[type=text][data-v-75599bb7]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/746.36a26270.css b/platypush/backend/http/webapp/dist/static/css/746.18c59228.css similarity index 74% rename from platypush/backend/http/webapp/dist/static/css/746.36a26270.css rename to platypush/backend/http/webapp/dist/static/css/746.18c59228.css index 31d30efb..09535214 100644 --- a/platypush/backend/http/webapp/dist/static/css/746.36a26270.css +++ b/platypush/backend/http/webapp/dist/static/css/746.18c59228.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(769px - 1px)){.tablet.from[data-v-911495ca]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-911495ca]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-911495ca]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-911495ca]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-911495ca]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-911495ca]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-911495ca]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-911495ca]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-911495ca]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-911495ca]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-911495ca]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-911495ca]{display:none}}@media screen and (min-width:769px){.mobile[data-v-911495ca]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-911495ca]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-911495ca]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-911495ca],input[type=password][data-v-911495ca],input[type=search][data-v-911495ca],input[type=text][data-v-911495ca]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/7523.a18b735e.css b/platypush/backend/http/webapp/dist/static/css/7523.a18b735e.css deleted file mode 100644 index bfea6fcb..00000000 --- a/platypush/backend/http/webapp/dist/static/css/7523.a18b735e.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-3affff53],.entity .head .icon[data-v-3affff53]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-3affff53]:first-child,.entity .head .icon[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-1[data-v-3affff53]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-3affff53]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-3affff53]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-3affff53]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-2[data-v-3affff53]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-3affff53]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-3affff53]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-3affff53],.entity .head .value-and-toggler[data-v-3affff53]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-3affff53]:first-child,.entity .head .value-and-toggler[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-3[data-v-3affff53]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-3affff53]:first-child{margin-left:26%!important}.col-offset-3[data-v-3affff53]:not(first-child){margin-left:30%!important}.col-4[data-v-3affff53]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-4[data-v-3affff53]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-3affff53]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-3affff53]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-3affff53]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-5[data-v-3affff53]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-3affff53]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-3affff53]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-3affff53]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-6[data-v-3affff53]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-3affff53]:first-child{margin-left:52%!important}.col-offset-6[data-v-3affff53]:not(first-child){margin-left:56%!important}.col-7[data-v-3affff53]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-7[data-v-3affff53]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-3affff53]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-3affff53]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-3affff53]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-8[data-v-3affff53]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-3affff53]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-3affff53]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-3affff53]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-9[data-v-3affff53]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-3affff53]:first-child{margin-left:78%!important}.col-offset-9[data-v-3affff53]:not(first-child){margin-left:82%!important}.col-10[data-v-3affff53]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-10[data-v-3affff53]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-3affff53]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-3affff53]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-3affff53]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-3affff53]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-3affff53]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-1[data-v-3affff53]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-3affff53]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-3affff53]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-2[data-v-3affff53]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-3affff53]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-3affff53],.entity .head .value-container[data-v-3affff53]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-3affff53]:first-child,.entity .head .value-container[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-3[data-v-3affff53]{margin-left:26%}.col-no-margin-s-3[data-v-3affff53]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-3affff53]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-4[data-v-3affff53]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-3affff53]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-3affff53]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-5[data-v-3affff53]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-3affff53]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-3affff53]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-6[data-v-3affff53]{margin-left:52%}.col-no-margin-s-6[data-v-3affff53]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-3affff53]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-7[data-v-3affff53]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-3affff53]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-3affff53],.entity .head .label[data-v-3affff53]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-3affff53]:first-child,.entity .head .label[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-8[data-v-3affff53]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-3affff53]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-3affff53]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-9[data-v-3affff53]{margin-left:78%}.col-no-margin-s-9[data-v-3affff53]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-3affff53]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-10[data-v-3affff53]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-3affff53]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-3affff53]:first-child{margin-left:0}.col-offset-s-11[data-v-3affff53]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.6666666667%}.attributes .child .label[data-v-3affff53],.attributes .child .value[data-v-3affff53],.col-s-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%;margin-left:0}.attributes .child .label[data-v-3affff53]:first-child,.attributes .child .value[data-v-3affff53]:first-child,.col-s-12[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-s-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-3affff53]{display:none!important}.s-visible[data-v-3affff53]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-3affff53]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-1[data-v-3affff53]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-3affff53]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-3affff53],.entity .head .value-container[data-v-3affff53]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-3affff53]:first-child,.entity .head .value-container[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-2[data-v-3affff53]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-3affff53]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-3affff53]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-3[data-v-3affff53]{margin-left:26%}.col-no-margin-m-3[data-v-3affff53]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-3affff53]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-4[data-v-3affff53]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-3affff53]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-3affff53]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-5[data-v-3affff53]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-3affff53]{float:left;box-sizing:border-box;width:41.6666666667%}.attributes .child .label[data-v-3affff53],.attributes .child .value[data-v-3affff53],.col-m-6[data-v-3affff53]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.attributes .child .label[data-v-3affff53]:first-child,.attributes .child .value[data-v-3affff53]:first-child,.col-m-6[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-6[data-v-3affff53]{margin-left:52%}.col-no-margin-m-6[data-v-3affff53]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-3affff53]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-7[data-v-3affff53]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-3affff53]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-3affff53]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-8[data-v-3affff53]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-3affff53]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-3affff53],.entity .head .label[data-v-3affff53]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-3affff53]:first-child,.entity .head .label[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-9[data-v-3affff53]{margin-left:78%}.col-no-margin-m-9[data-v-3affff53]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-3affff53]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-10[data-v-3affff53]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-3affff53]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-3affff53]:first-child{margin-left:0}.col-offset-m-11[data-v-3affff53]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-m-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-3affff53]{display:none!important}.m-visible[data-v-3affff53]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-3affff53]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-1[data-v-3affff53]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-3affff53]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-3affff53]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-2[data-v-3affff53]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-3affff53]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-3affff53]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-3[data-v-3affff53]{margin-left:26%}.col-no-margin-l-3[data-v-3affff53]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-3affff53]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-4[data-v-3affff53]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-3affff53]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-3affff53]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-5[data-v-3affff53]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-3affff53]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-3affff53]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-6[data-v-3affff53]{margin-left:52%}.col-no-margin-l-6[data-v-3affff53]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-3affff53]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-7[data-v-3affff53]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-3affff53]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-3affff53]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-8[data-v-3affff53]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-3affff53]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-3affff53]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-9[data-v-3affff53]{margin-left:78%}.col-no-margin-l-9[data-v-3affff53]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-3affff53]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-10[data-v-3affff53]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-3affff53]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-3affff53]:first-child{margin-left:0}.col-offset-l-11[data-v-3affff53]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-l-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-3affff53]{display:none!important}.l-visible[data-v-3affff53]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-3affff53]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-1[data-v-3affff53]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-3affff53]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-3affff53]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-2[data-v-3affff53]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-3affff53]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-3affff53]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-3[data-v-3affff53]{margin-left:26%}.col-no-margin-xl-3[data-v-3affff53]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-3affff53]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-4[data-v-3affff53]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-3affff53]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-3affff53]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-5[data-v-3affff53]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-3affff53]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-3affff53]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-6[data-v-3affff53]{margin-left:52%}.col-no-margin-xl-6[data-v-3affff53]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-3affff53]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-7[data-v-3affff53]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-3affff53]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-3affff53]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-8[data-v-3affff53]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-3affff53]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-3affff53]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-9[data-v-3affff53]{margin-left:78%}.col-no-margin-xl-9[data-v-3affff53]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-3affff53]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-10[data-v-3affff53]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-3affff53]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-3affff53]:first-child{margin-left:0}.col-offset-xl-11[data-v-3affff53]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-3affff53]{display:none!important}.xl-visible[data-v-3affff53]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-3affff53]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-1[data-v-3affff53]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-3affff53]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-3affff53]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-2[data-v-3affff53]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-3affff53]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-3affff53]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-3[data-v-3affff53]{margin-left:26%}.col-no-margin-xxl-3[data-v-3affff53]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-3affff53]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-4[data-v-3affff53]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-3affff53]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-3affff53]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-5[data-v-3affff53]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-3affff53]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-3affff53]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-6[data-v-3affff53]{margin-left:52%}.col-no-margin-xxl-6[data-v-3affff53]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-3affff53]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-7[data-v-3affff53]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-3affff53]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-3affff53]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-8[data-v-3affff53]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-3affff53]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-3affff53]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-9[data-v-3affff53]{margin-left:78%}.col-no-margin-xxl-9[data-v-3affff53]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-3affff53]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-10[data-v-3affff53]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-3affff53]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-3affff53]:first-child{margin-left:0}.col-offset-xxl-11[data-v-3affff53]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-3affff53]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-3affff53]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-3affff53]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-3affff53]{display:none!important}.xxl-visible[data-v-3affff53]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-3affff53]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-3affff53]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3affff53]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-3affff53]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3affff53]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-3affff53]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3affff53]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-3affff53]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3affff53]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-3affff53]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3affff53]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-3affff53]{display:none}}@media screen and (min-width:769px){.mobile[data-v-3affff53]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3affff53]{display:none}}.vertical-center[data-v-3affff53]{display:flex;align-items:center}.horizontal-center[data-v-3affff53]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.entity .head .value-container[data-v-3affff53],.pull-right[data-v-3affff53]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-3affff53]{display:none!important}.no-content[data-v-3affff53]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-3affff53],.btn[data-v-3affff53],button[data-v-3affff53]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-3affff53],.btn-default[type=submit][data-v-3affff53],.btn.btn-primary[data-v-3affff53],.btn[type=submit][data-v-3affff53],button.btn-primary[data-v-3affff53],button[type=submit][data-v-3affff53]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-3affff53],.btn-default .icon[data-v-3affff53],button .icon[data-v-3affff53]{margin-right:.5em}input[type=password][data-v-3affff53],input[type=text][data-v-3affff53]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-3affff53]:focus,input[type=text][data-v-3affff53]:focus{border:1px solid #35b870}button[data-v-3affff53],input[data-v-3affff53]{outline:none}input[type=text][data-v-3affff53]:hover,textarea[data-v-3affff53]:hover{border:1px solid #9cdfb0}ul[data-v-3affff53]{margin:0;padding:0;list-style:none}a[data-v-3affff53]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-3affff53]:hover{color:#35b870}[data-v-3affff53]::-webkit-scrollbar{width:.75em}[data-v-3affff53]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-3affff53]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-3affff53]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-3affff53]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-3affff53],input[type=password][data-v-3affff53],input[type=search][data-v-3affff53],input[type=text][data-v-3affff53]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-3affff53]:hover,input[type=password][data-v-3affff53]:hover,input[type=search][data-v-3affff53]:hover,input[type=text][data-v-3affff53]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-3affff53]:focus,input[type=password][data-v-3affff53]:focus,input[type=search][data-v-3affff53]:focus,input[type=text][data-v-3affff53]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-3affff53],input[type=password].with-icon[data-v-3affff53],input[type=search].with-icon[data-v-3affff53],input[type=text].with-icon[data-v-3affff53]{padding-left:.3em}input[type=search][data-v-3affff53],input[type=text][data-v-3affff53]{border-radius:1em;padding:.25em .5em}.entity .body[data-v-3affff53],.fade-in[data-v-3affff53]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeIn-3affff53;-webkit-animation-name:fadeIn-3affff53}.fade-out[data-v-3affff53]{animation-duration:.5s;-webkit-animation-duration:.5s;animation-fill-mode:both;animation-name:fadeOut-3affff53;-webkit-animation-name:fadeOut-3affff53}@keyframes fadeIn-3affff53{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-3affff53{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-3affff53]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-3affff53]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-3affff53]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.entity-container[data-v-3affff53]{width:100%;display:flex;align-items:center;position:relative;padding:0!important;border-bottom:1px solid #ccc}.entity-container.with-children[data-v-3affff53]:not(.collapsed){background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity-container[data-v-3affff53]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.entity-container .adjuster[data-v-3affff53]{cursor:pointer;width:100%}.entity-container .adjuster.with-children[data-v-3affff53]{width:calc(100% - 2.5em)}@media screen and (max-width:calc(768px - 1px)){.child:not(:last-child) .entity-container[data-v-3affff53]{border-bottom:1px solid #ccc;border-radius:0}}.entity[data-v-3affff53]{width:100%;display:flex;flex-direction:column;justify-content:center}.entity.expanded[data-v-3affff53]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700;box-shadow:0 0 3px 2px silver}.entity .head[data-v-3affff53]{height:100%;display:flex;align-items:center;padding:.75em .25em;min-height:3.5em;position:relative}.entity .head.expanded[data-v-3affff53]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.entity .head .icon[data-v-3affff53]{margin-right:.5em}.entity .head .icon[data-v-3affff53]:hover{color:#35b870}.entity .head .label[data-v-3affff53]{margin-top:.25em;margin-left:.5em}.entity .head .name[data-v-3affff53]{display:inline-flex;word-break:break-all}.entity .head .name[data-v-3affff53]:hover{color:#35b870}.entity .head .value[data-v-3affff53]{font-size:1.1em;font-weight:700;word-break:break-word;opacity:.8}.entity .head .value-and-toggler[data-v-3affff53]{display:flex;align-items:center;justify-content:right;min-width:7em}.entity .head .value-and-toggler .value[data-v-3affff53]{margin-right:2.5em}.entity .head .value-container[data-v-3affff53]{min-width:7em}.entity .head .unit[data-v-3affff53]{margin-left:.2em}.entity .head .pull-right[data-v-3affff53],.entity .head .value-container[data-v-3affff53]{padding-right:.5em}.entity .head .pull-right[data-v-3affff53] .power-switch,.entity .head .value-container[data-v-3affff53] .power-switch{display:inline-flex;text-align:right;justify-content:right;flex-grow:1;margin-top:.25em}.entity .body[data-v-3affff53]{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-3affff53]{height:2em;background:none;border:none;padding:0 0 0 1em}.entity button[data-v-3affff53]:hover{color:#35b870}.collapse-toggler[data-v-3affff53]{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-3affff53]:hover{color:#35b870}.attributes .child[data-v-3affff53]{display:flex;align-items:center;padding:.5em 1em}@media screen and (max-width:calc(768px - 1px)){.attributes .child[data-v-3affff53]{flex-direction:column}}.attributes .child[data-v-3affff53]:not(:last-child){border-bottom:1px solid #e1e4e8}.attributes .child[data-v-3affff53]:hover{cursor:auto}.attributes .child.head[data-v-3affff53]{cursor:pointer}.attributes .child.head[data-v-3affff53]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.attributes .child .label[data-v-3affff53]{font-weight:700}.attributes .child .value[data-v-3affff53]{font-size:.95em;word-break:break-all}@media screen and (min-width:769px){.attributes .child .value[data-v-3affff53]{text-align:right}}.entity-container-wrapper.with-children:not(.collapsed) .children .child[data-v-3affff53]:last-child,.entity-container-wrapper.with-children[data-v-3affff53]:not(.collapsed){box-shadow:0 3px 4px 0 silver}.blink[data-v-3affff53]{animation:blink-animation-3affff53 1s steps(20,start)}@keyframes blink-animation-3affff53{0%{background:initial}50%{background:#8fefb7}to{background:initial}}.dimmer-container .head .value-container button[data-v-3affff53]{margin-right:.5em}.dimmer-container .body .row[data-v-3affff53]{display:flex;align-items:center;padding:.5em}.dimmer-container .body .row .icon[data-v-3affff53]{width:2em;text-align:center}.dimmer-container .body .row .input[data-v-3affff53]{width:calc(100% - 1em);display:flex;align-items:center}.dimmer-container .body .row .input[data-v-3affff53] .slider{margin-top:.5em}.dimmer-container .body .row .input .value input[data-v-3affff53]{width:100%} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7590.727bfece.css b/platypush/backend/http/webapp/dist/static/css/7590.b45a8e92.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/7590.727bfece.css rename to platypush/backend/http/webapp/dist/static/css/7590.b45a8e92.css index a03a92dd..bac7481c 100644 --- a/platypush/backend/http/webapp/dist/static/css/7590.727bfece.css +++ b/platypush/backend/http/webapp/dist/static/css/7590.b45a8e92.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(769px - 1px)){.tablet.from[data-v-4b2ced66]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-4b2ced66]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4b2ced66]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-4b2ced66]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4b2ced66]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-4b2ced66]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4b2ced66]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-4b2ced66]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4b2ced66]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-4b2ced66]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4b2ced66]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-4b2ced66]{display:none}}@media screen and (min-width:769px){.mobile[data-v-4b2ced66]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4b2ced66]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-4b2ced66]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-4b2ced66],input[type=password][data-v-4b2ced66],input[type=search][data-v-4b2ced66],input[type=text][data-v-4b2ced66]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/7651.9b63654f.css b/platypush/backend/http/webapp/dist/static/css/7651.9b63654f.css new file mode 100644 index 00000000..253379f8 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7651.9b63654f.css @@ -0,0 +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}}.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 diff --git a/platypush/backend/http/webapp/dist/static/css/7673.ce56995a.css b/platypush/backend/http/webapp/dist/static/css/7673.ce56995a.css deleted file mode 100644 index 43f3e485..00000000 --- a/platypush/backend/http/webapp/dist/static/css/7673.ce56995a.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4cc5023c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4cc5023c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4cc5023c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4cc5023c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4cc5023c]:first-child{margin-left:26%!important}.col-offset-3[data-v-4cc5023c]:not(first-child){margin-left:30%!important}.col-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4cc5023c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4cc5023c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4cc5023c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4cc5023c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4cc5023c]:first-child{margin-left:52%!important}.col-offset-6[data-v-4cc5023c]:not(first-child){margin-left:56%!important}.col-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4cc5023c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4cc5023c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4cc5023c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4cc5023c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4cc5023c]:first-child{margin-left:78%!important}.col-offset-9[data-v-4cc5023c]:not(first-child){margin-left:82%!important}.col-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4cc5023c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4cc5023c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4cc5023c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4cc5023c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-1[data-v-4cc5023c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-2[data-v-4cc5023c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-3[data-v-4cc5023c]{margin-left:26%}.col-no-margin-s-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-4[data-v-4cc5023c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-5[data-v-4cc5023c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-6[data-v-4cc5023c]{margin-left:52%}.col-no-margin-s-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-7[data-v-4cc5023c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-8[data-v-4cc5023c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-9[data-v-4cc5023c]{margin-left:78%}.col-no-margin-s-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-10[data-v-4cc5023c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-s-11[data-v-4cc5023c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4cc5023c]{display:none!important}.s-visible[data-v-4cc5023c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-1[data-v-4cc5023c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-2[data-v-4cc5023c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-3[data-v-4cc5023c]{margin-left:26%}.col-no-margin-m-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-4[data-v-4cc5023c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-5[data-v-4cc5023c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-6[data-v-4cc5023c]{margin-left:52%}.col-no-margin-m-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-7[data-v-4cc5023c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-8[data-v-4cc5023c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-9[data-v-4cc5023c]{margin-left:78%}.col-no-margin-m-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-10[data-v-4cc5023c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-m-11[data-v-4cc5023c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4cc5023c]{display:none!important}.m-visible[data-v-4cc5023c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-1[data-v-4cc5023c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-2[data-v-4cc5023c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-3[data-v-4cc5023c]{margin-left:26%}.col-no-margin-l-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-4[data-v-4cc5023c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-5[data-v-4cc5023c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-6[data-v-4cc5023c]{margin-left:52%}.col-no-margin-l-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-7[data-v-4cc5023c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-8[data-v-4cc5023c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-9[data-v-4cc5023c]{margin-left:78%}.col-no-margin-l-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-10[data-v-4cc5023c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-l-11[data-v-4cc5023c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4cc5023c]{display:none!important}.l-visible[data-v-4cc5023c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-1[data-v-4cc5023c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-2[data-v-4cc5023c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-3[data-v-4cc5023c]{margin-left:26%}.col-no-margin-xl-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-4[data-v-4cc5023c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-5[data-v-4cc5023c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-6[data-v-4cc5023c]{margin-left:52%}.col-no-margin-xl-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-7[data-v-4cc5023c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-8[data-v-4cc5023c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-9[data-v-4cc5023c]{margin-left:78%}.col-no-margin-xl-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-10[data-v-4cc5023c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xl-11[data-v-4cc5023c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4cc5023c]{display:none!important}.xl-visible[data-v-4cc5023c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4cc5023c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4cc5023c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4cc5023c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4cc5023c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4cc5023c]{margin-left:26%}.col-no-margin-xxl-3[data-v-4cc5023c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4cc5023c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4cc5023c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4cc5023c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4cc5023c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4cc5023c]{margin-left:52%}.col-no-margin-xxl-6[data-v-4cc5023c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4cc5023c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4cc5023c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4cc5023c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4cc5023c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4cc5023c]{margin-left:78%}.col-no-margin-xxl-9[data-v-4cc5023c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4cc5023c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4cc5023c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4cc5023c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4cc5023c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4cc5023c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4cc5023c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4cc5023c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4cc5023c]{display:none!important}.xxl-visible[data-v-4cc5023c]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4cc5023c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-4cc5023c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4cc5023c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-4cc5023c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4cc5023c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-4cc5023c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4cc5023c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-4cc5023c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4cc5023c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-4cc5023c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4cc5023c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-4cc5023c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-4cc5023c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4cc5023c]{display:none}}.vertical-center[data-v-4cc5023c]{display:flex;align-items:center}.horizontal-center[data-v-4cc5023c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4cc5023c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4cc5023c]{display:none!important}.no-content[data-v-4cc5023c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-4cc5023c],.btn[data-v-4cc5023c],button[data-v-4cc5023c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4cc5023c],.btn-default[type=submit][data-v-4cc5023c],.btn.btn-primary[data-v-4cc5023c],.btn[type=submit][data-v-4cc5023c],button.btn-primary[data-v-4cc5023c],button[type=submit][data-v-4cc5023c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4cc5023c],.btn-default .icon[data-v-4cc5023c],button .icon[data-v-4cc5023c]{margin-right:.5em}input[type=password][data-v-4cc5023c],input[type=text][data-v-4cc5023c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4cc5023c]:focus,input[type=text][data-v-4cc5023c]:focus{border:1px solid #35b870}button[data-v-4cc5023c],input[data-v-4cc5023c]{outline:none}input[type=text][data-v-4cc5023c]:hover,textarea[data-v-4cc5023c]:hover{border:1px solid #9cdfb0}ul[data-v-4cc5023c]{margin:0;padding:0;list-style:none}a[data-v-4cc5023c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4cc5023c]:hover{color:#35b870}[data-v-4cc5023c]::-webkit-scrollbar{width:.75em}[data-v-4cc5023c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4cc5023c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4cc5023c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-4cc5023c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-4cc5023c],input[type=password][data-v-4cc5023c],input[type=search][data-v-4cc5023c],input[type=text][data-v-4cc5023c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-4cc5023c]:hover,input[type=password][data-v-4cc5023c]:hover,input[type=search][data-v-4cc5023c]:hover,input[type=text][data-v-4cc5023c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-4cc5023c]:focus,input[type=password][data-v-4cc5023c]:focus,input[type=search][data-v-4cc5023c]:focus,input[type=text][data-v-4cc5023c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-4cc5023c],input[type=password].with-icon[data-v-4cc5023c],input[type=search].with-icon[data-v-4cc5023c],input[type=text].with-icon[data-v-4cc5023c]{padding-left:.3em}input[type=search][data-v-4cc5023c],input[type=text][data-v-4cc5023c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4cc5023c]{animation-fill-mode:both;animation-name:fadeIn-4cc5023c;-webkit-animation-name:fadeIn-4cc5023c}.fade-in[data-v-4cc5023c],.fade-out[data-v-4cc5023c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4cc5023c]{animation-fill-mode:both;animation-name:fadeOut-4cc5023c;-webkit-animation-name:fadeOut-4cc5023c}@keyframes fadeIn-4cc5023c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4cc5023c{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-4cc5023c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4cc5023c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4cc5023c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-4cc5023c]{min-height:calc(100vh - 2em)}button[data-v-4cc5023c]{background:none;border:none;box-shadow:none}button[data-v-4cc5023c]:hover{color:#35b870}hgroup[data-v-4cc5023c]{flex-grow:1}h1[data-v-4cc5023c]{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-4cc5023c]{border-radius:.5em .5em 0 0}}h2[data-v-4cc5023c]{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-4cc5023c]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-4cc5023c]{margin-top:.5em;padding-top:.5em}section.response[data-v-4cc5023c]{flex-grow:1;max-height:40em}section.response .output[data-v-4cc5023c]{overflow:auto}.buttons[data-v-4cc5023c]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-4cc5023c]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-4cc5023c]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-4cc5023c]{background:#fff}header .buttons[data-v-4cc5023c]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-4cc5023c]{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-4cc5023c] .doc blockquote{margin-left:0}textarea[data-v-4cc5023c]{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-4cc5023c]:hover{border:1px solid #38cf80}textarea[data-v-4cc5023c]:focus{border:1px solid #32b646}form[data-v-4cc5023c]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-4cc5023c]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-4cc5023c]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-4cc5023c]{width:80%;max-width:60em}}.raw .first-row button[data-v-4cc5023c]{margin-left:0}.args-list[data-v-4cc5023c]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-4cc5023c]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-4cc5023c]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-4cc5023c]{width:30em}}.args-list .arg[data-v-4cc5023c]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-4cc5023c]{width:100%}}.args-list .arg .required-flag[data-v-4cc5023c]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-4cc5023c]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-4cc5023c]{width:100%}.args-body[data-v-4cc5023c]{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-4cc5023c]{flex-direction:column}}.add-arg[data-v-4cc5023c]{width:100%}.add-arg button[data-v-4cc5023c]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-4cc5023c]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-4cc5023c]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-4cc5023c]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-4cc5023c]{width:100%}.doc-container[data-v-4cc5023c],.response[data-v-4cc5023c]{flex-grow:1}.doc-container h2[data-v-4cc5023c],.response h2[data-v-4cc5023c]{display:inline-flex}.doc-container h2 .title[data-v-4cc5023c],.response h2 .title[data-v-4cc5023c]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-4cc5023c],.response h2 .buttons[data-v-4cc5023c]{width:2em}.doc-container h2 .buttons button[data-v-4cc5023c],.response h2 .buttons button[data-v-4cc5023c]{padding:0}.output[data-v-4cc5023c]{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-4cc5023c]{color:red}textarea.curl-snippet[data-v-4cc5023c]{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-4cc5023c]{max-height:50vh;display:flex;flex-direction:column}@media screen and (min-width:769px){.argdoc-container[data-v-4cc5023c]{width:calc(100% - 22em)}}@media screen and (min-width:1024px){.argdoc-container[data-v-4cc5023c]{width:calc(100% - 32em)}}.argdoc-container .argname[data-v-4cc5023c]{font-weight:700;margin-left:.25em}.argdoc-container .doc[data-v-4cc5023c]{width:100%;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.argdoc-container.widescreen[data-v-4cc5023c]{display:none}}.argdoc-container.mobile[data-v-4cc5023c]{width:100%}@media screen and (min-width:769px){.argdoc-container.mobile[data-v-4cc5023c]{display:none}}.argdoc-container .flag[data-v-4cc5023c]{font-size:.9em;margin-left:.5em;margin-bottom:.2em}.argdoc-container .flag.required[data-v-4cc5023c]{color:red}.argdoc-container .flag.optional[data-v-4cc5023c]{color:#32b646}.col-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-a3cd62a0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-a3cd62a0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-a3cd62a0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-a3cd62a0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-a3cd62a0]:first-child{margin-left:26%!important}.col-offset-3[data-v-a3cd62a0]:not(first-child){margin-left:30%!important}.col-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-a3cd62a0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-a3cd62a0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-a3cd62a0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-a3cd62a0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-a3cd62a0]:first-child{margin-left:52%!important}.col-offset-6[data-v-a3cd62a0]:not(first-child){margin-left:56%!important}.col-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-a3cd62a0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-a3cd62a0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-a3cd62a0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-a3cd62a0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-a3cd62a0]:first-child{margin-left:78%!important}.col-offset-9[data-v-a3cd62a0]:not(first-child){margin-left:82%!important}.col-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-a3cd62a0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-a3cd62a0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-a3cd62a0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-a3cd62a0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-1[data-v-a3cd62a0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-2[data-v-a3cd62a0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-3[data-v-a3cd62a0]{margin-left:26%}.col-no-margin-s-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-4[data-v-a3cd62a0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-5[data-v-a3cd62a0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-6[data-v-a3cd62a0]{margin-left:52%}.col-no-margin-s-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-7[data-v-a3cd62a0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-8[data-v-a3cd62a0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-9[data-v-a3cd62a0]{margin-left:78%}.col-no-margin-s-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-10[data-v-a3cd62a0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-s-11[data-v-a3cd62a0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-a3cd62a0]{display:none!important}.s-visible[data-v-a3cd62a0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-1[data-v-a3cd62a0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-2[data-v-a3cd62a0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-3[data-v-a3cd62a0]{margin-left:26%}.col-no-margin-m-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-4[data-v-a3cd62a0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-5[data-v-a3cd62a0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-6[data-v-a3cd62a0]{margin-left:52%}.col-no-margin-m-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-7[data-v-a3cd62a0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-8[data-v-a3cd62a0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-9[data-v-a3cd62a0]{margin-left:78%}.col-no-margin-m-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-10[data-v-a3cd62a0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-m-11[data-v-a3cd62a0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-a3cd62a0]{display:none!important}.m-visible[data-v-a3cd62a0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-1[data-v-a3cd62a0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-2[data-v-a3cd62a0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-3[data-v-a3cd62a0]{margin-left:26%}.col-no-margin-l-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-4[data-v-a3cd62a0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-5[data-v-a3cd62a0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-6[data-v-a3cd62a0]{margin-left:52%}.col-no-margin-l-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-7[data-v-a3cd62a0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-8[data-v-a3cd62a0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-9[data-v-a3cd62a0]{margin-left:78%}.col-no-margin-l-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-10[data-v-a3cd62a0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-l-11[data-v-a3cd62a0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-a3cd62a0]{display:none!important}.l-visible[data-v-a3cd62a0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-1[data-v-a3cd62a0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-2[data-v-a3cd62a0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-3[data-v-a3cd62a0]{margin-left:26%}.col-no-margin-xl-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-4[data-v-a3cd62a0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-5[data-v-a3cd62a0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-6[data-v-a3cd62a0]{margin-left:52%}.col-no-margin-xl-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-7[data-v-a3cd62a0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-8[data-v-a3cd62a0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-9[data-v-a3cd62a0]{margin-left:78%}.col-no-margin-xl-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-10[data-v-a3cd62a0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xl-11[data-v-a3cd62a0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-a3cd62a0]{display:none!important}.xl-visible[data-v-a3cd62a0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-a3cd62a0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-a3cd62a0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-a3cd62a0]{margin-left:26%}.col-no-margin-xxl-3[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-a3cd62a0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-a3cd62a0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-a3cd62a0]{margin-left:52%}.col-no-margin-xxl-6[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-a3cd62a0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-a3cd62a0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-a3cd62a0]{margin-left:78%}.col-no-margin-xxl-9[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-a3cd62a0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-a3cd62a0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-a3cd62a0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-a3cd62a0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-a3cd62a0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-a3cd62a0]{display:none!important}.xxl-visible[data-v-a3cd62a0]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-a3cd62a0]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-a3cd62a0]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a3cd62a0]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-a3cd62a0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a3cd62a0]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-a3cd62a0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a3cd62a0]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-a3cd62a0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a3cd62a0]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-a3cd62a0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a3cd62a0]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-a3cd62a0]{display:none}}@media screen and (min-width:769px){.mobile[data-v-a3cd62a0]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a3cd62a0]{display:none}}.vertical-center[data-v-a3cd62a0]{display:flex;align-items:center}.horizontal-center[data-v-a3cd62a0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-a3cd62a0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-a3cd62a0]{display:none!important}.no-content[data-v-a3cd62a0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-a3cd62a0],.btn[data-v-a3cd62a0],button[data-v-a3cd62a0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-a3cd62a0],.btn-default[type=submit][data-v-a3cd62a0],.btn.btn-primary[data-v-a3cd62a0],.btn[type=submit][data-v-a3cd62a0],button.btn-primary[data-v-a3cd62a0],button[type=submit][data-v-a3cd62a0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-a3cd62a0],.btn-default .icon[data-v-a3cd62a0],button .icon[data-v-a3cd62a0]{margin-right:.5em}input[type=password][data-v-a3cd62a0],input[type=text][data-v-a3cd62a0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-a3cd62a0]:focus,input[type=text][data-v-a3cd62a0]:focus{border:1px solid #35b870}button[data-v-a3cd62a0],input[data-v-a3cd62a0]{outline:none}input[type=text][data-v-a3cd62a0]:hover,textarea[data-v-a3cd62a0]:hover{border:1px solid #9cdfb0}ul[data-v-a3cd62a0]{margin:0;padding:0;list-style:none}a[data-v-a3cd62a0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-a3cd62a0]:hover{color:#35b870}[data-v-a3cd62a0]::-webkit-scrollbar{width:.75em}[data-v-a3cd62a0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-a3cd62a0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-a3cd62a0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-a3cd62a0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-a3cd62a0],input[type=password][data-v-a3cd62a0],input[type=search][data-v-a3cd62a0],input[type=text][data-v-a3cd62a0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-a3cd62a0]:hover,input[type=password][data-v-a3cd62a0]:hover,input[type=search][data-v-a3cd62a0]:hover,input[type=text][data-v-a3cd62a0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-a3cd62a0]:focus,input[type=password][data-v-a3cd62a0]:focus,input[type=search][data-v-a3cd62a0]:focus,input[type=text][data-v-a3cd62a0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-a3cd62a0],input[type=password].with-icon[data-v-a3cd62a0],input[type=search].with-icon[data-v-a3cd62a0],input[type=text].with-icon[data-v-a3cd62a0]{padding-left:.3em}input[type=search][data-v-a3cd62a0],input[type=text][data-v-a3cd62a0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-a3cd62a0]{animation-fill-mode:both;animation-name:fadeIn-a3cd62a0;-webkit-animation-name:fadeIn-a3cd62a0}.fade-in[data-v-a3cd62a0],.fade-out[data-v-a3cd62a0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-a3cd62a0]{animation-fill-mode:both;animation-name:fadeOut-a3cd62a0;-webkit-animation-name:fadeOut-a3cd62a0}@keyframes fadeIn-a3cd62a0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-a3cd62a0{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-a3cd62a0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-a3cd62a0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-a3cd62a0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-a3cd62a0]{min-height:calc(100vh - 2em)}button[data-v-a3cd62a0]{background:none;border:none;box-shadow:none}button[data-v-a3cd62a0]:hover{color:#35b870}hgroup[data-v-a3cd62a0]{flex-grow:1}h1[data-v-a3cd62a0]{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-a3cd62a0]{border-radius:.5em .5em 0 0}}h2[data-v-a3cd62a0]{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-a3cd62a0]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-a3cd62a0]{margin-top:.5em;padding-top:.5em}section.response[data-v-a3cd62a0]{flex-grow:1;max-height:40em}section.response .output[data-v-a3cd62a0]{overflow:auto}.buttons[data-v-a3cd62a0]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-a3cd62a0]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-a3cd62a0]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-a3cd62a0]{background:#fff}header .buttons[data-v-a3cd62a0]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-a3cd62a0]{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-a3cd62a0] .doc blockquote{margin-left:0}textarea[data-v-a3cd62a0]{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-a3cd62a0]:hover{border:1px solid #38cf80}textarea[data-v-a3cd62a0]:focus{border:1px solid #32b646}form[data-v-a3cd62a0]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-a3cd62a0]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-a3cd62a0]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-a3cd62a0]{width:80%;max-width:60em}}.raw .first-row button[data-v-a3cd62a0]{margin-left:0}.args-list[data-v-a3cd62a0]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-a3cd62a0]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-a3cd62a0]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-a3cd62a0]{width:30em}}.args-list .arg[data-v-a3cd62a0]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-a3cd62a0]{width:100%}}.args-list .arg .required-flag[data-v-a3cd62a0]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-a3cd62a0]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-a3cd62a0]{width:100%}.args-body[data-v-a3cd62a0]{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-a3cd62a0]{flex-direction:column}}.add-arg[data-v-a3cd62a0]{width:100%}.add-arg button[data-v-a3cd62a0]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-a3cd62a0]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-a3cd62a0]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-a3cd62a0]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-a3cd62a0]{width:100%}.doc-container[data-v-a3cd62a0],.response[data-v-a3cd62a0]{flex-grow:1}.doc-container h2[data-v-a3cd62a0],.response h2[data-v-a3cd62a0]{display:inline-flex}.doc-container h2 .title[data-v-a3cd62a0],.response h2 .title[data-v-a3cd62a0]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-a3cd62a0],.response h2 .buttons[data-v-a3cd62a0]{width:2em}.doc-container h2 .buttons button[data-v-a3cd62a0],.response h2 .buttons button[data-v-a3cd62a0]{padding:0}.output[data-v-a3cd62a0]{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-a3cd62a0]{color:red}textarea.curl-snippet[data-v-a3cd62a0]{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-387de0e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-387de0e8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-387de0e8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-387de0e8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-387de0e8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-387de0e8]:first-child{margin-left:26%!important}.col-offset-3[data-v-387de0e8]:not(first-child){margin-left:30%!important}.col-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-387de0e8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-387de0e8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-387de0e8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-387de0e8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-387de0e8]:first-child{margin-left:52%!important}.col-offset-6[data-v-387de0e8]:not(first-child){margin-left:56%!important}.col-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-387de0e8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-387de0e8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-387de0e8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-387de0e8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-387de0e8]:first-child{margin-left:78%!important}.col-offset-9[data-v-387de0e8]:not(first-child){margin-left:82%!important}.col-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-387de0e8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-387de0e8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-387de0e8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-387de0e8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-1[data-v-387de0e8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-2[data-v-387de0e8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-3[data-v-387de0e8]{margin-left:26%}.col-no-margin-s-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-4[data-v-387de0e8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-5[data-v-387de0e8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-6[data-v-387de0e8]{margin-left:52%}.col-no-margin-s-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-7[data-v-387de0e8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-8[data-v-387de0e8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-9[data-v-387de0e8]{margin-left:78%}.col-no-margin-s-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-10[data-v-387de0e8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-387de0e8]:first-child{margin-left:0}.col-offset-s-11[data-v-387de0e8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-387de0e8]{display:none!important}.s-visible[data-v-387de0e8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-1[data-v-387de0e8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-2[data-v-387de0e8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-3[data-v-387de0e8]{margin-left:26%}.col-no-margin-m-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-4[data-v-387de0e8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-5[data-v-387de0e8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-6[data-v-387de0e8]{margin-left:52%}.col-no-margin-m-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-7[data-v-387de0e8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-8[data-v-387de0e8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-9[data-v-387de0e8]{margin-left:78%}.col-no-margin-m-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-10[data-v-387de0e8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-387de0e8]:first-child{margin-left:0}.col-offset-m-11[data-v-387de0e8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-387de0e8]{display:none!important}.m-visible[data-v-387de0e8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-1[data-v-387de0e8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-2[data-v-387de0e8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-3[data-v-387de0e8]{margin-left:26%}.col-no-margin-l-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-4[data-v-387de0e8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-5[data-v-387de0e8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-6[data-v-387de0e8]{margin-left:52%}.col-no-margin-l-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-7[data-v-387de0e8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-8[data-v-387de0e8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-9[data-v-387de0e8]{margin-left:78%}.col-no-margin-l-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-10[data-v-387de0e8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-387de0e8]:first-child{margin-left:0}.col-offset-l-11[data-v-387de0e8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-387de0e8]{display:none!important}.l-visible[data-v-387de0e8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-1[data-v-387de0e8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-2[data-v-387de0e8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-3[data-v-387de0e8]{margin-left:26%}.col-no-margin-xl-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-4[data-v-387de0e8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-5[data-v-387de0e8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-6[data-v-387de0e8]{margin-left:52%}.col-no-margin-xl-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-7[data-v-387de0e8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-8[data-v-387de0e8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-9[data-v-387de0e8]{margin-left:78%}.col-no-margin-xl-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-10[data-v-387de0e8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xl-11[data-v-387de0e8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-387de0e8]{display:none!important}.xl-visible[data-v-387de0e8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-387de0e8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-387de0e8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-387de0e8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-387de0e8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-387de0e8]{margin-left:26%}.col-no-margin-xxl-3[data-v-387de0e8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-387de0e8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-387de0e8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-387de0e8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-387de0e8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-387de0e8]{margin-left:52%}.col-no-margin-xxl-6[data-v-387de0e8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-387de0e8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-387de0e8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-387de0e8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-387de0e8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-387de0e8]{margin-left:78%}.col-no-margin-xxl-9[data-v-387de0e8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-387de0e8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-387de0e8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-387de0e8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-387de0e8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-387de0e8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-387de0e8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-387de0e8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-387de0e8]{display:none!important}.xxl-visible[data-v-387de0e8]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-387de0e8]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-387de0e8]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-387de0e8]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-387de0e8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-387de0e8]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-387de0e8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-387de0e8]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-387de0e8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-387de0e8]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-387de0e8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-387de0e8]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-387de0e8]{display:none}}@media screen and (min-width:769px){.mobile[data-v-387de0e8]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-387de0e8]{display:none}}.vertical-center[data-v-387de0e8]{display:flex;align-items:center}.horizontal-center[data-v-387de0e8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-387de0e8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-387de0e8]{display:none!important}.no-content[data-v-387de0e8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-387de0e8],.btn[data-v-387de0e8],button[data-v-387de0e8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-387de0e8],.btn-default[type=submit][data-v-387de0e8],.btn.btn-primary[data-v-387de0e8],.btn[type=submit][data-v-387de0e8],button.btn-primary[data-v-387de0e8],button[type=submit][data-v-387de0e8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-387de0e8],.btn-default .icon[data-v-387de0e8],button .icon[data-v-387de0e8]{margin-right:.5em}input[type=password][data-v-387de0e8],input[type=text][data-v-387de0e8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-387de0e8]:focus,input[type=text][data-v-387de0e8]:focus{border:1px solid #35b870}button[data-v-387de0e8],input[data-v-387de0e8]{outline:none}input[type=text][data-v-387de0e8]:hover,textarea[data-v-387de0e8]:hover{border:1px solid #9cdfb0}ul[data-v-387de0e8]{margin:0;padding:0;list-style:none}a[data-v-387de0e8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-387de0e8]:hover{color:#35b870}[data-v-387de0e8]::-webkit-scrollbar{width:.75em}[data-v-387de0e8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-387de0e8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-387de0e8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-387de0e8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-387de0e8],input[type=password][data-v-387de0e8],input[type=search][data-v-387de0e8],input[type=text][data-v-387de0e8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-387de0e8]:hover,input[type=password][data-v-387de0e8]:hover,input[type=search][data-v-387de0e8]:hover,input[type=text][data-v-387de0e8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-387de0e8]:focus,input[type=password][data-v-387de0e8]:focus,input[type=search][data-v-387de0e8]:focus,input[type=text][data-v-387de0e8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-387de0e8],input[type=password].with-icon[data-v-387de0e8],input[type=search].with-icon[data-v-387de0e8],input[type=text].with-icon[data-v-387de0e8]{padding-left:.3em}input[type=search][data-v-387de0e8],input[type=text][data-v-387de0e8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-387de0e8]{animation-fill-mode:both;animation-name:fadeIn-387de0e8;-webkit-animation-name:fadeIn-387de0e8}.fade-in[data-v-387de0e8],.fade-out[data-v-387de0e8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-387de0e8]{animation-fill-mode:both;animation-name:fadeOut-387de0e8;-webkit-animation-name:fadeOut-387de0e8}@keyframes fadeIn-387de0e8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-387de0e8{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-387de0e8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-387de0e8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-387de0e8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-387de0e8]{min-height:calc(100vh - 2em)}button[data-v-387de0e8]{background:none;border:none;box-shadow:none}button[data-v-387de0e8]:hover{color:#35b870}hgroup[data-v-387de0e8]{flex-grow:1}h1[data-v-387de0e8]{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-387de0e8]{border-radius:.5em .5em 0 0}}h2[data-v-387de0e8]{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-387de0e8]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-387de0e8]{margin-top:.5em;padding-top:.5em}section.response[data-v-387de0e8]{flex-grow:1;max-height:40em}section.response .output[data-v-387de0e8]{overflow:auto}.buttons[data-v-387de0e8]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-387de0e8]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-387de0e8]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-387de0e8]{background:#fff}header .buttons[data-v-387de0e8]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-387de0e8]{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-387de0e8] .doc blockquote{margin-left:0}textarea[data-v-387de0e8]{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-387de0e8]:hover{border:1px solid #38cf80}textarea[data-v-387de0e8]:focus{border:1px solid #32b646}form[data-v-387de0e8]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-387de0e8]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-387de0e8]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-387de0e8]{width:80%;max-width:60em}}.raw .first-row button[data-v-387de0e8]{margin-left:0}.args-list[data-v-387de0e8]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-387de0e8]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-387de0e8]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-387de0e8]{width:30em}}.args-list .arg[data-v-387de0e8]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-387de0e8]{width:100%}}.args-list .arg .required-flag[data-v-387de0e8]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-387de0e8]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-387de0e8]{width:100%}.args-body[data-v-387de0e8]{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-387de0e8]{flex-direction:column}}.add-arg[data-v-387de0e8]{width:100%}.add-arg button[data-v-387de0e8]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-387de0e8]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-387de0e8]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-387de0e8]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-387de0e8]{width:100%}.doc-container[data-v-387de0e8],.response[data-v-387de0e8]{flex-grow:1}.doc-container h2[data-v-387de0e8],.response h2[data-v-387de0e8]{display:inline-flex}.doc-container h2 .title[data-v-387de0e8],.response h2 .title[data-v-387de0e8]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-387de0e8],.response h2 .buttons[data-v-387de0e8]{width:2em}.doc-container h2 .buttons button[data-v-387de0e8],.response h2 .buttons button[data-v-387de0e8]{padding:0}.output[data-v-387de0e8]{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-387de0e8]{color:red}textarea.curl-snippet[data-v-387de0e8]{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-387de0e8]{margin-right:1.25em}.doc-container .buttons button i[data-v-387de0e8]{padding:0 .75em}.doc-container .buttons button[data-v-387de0e8]:hover{background-color:linear-gradient(90deg,#bef6da,#e5fbf0)}.col-1[data-v-0889308d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-1[data-v-0889308d]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-0889308d]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-0889308d]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-0889308d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-2[data-v-0889308d]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-0889308d]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-0889308d]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-0889308d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-3[data-v-0889308d]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-0889308d]:first-child{margin-left:26%!important}.col-offset-3[data-v-0889308d]:not(first-child){margin-left:30%!important}.col-4[data-v-0889308d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-4[data-v-0889308d]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-0889308d]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-0889308d]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-0889308d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-5[data-v-0889308d]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-0889308d]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-0889308d]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-0889308d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-6[data-v-0889308d]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-0889308d]:first-child{margin-left:52%!important}.col-offset-6[data-v-0889308d]:not(first-child){margin-left:56%!important}.col-7[data-v-0889308d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-7[data-v-0889308d]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-0889308d]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-0889308d]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-0889308d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-8[data-v-0889308d]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-0889308d]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-0889308d]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-0889308d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-9[data-v-0889308d]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-0889308d]:first-child{margin-left:78%!important}.col-offset-9[data-v-0889308d]:not(first-child){margin-left:82%!important}.col-10[data-v-0889308d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-10[data-v-0889308d]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-0889308d]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-0889308d]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-0889308d]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-0889308d]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-0889308d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-1[data-v-0889308d]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-0889308d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-0889308d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-2[data-v-0889308d]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-0889308d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-0889308d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-3[data-v-0889308d]{margin-left:26%}.col-no-margin-s-3[data-v-0889308d]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-0889308d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-4[data-v-0889308d]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-0889308d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-0889308d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-5[data-v-0889308d]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-0889308d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-0889308d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-6[data-v-0889308d]{margin-left:52%}.col-no-margin-s-6[data-v-0889308d]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-0889308d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-7[data-v-0889308d]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-0889308d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-0889308d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-8[data-v-0889308d]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-0889308d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-0889308d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-9[data-v-0889308d]{margin-left:78%}.col-no-margin-s-9[data-v-0889308d]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-0889308d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-10[data-v-0889308d]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-0889308d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-0889308d]:first-child{margin-left:0}.col-offset-s-11[data-v-0889308d]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-s-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-0889308d]{display:none!important}.s-visible[data-v-0889308d]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-0889308d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-1[data-v-0889308d]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-0889308d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-0889308d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-2[data-v-0889308d]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-0889308d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-0889308d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-3[data-v-0889308d]{margin-left:26%}.col-no-margin-m-3[data-v-0889308d]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-0889308d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-4[data-v-0889308d]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-0889308d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-0889308d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-5[data-v-0889308d]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-0889308d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-0889308d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-6[data-v-0889308d]{margin-left:52%}.col-no-margin-m-6[data-v-0889308d]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-0889308d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-7[data-v-0889308d]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-0889308d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-0889308d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-8[data-v-0889308d]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-0889308d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-0889308d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-9[data-v-0889308d]{margin-left:78%}.col-no-margin-m-9[data-v-0889308d]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-0889308d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-10[data-v-0889308d]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-0889308d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-0889308d]:first-child{margin-left:0}.col-offset-m-11[data-v-0889308d]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-m-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-0889308d]{display:none!important}.m-visible[data-v-0889308d]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-0889308d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-1[data-v-0889308d]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-0889308d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-0889308d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-2[data-v-0889308d]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-0889308d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-0889308d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-3[data-v-0889308d]{margin-left:26%}.col-no-margin-l-3[data-v-0889308d]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-0889308d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-4[data-v-0889308d]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-0889308d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-0889308d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-5[data-v-0889308d]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-0889308d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-0889308d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-6[data-v-0889308d]{margin-left:52%}.col-no-margin-l-6[data-v-0889308d]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-0889308d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-7[data-v-0889308d]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-0889308d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-0889308d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-8[data-v-0889308d]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-0889308d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-0889308d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-9[data-v-0889308d]{margin-left:78%}.col-no-margin-l-9[data-v-0889308d]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-0889308d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-10[data-v-0889308d]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-0889308d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-0889308d]:first-child{margin-left:0}.col-offset-l-11[data-v-0889308d]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-l-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-0889308d]{display:none!important}.l-visible[data-v-0889308d]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-0889308d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-1[data-v-0889308d]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-0889308d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-0889308d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-2[data-v-0889308d]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-0889308d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-0889308d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-3[data-v-0889308d]{margin-left:26%}.col-no-margin-xl-3[data-v-0889308d]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-0889308d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-4[data-v-0889308d]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-0889308d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-0889308d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-5[data-v-0889308d]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-0889308d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-0889308d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-6[data-v-0889308d]{margin-left:52%}.col-no-margin-xl-6[data-v-0889308d]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-0889308d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-7[data-v-0889308d]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-0889308d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-0889308d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-8[data-v-0889308d]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-0889308d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-0889308d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-9[data-v-0889308d]{margin-left:78%}.col-no-margin-xl-9[data-v-0889308d]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-0889308d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-10[data-v-0889308d]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-0889308d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-0889308d]:first-child{margin-left:0}.col-offset-xl-11[data-v-0889308d]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-0889308d]{display:none!important}.xl-visible[data-v-0889308d]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-0889308d]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-1[data-v-0889308d]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-0889308d]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-0889308d]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-2[data-v-0889308d]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-0889308d]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-0889308d]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-3[data-v-0889308d]{margin-left:26%}.col-no-margin-xxl-3[data-v-0889308d]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-0889308d]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-4[data-v-0889308d]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-0889308d]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-0889308d]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-5[data-v-0889308d]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-0889308d]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-0889308d]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-6[data-v-0889308d]{margin-left:52%}.col-no-margin-xxl-6[data-v-0889308d]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-0889308d]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-7[data-v-0889308d]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-0889308d]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-0889308d]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-8[data-v-0889308d]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-0889308d]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-0889308d]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-9[data-v-0889308d]{margin-left:78%}.col-no-margin-xxl-9[data-v-0889308d]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-0889308d]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-10[data-v-0889308d]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-0889308d]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-0889308d]:first-child{margin-left:0}.col-offset-xxl-11[data-v-0889308d]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-0889308d]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-0889308d]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-0889308d]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-0889308d]{display:none!important}.xxl-visible[data-v-0889308d]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-0889308d]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-0889308d]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0889308d]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-0889308d]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0889308d]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-0889308d]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0889308d]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-0889308d]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0889308d]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-0889308d]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0889308d]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-0889308d]{display:none}}@media screen and (min-width:769px){.mobile[data-v-0889308d]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0889308d]{display:none}}.vertical-center[data-v-0889308d]{display:flex;align-items:center}.horizontal-center[data-v-0889308d]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-0889308d]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-0889308d]{display:none!important}.no-content[data-v-0889308d]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-0889308d],.btn[data-v-0889308d],button[data-v-0889308d]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-0889308d],.btn-default[type=submit][data-v-0889308d],.btn.btn-primary[data-v-0889308d],.btn[type=submit][data-v-0889308d],button.btn-primary[data-v-0889308d],button[type=submit][data-v-0889308d]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-0889308d],.btn-default .icon[data-v-0889308d],button .icon[data-v-0889308d]{margin-right:.5em}input[type=password][data-v-0889308d],input[type=text][data-v-0889308d]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-0889308d]:focus,input[type=text][data-v-0889308d]:focus{border:1px solid #35b870}button[data-v-0889308d],input[data-v-0889308d]{outline:none}input[type=text][data-v-0889308d]:hover,textarea[data-v-0889308d]:hover{border:1px solid #9cdfb0}ul[data-v-0889308d]{margin:0;padding:0;list-style:none}a[data-v-0889308d]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-0889308d]:hover{color:#35b870}[data-v-0889308d]::-webkit-scrollbar{width:.75em}[data-v-0889308d]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-0889308d]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-0889308d]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-0889308d]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-0889308d],input[type=password][data-v-0889308d],input[type=search][data-v-0889308d],input[type=text][data-v-0889308d]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-0889308d]:hover,input[type=password][data-v-0889308d]:hover,input[type=search][data-v-0889308d]:hover,input[type=text][data-v-0889308d]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-0889308d]:focus,input[type=password][data-v-0889308d]:focus,input[type=search][data-v-0889308d]:focus,input[type=text][data-v-0889308d]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-0889308d],input[type=password].with-icon[data-v-0889308d],input[type=search].with-icon[data-v-0889308d],input[type=text].with-icon[data-v-0889308d]{padding-left:.3em}input[type=search][data-v-0889308d],input[type=text][data-v-0889308d]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-0889308d]{animation-fill-mode:both;animation-name:fadeIn-0889308d;-webkit-animation-name:fadeIn-0889308d}.fade-in[data-v-0889308d],.fade-out[data-v-0889308d]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-0889308d]{animation-fill-mode:both;animation-name:fadeOut-0889308d;-webkit-animation-name:fadeOut-0889308d}@keyframes fadeIn-0889308d{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-0889308d{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-0889308d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-0889308d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-0889308d]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.autocomplete[data-v-0889308d]{width:100%;position:relative;display:inline-block}.autocomplete .input[data-v-0889308d],.autocomplete .items[data-v-0889308d]{width:100%;box-shadow:1px 1px 1px 1px #ddd}.autocomplete .items[data-v-0889308d]{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-0889308d]{padding:1em;cursor:pointer;border-bottom:1px solid #ddd;background-color:#fff}.autocomplete .items .item[data-v-0889308d]:hover{background-color:#bef6da}.autocomplete .items .item .matching[data-v-0889308d]{font-weight:700}.autocomplete .active[data-v-0889308d]{background-color:#bef6da!important}.col-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-25f4b718]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-25f4b718]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-25f4b718]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-25f4b718]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-25f4b718]:first-child{margin-left:26%!important}.col-offset-3[data-v-25f4b718]:not(first-child){margin-left:30%!important}.col-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-25f4b718]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-25f4b718]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-25f4b718]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-25f4b718]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-25f4b718]:first-child{margin-left:52%!important}.col-offset-6[data-v-25f4b718]:not(first-child){margin-left:56%!important}.col-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-25f4b718]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-25f4b718]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-25f4b718]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-25f4b718]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-25f4b718]:first-child{margin-left:78%!important}.col-offset-9[data-v-25f4b718]:not(first-child){margin-left:82%!important}.col-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-25f4b718]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-25f4b718]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-25f4b718]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-25f4b718]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-1[data-v-25f4b718]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-2[data-v-25f4b718]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-3[data-v-25f4b718]{margin-left:26%}.col-no-margin-s-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-4[data-v-25f4b718]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-5[data-v-25f4b718]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-6[data-v-25f4b718]{margin-left:52%}.col-no-margin-s-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-7[data-v-25f4b718]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-8[data-v-25f4b718]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-9[data-v-25f4b718]{margin-left:78%}.col-no-margin-s-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-10[data-v-25f4b718]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-25f4b718]:first-child{margin-left:0}.col-offset-s-11[data-v-25f4b718]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-s-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-25f4b718]{display:none!important}.s-visible[data-v-25f4b718]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-1[data-v-25f4b718]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-2[data-v-25f4b718]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-3[data-v-25f4b718]{margin-left:26%}.col-no-margin-m-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-4[data-v-25f4b718]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-5[data-v-25f4b718]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-6[data-v-25f4b718]{margin-left:52%}.col-no-margin-m-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-7[data-v-25f4b718]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-8[data-v-25f4b718]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-9[data-v-25f4b718]{margin-left:78%}.col-no-margin-m-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-10[data-v-25f4b718]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-25f4b718]:first-child{margin-left:0}.col-offset-m-11[data-v-25f4b718]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-m-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-25f4b718]{display:none!important}.m-visible[data-v-25f4b718]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-1[data-v-25f4b718]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-2[data-v-25f4b718]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-3[data-v-25f4b718]{margin-left:26%}.col-no-margin-l-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-4[data-v-25f4b718]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-5[data-v-25f4b718]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-6[data-v-25f4b718]{margin-left:52%}.col-no-margin-l-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-7[data-v-25f4b718]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-8[data-v-25f4b718]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-9[data-v-25f4b718]{margin-left:78%}.col-no-margin-l-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-10[data-v-25f4b718]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-25f4b718]:first-child{margin-left:0}.col-offset-l-11[data-v-25f4b718]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-l-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-25f4b718]{display:none!important}.l-visible[data-v-25f4b718]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-1[data-v-25f4b718]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-2[data-v-25f4b718]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-3[data-v-25f4b718]{margin-left:26%}.col-no-margin-xl-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-4[data-v-25f4b718]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-5[data-v-25f4b718]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-6[data-v-25f4b718]{margin-left:52%}.col-no-margin-xl-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-7[data-v-25f4b718]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-8[data-v-25f4b718]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-9[data-v-25f4b718]{margin-left:78%}.col-no-margin-xl-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-10[data-v-25f4b718]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xl-11[data-v-25f4b718]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-25f4b718]{display:none!important}.xl-visible[data-v-25f4b718]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-1[data-v-25f4b718]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-25f4b718]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-2[data-v-25f4b718]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-25f4b718]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-3[data-v-25f4b718]{margin-left:26%}.col-no-margin-xxl-3[data-v-25f4b718]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-4[data-v-25f4b718]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-25f4b718]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-5[data-v-25f4b718]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-25f4b718]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-6[data-v-25f4b718]{margin-left:52%}.col-no-margin-xxl-6[data-v-25f4b718]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-7[data-v-25f4b718]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-25f4b718]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-8[data-v-25f4b718]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-25f4b718]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-9[data-v-25f4b718]{margin-left:78%}.col-no-margin-xxl-9[data-v-25f4b718]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-10[data-v-25f4b718]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-25f4b718]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-25f4b718]:first-child{margin-left:0}.col-offset-xxl-11[data-v-25f4b718]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-25f4b718]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-25f4b718]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-25f4b718]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-25f4b718]{display:none!important}.xxl-visible[data-v-25f4b718]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-25f4b718]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-25f4b718]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-25f4b718]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-25f4b718]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-25f4b718]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-25f4b718]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-25f4b718]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-25f4b718]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-25f4b718]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-25f4b718]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-25f4b718]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-25f4b718]{display:none}}@media screen and (min-width:769px){.mobile[data-v-25f4b718]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-25f4b718]{display:none}}.vertical-center[data-v-25f4b718]{display:flex;align-items:center}.horizontal-center[data-v-25f4b718]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-25f4b718]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-25f4b718]{display:none!important}.no-content[data-v-25f4b718]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-25f4b718],.btn[data-v-25f4b718],button[data-v-25f4b718]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-25f4b718],.btn-default[type=submit][data-v-25f4b718],.btn.btn-primary[data-v-25f4b718],.btn[type=submit][data-v-25f4b718],button.btn-primary[data-v-25f4b718],button[type=submit][data-v-25f4b718]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-25f4b718],.btn-default .icon[data-v-25f4b718],button .icon[data-v-25f4b718]{margin-right:.5em}input[type=password][data-v-25f4b718],input[type=text][data-v-25f4b718]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-25f4b718]:focus,input[type=text][data-v-25f4b718]:focus{border:1px solid #35b870}button[data-v-25f4b718],input[data-v-25f4b718]{outline:none}input[type=text][data-v-25f4b718]:hover,textarea[data-v-25f4b718]:hover{border:1px solid #9cdfb0}ul[data-v-25f4b718]{margin:0;padding:0;list-style:none}a[data-v-25f4b718]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-25f4b718]:hover{color:#35b870}[data-v-25f4b718]::-webkit-scrollbar{width:.75em}[data-v-25f4b718]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-25f4b718]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-25f4b718]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-25f4b718]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-25f4b718],input[type=password][data-v-25f4b718],input[type=search][data-v-25f4b718],input[type=text][data-v-25f4b718]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-25f4b718]:hover,input[type=password][data-v-25f4b718]:hover,input[type=search][data-v-25f4b718]:hover,input[type=text][data-v-25f4b718]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-25f4b718]:focus,input[type=password][data-v-25f4b718]:focus,input[type=search][data-v-25f4b718]:focus,input[type=text][data-v-25f4b718]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-25f4b718],input[type=password].with-icon[data-v-25f4b718],input[type=search].with-icon[data-v-25f4b718],input[type=text].with-icon[data-v-25f4b718]{padding-left:.3em}input[type=search][data-v-25f4b718],input[type=text][data-v-25f4b718]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-25f4b718]{animation-fill-mode:both;animation-name:fadeIn-25f4b718;-webkit-animation-name:fadeIn-25f4b718}.fade-in[data-v-25f4b718],.fade-out[data-v-25f4b718]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-25f4b718]{animation-fill-mode:both;animation-name:fadeOut-25f4b718;-webkit-animation-name:fadeOut-25f4b718}@keyframes fadeIn-25f4b718{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-25f4b718{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-25f4b718]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-25f4b718]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-25f4b718]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-25f4b718]{min-height:calc(100vh - 2em)}button[data-v-25f4b718]{background:none;border:none;box-shadow:none}button[data-v-25f4b718]:hover{color:#35b870}hgroup[data-v-25f4b718]{flex-grow:1}h1[data-v-25f4b718]{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-25f4b718]{border-radius:.5em .5em 0 0}}h2[data-v-25f4b718]{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-25f4b718]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-25f4b718]{margin-top:.5em;padding-top:.5em}section.response[data-v-25f4b718]{flex-grow:1;max-height:40em}section.response .output[data-v-25f4b718]{overflow:auto}.buttons[data-v-25f4b718]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-25f4b718]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-25f4b718]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-25f4b718]{background:#fff}header .buttons[data-v-25f4b718]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-25f4b718]{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-25f4b718] .doc blockquote{margin-left:0}textarea[data-v-25f4b718]{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-25f4b718]:hover{border:1px solid #38cf80}textarea[data-v-25f4b718]:focus{border:1px solid #32b646}form[data-v-25f4b718]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-25f4b718]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-25f4b718]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-25f4b718]{width:80%;max-width:60em}}.raw .first-row button[data-v-25f4b718]{margin-left:0}.args-list[data-v-25f4b718]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-25f4b718]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-25f4b718]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-25f4b718]{width:30em}}.args-list .arg[data-v-25f4b718]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-25f4b718]{width:100%}}.args-list .arg .required-flag[data-v-25f4b718]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-25f4b718]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-25f4b718]{width:100%}.args-body[data-v-25f4b718]{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-25f4b718]{flex-direction:column}}.add-arg[data-v-25f4b718]{width:100%}.add-arg button[data-v-25f4b718]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-25f4b718]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-25f4b718]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-25f4b718]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-25f4b718]{width:100%}.doc-container[data-v-25f4b718],.response[data-v-25f4b718]{flex-grow:1}.doc-container h2[data-v-25f4b718],.response h2[data-v-25f4b718]{display:inline-flex}.doc-container h2 .title[data-v-25f4b718],.response h2 .title[data-v-25f4b718]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-25f4b718],.response h2 .buttons[data-v-25f4b718]{width:2em}.doc-container h2 .buttons button[data-v-25f4b718],.response h2 .buttons button[data-v-25f4b718]{padding:0}.output[data-v-25f4b718]{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-25f4b718]{color:red}textarea.curl-snippet[data-v-25f4b718]{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-4d2b88d5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4d2b88d5]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4d2b88d5]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4d2b88d5]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4d2b88d5]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4d2b88d5]:first-child{margin-left:26%!important}.col-offset-3[data-v-4d2b88d5]:not(first-child){margin-left:30%!important}.col-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4d2b88d5]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4d2b88d5]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4d2b88d5]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4d2b88d5]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4d2b88d5]:first-child{margin-left:52%!important}.col-offset-6[data-v-4d2b88d5]:not(first-child){margin-left:56%!important}.col-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4d2b88d5]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4d2b88d5]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4d2b88d5]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4d2b88d5]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4d2b88d5]:first-child{margin-left:78%!important}.col-offset-9[data-v-4d2b88d5]:not(first-child){margin-left:82%!important}.col-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4d2b88d5]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4d2b88d5]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4d2b88d5]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4d2b88d5]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-1[data-v-4d2b88d5]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-2[data-v-4d2b88d5]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-3[data-v-4d2b88d5]{margin-left:26%}.col-no-margin-s-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-4[data-v-4d2b88d5]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-5[data-v-4d2b88d5]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-6[data-v-4d2b88d5]{margin-left:52%}.col-no-margin-s-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-7[data-v-4d2b88d5]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-8[data-v-4d2b88d5]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-9[data-v-4d2b88d5]{margin-left:78%}.col-no-margin-s-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-10[data-v-4d2b88d5]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-s-11[data-v-4d2b88d5]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4d2b88d5]{display:none!important}.s-visible[data-v-4d2b88d5]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-1[data-v-4d2b88d5]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-2[data-v-4d2b88d5]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-3[data-v-4d2b88d5]{margin-left:26%}.col-no-margin-m-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-4[data-v-4d2b88d5]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-5[data-v-4d2b88d5]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-6[data-v-4d2b88d5]{margin-left:52%}.col-no-margin-m-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-7[data-v-4d2b88d5]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-8[data-v-4d2b88d5]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-9[data-v-4d2b88d5]{margin-left:78%}.col-no-margin-m-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-10[data-v-4d2b88d5]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-m-11[data-v-4d2b88d5]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4d2b88d5]{display:none!important}.m-visible[data-v-4d2b88d5]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-1[data-v-4d2b88d5]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-2[data-v-4d2b88d5]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-3[data-v-4d2b88d5]{margin-left:26%}.col-no-margin-l-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-4[data-v-4d2b88d5]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-5[data-v-4d2b88d5]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-6[data-v-4d2b88d5]{margin-left:52%}.col-no-margin-l-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-7[data-v-4d2b88d5]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-8[data-v-4d2b88d5]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-9[data-v-4d2b88d5]{margin-left:78%}.col-no-margin-l-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-10[data-v-4d2b88d5]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-l-11[data-v-4d2b88d5]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4d2b88d5]{display:none!important}.l-visible[data-v-4d2b88d5]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-1[data-v-4d2b88d5]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-2[data-v-4d2b88d5]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-3[data-v-4d2b88d5]{margin-left:26%}.col-no-margin-xl-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-4[data-v-4d2b88d5]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-5[data-v-4d2b88d5]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-6[data-v-4d2b88d5]{margin-left:52%}.col-no-margin-xl-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-7[data-v-4d2b88d5]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-8[data-v-4d2b88d5]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-9[data-v-4d2b88d5]{margin-left:78%}.col-no-margin-xl-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-10[data-v-4d2b88d5]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xl-11[data-v-4d2b88d5]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4d2b88d5]{display:none!important}.xl-visible[data-v-4d2b88d5]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4d2b88d5]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4d2b88d5]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4d2b88d5]{margin-left:26%}.col-no-margin-xxl-3[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4d2b88d5]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4d2b88d5]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4d2b88d5]{margin-left:52%}.col-no-margin-xxl-6[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4d2b88d5]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4d2b88d5]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4d2b88d5]{margin-left:78%}.col-no-margin-xxl-9[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4d2b88d5]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4d2b88d5]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4d2b88d5]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4d2b88d5]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4d2b88d5]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4d2b88d5]{display:none!important}.xxl-visible[data-v-4d2b88d5]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4d2b88d5]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-4d2b88d5]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4d2b88d5]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-4d2b88d5]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4d2b88d5]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-4d2b88d5]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4d2b88d5]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-4d2b88d5]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4d2b88d5]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-4d2b88d5]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4d2b88d5]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-4d2b88d5]{display:none}}@media screen and (min-width:769px){.mobile[data-v-4d2b88d5]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4d2b88d5]{display:none}}.vertical-center[data-v-4d2b88d5]{display:flex;align-items:center}.horizontal-center[data-v-4d2b88d5]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4d2b88d5]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4d2b88d5]{display:none!important}.no-content[data-v-4d2b88d5]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-4d2b88d5],.btn[data-v-4d2b88d5],button[data-v-4d2b88d5]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4d2b88d5],.btn-default[type=submit][data-v-4d2b88d5],.btn.btn-primary[data-v-4d2b88d5],.btn[type=submit][data-v-4d2b88d5],button.btn-primary[data-v-4d2b88d5],button[type=submit][data-v-4d2b88d5]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4d2b88d5],.btn-default .icon[data-v-4d2b88d5],button .icon[data-v-4d2b88d5]{margin-right:.5em}input[type=password][data-v-4d2b88d5],input[type=text][data-v-4d2b88d5]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4d2b88d5]:focus,input[type=text][data-v-4d2b88d5]:focus{border:1px solid #35b870}button[data-v-4d2b88d5],input[data-v-4d2b88d5]{outline:none}input[type=text][data-v-4d2b88d5]:hover,textarea[data-v-4d2b88d5]:hover{border:1px solid #9cdfb0}ul[data-v-4d2b88d5]{margin:0;padding:0;list-style:none}a[data-v-4d2b88d5]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4d2b88d5]:hover{color:#35b870}[data-v-4d2b88d5]::-webkit-scrollbar{width:.75em}[data-v-4d2b88d5]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4d2b88d5]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4d2b88d5]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-4d2b88d5]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-4d2b88d5],input[type=password][data-v-4d2b88d5],input[type=search][data-v-4d2b88d5],input[type=text][data-v-4d2b88d5]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-4d2b88d5]:hover,input[type=password][data-v-4d2b88d5]:hover,input[type=search][data-v-4d2b88d5]:hover,input[type=text][data-v-4d2b88d5]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-4d2b88d5]:focus,input[type=password][data-v-4d2b88d5]:focus,input[type=search][data-v-4d2b88d5]:focus,input[type=text][data-v-4d2b88d5]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-4d2b88d5],input[type=password].with-icon[data-v-4d2b88d5],input[type=search].with-icon[data-v-4d2b88d5],input[type=text].with-icon[data-v-4d2b88d5]{padding-left:.3em}input[type=search][data-v-4d2b88d5],input[type=text][data-v-4d2b88d5]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4d2b88d5]{animation-fill-mode:both;animation-name:fadeIn-4d2b88d5;-webkit-animation-name:fadeIn-4d2b88d5}.fade-in[data-v-4d2b88d5],.fade-out[data-v-4d2b88d5]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4d2b88d5]{animation-fill-mode:both;animation-name:fadeOut-4d2b88d5;-webkit-animation-name:fadeOut-4d2b88d5}@keyframes fadeIn-4d2b88d5{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4d2b88d5{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-4d2b88d5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4d2b88d5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4d2b88d5]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-4d2b88d5]{min-height:calc(100vh - 2em)}button[data-v-4d2b88d5]{background:none;border:none;box-shadow:none}button[data-v-4d2b88d5]:hover{color:#35b870}hgroup[data-v-4d2b88d5]{flex-grow:1}h1[data-v-4d2b88d5]{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-4d2b88d5]{border-radius:.5em .5em 0 0}}h2[data-v-4d2b88d5]{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-4d2b88d5]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-4d2b88d5]{margin-top:.5em;padding-top:.5em}section.response[data-v-4d2b88d5]{flex-grow:1;max-height:40em}section.response .output[data-v-4d2b88d5]{overflow:auto}.buttons[data-v-4d2b88d5]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-4d2b88d5]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-4d2b88d5]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-4d2b88d5]{background:#fff}header .buttons[data-v-4d2b88d5]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-4d2b88d5]{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-4d2b88d5] .doc blockquote{margin-left:0}textarea[data-v-4d2b88d5]{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-4d2b88d5]:hover{border:1px solid #38cf80}textarea[data-v-4d2b88d5]:focus{border:1px solid #32b646}form[data-v-4d2b88d5]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-4d2b88d5]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-4d2b88d5]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-4d2b88d5]{width:80%;max-width:60em}}.raw .first-row button[data-v-4d2b88d5]{margin-left:0}.args-list[data-v-4d2b88d5]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-4d2b88d5]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-4d2b88d5]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-4d2b88d5]{width:30em}}.args-list .arg[data-v-4d2b88d5]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-4d2b88d5]{width:100%}}.args-list .arg .required-flag[data-v-4d2b88d5]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-4d2b88d5]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-4d2b88d5]{width:100%}.args-body[data-v-4d2b88d5]{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-4d2b88d5]{flex-direction:column}}.add-arg[data-v-4d2b88d5]{width:100%}.add-arg button[data-v-4d2b88d5]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-4d2b88d5]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-4d2b88d5]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-4d2b88d5]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-4d2b88d5]{width:100%}.doc-container[data-v-4d2b88d5],.response[data-v-4d2b88d5]{flex-grow:1}.doc-container h2[data-v-4d2b88d5],.response h2[data-v-4d2b88d5]{display:inline-flex}.doc-container h2 .title[data-v-4d2b88d5],.response h2 .title[data-v-4d2b88d5]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-4d2b88d5],.response h2 .buttons[data-v-4d2b88d5]{width:2em}.doc-container h2 .buttons button[data-v-4d2b88d5],.response h2 .buttons button[data-v-4d2b88d5]{padding:0}.output[data-v-4d2b88d5]{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-4d2b88d5]{color:red}textarea.curl-snippet[data-v-4d2b88d5]{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-4d2b88d5]{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-4d2b88d5]{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-4d2b88d5]{margin:1em;border-radius:1em 1em 0 0}}.execute-container .request[data-v-4d2b88d5]{display:flex;flex-direction:column;margin:0 .5em}.execute-container .run-btn[data-v-4d2b88d5]{background:#fff;border-radius:.25em;padding:.5em 1.5em;box-shadow:1px 1px .5px .75px rgba(50,182,70,.251);cursor:pointer}.execute-container .run-btn[data-v-4d2b88d5]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);box-shadow:none}.execute-container .run-btn[data-v-4d2b88d5]:disabled{opacity:.7;color:#23513a;cursor:auto;box-shadow:none}.execute-container .run-btn[data-v-4d2b88d5]:disabled:hover{background:#fff;box-shadow:none} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7878.e3469993.css b/platypush/backend/http/webapp/dist/static/css/7878.e3469993.css new file mode 100644 index 00000000..0643f51e --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7878.e3469993.css @@ -0,0 +1 @@ +.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}}.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.4f4a202a.css b/platypush/backend/http/webapp/dist/static/css/7880.4f4a202a.css new file mode 100644 index 00000000..31aa74f6 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7880.4f4a202a.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 .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}}.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}}.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}}.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}}.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}}.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/7880.5e6febf3.css b/platypush/backend/http/webapp/dist/static/css/7880.5e6febf3.css deleted file mode 100644 index 705d2904..00000000 --- a/platypush/backend/http/webapp/dist/static/css/7880.5e6febf3.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(769px - 1px)){.tablet.from[data-v-56458f8e]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-56458f8e]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-56458f8e]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-56458f8e]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-56458f8e]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-56458f8e]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-56458f8e]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-56458f8e]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-56458f8e]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-56458f8e]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-56458f8e]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-56458f8e]{display:none}}@media screen and (min-width:769px){.mobile[data-v-56458f8e]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-56458f8e]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-56458f8e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-56458f8e],input[type=password][data-v-56458f8e],input[type=search][data-v-56458f8e],input[type=text][data-v-56458f8e]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-3da196a6]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-3da196a6]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3da196a6]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-3da196a6]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3da196a6]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-3da196a6]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3da196a6]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-3da196a6]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3da196a6]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-3da196a6]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3da196a6]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-3da196a6]{display:none}}@media screen and (min-width:769px){.mobile[data-v-3da196a6]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3da196a6]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-3da196a6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-3da196a6],input[type=password][data-v-3da196a6],input[type=search][data-v-3da196a6],input[type=text][data-v-3da196a6]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-c1863a74]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-c1863a74]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-c1863a74]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-c1863a74]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-c1863a74]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-c1863a74]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-c1863a74]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-c1863a74]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-c1863a74]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-c1863a74]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-c1863a74]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-c1863a74]{display:none}}@media screen and (min-width:769px){.mobile[data-v-c1863a74]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-c1863a74]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-c1863a74]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-c1863a74],input[type=password][data-v-c1863a74],input[type=search][data-v-c1863a74],input[type=text][data-v-c1863a74]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-0021cd76]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-0021cd76]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-0021cd76]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-0021cd76]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-0021cd76]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-0021cd76]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-0021cd76]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-0021cd76]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-0021cd76]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-0021cd76]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-0021cd76]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-0021cd76]{display:none}}@media screen and (min-width:769px){.mobile[data-v-0021cd76]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-0021cd76]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-0021cd76]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-0021cd76],input[type=password][data-v-0021cd76],input[type=search][data-v-0021cd76],input[type=text][data-v-0021cd76]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from{display:none}}@media screen and (min-width:1024px){.tablet.until{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none}}@media screen and (min-width:1024px){.tablet.only{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none}}@media screen and (min-width:1216px){.desktop.until{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none}}@media screen and (min-width:1216px){.desktop.only{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none}}@media screen and (min-width:1408px){.widescreen.until{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none}}@media screen and (min-width:1408px){.widescreen.only{display:none}}@media screen and (min-width:769px){.mobile{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none}}.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}.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:.75em}::-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}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number],input[type=password],input[type=search],input[type=text]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].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}}.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/7968.1d0824b1.css b/platypush/backend/http/webapp/dist/static/css/7968.1d0824b1.css deleted file mode 100644 index 940924ae..00000000 --- a/platypush/backend/http/webapp/dist/static/css/7968.1d0824b1.css +++ /dev/null @@ -1 +0,0 @@ -.col-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-33115af0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-33115af0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-33115af0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-33115af0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-33115af0]:first-child{margin-left:26%!important}.col-offset-3[data-v-33115af0]:not(first-child){margin-left:30%!important}.col-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-33115af0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-33115af0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-33115af0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-33115af0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-33115af0]:first-child{margin-left:52%!important}.col-offset-6[data-v-33115af0]:not(first-child){margin-left:56%!important}.col-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-33115af0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-33115af0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-33115af0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-33115af0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-33115af0]:first-child{margin-left:78%!important}.col-offset-9[data-v-33115af0]:not(first-child){margin-left:82%!important}.col-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-33115af0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-33115af0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-33115af0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-33115af0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-1[data-v-33115af0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-2[data-v-33115af0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-3[data-v-33115af0]{margin-left:26%}.col-no-margin-s-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-4[data-v-33115af0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-5[data-v-33115af0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-6[data-v-33115af0]{margin-left:52%}.col-no-margin-s-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-7[data-v-33115af0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-8[data-v-33115af0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-9[data-v-33115af0]{margin-left:78%}.col-no-margin-s-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-10[data-v-33115af0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-11[data-v-33115af0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-33115af0]{display:none!important}.s-visible[data-v-33115af0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-1[data-v-33115af0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-2[data-v-33115af0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-3[data-v-33115af0]{margin-left:26%}.col-no-margin-m-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-4[data-v-33115af0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-5[data-v-33115af0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-6[data-v-33115af0]{margin-left:52%}.col-no-margin-m-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-7[data-v-33115af0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-8[data-v-33115af0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-9[data-v-33115af0]{margin-left:78%}.col-no-margin-m-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-10[data-v-33115af0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-11[data-v-33115af0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-33115af0]{display:none!important}.m-visible[data-v-33115af0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-1[data-v-33115af0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-2[data-v-33115af0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-3[data-v-33115af0]{margin-left:26%}.col-no-margin-l-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-4[data-v-33115af0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-5[data-v-33115af0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-6[data-v-33115af0]{margin-left:52%}.col-no-margin-l-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-7[data-v-33115af0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-8[data-v-33115af0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-9[data-v-33115af0]{margin-left:78%}.col-no-margin-l-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-10[data-v-33115af0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-11[data-v-33115af0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-33115af0]{display:none!important}.l-visible[data-v-33115af0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-1[data-v-33115af0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-2[data-v-33115af0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-3[data-v-33115af0]{margin-left:26%}.col-no-margin-xl-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-4[data-v-33115af0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-5[data-v-33115af0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-6[data-v-33115af0]{margin-left:52%}.col-no-margin-xl-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-7[data-v-33115af0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-8[data-v-33115af0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-9[data-v-33115af0]{margin-left:78%}.col-no-margin-xl-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-10[data-v-33115af0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-11[data-v-33115af0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-33115af0]{display:none!important}.xl-visible[data-v-33115af0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-33115af0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-33115af0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-33115af0]{margin-left:26%}.col-no-margin-xxl-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-33115af0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-33115af0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-33115af0]{margin-left:52%}.col-no-margin-xxl-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-33115af0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-33115af0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-33115af0]{margin-left:78%}.col-no-margin-xxl-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-33115af0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-33115af0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-33115af0]{display:none!important}.xxl-visible[data-v-33115af0]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-33115af0]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-33115af0]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-33115af0]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-33115af0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-33115af0]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-33115af0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-33115af0]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-33115af0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-33115af0]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-33115af0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-33115af0]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-33115af0]{display:none}}@media screen and (min-width:769px){.mobile[data-v-33115af0]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-33115af0]{display:none}}.vertical-center[data-v-33115af0]{display:flex;align-items:center}.horizontal-center[data-v-33115af0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-33115af0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-33115af0]{display:none!important}.no-content[data-v-33115af0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-33115af0],.btn[data-v-33115af0],button[data-v-33115af0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-33115af0],.btn-default[type=submit][data-v-33115af0],.btn.btn-primary[data-v-33115af0],.btn[type=submit][data-v-33115af0],button.btn-primary[data-v-33115af0],button[type=submit][data-v-33115af0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-33115af0],.btn-default .icon[data-v-33115af0],button .icon[data-v-33115af0]{margin-right:.5em}input[type=password][data-v-33115af0],input[type=text][data-v-33115af0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-33115af0]:focus,input[type=text][data-v-33115af0]:focus{border:1px solid #35b870}button[data-v-33115af0],input[data-v-33115af0]{outline:none}input[type=text][data-v-33115af0]:hover,textarea[data-v-33115af0]:hover{border:1px solid #9cdfb0}ul[data-v-33115af0]{margin:0;padding:0;list-style:none}a[data-v-33115af0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-33115af0]:hover{color:#35b870}[data-v-33115af0]::-webkit-scrollbar{width:.75em}[data-v-33115af0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-33115af0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-33115af0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-33115af0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-33115af0],input[type=password][data-v-33115af0],input[type=search][data-v-33115af0],input[type=text][data-v-33115af0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-33115af0]:hover,input[type=password][data-v-33115af0]:hover,input[type=search][data-v-33115af0]:hover,input[type=text][data-v-33115af0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-33115af0]:focus,input[type=password][data-v-33115af0]:focus,input[type=search][data-v-33115af0]:focus,input[type=text][data-v-33115af0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-33115af0],input[type=password].with-icon[data-v-33115af0],input[type=search].with-icon[data-v-33115af0],input[type=text].with-icon[data-v-33115af0]{padding-left:.3em}input[type=search][data-v-33115af0],input[type=text][data-v-33115af0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-33115af0]{animation-fill-mode:both;animation-name:fadeIn-33115af0;-webkit-animation-name:fadeIn-33115af0}.fade-in[data-v-33115af0],.fade-out[data-v-33115af0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-33115af0]{animation-fill-mode:both;animation-name:fadeOut-33115af0;-webkit-animation-name:fadeOut-33115af0}@keyframes fadeIn-33115af0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-33115af0{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-33115af0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-33115af0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-33115af0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header[data-v-33115af0]{width:100%;height:3.3em;position:relative;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header .row[data-v-33115af0]{display:flex;align-items:center}.header .side[data-v-33115af0]{display:inline-flex;align-items:center}.header .side.right[data-v-33115af0]{justify-content:right}.header[data-v-33115af0] button{background:none;padding:0 .25em;border:0;margin-right:.25em}.header[data-v-33115af0] button:hover{color:#38cf80}.header form[data-v-33115af0]{width:100%;padding:0;border:0;border-radius:0;box-shadow:none;background:initial}.header .search-box[data-v-33115af0]{width:100%;margin-left:.5em}.header .search-box input[type=search][data-v-33115af0]{width:100%}.col-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1502d8a8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1502d8a8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1502d8a8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1502d8a8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1502d8a8]:first-child{margin-left:26%!important}.col-offset-3[data-v-1502d8a8]:not(first-child){margin-left:30%!important}.col-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1502d8a8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1502d8a8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1502d8a8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1502d8a8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1502d8a8]:first-child{margin-left:52%!important}.col-offset-6[data-v-1502d8a8]:not(first-child){margin-left:56%!important}.col-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1502d8a8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1502d8a8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1502d8a8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1502d8a8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1502d8a8]:first-child{margin-left:78%!important}.col-offset-9[data-v-1502d8a8]:not(first-child){margin-left:82%!important}.col-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1502d8a8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1502d8a8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1502d8a8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1502d8a8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-1[data-v-1502d8a8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-2[data-v-1502d8a8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-3[data-v-1502d8a8]{margin-left:26%}.col-no-margin-s-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-4[data-v-1502d8a8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-5[data-v-1502d8a8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-6[data-v-1502d8a8]{margin-left:52%}.col-no-margin-s-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-7[data-v-1502d8a8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-8[data-v-1502d8a8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-9[data-v-1502d8a8]{margin-left:78%}.col-no-margin-s-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-10[data-v-1502d8a8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-11[data-v-1502d8a8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1502d8a8]{display:none!important}.s-visible[data-v-1502d8a8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-1[data-v-1502d8a8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-2[data-v-1502d8a8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-3[data-v-1502d8a8]{margin-left:26%}.col-no-margin-m-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-4[data-v-1502d8a8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-5[data-v-1502d8a8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-6[data-v-1502d8a8]{margin-left:52%}.col-no-margin-m-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-7[data-v-1502d8a8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-8[data-v-1502d8a8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-9[data-v-1502d8a8]{margin-left:78%}.col-no-margin-m-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-10[data-v-1502d8a8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-11[data-v-1502d8a8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1502d8a8]{display:none!important}.m-visible[data-v-1502d8a8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-1[data-v-1502d8a8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-2[data-v-1502d8a8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-3[data-v-1502d8a8]{margin-left:26%}.col-no-margin-l-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-4[data-v-1502d8a8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-5[data-v-1502d8a8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-6[data-v-1502d8a8]{margin-left:52%}.col-no-margin-l-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-7[data-v-1502d8a8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-8[data-v-1502d8a8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-9[data-v-1502d8a8]{margin-left:78%}.col-no-margin-l-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-10[data-v-1502d8a8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-11[data-v-1502d8a8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1502d8a8]{display:none!important}.l-visible[data-v-1502d8a8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-1[data-v-1502d8a8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-2[data-v-1502d8a8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-3[data-v-1502d8a8]{margin-left:26%}.col-no-margin-xl-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-4[data-v-1502d8a8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-5[data-v-1502d8a8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-6[data-v-1502d8a8]{margin-left:52%}.col-no-margin-xl-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-7[data-v-1502d8a8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-8[data-v-1502d8a8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-9[data-v-1502d8a8]{margin-left:78%}.col-no-margin-xl-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-10[data-v-1502d8a8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-11[data-v-1502d8a8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1502d8a8]{display:none!important}.xl-visible[data-v-1502d8a8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1502d8a8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1502d8a8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1502d8a8]{margin-left:26%}.col-no-margin-xxl-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1502d8a8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1502d8a8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1502d8a8]{margin-left:52%}.col-no-margin-xxl-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1502d8a8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1502d8a8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1502d8a8]{margin-left:78%}.col-no-margin-xxl-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1502d8a8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1502d8a8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1502d8a8]{display:none!important}.xxl-visible[data-v-1502d8a8]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1502d8a8]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-1502d8a8]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1502d8a8]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-1502d8a8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1502d8a8]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-1502d8a8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1502d8a8]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-1502d8a8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1502d8a8]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-1502d8a8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1502d8a8]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-1502d8a8]{display:none}}@media screen and (min-width:769px){.mobile[data-v-1502d8a8]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1502d8a8]{display:none}}.vertical-center[data-v-1502d8a8]{display:flex;align-items:center}.horizontal-center[data-v-1502d8a8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1502d8a8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1502d8a8]{display:none!important}.no-content[data-v-1502d8a8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-1502d8a8],.btn[data-v-1502d8a8],button[data-v-1502d8a8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1502d8a8],.btn-default[type=submit][data-v-1502d8a8],.btn.btn-primary[data-v-1502d8a8],.btn[type=submit][data-v-1502d8a8],button.btn-primary[data-v-1502d8a8],button[type=submit][data-v-1502d8a8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1502d8a8],.btn-default .icon[data-v-1502d8a8],button .icon[data-v-1502d8a8]{margin-right:.5em}input[type=password][data-v-1502d8a8],input[type=text][data-v-1502d8a8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1502d8a8]:focus,input[type=text][data-v-1502d8a8]:focus{border:1px solid #35b870}button[data-v-1502d8a8],input[data-v-1502d8a8]{outline:none}input[type=text][data-v-1502d8a8]:hover,textarea[data-v-1502d8a8]:hover{border:1px solid #9cdfb0}ul[data-v-1502d8a8]{margin:0;padding:0;list-style:none}a[data-v-1502d8a8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1502d8a8]:hover{color:#35b870}[data-v-1502d8a8]::-webkit-scrollbar{width:.75em}[data-v-1502d8a8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1502d8a8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1502d8a8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-1502d8a8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-1502d8a8],input[type=password][data-v-1502d8a8],input[type=search][data-v-1502d8a8],input[type=text][data-v-1502d8a8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-1502d8a8]:hover,input[type=password][data-v-1502d8a8]:hover,input[type=search][data-v-1502d8a8]:hover,input[type=text][data-v-1502d8a8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-1502d8a8]:focus,input[type=password][data-v-1502d8a8]:focus,input[type=search][data-v-1502d8a8]:focus,input[type=text][data-v-1502d8a8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-1502d8a8],input[type=password].with-icon[data-v-1502d8a8],input[type=search].with-icon[data-v-1502d8a8],input[type=text].with-icon[data-v-1502d8a8]{padding-left:.3em}input[type=search][data-v-1502d8a8],input[type=text][data-v-1502d8a8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1502d8a8]{animation-fill-mode:both;animation-name:fadeIn-1502d8a8;-webkit-animation-name:fadeIn-1502d8a8}.fade-in[data-v-1502d8a8],.fade-out[data-v-1502d8a8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1502d8a8]{animation-fill-mode:both;animation-name:fadeOut-1502d8a8;-webkit-animation-name:fadeOut-1502d8a8}@keyframes fadeIn-1502d8a8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1502d8a8{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-1502d8a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1502d8a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1502d8a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.torrent-container[data-v-1502d8a8]{width:100%;height:calc(100% - 3.3em)}.torrent-container .view-container[data-v-1502d8a8]{height:100%;overflow:auto;padding-top:.2em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/7968.29db26b1.css b/platypush/backend/http/webapp/dist/static/css/7968.29db26b1.css new file mode 100644 index 00000000..3a02894b --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/7968.29db26b1.css @@ -0,0 +1 @@ +.col-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-33115af0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-33115af0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-33115af0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-33115af0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-33115af0]:first-child{margin-left:26%!important}.col-offset-3[data-v-33115af0]:not(first-child){margin-left:30%!important}.col-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-33115af0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-33115af0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-33115af0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-33115af0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-33115af0]:first-child{margin-left:52%!important}.col-offset-6[data-v-33115af0]:not(first-child){margin-left:56%!important}.col-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-33115af0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-33115af0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-33115af0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-33115af0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-33115af0]:first-child{margin-left:78%!important}.col-offset-9[data-v-33115af0]:not(first-child){margin-left:82%!important}.col-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-33115af0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-33115af0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-33115af0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-33115af0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-1[data-v-33115af0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-2[data-v-33115af0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-3[data-v-33115af0]{margin-left:26%}.col-no-margin-s-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-4[data-v-33115af0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-5[data-v-33115af0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-6[data-v-33115af0]{margin-left:52%}.col-no-margin-s-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-7[data-v-33115af0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-8[data-v-33115af0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-9[data-v-33115af0]{margin-left:78%}.col-no-margin-s-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-10[data-v-33115af0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-33115af0]:first-child{margin-left:0}.col-offset-s-11[data-v-33115af0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-33115af0]{display:none!important}.s-visible[data-v-33115af0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-1[data-v-33115af0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-2[data-v-33115af0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-3[data-v-33115af0]{margin-left:26%}.col-no-margin-m-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-4[data-v-33115af0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-5[data-v-33115af0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-6[data-v-33115af0]{margin-left:52%}.col-no-margin-m-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-7[data-v-33115af0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-8[data-v-33115af0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-9[data-v-33115af0]{margin-left:78%}.col-no-margin-m-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-10[data-v-33115af0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-33115af0]:first-child{margin-left:0}.col-offset-m-11[data-v-33115af0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-33115af0]{display:none!important}.m-visible[data-v-33115af0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-1[data-v-33115af0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-2[data-v-33115af0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-3[data-v-33115af0]{margin-left:26%}.col-no-margin-l-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-4[data-v-33115af0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-5[data-v-33115af0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-6[data-v-33115af0]{margin-left:52%}.col-no-margin-l-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-7[data-v-33115af0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-8[data-v-33115af0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-9[data-v-33115af0]{margin-left:78%}.col-no-margin-l-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-10[data-v-33115af0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-33115af0]:first-child{margin-left:0}.col-offset-l-11[data-v-33115af0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-33115af0]{display:none!important}.l-visible[data-v-33115af0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-1[data-v-33115af0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-2[data-v-33115af0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-3[data-v-33115af0]{margin-left:26%}.col-no-margin-xl-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-4[data-v-33115af0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-5[data-v-33115af0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-6[data-v-33115af0]{margin-left:52%}.col-no-margin-xl-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-7[data-v-33115af0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-8[data-v-33115af0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-9[data-v-33115af0]{margin-left:78%}.col-no-margin-xl-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-10[data-v-33115af0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-33115af0]:first-child{margin-left:0}.col-offset-xl-11[data-v-33115af0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-33115af0]{display:none!important}.xl-visible[data-v-33115af0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-33115af0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-33115af0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-33115af0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-33115af0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-33115af0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-33115af0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-33115af0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-33115af0]{margin-left:26%}.col-no-margin-xxl-3[data-v-33115af0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-33115af0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-33115af0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-33115af0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-33115af0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-33115af0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-33115af0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-33115af0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-33115af0]{margin-left:52%}.col-no-margin-xxl-6[data-v-33115af0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-33115af0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-33115af0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-33115af0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-33115af0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-33115af0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-33115af0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-33115af0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-33115af0]{margin-left:78%}.col-no-margin-xxl-9[data-v-33115af0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-33115af0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-33115af0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-33115af0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-33115af0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-33115af0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-33115af0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-33115af0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-33115af0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-33115af0]{display:none!important}.xxl-visible[data-v-33115af0]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-33115af0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-33115af0]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-33115af0]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-33115af0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-33115af0]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-33115af0]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-33115af0]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-33115af0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-33115af0]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-33115af0]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-33115af0]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-33115af0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-33115af0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-33115af0]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-33115af0]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-33115af0]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-33115af0]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-33115af0]{display:none!important}}.vertical-center[data-v-33115af0]{display:flex;align-items:center}.horizontal-center[data-v-33115af0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-33115af0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-33115af0]{display:none!important}.no-content[data-v-33115af0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-33115af0]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-33115af0]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-33115af0]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-33115af0]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-33115af0]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-33115af0]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-33115af0],.btn[data-v-33115af0],button[data-v-33115af0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-33115af0],.btn-default[type=submit][data-v-33115af0],.btn.btn-primary[data-v-33115af0],.btn[type=submit][data-v-33115af0],button.btn-primary[data-v-33115af0],button[type=submit][data-v-33115af0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-33115af0],.btn-default .icon[data-v-33115af0],button .icon[data-v-33115af0]{margin-right:.5em}input[type=password][data-v-33115af0],input[type=text][data-v-33115af0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-33115af0]:focus,input[type=text][data-v-33115af0]:focus{border:1px solid #35b870}button[data-v-33115af0],input[data-v-33115af0]{outline:none}input[type=text][data-v-33115af0]:hover,textarea[data-v-33115af0]:hover{border:1px solid #9cdfb0}ul[data-v-33115af0]{margin:0;padding:0;list-style:none}a[data-v-33115af0]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-33115af0]:hover{color:#35b870}[data-v-33115af0]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-33115af0]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-33115af0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-33115af0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-33115af0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-33115af0] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-33115af0] .nav .path{cursor:pointer}.browser[data-v-33115af0] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-33115af0] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-33115af0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-33115af0],input[type=number][data-v-33115af0],input[type=password][data-v-33115af0],input[type=search][data-v-33115af0],input[type=text][data-v-33115af0],input[type=time][data-v-33115af0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-33115af0]:hover,input[type=number][data-v-33115af0]:hover,input[type=password][data-v-33115af0]:hover,input[type=search][data-v-33115af0]:hover,input[type=text][data-v-33115af0]:hover,input[type=time][data-v-33115af0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-33115af0]:focus,input[type=number][data-v-33115af0]:focus,input[type=password][data-v-33115af0]:focus,input[type=search][data-v-33115af0]:focus,input[type=text][data-v-33115af0]:focus,input[type=time][data-v-33115af0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-33115af0],input[type=number].with-icon[data-v-33115af0],input[type=password].with-icon[data-v-33115af0],input[type=search].with-icon[data-v-33115af0],input[type=text].with-icon[data-v-33115af0],input[type=time].with-icon[data-v-33115af0]{padding-left:.3em}input[type=search][data-v-33115af0],input[type=text][data-v-33115af0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-33115af0]{animation-fill-mode:both;animation-name:fadeIn-33115af0;-webkit-animation-name:fadeIn-33115af0}.fade-in[data-v-33115af0],.fade-out[data-v-33115af0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-33115af0]{animation-fill-mode:both;animation-name:fadeOut-33115af0;-webkit-animation-name:fadeOut-33115af0}@keyframes fadeIn-33115af0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-33115af0{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-33115af0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-33115af0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-33115af0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.header[data-v-33115af0]{width:100%;height:3.3em;position:relative;background:#e0eae8;padding:.5em;box-shadow:0 3px 2px -1px silver}.header .row[data-v-33115af0]{display:flex;align-items:center}.header .side[data-v-33115af0]{display:inline-flex;align-items:center}.header .side.right[data-v-33115af0]{justify-content:right}.header[data-v-33115af0] button{background:none;padding:0 .25em;border:0;margin-right:.25em}.header[data-v-33115af0] button:hover{color:#38cf80}.header form[data-v-33115af0]{width:100%;padding:0;border:0;border-radius:0;box-shadow:none;background:initial}.header .search-box[data-v-33115af0]{width:100%;margin-left:.5em}.header .search-box input[type=search][data-v-33115af0]{width:100%}.col-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-1502d8a8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-1502d8a8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-1502d8a8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-1502d8a8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-1502d8a8]:first-child{margin-left:26%!important}.col-offset-3[data-v-1502d8a8]:not(first-child){margin-left:30%!important}.col-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-1502d8a8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-1502d8a8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-1502d8a8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-1502d8a8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-1502d8a8]:first-child{margin-left:52%!important}.col-offset-6[data-v-1502d8a8]:not(first-child){margin-left:56%!important}.col-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-1502d8a8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-1502d8a8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-1502d8a8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-1502d8a8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-1502d8a8]:first-child{margin-left:78%!important}.col-offset-9[data-v-1502d8a8]:not(first-child){margin-left:82%!important}.col-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-1502d8a8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-1502d8a8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-1502d8a8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-1502d8a8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-1[data-v-1502d8a8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-2[data-v-1502d8a8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-3[data-v-1502d8a8]{margin-left:26%}.col-no-margin-s-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-4[data-v-1502d8a8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-5[data-v-1502d8a8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-6[data-v-1502d8a8]{margin-left:52%}.col-no-margin-s-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-7[data-v-1502d8a8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-8[data-v-1502d8a8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-9[data-v-1502d8a8]{margin-left:78%}.col-no-margin-s-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-10[data-v-1502d8a8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-s-11[data-v-1502d8a8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-1502d8a8]{display:none!important}.s-visible[data-v-1502d8a8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-1[data-v-1502d8a8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-2[data-v-1502d8a8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-3[data-v-1502d8a8]{margin-left:26%}.col-no-margin-m-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-4[data-v-1502d8a8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-5[data-v-1502d8a8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-6[data-v-1502d8a8]{margin-left:52%}.col-no-margin-m-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-7[data-v-1502d8a8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-8[data-v-1502d8a8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-9[data-v-1502d8a8]{margin-left:78%}.col-no-margin-m-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-10[data-v-1502d8a8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-m-11[data-v-1502d8a8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-1502d8a8]{display:none!important}.m-visible[data-v-1502d8a8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-1[data-v-1502d8a8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-2[data-v-1502d8a8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-3[data-v-1502d8a8]{margin-left:26%}.col-no-margin-l-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-4[data-v-1502d8a8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-5[data-v-1502d8a8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-6[data-v-1502d8a8]{margin-left:52%}.col-no-margin-l-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-7[data-v-1502d8a8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-8[data-v-1502d8a8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-9[data-v-1502d8a8]{margin-left:78%}.col-no-margin-l-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-10[data-v-1502d8a8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-l-11[data-v-1502d8a8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-1502d8a8]{display:none!important}.l-visible[data-v-1502d8a8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-1[data-v-1502d8a8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-2[data-v-1502d8a8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-3[data-v-1502d8a8]{margin-left:26%}.col-no-margin-xl-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-4[data-v-1502d8a8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-5[data-v-1502d8a8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-6[data-v-1502d8a8]{margin-left:52%}.col-no-margin-xl-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-7[data-v-1502d8a8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-8[data-v-1502d8a8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-9[data-v-1502d8a8]{margin-left:78%}.col-no-margin-xl-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-10[data-v-1502d8a8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xl-11[data-v-1502d8a8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-1502d8a8]{display:none!important}.xl-visible[data-v-1502d8a8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-1502d8a8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-1502d8a8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-1502d8a8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-1502d8a8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-1502d8a8]{margin-left:26%}.col-no-margin-xxl-3[data-v-1502d8a8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-1502d8a8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-1502d8a8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-1502d8a8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-1502d8a8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-1502d8a8]{margin-left:52%}.col-no-margin-xxl-6[data-v-1502d8a8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-1502d8a8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-1502d8a8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-1502d8a8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-1502d8a8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-1502d8a8]{margin-left:78%}.col-no-margin-xxl-9[data-v-1502d8a8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-1502d8a8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-1502d8a8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-1502d8a8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-1502d8a8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-1502d8a8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-1502d8a8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-1502d8a8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-1502d8a8]{display:none!important}.xxl-visible[data-v-1502d8a8]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-1502d8a8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-1502d8a8]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-1502d8a8]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-1502d8a8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-1502d8a8]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-1502d8a8]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1502d8a8]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-1502d8a8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1502d8a8]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-1502d8a8]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1502d8a8]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-1502d8a8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1502d8a8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-1502d8a8]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1502d8a8]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-1502d8a8]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-1502d8a8]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1502d8a8]{display:none!important}}.vertical-center[data-v-1502d8a8]{display:flex;align-items:center}.horizontal-center[data-v-1502d8a8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-1502d8a8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-1502d8a8]{display:none!important}.no-content[data-v-1502d8a8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-1502d8a8]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-1502d8a8]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-1502d8a8]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-1502d8a8]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-1502d8a8]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-1502d8a8]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-1502d8a8],.btn[data-v-1502d8a8],button[data-v-1502d8a8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-1502d8a8],.btn-default[type=submit][data-v-1502d8a8],.btn.btn-primary[data-v-1502d8a8],.btn[type=submit][data-v-1502d8a8],button.btn-primary[data-v-1502d8a8],button[type=submit][data-v-1502d8a8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-1502d8a8],.btn-default .icon[data-v-1502d8a8],button .icon[data-v-1502d8a8]{margin-right:.5em}input[type=password][data-v-1502d8a8],input[type=text][data-v-1502d8a8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-1502d8a8]:focus,input[type=text][data-v-1502d8a8]:focus{border:1px solid #35b870}button[data-v-1502d8a8],input[data-v-1502d8a8]{outline:none}input[type=text][data-v-1502d8a8]:hover,textarea[data-v-1502d8a8]:hover{border:1px solid #9cdfb0}ul[data-v-1502d8a8]{margin:0;padding:0;list-style:none}a[data-v-1502d8a8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-1502d8a8]:hover{color:#35b870}[data-v-1502d8a8]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-1502d8a8]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-1502d8a8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-1502d8a8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-1502d8a8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-1502d8a8] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-1502d8a8] .nav .path{cursor:pointer}.browser[data-v-1502d8a8] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-1502d8a8] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-1502d8a8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-1502d8a8],input[type=number][data-v-1502d8a8],input[type=password][data-v-1502d8a8],input[type=search][data-v-1502d8a8],input[type=text][data-v-1502d8a8],input[type=time][data-v-1502d8a8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-1502d8a8]:hover,input[type=number][data-v-1502d8a8]:hover,input[type=password][data-v-1502d8a8]:hover,input[type=search][data-v-1502d8a8]:hover,input[type=text][data-v-1502d8a8]:hover,input[type=time][data-v-1502d8a8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-1502d8a8]:focus,input[type=number][data-v-1502d8a8]:focus,input[type=password][data-v-1502d8a8]:focus,input[type=search][data-v-1502d8a8]:focus,input[type=text][data-v-1502d8a8]:focus,input[type=time][data-v-1502d8a8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-1502d8a8],input[type=number].with-icon[data-v-1502d8a8],input[type=password].with-icon[data-v-1502d8a8],input[type=search].with-icon[data-v-1502d8a8],input[type=text].with-icon[data-v-1502d8a8],input[type=time].with-icon[data-v-1502d8a8]{padding-left:.3em}input[type=search][data-v-1502d8a8],input[type=text][data-v-1502d8a8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-1502d8a8]{animation-fill-mode:both;animation-name:fadeIn-1502d8a8;-webkit-animation-name:fadeIn-1502d8a8}.fade-in[data-v-1502d8a8],.fade-out[data-v-1502d8a8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-1502d8a8]{animation-fill-mode:both;animation-name:fadeOut-1502d8a8;-webkit-animation-name:fadeOut-1502d8a8}@keyframes fadeIn-1502d8a8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-1502d8a8{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-1502d8a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-1502d8a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-1502d8a8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.torrent-container[data-v-1502d8a8]{width:100%;height:calc(100% - 3.3em)}.torrent-container .view-container[data-v-1502d8a8]{height:100%;overflow:auto;padding-top:.2em} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/css/8039.eeeae3a7.css b/platypush/backend/http/webapp/dist/static/css/8039.e77a760e.css similarity index 68% rename from platypush/backend/http/webapp/dist/static/css/8039.eeeae3a7.css rename to platypush/backend/http/webapp/dist/static/css/8039.e77a760e.css index 90a59ceb..cf9e216d 100644 --- a/platypush/backend/http/webapp/dist/static/css/8039.eeeae3a7.css +++ b/platypush/backend/http/webapp/dist/static/css/8039.e77a760e.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(769px - 1px)){.tablet.from{display:none}}@media screen and (min-width:1024px){.tablet.until{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none}}@media screen and (min-width:1024px){.tablet.only{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none}}@media screen and (min-width:1216px){.desktop.until{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none}}@media screen and (min-width:1216px){.desktop.only{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none}}@media screen and (min-width:1408px){.widescreen.until{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none}}@media screen and (min-width:1408px){.widescreen.only{display:none}}@media screen and (min-width:769px){.mobile{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none}}.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}.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:.75em}::-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}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number],input[type=password],input[type=search],input[type=text]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].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}}.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}.camera,.camera .camera-container{display:flex;flex-direction:column;align-items:center}.camera .camera-container{background:#101520}.camera .camera-container .frame-container{position:relative}.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%;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)}@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 .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}}.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}.camera,.camera .camera-container{display:flex;flex-direction:column;align-items:center}.camera .camera-container{background:#101520}.camera .camera-container .frame-container{position:relative}.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%;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)}@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/8069.5ef4c270.css b/platypush/backend/http/webapp/dist/static/css/8069.111183af.css similarity index 72% rename from platypush/backend/http/webapp/dist/static/css/8069.5ef4c270.css rename to platypush/backend/http/webapp/dist/static/css/8069.111183af.css index 86480fc1..fa3593b1 100644 --- a/platypush/backend/http/webapp/dist/static/css/8069.5ef4c270.css +++ b/platypush/backend/http/webapp/dist/static/css/8069.111183af.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(769px - 1px)){.tablet.from[data-v-a248454a]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-a248454a]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-a248454a]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-a248454a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-a248454a]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-a248454a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-a248454a]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-a248454a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-a248454a]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-a248454a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-a248454a]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-a248454a]{display:none}}@media screen and (min-width:769px){.mobile[data-v-a248454a]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-a248454a]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-a248454a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-a248454a],input[type=password][data-v-a248454a],input[type=search][data-v-a248454a],input[type=text][data-v-a248454a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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.2fdb982c.css b/platypush/backend/http/webapp/dist/static/css/8179.b5fb83f9.css similarity index 75% rename from platypush/backend/http/webapp/dist/static/css/8179.2fdb982c.css rename to platypush/backend/http/webapp/dist/static/css/8179.b5fb83f9.css index accbfd86..12b4b5f7 100644 --- a/platypush/backend/http/webapp/dist/static/css/8179.2fdb982c.css +++ b/platypush/backend/http/webapp/dist/static/css/8179.b5fb83f9.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(769px - 1px)){.tablet.from[data-v-69b17daa]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-69b17daa]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-69b17daa]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-69b17daa]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-69b17daa]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-69b17daa]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-69b17daa]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-69b17daa]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-69b17daa]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-69b17daa]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-69b17daa]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-69b17daa]{display:none}}@media screen and (min-width:769px){.mobile[data-v-69b17daa]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-69b17daa]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-69b17daa]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-69b17daa],input[type=password][data-v-69b17daa],input[type=search][data-v-69b17daa],input[type=text][data-v-69b17daa]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/8391.3ecab78d.css b/platypush/backend/http/webapp/dist/static/css/8391.b5dd11a9.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/8391.3ecab78d.css rename to platypush/backend/http/webapp/dist/static/css/8391.b5dd11a9.css index f5e72ac3..06f70d3d 100644 --- a/platypush/backend/http/webapp/dist/static/css/8391.3ecab78d.css +++ b/platypush/backend/http/webapp/dist/static/css/8391.b5dd11a9.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(769px - 1px)){.tablet.from[data-v-2aaabd26]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-2aaabd26]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2aaabd26]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-2aaabd26]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2aaabd26]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-2aaabd26]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2aaabd26]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-2aaabd26]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2aaabd26]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-2aaabd26]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2aaabd26]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-2aaabd26]{display:none}}@media screen and (min-width:769px){.mobile[data-v-2aaabd26]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2aaabd26]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-2aaabd26]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-2aaabd26],input[type=password][data-v-2aaabd26],input[type=search][data-v-2aaabd26],input[type=text][data-v-2aaabd26]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/8498.3676728c.css b/platypush/backend/http/webapp/dist/static/css/8498.3676728c.css new file mode 100644 index 00000000..9ca10a7b --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/8498.3676728c.css @@ -0,0 +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}}.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/8621.a58665a4.css b/platypush/backend/http/webapp/dist/static/css/8621.5db86eb0.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/8621.a58665a4.css rename to platypush/backend/http/webapp/dist/static/css/8621.5db86eb0.css index 3d047c3a..459b4c90 100644 --- a/platypush/backend/http/webapp/dist/static/css/8621.a58665a4.css +++ b/platypush/backend/http/webapp/dist/static/css/8621.5db86eb0.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(769px - 1px)){.tablet.from[data-v-8baaebb4]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-8baaebb4]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-8baaebb4]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-8baaebb4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-8baaebb4]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-8baaebb4]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-8baaebb4]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-8baaebb4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-8baaebb4]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-8baaebb4]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-8baaebb4]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-8baaebb4]{display:none}}@media screen and (min-width:769px){.mobile[data-v-8baaebb4]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-8baaebb4]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-8baaebb4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-8baaebb4],input[type=password][data-v-8baaebb4],input[type=search][data-v-8baaebb4],input[type=text][data-v-8baaebb4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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/8769.294a7607.css b/platypush/backend/http/webapp/dist/static/css/8769.fda642fb.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/8769.294a7607.css rename to platypush/backend/http/webapp/dist/static/css/8769.fda642fb.css index 763eb2c9..5ff3f7f9 100644 --- a/platypush/backend/http/webapp/dist/static/css/8769.294a7607.css +++ b/platypush/backend/http/webapp/dist/static/css/8769.fda642fb.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(769px - 1px)){.tablet.from[data-v-07323f6c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-07323f6c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-07323f6c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-07323f6c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-07323f6c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-07323f6c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-07323f6c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-07323f6c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-07323f6c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-07323f6c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-07323f6c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-07323f6c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-07323f6c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-07323f6c]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-07323f6c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-07323f6c],input[type=password][data-v-07323f6c],input[type=search][data-v-07323f6c],input[type=text][data-v-07323f6c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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.d5cc7895.css b/platypush/backend/http/webapp/dist/static/css/8825.f608e2c2.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/8825.d5cc7895.css rename to platypush/backend/http/webapp/dist/static/css/8825.f608e2c2.css index 2395997a..b791f584 100644 --- a/platypush/backend/http/webapp/dist/static/css/8825.d5cc7895.css +++ b/platypush/backend/http/webapp/dist/static/css/8825.f608e2c2.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(769px - 1px)){.tablet.from[data-v-fb021b6a]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-fb021b6a]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-fb021b6a]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-fb021b6a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-fb021b6a]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-fb021b6a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-fb021b6a]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-fb021b6a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-fb021b6a]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-fb021b6a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-fb021b6a]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-fb021b6a]{display:none}}@media screen and (min-width:769px){.mobile[data-v-fb021b6a]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-fb021b6a]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-fb021b6a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-fb021b6a],input[type=password][data-v-fb021b6a],input[type=search][data-v-fb021b6a],input[type=text][data-v-fb021b6a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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.63c7ae13.css b/platypush/backend/http/webapp/dist/static/css/8989.63c7ae13.css new file mode 100644 index 00000000..c89c4304 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/8989.63c7ae13.css @@ -0,0 +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}}.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/9381.ade341db.css b/platypush/backend/http/webapp/dist/static/css/9381.ade341db.css new file mode 100644 index 00000000..5434a84c --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/9381.ade341db.css @@ -0,0 +1 @@ +.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}}.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}}.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}}.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}}.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}}.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}}.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.79136fbe.css b/platypush/backend/http/webapp/dist/static/css/9461.79136fbe.css new file mode 100644 index 00000000..3fb40472 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/9461.79136fbe.css @@ -0,0 +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}}.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/9751.0631f530.css b/platypush/backend/http/webapp/dist/static/css/9751.0631f530.css new file mode 100644 index 00000000..1c857d58 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/9751.0631f530.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 .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}}.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}}.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}}.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}}.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}}.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}}.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}}.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.b4628099.css b/platypush/backend/http/webapp/dist/static/css/980.b4628099.css new file mode 100644 index 00000000..39371f20 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/980.b4628099.css @@ -0,0 +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}}.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.7571e216.css b/platypush/backend/http/webapp/dist/static/css/984.0c88349b.css similarity index 67% rename from platypush/backend/http/webapp/dist/static/css/984.7571e216.css rename to platypush/backend/http/webapp/dist/static/css/984.0c88349b.css index 0745f3d1..7c85e47b 100644 --- a/platypush/backend/http/webapp/dist/static/css/984.7571e216.css +++ b/platypush/backend/http/webapp/dist/static/css/984.0c88349b.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(769px - 1px)){.tablet.from[data-v-5c801a06]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-5c801a06]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5c801a06]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-5c801a06]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5c801a06]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-5c801a06]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5c801a06]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-5c801a06]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5c801a06]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-5c801a06]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5c801a06]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-5c801a06]{display:none}}@media screen and (min-width:769px){.mobile[data-v-5c801a06]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5c801a06]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-5c801a06]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-5c801a06],input[type=password][data-v-5c801a06],input[type=search][data-v-5c801a06],input[type=text][data-v-5c801a06]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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 .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}}.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.68c87814.css b/platypush/backend/http/webapp/dist/static/css/9962.68c87814.css deleted file mode 100644 index f87a55a7..00000000 --- a/platypush/backend/http/webapp/dist/static/css/9962.68c87814.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(769px - 1px)){.tablet.from[data-v-5031881e]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-5031881e]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5031881e]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-5031881e]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5031881e]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-5031881e]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5031881e]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-5031881e]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5031881e]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-5031881e]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5031881e]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-5031881e]{display:none}}@media screen and (min-width:769px){.mobile[data-v-5031881e]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5031881e]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-5031881e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-5031881e],input[type=password][data-v-5031881e],input[type=search][data-v-5031881e],input[type=text][data-v-5031881e]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-69d38a93]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-69d38a93]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-69d38a93]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-69d38a93]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-69d38a93]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-69d38a93]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-69d38a93]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-69d38a93]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-69d38a93]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-69d38a93]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-69d38a93]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-69d38a93]{display:none}}@media screen and (min-width:769px){.mobile[data-v-69d38a93]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-69d38a93]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-69d38a93]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-69d38a93],input[type=password][data-v-69d38a93],input[type=search][data-v-69d38a93],input[type=text][data-v-69d38a93]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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.eb89f1f6.css b/platypush/backend/http/webapp/dist/static/css/9962.eb89f1f6.css new file mode 100644 index 00000000..967a38bc --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/9962.eb89f1f6.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 .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}}.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}}.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.eab47dab.css b/platypush/backend/http/webapp/dist/static/css/app.eab47dab.css deleted file mode 100644 index f0639168..00000000 --- a/platypush/backend/http/webapp/dist/static/css/app.eab47dab.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(769px - 1px)){.tablet.from[data-v-09bd997a]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-09bd997a]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-09bd997a]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-09bd997a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-09bd997a]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-09bd997a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-09bd997a]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-09bd997a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-09bd997a]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-09bd997a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-09bd997a]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-09bd997a]{display:none}}@media screen and (min-width:769px){.mobile[data-v-09bd997a]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-09bd997a]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-09bd997a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-09bd997a],input[type=password][data-v-09bd997a],input[type=search][data-v-09bd997a],input[type=text][data-v-09bd997a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-db648f4c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-db648f4c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-db648f4c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-db648f4c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-db648f4c]:first-child{margin-left:26%!important}.col-offset-3[data-v-db648f4c]:not(first-child){margin-left:30%!important}.col-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-db648f4c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-db648f4c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-db648f4c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-db648f4c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-db648f4c]:first-child{margin-left:52%!important}.col-offset-6[data-v-db648f4c]:not(first-child){margin-left:56%!important}.col-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-db648f4c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-db648f4c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-db648f4c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-db648f4c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-db648f4c]:first-child{margin-left:78%!important}.col-offset-9[data-v-db648f4c]:not(first-child){margin-left:82%!important}.col-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-db648f4c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-db648f4c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-db648f4c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-db648f4c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-1[data-v-db648f4c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-2[data-v-db648f4c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-3[data-v-db648f4c]{margin-left:26%}.col-no-margin-s-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-4[data-v-db648f4c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-5[data-v-db648f4c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-6[data-v-db648f4c]{margin-left:52%}.col-no-margin-s-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-7[data-v-db648f4c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-8[data-v-db648f4c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-9[data-v-db648f4c]{margin-left:78%}.col-no-margin-s-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-10[data-v-db648f4c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-11[data-v-db648f4c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-db648f4c]{display:none!important}.s-visible[data-v-db648f4c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-1[data-v-db648f4c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-2[data-v-db648f4c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-3[data-v-db648f4c]{margin-left:26%}.col-no-margin-m-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-4[data-v-db648f4c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-5[data-v-db648f4c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-6[data-v-db648f4c]{margin-left:52%}.col-no-margin-m-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-7[data-v-db648f4c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-8[data-v-db648f4c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-9[data-v-db648f4c]{margin-left:78%}.col-no-margin-m-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-10[data-v-db648f4c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-11[data-v-db648f4c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-db648f4c]{display:none!important}.m-visible[data-v-db648f4c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-1[data-v-db648f4c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-2[data-v-db648f4c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-3[data-v-db648f4c]{margin-left:26%}.col-no-margin-l-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-4[data-v-db648f4c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-5[data-v-db648f4c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-6[data-v-db648f4c]{margin-left:52%}.col-no-margin-l-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-7[data-v-db648f4c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-8[data-v-db648f4c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-9[data-v-db648f4c]{margin-left:78%}.col-no-margin-l-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-10[data-v-db648f4c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-11[data-v-db648f4c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-db648f4c]{display:none!important}.l-visible[data-v-db648f4c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-1[data-v-db648f4c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-2[data-v-db648f4c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-3[data-v-db648f4c]{margin-left:26%}.col-no-margin-xl-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-4[data-v-db648f4c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-5[data-v-db648f4c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-6[data-v-db648f4c]{margin-left:52%}.col-no-margin-xl-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-7[data-v-db648f4c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-8[data-v-db648f4c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-9[data-v-db648f4c]{margin-left:78%}.col-no-margin-xl-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-10[data-v-db648f4c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-11[data-v-db648f4c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-db648f4c]{display:none!important}.xl-visible[data-v-db648f4c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-db648f4c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-db648f4c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-db648f4c]{margin-left:26%}.col-no-margin-xxl-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-db648f4c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-db648f4c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-db648f4c]{margin-left:52%}.col-no-margin-xxl-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-db648f4c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-db648f4c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-db648f4c]{margin-left:78%}.col-no-margin-xxl-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-db648f4c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-db648f4c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-db648f4c]{display:none!important}.xxl-visible[data-v-db648f4c]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-db648f4c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-db648f4c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-db648f4c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-db648f4c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-db648f4c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-db648f4c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-db648f4c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-db648f4c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-db648f4c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-db648f4c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-db648f4c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-db648f4c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-db648f4c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-db648f4c]{display:none}}.vertical-center[data-v-db648f4c]{display:flex;align-items:center}.horizontal-center[data-v-db648f4c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-db648f4c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-db648f4c]{display:none!important}.no-content[data-v-db648f4c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-db648f4c],.btn[data-v-db648f4c],button[data-v-db648f4c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-db648f4c],.btn-default[type=submit][data-v-db648f4c],.btn.btn-primary[data-v-db648f4c],.btn[type=submit][data-v-db648f4c],button.btn-primary[data-v-db648f4c],button[type=submit][data-v-db648f4c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-db648f4c],.btn-default .icon[data-v-db648f4c],button .icon[data-v-db648f4c]{margin-right:.5em}input[type=password][data-v-db648f4c],input[type=text][data-v-db648f4c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-db648f4c]:focus,input[type=text][data-v-db648f4c]:focus{border:1px solid #35b870}button[data-v-db648f4c],input[data-v-db648f4c]{outline:none}input[type=text][data-v-db648f4c]:hover,textarea[data-v-db648f4c]:hover{border:1px solid #9cdfb0}ul[data-v-db648f4c]{margin:0;padding:0;list-style:none}a[data-v-db648f4c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-db648f4c]:hover{color:#35b870}[data-v-db648f4c]::-webkit-scrollbar{width:.75em}[data-v-db648f4c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-db648f4c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-db648f4c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-db648f4c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-db648f4c],input[type=password][data-v-db648f4c],input[type=search][data-v-db648f4c],input[type=text][data-v-db648f4c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-db648f4c]:hover,input[type=password][data-v-db648f4c]:hover,input[type=search][data-v-db648f4c]:hover,input[type=text][data-v-db648f4c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-db648f4c]:focus,input[type=password][data-v-db648f4c]:focus,input[type=search][data-v-db648f4c]:focus,input[type=text][data-v-db648f4c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-db648f4c],input[type=password].with-icon[data-v-db648f4c],input[type=search].with-icon[data-v-db648f4c],input[type=text].with-icon[data-v-db648f4c]{padding-left:.3em}input[type=search][data-v-db648f4c],input[type=text][data-v-db648f4c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-db648f4c]{animation-fill-mode:both;animation-name:fadeIn-db648f4c;-webkit-animation-name:fadeIn-db648f4c}.fade-in[data-v-db648f4c],.fade-out[data-v-db648f4c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-db648f4c]{animation-fill-mode:both;animation-name:fadeOut-db648f4c;-webkit-animation-name:fadeOut-db648f4c}@keyframes fadeIn-db648f4c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-db648f4c{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-db648f4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-db648f4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-db648f4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-db648f4c] .modal .dialog-content{padding:1em}[data-v-db648f4c] .modal .body{padding:1.5em}[data-v-db648f4c] .modal .buttons{display:flex;flex-direction:row;justify-content:right;margin-bottom:1em;border:0;border-radius:0}[data-v-db648f4c] .modal .buttons button{margin-right:1em;padding:.5em 1em;border:1px solid #ddd;border-radius:1em}[data-v-db648f4c] .modal .buttons button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.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(769px - 1px)){.tablet.from[data-v-7646705e]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-7646705e]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7646705e]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-7646705e]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7646705e]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-7646705e]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7646705e]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-7646705e]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7646705e]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-7646705e]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7646705e]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-7646705e]{display:none}}@media screen and (min-width:769px){.mobile[data-v-7646705e]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7646705e]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-7646705e]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-7646705e],input[type=password][data-v-7646705e],input[type=search][data-v-7646705e],input[type=text][data-v-7646705e]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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}/*! - * Font Awesome Free 6.4.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 2023 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,none))}.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-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-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-arrow-turn-right:before,.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.4.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 2023 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.fd0b155c.woff2) format("woff2"),url(/static/fonts/fa-solid-900.6a8db53d.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}/*! - * Font Awesome Free 6.4.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 2023 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.3580b4a9.woff2) format("woff2"),url(/static/fonts/fa-regular-400.67a0fb74.ttf) format("truetype")}.fa-regular,.far{font-weight:400}/*! - * Font Awesome Free 6.4.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 2023 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.b6033b54.woff2) format("woff2"),url(/static/fonts/fa-brands-400.9a905705.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-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-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-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-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{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-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-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-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-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-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-facebook-f:before{content:""}.fa-google-plus-square:before,.fa-square-google-plus: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-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-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-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-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-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-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-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}.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(769px - 1px)){.tablet.from[data-v-4d9c871b]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-4d9c871b]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4d9c871b]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-4d9c871b]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4d9c871b]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-4d9c871b]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4d9c871b]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-4d9c871b]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4d9c871b]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-4d9c871b]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4d9c871b]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-4d9c871b]{display:none}}@media screen and (min-width:769px){.mobile[data-v-4d9c871b]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4d9c871b]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-4d9c871b]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-4d9c871b],input[type=password][data-v-4d9c871b],input[type=search][data-v-4d9c871b],input[type=text][data-v-4d9c871b]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-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(769px - 1px)){.tablet.from[data-v-1b4663f2]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-1b4663f2]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1b4663f2]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-1b4663f2]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1b4663f2]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-1b4663f2]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1b4663f2]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-1b4663f2]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1b4663f2]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-1b4663f2]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1b4663f2]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-1b4663f2]{display:none}}@media screen and (min-width:769px){.mobile[data-v-1b4663f2]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1b4663f2]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-1b4663f2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-1b4663f2],input[type=password][data-v-1b4663f2],input[type=search][data-v-1b4663f2],input[type=text][data-v-1b4663f2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-5df52982]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-5df52982]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5df52982]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-5df52982]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5df52982]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-5df52982]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5df52982]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-5df52982]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5df52982]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-5df52982]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5df52982]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-5df52982]{display:none}}@media screen and (min-width:769px){.mobile[data-v-5df52982]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5df52982]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-5df52982]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-5df52982],input[type=password][data-v-5df52982],input[type=search][data-v-5df52982],input[type=text][data-v-5df52982]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-54e0248a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-54e0248a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-54e0248a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-54e0248a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-54e0248a]:first-child{margin-left:26%!important}.col-offset-3[data-v-54e0248a]:not(first-child){margin-left:30%!important}.col-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-54e0248a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-54e0248a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-54e0248a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-54e0248a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-54e0248a]:first-child{margin-left:52%!important}.col-offset-6[data-v-54e0248a]:not(first-child){margin-left:56%!important}.col-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-54e0248a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-54e0248a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-54e0248a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-54e0248a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-54e0248a]:first-child{margin-left:78%!important}.col-offset-9[data-v-54e0248a]:not(first-child){margin-left:82%!important}.col-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-54e0248a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-54e0248a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-54e0248a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-54e0248a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-1[data-v-54e0248a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-2[data-v-54e0248a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-3[data-v-54e0248a]{margin-left:26%}.col-no-margin-s-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-4[data-v-54e0248a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-5[data-v-54e0248a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-6[data-v-54e0248a]{margin-left:52%}.col-no-margin-s-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-7[data-v-54e0248a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-8[data-v-54e0248a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-9[data-v-54e0248a]{margin-left:78%}.col-no-margin-s-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-10[data-v-54e0248a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-11[data-v-54e0248a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-54e0248a]{display:none!important}.s-visible[data-v-54e0248a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-1[data-v-54e0248a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-2[data-v-54e0248a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-3[data-v-54e0248a]{margin-left:26%}.col-no-margin-m-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-4[data-v-54e0248a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-5[data-v-54e0248a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-6[data-v-54e0248a]{margin-left:52%}.col-no-margin-m-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-7[data-v-54e0248a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-8[data-v-54e0248a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-9[data-v-54e0248a]{margin-left:78%}.col-no-margin-m-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-10[data-v-54e0248a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-11[data-v-54e0248a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-54e0248a]{display:none!important}.m-visible[data-v-54e0248a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-1[data-v-54e0248a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-2[data-v-54e0248a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-3[data-v-54e0248a]{margin-left:26%}.col-no-margin-l-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-4[data-v-54e0248a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-5[data-v-54e0248a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-6[data-v-54e0248a]{margin-left:52%}.col-no-margin-l-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-7[data-v-54e0248a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-8[data-v-54e0248a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-9[data-v-54e0248a]{margin-left:78%}.col-no-margin-l-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-10[data-v-54e0248a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-11[data-v-54e0248a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-54e0248a]{display:none!important}.l-visible[data-v-54e0248a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-1[data-v-54e0248a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-2[data-v-54e0248a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-3[data-v-54e0248a]{margin-left:26%}.col-no-margin-xl-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-4[data-v-54e0248a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-5[data-v-54e0248a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-6[data-v-54e0248a]{margin-left:52%}.col-no-margin-xl-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-7[data-v-54e0248a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-8[data-v-54e0248a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-9[data-v-54e0248a]{margin-left:78%}.col-no-margin-xl-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-10[data-v-54e0248a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-11[data-v-54e0248a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-54e0248a]{display:none!important}.xl-visible[data-v-54e0248a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-54e0248a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-54e0248a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-54e0248a]{margin-left:26%}.col-no-margin-xxl-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-54e0248a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-54e0248a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-54e0248a]{margin-left:52%}.col-no-margin-xxl-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-54e0248a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-54e0248a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-54e0248a]{margin-left:78%}.col-no-margin-xxl-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-54e0248a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-54e0248a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-54e0248a]{display:none!important}.xxl-visible[data-v-54e0248a]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-54e0248a]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-54e0248a]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-54e0248a]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-54e0248a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-54e0248a]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-54e0248a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-54e0248a]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-54e0248a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-54e0248a]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-54e0248a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-54e0248a]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-54e0248a]{display:none}}@media screen and (min-width:769px){.mobile[data-v-54e0248a]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-54e0248a]{display:none}}.vertical-center[data-v-54e0248a]{display:flex;align-items:center}.horizontal-center[data-v-54e0248a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-54e0248a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-54e0248a]{display:none!important}.no-content[data-v-54e0248a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-54e0248a],.btn[data-v-54e0248a],button[data-v-54e0248a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-54e0248a],.btn-default[type=submit][data-v-54e0248a],.btn.btn-primary[data-v-54e0248a],.btn[type=submit][data-v-54e0248a],button.btn-primary[data-v-54e0248a],button[type=submit][data-v-54e0248a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-54e0248a],.btn-default .icon[data-v-54e0248a],button .icon[data-v-54e0248a]{margin-right:.5em}input[type=password][data-v-54e0248a],input[type=text][data-v-54e0248a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-54e0248a]:focus,input[type=text][data-v-54e0248a]:focus{border:1px solid #35b870}button[data-v-54e0248a],input[data-v-54e0248a]{outline:none}input[type=text][data-v-54e0248a]:hover,textarea[data-v-54e0248a]:hover{border:1px solid #9cdfb0}ul[data-v-54e0248a]{margin:0;padding:0;list-style:none}a[data-v-54e0248a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-54e0248a]:hover{color:#35b870}[data-v-54e0248a]::-webkit-scrollbar{width:.75em}[data-v-54e0248a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-54e0248a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-54e0248a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-54e0248a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-54e0248a],input[type=password][data-v-54e0248a],input[type=search][data-v-54e0248a],input[type=text][data-v-54e0248a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-54e0248a]:hover,input[type=password][data-v-54e0248a]:hover,input[type=search][data-v-54e0248a]:hover,input[type=text][data-v-54e0248a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-54e0248a]:focus,input[type=password][data-v-54e0248a]:focus,input[type=search][data-v-54e0248a]:focus,input[type=text][data-v-54e0248a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-54e0248a],input[type=password].with-icon[data-v-54e0248a],input[type=search].with-icon[data-v-54e0248a],input[type=text].with-icon[data-v-54e0248a]{padding-left:.3em}input[type=search][data-v-54e0248a],input[type=text][data-v-54e0248a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-54e0248a]{animation-fill-mode:both;animation-name:fadeIn-54e0248a;-webkit-animation-name:fadeIn-54e0248a}.fade-in[data-v-54e0248a],.fade-out[data-v-54e0248a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-54e0248a]{animation-fill-mode:both;animation-name:fadeOut-54e0248a;-webkit-animation-name:fadeOut-54e0248a}@keyframes fadeIn-54e0248a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-54e0248a{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-54e0248a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-54e0248a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-54e0248a]: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-54e0248a]{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-54e0248a]{filter:blur(.075em)}.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(769px - 1px)){.tablet.from[data-v-af0b14d0]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-af0b14d0]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-af0b14d0]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-af0b14d0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-af0b14d0]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-af0b14d0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-af0b14d0]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-af0b14d0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-af0b14d0]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-af0b14d0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-af0b14d0]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-af0b14d0]{display:none}}@media screen and (min-width:769px){.mobile[data-v-af0b14d0]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-af0b14d0]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-af0b14d0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-af0b14d0],input[type=password][data-v-af0b14d0],input[type=search][data-v-af0b14d0],input[type=text][data-v-af0b14d0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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}.col-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-029bae2f]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-029bae2f]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-029bae2f]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-029bae2f]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-029bae2f]:first-child{margin-left:26%!important}.col-offset-3[data-v-029bae2f]:not(first-child){margin-left:30%!important}.col-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-029bae2f]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-029bae2f]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-029bae2f]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-029bae2f]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-029bae2f]:first-child{margin-left:52%!important}.col-offset-6[data-v-029bae2f]:not(first-child){margin-left:56%!important}.col-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-029bae2f]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-029bae2f]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-029bae2f]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-029bae2f]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-029bae2f]:first-child{margin-left:78%!important}.col-offset-9[data-v-029bae2f]:not(first-child){margin-left:82%!important}.col-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-029bae2f]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-029bae2f]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-029bae2f]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-029bae2f]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-1[data-v-029bae2f]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-2[data-v-029bae2f]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-3[data-v-029bae2f]{margin-left:26%}.col-no-margin-s-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-4[data-v-029bae2f]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-5[data-v-029bae2f]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-6[data-v-029bae2f]{margin-left:52%}.col-no-margin-s-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-7[data-v-029bae2f]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-8[data-v-029bae2f]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-9[data-v-029bae2f]{margin-left:78%}.col-no-margin-s-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-10[data-v-029bae2f]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-029bae2f]:first-child{margin-left:0}.col-offset-s-11[data-v-029bae2f]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-s-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-029bae2f]{display:none!important}.s-visible[data-v-029bae2f]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-1[data-v-029bae2f]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-2[data-v-029bae2f]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-3[data-v-029bae2f]{margin-left:26%}.col-no-margin-m-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-4[data-v-029bae2f]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-5[data-v-029bae2f]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-6[data-v-029bae2f]{margin-left:52%}.col-no-margin-m-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-7[data-v-029bae2f]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-8[data-v-029bae2f]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-9[data-v-029bae2f]{margin-left:78%}.col-no-margin-m-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-10[data-v-029bae2f]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-029bae2f]:first-child{margin-left:0}.col-offset-m-11[data-v-029bae2f]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-m-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-029bae2f]{display:none!important}.m-visible[data-v-029bae2f]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-1[data-v-029bae2f]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-2[data-v-029bae2f]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-3[data-v-029bae2f]{margin-left:26%}.col-no-margin-l-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-4[data-v-029bae2f]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-5[data-v-029bae2f]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-6[data-v-029bae2f]{margin-left:52%}.col-no-margin-l-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-7[data-v-029bae2f]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-8[data-v-029bae2f]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-9[data-v-029bae2f]{margin-left:78%}.col-no-margin-l-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-10[data-v-029bae2f]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-029bae2f]:first-child{margin-left:0}.col-offset-l-11[data-v-029bae2f]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-l-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-029bae2f]{display:none!important}.l-visible[data-v-029bae2f]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-1[data-v-029bae2f]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-2[data-v-029bae2f]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-3[data-v-029bae2f]{margin-left:26%}.col-no-margin-xl-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-4[data-v-029bae2f]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-5[data-v-029bae2f]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-6[data-v-029bae2f]{margin-left:52%}.col-no-margin-xl-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-7[data-v-029bae2f]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-8[data-v-029bae2f]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-9[data-v-029bae2f]{margin-left:78%}.col-no-margin-xl-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-10[data-v-029bae2f]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xl-11[data-v-029bae2f]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-029bae2f]{display:none!important}.xl-visible[data-v-029bae2f]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-1[data-v-029bae2f]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-029bae2f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-2[data-v-029bae2f]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-029bae2f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-3[data-v-029bae2f]{margin-left:26%}.col-no-margin-xxl-3[data-v-029bae2f]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-4[data-v-029bae2f]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-029bae2f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-5[data-v-029bae2f]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-029bae2f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-6[data-v-029bae2f]{margin-left:52%}.col-no-margin-xxl-6[data-v-029bae2f]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-7[data-v-029bae2f]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-029bae2f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-8[data-v-029bae2f]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-029bae2f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-9[data-v-029bae2f]{margin-left:78%}.col-no-margin-xxl-9[data-v-029bae2f]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-10[data-v-029bae2f]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-029bae2f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-029bae2f]:first-child{margin-left:0}.col-offset-xxl-11[data-v-029bae2f]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-029bae2f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-029bae2f]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-029bae2f]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-029bae2f]{display:none!important}.xxl-visible[data-v-029bae2f]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-029bae2f]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-029bae2f]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-029bae2f]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-029bae2f]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-029bae2f]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-029bae2f]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-029bae2f]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-029bae2f]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-029bae2f]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-029bae2f]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-029bae2f]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-029bae2f]{display:none}}@media screen and (min-width:769px){.mobile[data-v-029bae2f]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-029bae2f]{display:none}}.vertical-center[data-v-029bae2f]{display:flex;align-items:center}.horizontal-center[data-v-029bae2f]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-029bae2f]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-029bae2f]{display:none!important}.no-content[data-v-029bae2f]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-029bae2f],.btn[data-v-029bae2f],button[data-v-029bae2f]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-029bae2f],.btn-default[type=submit][data-v-029bae2f],.btn.btn-primary[data-v-029bae2f],.btn[type=submit][data-v-029bae2f],button.btn-primary[data-v-029bae2f],button[type=submit][data-v-029bae2f]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-029bae2f],.btn-default .icon[data-v-029bae2f],button .icon[data-v-029bae2f]{margin-right:.5em}input[type=password][data-v-029bae2f],input[type=text][data-v-029bae2f]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-029bae2f]:focus,input[type=text][data-v-029bae2f]:focus{border:1px solid #35b870}button[data-v-029bae2f],input[data-v-029bae2f]{outline:none}input[type=text][data-v-029bae2f]:hover,textarea[data-v-029bae2f]:hover{border:1px solid #9cdfb0}ul[data-v-029bae2f]{margin:0;padding:0;list-style:none}a[data-v-029bae2f]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-029bae2f]:hover{color:#35b870}[data-v-029bae2f]::-webkit-scrollbar{width:.75em}[data-v-029bae2f]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-029bae2f]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-029bae2f]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-029bae2f]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-029bae2f],input[type=password][data-v-029bae2f],input[type=search][data-v-029bae2f],input[type=text][data-v-029bae2f]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-029bae2f]:hover,input[type=password][data-v-029bae2f]:hover,input[type=search][data-v-029bae2f]:hover,input[type=text][data-v-029bae2f]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-029bae2f]:focus,input[type=password][data-v-029bae2f]:focus,input[type=search][data-v-029bae2f]:focus,input[type=text][data-v-029bae2f]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-029bae2f],input[type=password].with-icon[data-v-029bae2f],input[type=search].with-icon[data-v-029bae2f],input[type=text].with-icon[data-v-029bae2f]{padding-left:.3em}input[type=search][data-v-029bae2f],input[type=text][data-v-029bae2f]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-029bae2f]{animation-fill-mode:both;animation-name:fadeIn-029bae2f;-webkit-animation-name:fadeIn-029bae2f}.fade-in[data-v-029bae2f],.fade-out[data-v-029bae2f]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-029bae2f]{animation-fill-mode:both;animation-name:fadeOut-029bae2f;-webkit-animation-name:fadeOut-029bae2f}@keyframes fadeIn-029bae2f{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-029bae2f{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-029bae2f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-029bae2f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-029bae2f]: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-029bae2f]{width:100%;height:100vh;background:#4c4c4c;color:#fff;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5)}nav.collapsed[data-v-029bae2f]{box-shadow:1px 1px 1px 1px silver;margin-bottom:2px;z-index:1}nav[data-v-029bae2f]:not(.collapsed){position:absolute;top:0;left:0;z-index:5}nav:not(.collapsed) .icon.status[data-v-029bae2f]{top:.75em!important;left:2em}}@media screen and (min-width:769px){nav[data-v-029bae2f]{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-029bae2f]{width:20em;min-width:20em}}nav li[data-v-029bae2f]{border-bottom:1px solid hsla(0,0%,100%,.15);cursor:pointer;list-style:none}nav li a[data-v-029bae2f]{display:block;color:#fff;padding:1em .5em;text-decoration:none}nav li a[data-v-029bae2f]:hover{color:#fff}nav li.selected[data-v-029bae2f]{background:rgba(80,120,110,.8);border:1px solid transparent}nav li[data-v-029bae2f]:hover{background:#5a8c78;border:1px solid transparent}nav li .name[data-v-029bae2f]{margin-left:.5em}nav li .icon[data-v-029bae2f]{margin-right:.5em}nav .toggler[data-v-029bae2f]{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-029bae2f]{position:absolute;top:1.3em;right:.5em;font-size:.5em}nav .toggler .icon.status.ok[data-v-029bae2f]{color:#17ad17}nav .toggler .icon.status.error[data-v-029bae2f]{color:#ad1717}nav .hostname[data-v-029bae2f]{font-size:.7em;margin-top:-.2em}@media screen and (min-width:769px){nav .hostname[data-v-029bae2f]{margin-left:1em}}@media screen and (max-width:768px){nav .hostname[data-v-029bae2f]{text-align:right;margin-right:.25em;flex-grow:1}}nav .plugins[data-v-029bae2f]{height:calc(100% - 14.5em);overflow:auto}nav .footer[data-v-029bae2f]{height:11.4em;background:rgba(0,0,0,.25);padding:0;margin:0}nav .footer li[data-v-029bae2f]:last-child{border:0}nav ul li .icon[data-v-029bae2f]{margin-right:0}nav ul li .icon i[data-v-029bae2f],nav ul li .icon img[data-v-029bae2f]{width:1.5em;height:1.5em}nav .icon.status[data-v-029bae2f]{width:1em}nav.collapsed[data-v-029bae2f]{display:flex;flex-direction:column;margin-right:1px}@media screen and (min-width:769px){nav.collapsed[data-v-029bae2f]{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-029bae2f]{display:none}}@media screen and (max-width:768px){nav.collapsed[data-v-029bae2f]{height:auto}}nav.collapsed a[data-v-029bae2f]{color:#5e5e5e;padding:.25em 0}nav.collapsed a[data-v-029bae2f]:hover{color:#5e5e5e}nav.collapsed .toggler[data-v-029bae2f]{height:2em;text-align:center;box-shadow:none;background:none}nav.collapsed .toggler .icon.status[data-v-029bae2f]{top:.75em;left:2em}@media screen and (max-width:calc(769px - 1px)){nav.collapsed .toggler[data-v-029bae2f]{background:#3c3c3c;color:#fff}nav.collapsed .toggler .icon.status[data-v-029bae2f]{top:.75em!important}}nav.collapsed .footer[data-v-029bae2f]{height:7.5em;background:none;padding:0;margin-bottom:.5em;box-shadow:none}@media screen and (max-width:768px){nav.collapsed .footer[data-v-029bae2f]{display:none}}nav.collapsed ul[data-v-029bae2f]{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-029bae2f]{margin:2em 0}}nav.collapsed ul[data-v-029bae2f]:hover{overflow:auto}nav.collapsed ul li[data-v-029bae2f]{border:none;padding:0;text-align:center}nav.collapsed ul li.selected[data-v-029bae2f],nav.collapsed ul li[data-v-029bae2f]:hover{border-radius:1em;margin:0 .2em}nav.collapsed ul li.selected[data-v-029bae2f]{background:rgba(160,245,178,.95)}nav.collapsed ul li[data-v-029bae2f]:hover{background:rgba(160,245,178,.6)}nav.collapsed ul li .icon[data-v-029bae2f]{margin-right:0}@media screen and (max-width:768px){nav.collapsed ul li[data-v-029bae2f]{display:none}}.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(769px - 1px)){.tablet.from[data-v-706a3bd1]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-706a3bd1]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-706a3bd1]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-706a3bd1]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-706a3bd1]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-706a3bd1]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-706a3bd1]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-706a3bd1]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-706a3bd1]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-706a3bd1]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-706a3bd1]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-706a3bd1]{display:none}}@media screen and (min-width:769px){.mobile[data-v-706a3bd1]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-706a3bd1]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-706a3bd1]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-706a3bd1],input[type=password][data-v-706a3bd1],input[type=search][data-v-706a3bd1],input[type=text][data-v-706a3bd1]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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}.col-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-9dc3b3b6]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-9dc3b3b6]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-9dc3b3b6]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-9dc3b3b6]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-9dc3b3b6]:first-child{margin-left:26%!important}.col-offset-3[data-v-9dc3b3b6]:not(first-child){margin-left:30%!important}.col-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-9dc3b3b6]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-9dc3b3b6]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-9dc3b3b6]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-9dc3b3b6]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-9dc3b3b6]:first-child{margin-left:52%!important}.col-offset-6[data-v-9dc3b3b6]:not(first-child){margin-left:56%!important}.col-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-9dc3b3b6]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-9dc3b3b6]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-9dc3b3b6]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-9dc3b3b6]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-9dc3b3b6]:first-child{margin-left:78%!important}.col-offset-9[data-v-9dc3b3b6]:not(first-child){margin-left:82%!important}.col-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-9dc3b3b6]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-9dc3b3b6]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-9dc3b3b6]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-9dc3b3b6]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-1[data-v-9dc3b3b6]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-2[data-v-9dc3b3b6]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-3[data-v-9dc3b3b6]{margin-left:26%}.col-no-margin-s-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-4[data-v-9dc3b3b6]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-5[data-v-9dc3b3b6]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-6[data-v-9dc3b3b6]{margin-left:52%}.col-no-margin-s-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-7[data-v-9dc3b3b6]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-8[data-v-9dc3b3b6]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-9[data-v-9dc3b3b6]{margin-left:78%}.col-no-margin-s-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-10[data-v-9dc3b3b6]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-s-11[data-v-9dc3b3b6]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-s-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-9dc3b3b6]{display:none!important}.s-visible[data-v-9dc3b3b6]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-1[data-v-9dc3b3b6]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-2[data-v-9dc3b3b6]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-3[data-v-9dc3b3b6]{margin-left:26%}.col-no-margin-m-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-4[data-v-9dc3b3b6]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-5[data-v-9dc3b3b6]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-6[data-v-9dc3b3b6]{margin-left:52%}.col-no-margin-m-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-7[data-v-9dc3b3b6]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-8[data-v-9dc3b3b6]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-9[data-v-9dc3b3b6]{margin-left:78%}.col-no-margin-m-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-10[data-v-9dc3b3b6]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-m-11[data-v-9dc3b3b6]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-m-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-9dc3b3b6]{display:none!important}.m-visible[data-v-9dc3b3b6]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-1[data-v-9dc3b3b6]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-2[data-v-9dc3b3b6]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-3[data-v-9dc3b3b6]{margin-left:26%}.col-no-margin-l-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-4[data-v-9dc3b3b6]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-5[data-v-9dc3b3b6]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-6[data-v-9dc3b3b6]{margin-left:52%}.col-no-margin-l-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-7[data-v-9dc3b3b6]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-8[data-v-9dc3b3b6]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-9[data-v-9dc3b3b6]{margin-left:78%}.col-no-margin-l-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-10[data-v-9dc3b3b6]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-l-11[data-v-9dc3b3b6]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-l-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-9dc3b3b6]{display:none!important}.l-visible[data-v-9dc3b3b6]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-1[data-v-9dc3b3b6]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-2[data-v-9dc3b3b6]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-3[data-v-9dc3b3b6]{margin-left:26%}.col-no-margin-xl-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-4[data-v-9dc3b3b6]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-5[data-v-9dc3b3b6]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-6[data-v-9dc3b3b6]{margin-left:52%}.col-no-margin-xl-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-7[data-v-9dc3b3b6]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-8[data-v-9dc3b3b6]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-9[data-v-9dc3b3b6]{margin-left:78%}.col-no-margin-xl-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-10[data-v-9dc3b3b6]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xl-11[data-v-9dc3b3b6]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-9dc3b3b6]{display:none!important}.xl-visible[data-v-9dc3b3b6]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-1[data-v-9dc3b3b6]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-2[data-v-9dc3b3b6]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-3[data-v-9dc3b3b6]{margin-left:26%}.col-no-margin-xxl-3[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-4[data-v-9dc3b3b6]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-5[data-v-9dc3b3b6]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-6[data-v-9dc3b3b6]{margin-left:52%}.col-no-margin-xxl-6[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-7[data-v-9dc3b3b6]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-8[data-v-9dc3b3b6]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-9[data-v-9dc3b3b6]{margin-left:78%}.col-no-margin-xxl-9[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-10[data-v-9dc3b3b6]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-9dc3b3b6]:first-child{margin-left:0}.col-offset-xxl-11[data-v-9dc3b3b6]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-9dc3b3b6]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-9dc3b3b6]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-9dc3b3b6]{display:none!important}.xxl-visible[data-v-9dc3b3b6]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-9dc3b3b6]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-9dc3b3b6]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-9dc3b3b6]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-9dc3b3b6]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-9dc3b3b6]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-9dc3b3b6]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-9dc3b3b6]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-9dc3b3b6]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-9dc3b3b6]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-9dc3b3b6]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-9dc3b3b6]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-9dc3b3b6]{display:none}}@media screen and (min-width:769px){.mobile[data-v-9dc3b3b6]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-9dc3b3b6]{display:none}}.vertical-center[data-v-9dc3b3b6]{display:flex;align-items:center}.horizontal-center[data-v-9dc3b3b6]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-9dc3b3b6]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-9dc3b3b6]{display:none!important}.no-content[data-v-9dc3b3b6]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-9dc3b3b6],.btn[data-v-9dc3b3b6],button[data-v-9dc3b3b6]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-9dc3b3b6],.btn-default[type=submit][data-v-9dc3b3b6],.btn.btn-primary[data-v-9dc3b3b6],.btn[type=submit][data-v-9dc3b3b6],button.btn-primary[data-v-9dc3b3b6],button[type=submit][data-v-9dc3b3b6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-9dc3b3b6],.btn-default .icon[data-v-9dc3b3b6],button .icon[data-v-9dc3b3b6]{margin-right:.5em}input[type=password][data-v-9dc3b3b6],input[type=text][data-v-9dc3b3b6]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-9dc3b3b6]:focus,input[type=text][data-v-9dc3b3b6]:focus{border:1px solid #35b870}button[data-v-9dc3b3b6],input[data-v-9dc3b3b6]{outline:none}input[type=text][data-v-9dc3b3b6]:hover,textarea[data-v-9dc3b3b6]:hover{border:1px solid #9cdfb0}ul[data-v-9dc3b3b6]{margin:0;padding:0;list-style:none}a[data-v-9dc3b3b6]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-9dc3b3b6]:hover{color:#35b870}[data-v-9dc3b3b6]::-webkit-scrollbar{width:.75em}[data-v-9dc3b3b6]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-9dc3b3b6]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-9dc3b3b6]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-9dc3b3b6]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-9dc3b3b6],input[type=password][data-v-9dc3b3b6],input[type=search][data-v-9dc3b3b6],input[type=text][data-v-9dc3b3b6]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-9dc3b3b6]:hover,input[type=password][data-v-9dc3b3b6]:hover,input[type=search][data-v-9dc3b3b6]:hover,input[type=text][data-v-9dc3b3b6]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-9dc3b3b6]:focus,input[type=password][data-v-9dc3b3b6]:focus,input[type=search][data-v-9dc3b3b6]:focus,input[type=text][data-v-9dc3b3b6]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-9dc3b3b6],input[type=password].with-icon[data-v-9dc3b3b6],input[type=search].with-icon[data-v-9dc3b3b6],input[type=text].with-icon[data-v-9dc3b3b6]{padding-left:.3em}input[type=search][data-v-9dc3b3b6],input[type=text][data-v-9dc3b3b6]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-9dc3b3b6]{animation-fill-mode:both;animation-name:fadeIn-9dc3b3b6;-webkit-animation-name:fadeIn-9dc3b3b6}.fade-in[data-v-9dc3b3b6],.fade-out[data-v-9dc3b3b6]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-9dc3b3b6]{animation-fill-mode:both;animation-name:fadeOut-9dc3b3b6;-webkit-animation-name:fadeOut-9dc3b3b6}@keyframes fadeIn-9dc3b3b6{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-9dc3b3b6{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-9dc3b3b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-9dc3b3b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-9dc3b3b6]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.tab[data-v-9dc3b3b6]{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-9dc3b3b6]{flex-grow:1;justify-content:center}}.tab.selected[data-v-9dc3b3b6]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);font-weight:700}.tab[data-v-9dc3b3b6]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.tab[data-v-9dc3b3b6] .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(769px - 1px)){.tablet.from[data-v-f4300bb0]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-f4300bb0]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f4300bb0]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-f4300bb0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f4300bb0]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-f4300bb0]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f4300bb0]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-f4300bb0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f4300bb0]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-f4300bb0]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f4300bb0]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-f4300bb0]{display:none}}@media screen and (min-width:769px){.mobile[data-v-f4300bb0]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f4300bb0]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-f4300bb0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-f4300bb0],input[type=password][data-v-f4300bb0],input[type=search][data-v-f4300bb0],input[type=text][data-v-f4300bb0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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}.col-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-6be1edc1]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-6be1edc1]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-6be1edc1]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-6be1edc1]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-6be1edc1]:first-child{margin-left:26%!important}.col-offset-3[data-v-6be1edc1]:not(first-child){margin-left:30%!important}.col-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-6be1edc1]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-6be1edc1]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-6be1edc1]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-6be1edc1]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-6be1edc1]:first-child{margin-left:52%!important}.col-offset-6[data-v-6be1edc1]:not(first-child){margin-left:56%!important}.col-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-6be1edc1]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-6be1edc1]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-6be1edc1]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-6be1edc1]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-6be1edc1]:first-child{margin-left:78%!important}.col-offset-9[data-v-6be1edc1]:not(first-child){margin-left:82%!important}.col-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-6be1edc1]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-6be1edc1]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-6be1edc1]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-6be1edc1]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-1[data-v-6be1edc1]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-2[data-v-6be1edc1]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-3[data-v-6be1edc1]{margin-left:26%}.col-no-margin-s-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-4[data-v-6be1edc1]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-5[data-v-6be1edc1]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-6[data-v-6be1edc1]{margin-left:52%}.col-no-margin-s-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-7[data-v-6be1edc1]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-8[data-v-6be1edc1]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-9[data-v-6be1edc1]{margin-left:78%}.col-no-margin-s-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-10[data-v-6be1edc1]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-s-11[data-v-6be1edc1]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-s-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-6be1edc1]{display:none!important}.s-visible[data-v-6be1edc1]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-1[data-v-6be1edc1]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-2[data-v-6be1edc1]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-3[data-v-6be1edc1]{margin-left:26%}.col-no-margin-m-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-4[data-v-6be1edc1]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-5[data-v-6be1edc1]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-6[data-v-6be1edc1]{margin-left:52%}.col-no-margin-m-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-7[data-v-6be1edc1]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-8[data-v-6be1edc1]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-9[data-v-6be1edc1]{margin-left:78%}.col-no-margin-m-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-10[data-v-6be1edc1]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-m-11[data-v-6be1edc1]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-m-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-6be1edc1]{display:none!important}.m-visible[data-v-6be1edc1]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-1[data-v-6be1edc1]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-2[data-v-6be1edc1]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-3[data-v-6be1edc1]{margin-left:26%}.col-no-margin-l-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-4[data-v-6be1edc1]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-5[data-v-6be1edc1]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-6[data-v-6be1edc1]{margin-left:52%}.col-no-margin-l-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-7[data-v-6be1edc1]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-8[data-v-6be1edc1]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-9[data-v-6be1edc1]{margin-left:78%}.col-no-margin-l-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-10[data-v-6be1edc1]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-l-11[data-v-6be1edc1]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-l-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-6be1edc1]{display:none!important}.l-visible[data-v-6be1edc1]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-1[data-v-6be1edc1]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-2[data-v-6be1edc1]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-3[data-v-6be1edc1]{margin-left:26%}.col-no-margin-xl-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-4[data-v-6be1edc1]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-5[data-v-6be1edc1]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-6[data-v-6be1edc1]{margin-left:52%}.col-no-margin-xl-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-7[data-v-6be1edc1]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-8[data-v-6be1edc1]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-9[data-v-6be1edc1]{margin-left:78%}.col-no-margin-xl-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-10[data-v-6be1edc1]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xl-11[data-v-6be1edc1]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-6be1edc1]{display:none!important}.xl-visible[data-v-6be1edc1]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-1[data-v-6be1edc1]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-6be1edc1]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-2[data-v-6be1edc1]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-6be1edc1]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-3[data-v-6be1edc1]{margin-left:26%}.col-no-margin-xxl-3[data-v-6be1edc1]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-4[data-v-6be1edc1]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-6be1edc1]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-5[data-v-6be1edc1]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-6be1edc1]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-6[data-v-6be1edc1]{margin-left:52%}.col-no-margin-xxl-6[data-v-6be1edc1]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-7[data-v-6be1edc1]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-6be1edc1]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-8[data-v-6be1edc1]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-6be1edc1]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-9[data-v-6be1edc1]{margin-left:78%}.col-no-margin-xxl-9[data-v-6be1edc1]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-10[data-v-6be1edc1]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-6be1edc1]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-6be1edc1]:first-child{margin-left:0}.col-offset-xxl-11[data-v-6be1edc1]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-6be1edc1]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-6be1edc1]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-6be1edc1]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-6be1edc1]{display:none!important}.xxl-visible[data-v-6be1edc1]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-6be1edc1]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-6be1edc1]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-6be1edc1]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-6be1edc1]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-6be1edc1]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-6be1edc1]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-6be1edc1]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-6be1edc1]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-6be1edc1]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-6be1edc1]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-6be1edc1]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-6be1edc1]{display:none}}@media screen and (min-width:769px){.mobile[data-v-6be1edc1]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-6be1edc1]{display:none}}.vertical-center[data-v-6be1edc1]{display:flex;align-items:center}.horizontal-center[data-v-6be1edc1]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-6be1edc1]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-6be1edc1]{display:none!important}.no-content[data-v-6be1edc1]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-6be1edc1],.btn[data-v-6be1edc1],button[data-v-6be1edc1]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-6be1edc1],.btn-default[type=submit][data-v-6be1edc1],.btn.btn-primary[data-v-6be1edc1],.btn[type=submit][data-v-6be1edc1],button.btn-primary[data-v-6be1edc1],button[type=submit][data-v-6be1edc1]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-6be1edc1],.btn-default .icon[data-v-6be1edc1],button .icon[data-v-6be1edc1]{margin-right:.5em}input[type=password][data-v-6be1edc1],input[type=text][data-v-6be1edc1]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-6be1edc1]:focus,input[type=text][data-v-6be1edc1]:focus{border:1px solid #35b870}button[data-v-6be1edc1],input[data-v-6be1edc1]{outline:none}input[type=text][data-v-6be1edc1]:hover,textarea[data-v-6be1edc1]:hover{border:1px solid #9cdfb0}ul[data-v-6be1edc1]{margin:0;padding:0;list-style:none}a[data-v-6be1edc1]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-6be1edc1]:hover{color:#35b870}[data-v-6be1edc1]::-webkit-scrollbar{width:.75em}[data-v-6be1edc1]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-6be1edc1]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-6be1edc1]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-6be1edc1]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-6be1edc1],input[type=password][data-v-6be1edc1],input[type=search][data-v-6be1edc1],input[type=text][data-v-6be1edc1]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-6be1edc1]:hover,input[type=password][data-v-6be1edc1]:hover,input[type=search][data-v-6be1edc1]:hover,input[type=text][data-v-6be1edc1]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-6be1edc1]:focus,input[type=password][data-v-6be1edc1]:focus,input[type=search][data-v-6be1edc1]:focus,input[type=text][data-v-6be1edc1]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-6be1edc1],input[type=password].with-icon[data-v-6be1edc1],input[type=search].with-icon[data-v-6be1edc1],input[type=text].with-icon[data-v-6be1edc1]{padding-left:.3em}input[type=search][data-v-6be1edc1],input[type=text][data-v-6be1edc1]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-6be1edc1]{animation-fill-mode:both;animation-name:fadeIn-6be1edc1;-webkit-animation-name:fadeIn-6be1edc1}.fade-in[data-v-6be1edc1],.fade-out[data-v-6be1edc1]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-6be1edc1]{animation-fill-mode:both;animation-name:fadeOut-6be1edc1;-webkit-animation-name:fadeOut-6be1edc1}@keyframes fadeIn-6be1edc1{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-6be1edc1{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-6be1edc1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-6be1edc1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-6be1edc1]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.copy-button[data-v-6be1edc1]{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}.col-1[data-v-f988670a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-1[data-v-f988670a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f988670a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f988670a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f988670a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-2[data-v-f988670a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f988670a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f988670a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f988670a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-3[data-v-f988670a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f988670a]:first-child{margin-left:26%!important}.col-offset-3[data-v-f988670a]:not(first-child){margin-left:30%!important}.col-4[data-v-f988670a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-4[data-v-f988670a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f988670a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f988670a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f988670a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-5[data-v-f988670a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f988670a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f988670a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f988670a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-6[data-v-f988670a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f988670a]:first-child{margin-left:52%!important}.col-offset-6[data-v-f988670a]:not(first-child){margin-left:56%!important}.col-7[data-v-f988670a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-7[data-v-f988670a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f988670a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f988670a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f988670a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-8[data-v-f988670a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f988670a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f988670a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f988670a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-9[data-v-f988670a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f988670a]:first-child{margin-left:78%!important}.col-offset-9[data-v-f988670a]:not(first-child){margin-left:82%!important}.col-10[data-v-f988670a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-10[data-v-f988670a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f988670a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f988670a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f988670a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f988670a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f988670a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-1[data-v-f988670a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f988670a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f988670a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-2[data-v-f988670a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f988670a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f988670a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-3[data-v-f988670a]{margin-left:26%}.col-no-margin-s-3[data-v-f988670a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f988670a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-4[data-v-f988670a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f988670a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f988670a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-5[data-v-f988670a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f988670a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f988670a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-6[data-v-f988670a]{margin-left:52%}.col-no-margin-s-6[data-v-f988670a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f988670a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-7[data-v-f988670a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f988670a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f988670a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-8[data-v-f988670a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f988670a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f988670a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-9[data-v-f988670a]{margin-left:78%}.col-no-margin-s-9[data-v-f988670a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f988670a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-10[data-v-f988670a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f988670a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f988670a]:first-child{margin-left:0}.col-offset-s-11[data-v-f988670a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f988670a]{display:none!important}.s-visible[data-v-f988670a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f988670a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-1[data-v-f988670a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f988670a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f988670a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-2[data-v-f988670a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f988670a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f988670a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-3[data-v-f988670a]{margin-left:26%}.col-no-margin-m-3[data-v-f988670a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f988670a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-4[data-v-f988670a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f988670a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f988670a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-5[data-v-f988670a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f988670a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f988670a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-6[data-v-f988670a]{margin-left:52%}.col-no-margin-m-6[data-v-f988670a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f988670a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-7[data-v-f988670a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f988670a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f988670a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-8[data-v-f988670a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f988670a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f988670a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-9[data-v-f988670a]{margin-left:78%}.col-no-margin-m-9[data-v-f988670a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f988670a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-10[data-v-f988670a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f988670a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f988670a]:first-child{margin-left:0}.col-offset-m-11[data-v-f988670a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f988670a]{display:none!important}.m-visible[data-v-f988670a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f988670a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-1[data-v-f988670a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f988670a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f988670a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-2[data-v-f988670a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f988670a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f988670a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-3[data-v-f988670a]{margin-left:26%}.col-no-margin-l-3[data-v-f988670a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f988670a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-4[data-v-f988670a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f988670a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f988670a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-5[data-v-f988670a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f988670a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f988670a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-6[data-v-f988670a]{margin-left:52%}.col-no-margin-l-6[data-v-f988670a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f988670a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-7[data-v-f988670a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f988670a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f988670a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-8[data-v-f988670a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f988670a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f988670a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-9[data-v-f988670a]{margin-left:78%}.col-no-margin-l-9[data-v-f988670a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f988670a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-10[data-v-f988670a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f988670a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f988670a]:first-child{margin-left:0}.col-offset-l-11[data-v-f988670a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f988670a]{display:none!important}.l-visible[data-v-f988670a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f988670a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-1[data-v-f988670a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f988670a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f988670a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-2[data-v-f988670a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f988670a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f988670a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-3[data-v-f988670a]{margin-left:26%}.col-no-margin-xl-3[data-v-f988670a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f988670a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-4[data-v-f988670a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f988670a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f988670a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-5[data-v-f988670a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f988670a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f988670a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-6[data-v-f988670a]{margin-left:52%}.col-no-margin-xl-6[data-v-f988670a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f988670a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-7[data-v-f988670a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f988670a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f988670a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-8[data-v-f988670a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f988670a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f988670a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-9[data-v-f988670a]{margin-left:78%}.col-no-margin-xl-9[data-v-f988670a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f988670a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-10[data-v-f988670a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f988670a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f988670a]:first-child{margin-left:0}.col-offset-xl-11[data-v-f988670a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f988670a]{display:none!important}.xl-visible[data-v-f988670a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f988670a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f988670a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f988670a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f988670a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f988670a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f988670a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f988670a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f988670a]{margin-left:26%}.col-no-margin-xxl-3[data-v-f988670a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f988670a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f988670a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f988670a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f988670a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f988670a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f988670a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f988670a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f988670a]{margin-left:52%}.col-no-margin-xxl-6[data-v-f988670a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f988670a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f988670a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f988670a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f988670a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f988670a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f988670a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f988670a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f988670a]{margin-left:78%}.col-no-margin-xxl-9[data-v-f988670a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f988670a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f988670a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f988670a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f988670a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f988670a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f988670a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f988670a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f988670a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f988670a]{display:none!important}.xxl-visible[data-v-f988670a]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f988670a]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-f988670a]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f988670a]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-f988670a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f988670a]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-f988670a]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f988670a]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-f988670a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f988670a]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-f988670a]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f988670a]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-f988670a]{display:none}}@media screen and (min-width:769px){.mobile[data-v-f988670a]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f988670a]{display:none}}.vertical-center[data-v-f988670a]{display:flex;align-items:center}.horizontal-center[data-v-f988670a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f988670a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f988670a]{display:none!important}.no-content[data-v-f988670a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-f988670a],.btn[data-v-f988670a],button[data-v-f988670a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f988670a],.btn-default[type=submit][data-v-f988670a],.btn.btn-primary[data-v-f988670a],.btn[type=submit][data-v-f988670a],button.btn-primary[data-v-f988670a],button[type=submit][data-v-f988670a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-f988670a],.btn-default .icon[data-v-f988670a],button .icon[data-v-f988670a]{margin-right:.5em}input[type=password][data-v-f988670a],input[type=text][data-v-f988670a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f988670a]:focus,input[type=text][data-v-f988670a]:focus{border:1px solid #35b870}button[data-v-f988670a],input[data-v-f988670a]{outline:none}input[type=text][data-v-f988670a]:hover,textarea[data-v-f988670a]:hover{border:1px solid #9cdfb0}ul[data-v-f988670a]{margin:0;padding:0;list-style:none}a[data-v-f988670a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f988670a]:hover{color:#35b870}[data-v-f988670a]::-webkit-scrollbar{width:.75em}[data-v-f988670a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f988670a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-f988670a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-f988670a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-f988670a],input[type=password][data-v-f988670a],input[type=search][data-v-f988670a],input[type=text][data-v-f988670a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-f988670a]:hover,input[type=password][data-v-f988670a]:hover,input[type=search][data-v-f988670a]:hover,input[type=text][data-v-f988670a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-f988670a]:focus,input[type=password][data-v-f988670a]:focus,input[type=search][data-v-f988670a]:focus,input[type=text][data-v-f988670a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-f988670a],input[type=password].with-icon[data-v-f988670a],input[type=search].with-icon[data-v-f988670a],input[type=text].with-icon[data-v-f988670a]{padding-left:.3em}input[type=search][data-v-f988670a],input[type=text][data-v-f988670a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f988670a]{animation-fill-mode:both;animation-name:fadeIn-f988670a;-webkit-animation-name:fadeIn-f988670a}.fade-in[data-v-f988670a],.fade-out[data-v-f988670a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f988670a]{animation-fill-mode:both;animation-name:fadeOut-f988670a;-webkit-animation-name:fadeOut-f988670a}@keyframes fadeIn-f988670a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f988670a{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-f988670a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f988670a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f988670a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}pre[data-v-f988670a]{width:100%;margin:0;background:#0b0b0d;color:#f3f3fa;font-size:.9em;padding:.5em;overflow:auto}.config-container[data-v-f988670a]{width:100%;max-height:100%;position:relative;display:flex;flex-grow:1;overflow:auto}.config-container pre[data-v-f988670a]{border-radius:1em}.config-container.current[data-v-f988670a]{height:34%;margin-bottom:1.5em}.config-container.snippet[data-v-f988670a]{height:66%}.config-container.fullscreen[data-v-f988670a]{height:100%}.config-container.fullscreen pre[data-v-f988670a]{border-radius:0}.col-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5aac2322]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5aac2322]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5aac2322]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5aac2322]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5aac2322]:first-child{margin-left:26%!important}.col-offset-3[data-v-5aac2322]:not(first-child){margin-left:30%!important}.col-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5aac2322]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5aac2322]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5aac2322]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5aac2322]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5aac2322]:first-child{margin-left:52%!important}.col-offset-6[data-v-5aac2322]:not(first-child){margin-left:56%!important}.col-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5aac2322]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5aac2322]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5aac2322]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5aac2322]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5aac2322]:first-child{margin-left:78%!important}.col-offset-9[data-v-5aac2322]:not(first-child){margin-left:82%!important}.col-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5aac2322]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5aac2322]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5aac2322]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5aac2322]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-1[data-v-5aac2322]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-2[data-v-5aac2322]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-3[data-v-5aac2322]{margin-left:26%}.col-no-margin-s-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-4[data-v-5aac2322]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-5[data-v-5aac2322]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-6[data-v-5aac2322]{margin-left:52%}.col-no-margin-s-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-7[data-v-5aac2322]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-8[data-v-5aac2322]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-9[data-v-5aac2322]{margin-left:78%}.col-no-margin-s-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-10[data-v-5aac2322]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5aac2322]:first-child{margin-left:0}.col-offset-s-11[data-v-5aac2322]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5aac2322]{display:none!important}.s-visible[data-v-5aac2322]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-1[data-v-5aac2322]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-2[data-v-5aac2322]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-3[data-v-5aac2322]{margin-left:26%}.col-no-margin-m-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-4[data-v-5aac2322]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-5[data-v-5aac2322]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-6[data-v-5aac2322]{margin-left:52%}.col-no-margin-m-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-7[data-v-5aac2322]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-8[data-v-5aac2322]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-9[data-v-5aac2322]{margin-left:78%}.col-no-margin-m-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-10[data-v-5aac2322]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5aac2322]:first-child{margin-left:0}.col-offset-m-11[data-v-5aac2322]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5aac2322]{display:none!important}.m-visible[data-v-5aac2322]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-1[data-v-5aac2322]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-2[data-v-5aac2322]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-3[data-v-5aac2322]{margin-left:26%}.col-no-margin-l-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-4[data-v-5aac2322]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-5[data-v-5aac2322]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-6[data-v-5aac2322]{margin-left:52%}.col-no-margin-l-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-7[data-v-5aac2322]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-8[data-v-5aac2322]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-9[data-v-5aac2322]{margin-left:78%}.col-no-margin-l-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-10[data-v-5aac2322]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5aac2322]:first-child{margin-left:0}.col-offset-l-11[data-v-5aac2322]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5aac2322]{display:none!important}.l-visible[data-v-5aac2322]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-1[data-v-5aac2322]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-2[data-v-5aac2322]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-3[data-v-5aac2322]{margin-left:26%}.col-no-margin-xl-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-4[data-v-5aac2322]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-5[data-v-5aac2322]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-6[data-v-5aac2322]{margin-left:52%}.col-no-margin-xl-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-7[data-v-5aac2322]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-8[data-v-5aac2322]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-9[data-v-5aac2322]{margin-left:78%}.col-no-margin-xl-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-10[data-v-5aac2322]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xl-11[data-v-5aac2322]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5aac2322]{display:none!important}.xl-visible[data-v-5aac2322]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5aac2322]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5aac2322]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5aac2322]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5aac2322]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5aac2322]{margin-left:26%}.col-no-margin-xxl-3[data-v-5aac2322]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5aac2322]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5aac2322]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5aac2322]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5aac2322]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5aac2322]{margin-left:52%}.col-no-margin-xxl-6[data-v-5aac2322]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5aac2322]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5aac2322]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5aac2322]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5aac2322]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5aac2322]{margin-left:78%}.col-no-margin-xxl-9[data-v-5aac2322]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5aac2322]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5aac2322]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5aac2322]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5aac2322]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5aac2322]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5aac2322]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5aac2322]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5aac2322]{display:none!important}.xxl-visible[data-v-5aac2322]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5aac2322]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-5aac2322]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5aac2322]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-5aac2322]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5aac2322]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-5aac2322]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5aac2322]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-5aac2322]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5aac2322]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-5aac2322]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5aac2322]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-5aac2322]{display:none}}@media screen and (min-width:769px){.mobile[data-v-5aac2322]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5aac2322]{display:none}}.vertical-center[data-v-5aac2322]{display:flex;align-items:center}.horizontal-center[data-v-5aac2322]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5aac2322]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5aac2322]{display:none!important}.no-content[data-v-5aac2322]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-5aac2322],.btn[data-v-5aac2322],button[data-v-5aac2322]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5aac2322],.btn-default[type=submit][data-v-5aac2322],.btn.btn-primary[data-v-5aac2322],.btn[type=submit][data-v-5aac2322],button.btn-primary[data-v-5aac2322],button[type=submit][data-v-5aac2322]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5aac2322],.btn-default .icon[data-v-5aac2322],button .icon[data-v-5aac2322]{margin-right:.5em}input[type=password][data-v-5aac2322],input[type=text][data-v-5aac2322]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5aac2322]:focus,input[type=text][data-v-5aac2322]:focus{border:1px solid #35b870}button[data-v-5aac2322],input[data-v-5aac2322]{outline:none}input[type=text][data-v-5aac2322]:hover,textarea[data-v-5aac2322]:hover{border:1px solid #9cdfb0}ul[data-v-5aac2322]{margin:0;padding:0;list-style:none}a[data-v-5aac2322]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5aac2322]:hover{color:#35b870}[data-v-5aac2322]::-webkit-scrollbar{width:.75em}[data-v-5aac2322]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5aac2322]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5aac2322]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-5aac2322]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-5aac2322],input[type=password][data-v-5aac2322],input[type=search][data-v-5aac2322],input[type=text][data-v-5aac2322]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-5aac2322]:hover,input[type=password][data-v-5aac2322]:hover,input[type=search][data-v-5aac2322]:hover,input[type=text][data-v-5aac2322]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-5aac2322]:focus,input[type=password][data-v-5aac2322]:focus,input[type=search][data-v-5aac2322]:focus,input[type=text][data-v-5aac2322]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-5aac2322],input[type=password].with-icon[data-v-5aac2322],input[type=search].with-icon[data-v-5aac2322],input[type=text].with-icon[data-v-5aac2322]{padding-left:.3em}input[type=search][data-v-5aac2322],input[type=text][data-v-5aac2322]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5aac2322]{animation-fill-mode:both;animation-name:fadeIn-5aac2322;-webkit-animation-name:fadeIn-5aac2322}.fade-in[data-v-5aac2322],.fade-out[data-v-5aac2322]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5aac2322]{animation-fill-mode:both;animation-name:fadeOut-5aac2322;-webkit-animation-name:fadeOut-5aac2322}@keyframes fadeIn-5aac2322{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5aac2322{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-5aac2322]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5aac2322]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5aac2322]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}section[data-v-5aac2322]{height:100%}section header[data-v-5aac2322]{height:3em;padding:.5em;border-bottom:1px solid #ddd}section header h2[data-v-5aac2322]{margin:0;padding:0;font-size:1.25em}section article[data-v-5aac2322]{height:calc(100% - 3em);padding:.5em;overflow:auto}section article[data-v-5aac2322] ul{margin-left:1em}section article[data-v-5aac2322] ul li{list-style:disc}section .actions[data-v-5aac2322],section .events[data-v-5aac2322]{padding:.5em;overflow:auto}section .actions h3[data-v-5aac2322],section .events h3[data-v-5aac2322]{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-5aac2322],section .events ul[data-v-5aac2322]{display:flex;flex-direction:column;margin:0}section .actions ul li[data-v-5aac2322],section .events ul li[data-v-5aac2322]{width:100%;display:block;margin:.5em 0;list-style:none}section .actions ul li a[data-v-5aac2322],section .events ul li a[data-v-5aac2322]{width:100%;display:block}section .actions pre[data-v-5aac2322],section .events pre[data-v-5aac2322]{margin:0}.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(769px - 1px)){.tablet.from[data-v-2edff8b7]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-2edff8b7]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-2edff8b7]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-2edff8b7]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-2edff8b7]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-2edff8b7]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-2edff8b7]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-2edff8b7]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-2edff8b7]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-2edff8b7]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-2edff8b7]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-2edff8b7]{display:none}}@media screen and (min-width:769px){.mobile[data-v-2edff8b7]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-2edff8b7]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-2edff8b7]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-2edff8b7],input[type=password][data-v-2edff8b7],input[type=search][data-v-2edff8b7],input[type=text][data-v-2edff8b7]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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)}.col-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-7e5a8bae]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-7e5a8bae]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-7e5a8bae]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-7e5a8bae]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-7e5a8bae]:first-child{margin-left:26%!important}.col-offset-3[data-v-7e5a8bae]:not(first-child){margin-left:30%!important}.col-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-7e5a8bae]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-7e5a8bae]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-7e5a8bae]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-7e5a8bae]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-7e5a8bae]:first-child{margin-left:52%!important}.col-offset-6[data-v-7e5a8bae]:not(first-child){margin-left:56%!important}.col-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-7e5a8bae]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-7e5a8bae]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-7e5a8bae]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-7e5a8bae]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-7e5a8bae]:first-child{margin-left:78%!important}.col-offset-9[data-v-7e5a8bae]:not(first-child){margin-left:82%!important}.col-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-7e5a8bae]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-7e5a8bae]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-7e5a8bae]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-7e5a8bae]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-1[data-v-7e5a8bae]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-2[data-v-7e5a8bae]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-3[data-v-7e5a8bae]{margin-left:26%}.col-no-margin-s-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-4[data-v-7e5a8bae]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-5[data-v-7e5a8bae]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-6[data-v-7e5a8bae]{margin-left:52%}.col-no-margin-s-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-7[data-v-7e5a8bae]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-8[data-v-7e5a8bae]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-9[data-v-7e5a8bae]{margin-left:78%}.col-no-margin-s-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-10[data-v-7e5a8bae]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-s-11[data-v-7e5a8bae]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-s-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-7e5a8bae]{display:none!important}.s-visible[data-v-7e5a8bae]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-1[data-v-7e5a8bae]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-2[data-v-7e5a8bae]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-3[data-v-7e5a8bae]{margin-left:26%}.col-no-margin-m-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-4[data-v-7e5a8bae]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-5[data-v-7e5a8bae]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-6[data-v-7e5a8bae]{margin-left:52%}.col-no-margin-m-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-7[data-v-7e5a8bae]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-8[data-v-7e5a8bae]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-9[data-v-7e5a8bae]{margin-left:78%}.col-no-margin-m-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-10[data-v-7e5a8bae]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-m-11[data-v-7e5a8bae]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-m-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-7e5a8bae]{display:none!important}.m-visible[data-v-7e5a8bae]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-1[data-v-7e5a8bae]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-2[data-v-7e5a8bae]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-3[data-v-7e5a8bae]{margin-left:26%}.col-no-margin-l-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-4[data-v-7e5a8bae]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-5[data-v-7e5a8bae]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-6[data-v-7e5a8bae]{margin-left:52%}.col-no-margin-l-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-7[data-v-7e5a8bae]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-8[data-v-7e5a8bae]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-9[data-v-7e5a8bae]{margin-left:78%}.col-no-margin-l-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-10[data-v-7e5a8bae]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-l-11[data-v-7e5a8bae]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-l-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-7e5a8bae]{display:none!important}.l-visible[data-v-7e5a8bae]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-1[data-v-7e5a8bae]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-2[data-v-7e5a8bae]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-3[data-v-7e5a8bae]{margin-left:26%}.col-no-margin-xl-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-4[data-v-7e5a8bae]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-5[data-v-7e5a8bae]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-6[data-v-7e5a8bae]{margin-left:52%}.col-no-margin-xl-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-7[data-v-7e5a8bae]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-8[data-v-7e5a8bae]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-9[data-v-7e5a8bae]{margin-left:78%}.col-no-margin-xl-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-10[data-v-7e5a8bae]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xl-11[data-v-7e5a8bae]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-7e5a8bae]{display:none!important}.xl-visible[data-v-7e5a8bae]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-1[data-v-7e5a8bae]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-2[data-v-7e5a8bae]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-3[data-v-7e5a8bae]{margin-left:26%}.col-no-margin-xxl-3[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-4[data-v-7e5a8bae]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-5[data-v-7e5a8bae]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-6[data-v-7e5a8bae]{margin-left:52%}.col-no-margin-xxl-6[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-7[data-v-7e5a8bae]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-8[data-v-7e5a8bae]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-9[data-v-7e5a8bae]{margin-left:78%}.col-no-margin-xxl-9[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-10[data-v-7e5a8bae]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-7e5a8bae]:first-child{margin-left:0}.col-offset-xxl-11[data-v-7e5a8bae]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-7e5a8bae]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-7e5a8bae]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-7e5a8bae]{display:none!important}.xxl-visible[data-v-7e5a8bae]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-7e5a8bae]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-7e5a8bae]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-7e5a8bae]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-7e5a8bae]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-7e5a8bae]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-7e5a8bae]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-7e5a8bae]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-7e5a8bae]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-7e5a8bae]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-7e5a8bae]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-7e5a8bae]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-7e5a8bae]{display:none}}@media screen and (min-width:769px){.mobile[data-v-7e5a8bae]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-7e5a8bae]{display:none}}.vertical-center[data-v-7e5a8bae]{display:flex;align-items:center}.horizontal-center[data-v-7e5a8bae]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-7e5a8bae]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-7e5a8bae]{display:none!important}.no-content[data-v-7e5a8bae]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-7e5a8bae],.btn[data-v-7e5a8bae],button[data-v-7e5a8bae]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-7e5a8bae],.btn-default[type=submit][data-v-7e5a8bae],.btn.btn-primary[data-v-7e5a8bae],.btn[type=submit][data-v-7e5a8bae],button.btn-primary[data-v-7e5a8bae],button[type=submit][data-v-7e5a8bae]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-7e5a8bae],.btn-default .icon[data-v-7e5a8bae],button .icon[data-v-7e5a8bae]{margin-right:.5em}input[type=password][data-v-7e5a8bae],input[type=text][data-v-7e5a8bae]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-7e5a8bae]:focus,input[type=text][data-v-7e5a8bae]:focus{border:1px solid #35b870}button[data-v-7e5a8bae],input[data-v-7e5a8bae]{outline:none}input[type=text][data-v-7e5a8bae]:hover,textarea[data-v-7e5a8bae]:hover{border:1px solid #9cdfb0}ul[data-v-7e5a8bae]{margin:0;padding:0;list-style:none}a[data-v-7e5a8bae]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-7e5a8bae]:hover{color:#35b870}[data-v-7e5a8bae]::-webkit-scrollbar{width:.75em}[data-v-7e5a8bae]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-7e5a8bae]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-7e5a8bae]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-7e5a8bae]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-7e5a8bae],input[type=password][data-v-7e5a8bae],input[type=search][data-v-7e5a8bae],input[type=text][data-v-7e5a8bae]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-7e5a8bae]:hover,input[type=password][data-v-7e5a8bae]:hover,input[type=search][data-v-7e5a8bae]:hover,input[type=text][data-v-7e5a8bae]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-7e5a8bae]:focus,input[type=password][data-v-7e5a8bae]:focus,input[type=search][data-v-7e5a8bae]:focus,input[type=text][data-v-7e5a8bae]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-7e5a8bae],input[type=password].with-icon[data-v-7e5a8bae],input[type=search].with-icon[data-v-7e5a8bae],input[type=text].with-icon[data-v-7e5a8bae]{padding-left:.3em}input[type=search][data-v-7e5a8bae],input[type=text][data-v-7e5a8bae]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-7e5a8bae]{animation-fill-mode:both;animation-name:fadeIn-7e5a8bae;-webkit-animation-name:fadeIn-7e5a8bae}.fade-in[data-v-7e5a8bae],.fade-out[data-v-7e5a8bae]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-7e5a8bae]{animation-fill-mode:both;animation-name:fadeOut-7e5a8bae;-webkit-animation-name:fadeOut-7e5a8bae}@keyframes fadeIn-7e5a8bae{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-7e5a8bae{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-7e5a8bae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-7e5a8bae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-7e5a8bae]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}pre[data-v-7e5a8bae]{width:100%;margin:0;background:#0b0b0d;color:#f3f3fa;font-size:.9em;padding:.5em;overflow:auto}.install-container[data-v-7e5a8bae]{width:100%;height:100%;display:flex;flex-direction:column}.install-container section.top[data-v-7e5a8bae]{height:33.3333%!important}.install-container section.bottom[data-v-7e5a8bae]{height:66.6666%!important}.install-container section header[data-v-7e5a8bae]{height:3.5em;padding-left:.5em;border-top:1px solid #e1e4e8;border-bottom:1px solid #e1e4e8}.install-container section .body[data-v-7e5a8bae]{height:calc(100% - 3.5em);display:flex;flex-direction:column;padding:1em}.install-container section h2[data-v-7e5a8bae]{font-size:1.3em;opacity:.9}.install-container .container[data-v-7e5a8bae]{width:100%;height:100%;position:relative;display:flex;flex-direction:column}.install-container pre[data-v-7e5a8bae]{height:100%;position:relative;border-radius:1em}.install-container[data-v-7e5a8bae] .install-btn{width:100%;margin-top:1em;display:flex;justify-content:right}.install-container[data-v-7e5a8bae] .install-btn button{border-radius:.5em;margin-right:.5em}.install-container .loading-container[data-v-7e5a8bae]{width:100%;position:relative}.install-container .loading-container[data-v-7e5a8bae] .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(769px - 1px)){.tablet.from[data-v-3fa6b036]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-3fa6b036]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-3fa6b036]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-3fa6b036]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-3fa6b036]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-3fa6b036]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-3fa6b036]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-3fa6b036]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-3fa6b036]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-3fa6b036]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-3fa6b036]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-3fa6b036]{display:none}}@media screen and (min-width:769px){.mobile[data-v-3fa6b036]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-3fa6b036]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-3fa6b036]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-3fa6b036],input[type=password][data-v-3fa6b036],input[type=search][data-v-3fa6b036],input[type=text][data-v-3fa6b036]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-456a0caf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-456a0caf]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-456a0caf]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-456a0caf]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-456a0caf]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-456a0caf]:first-child{margin-left:26%!important}.col-offset-3[data-v-456a0caf]:not(first-child){margin-left:30%!important}.col-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-456a0caf]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-456a0caf]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-456a0caf]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-456a0caf]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-456a0caf]:first-child{margin-left:52%!important}.col-offset-6[data-v-456a0caf]:not(first-child){margin-left:56%!important}.col-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-456a0caf]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-456a0caf]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-456a0caf]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-456a0caf]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-456a0caf]:first-child{margin-left:78%!important}.col-offset-9[data-v-456a0caf]:not(first-child){margin-left:82%!important}.col-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-456a0caf]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-456a0caf]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-456a0caf]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-456a0caf]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-1[data-v-456a0caf]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-2[data-v-456a0caf]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-3[data-v-456a0caf]{margin-left:26%}.col-no-margin-s-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-4[data-v-456a0caf]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-5[data-v-456a0caf]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-6[data-v-456a0caf]{margin-left:52%}.col-no-margin-s-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-7[data-v-456a0caf]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-8[data-v-456a0caf]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-9[data-v-456a0caf]{margin-left:78%}.col-no-margin-s-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-10[data-v-456a0caf]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-456a0caf]:first-child{margin-left:0}.col-offset-s-11[data-v-456a0caf]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-s-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-456a0caf]{display:none!important}.s-visible[data-v-456a0caf]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-1[data-v-456a0caf]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-2[data-v-456a0caf]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-3[data-v-456a0caf]{margin-left:26%}.col-no-margin-m-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-4[data-v-456a0caf]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-5[data-v-456a0caf]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-6[data-v-456a0caf]{margin-left:52%}.col-no-margin-m-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-7[data-v-456a0caf]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-8[data-v-456a0caf]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-9[data-v-456a0caf]{margin-left:78%}.col-no-margin-m-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-10[data-v-456a0caf]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-456a0caf]:first-child{margin-left:0}.col-offset-m-11[data-v-456a0caf]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-m-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-456a0caf]{display:none!important}.m-visible[data-v-456a0caf]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-1[data-v-456a0caf]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-2[data-v-456a0caf]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-3[data-v-456a0caf]{margin-left:26%}.col-no-margin-l-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-4[data-v-456a0caf]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-5[data-v-456a0caf]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-6[data-v-456a0caf]{margin-left:52%}.col-no-margin-l-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-7[data-v-456a0caf]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-8[data-v-456a0caf]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-9[data-v-456a0caf]{margin-left:78%}.col-no-margin-l-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-10[data-v-456a0caf]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-456a0caf]:first-child{margin-left:0}.col-offset-l-11[data-v-456a0caf]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-l-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-456a0caf]{display:none!important}.l-visible[data-v-456a0caf]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-1[data-v-456a0caf]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-2[data-v-456a0caf]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-3[data-v-456a0caf]{margin-left:26%}.col-no-margin-xl-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-4[data-v-456a0caf]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-5[data-v-456a0caf]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-6[data-v-456a0caf]{margin-left:52%}.col-no-margin-xl-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-7[data-v-456a0caf]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-8[data-v-456a0caf]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-9[data-v-456a0caf]{margin-left:78%}.col-no-margin-xl-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-10[data-v-456a0caf]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xl-11[data-v-456a0caf]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-456a0caf]{display:none!important}.xl-visible[data-v-456a0caf]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-1[data-v-456a0caf]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-456a0caf]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-2[data-v-456a0caf]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-456a0caf]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-3[data-v-456a0caf]{margin-left:26%}.col-no-margin-xxl-3[data-v-456a0caf]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-4[data-v-456a0caf]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-456a0caf]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-5[data-v-456a0caf]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-456a0caf]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-6[data-v-456a0caf]{margin-left:52%}.col-no-margin-xxl-6[data-v-456a0caf]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-7[data-v-456a0caf]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-456a0caf]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-8[data-v-456a0caf]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-456a0caf]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-9[data-v-456a0caf]{margin-left:78%}.col-no-margin-xxl-9[data-v-456a0caf]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-10[data-v-456a0caf]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-456a0caf]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-456a0caf]:first-child{margin-left:0}.col-offset-xxl-11[data-v-456a0caf]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-456a0caf]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-456a0caf]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-456a0caf]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-456a0caf]{display:none!important}.xxl-visible[data-v-456a0caf]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-456a0caf]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-456a0caf]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-456a0caf]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-456a0caf]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-456a0caf]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-456a0caf]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-456a0caf]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-456a0caf]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-456a0caf]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-456a0caf]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-456a0caf]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-456a0caf]{display:none}}@media screen and (min-width:769px){.mobile[data-v-456a0caf]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-456a0caf]{display:none}}.vertical-center[data-v-456a0caf]{display:flex;align-items:center}.horizontal-center[data-v-456a0caf]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-456a0caf]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-456a0caf]{display:none!important}.no-content[data-v-456a0caf]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-456a0caf],.btn[data-v-456a0caf],button[data-v-456a0caf]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-456a0caf],.btn-default[type=submit][data-v-456a0caf],.btn.btn-primary[data-v-456a0caf],.btn[type=submit][data-v-456a0caf],button.btn-primary[data-v-456a0caf],button[type=submit][data-v-456a0caf]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-456a0caf],.btn-default .icon[data-v-456a0caf],button .icon[data-v-456a0caf]{margin-right:.5em}input[type=password][data-v-456a0caf],input[type=text][data-v-456a0caf]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-456a0caf]:focus,input[type=text][data-v-456a0caf]:focus{border:1px solid #35b870}button[data-v-456a0caf],input[data-v-456a0caf]{outline:none}input[type=text][data-v-456a0caf]:hover,textarea[data-v-456a0caf]:hover{border:1px solid #9cdfb0}ul[data-v-456a0caf]{margin:0;padding:0;list-style:none}a[data-v-456a0caf]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-456a0caf]:hover{color:#35b870}[data-v-456a0caf]::-webkit-scrollbar{width:.75em}[data-v-456a0caf]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-456a0caf]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-456a0caf]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-456a0caf]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-456a0caf],input[type=password][data-v-456a0caf],input[type=search][data-v-456a0caf],input[type=text][data-v-456a0caf]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-456a0caf]:hover,input[type=password][data-v-456a0caf]:hover,input[type=search][data-v-456a0caf]:hover,input[type=text][data-v-456a0caf]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-456a0caf]:focus,input[type=password][data-v-456a0caf]:focus,input[type=search][data-v-456a0caf]:focus,input[type=text][data-v-456a0caf]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-456a0caf],input[type=password].with-icon[data-v-456a0caf],input[type=search].with-icon[data-v-456a0caf],input[type=text].with-icon[data-v-456a0caf]{padding-left:.3em}input[type=search][data-v-456a0caf],input[type=text][data-v-456a0caf]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-456a0caf]{animation-fill-mode:both;animation-name:fadeIn-456a0caf;-webkit-animation-name:fadeIn-456a0caf}.fade-in[data-v-456a0caf],.fade-out[data-v-456a0caf]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-456a0caf]{animation-fill-mode:both;animation-name:fadeOut-456a0caf;-webkit-animation-name:fadeOut-456a0caf}@keyframes fadeIn-456a0caf{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-456a0caf{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-456a0caf]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-456a0caf]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-456a0caf]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-456a0caf]{display:flex;align-items:center;padding:.75em .25em;border-bottom:1px solid silver;cursor:pointer}.item[data-v-456a0caf]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.active[data-v-456a0caf]{background:#8fefb7}.item.selected[data-v-456a0caf]{background:linear-gradient(90deg,#c8ffd0,#d8efe8)}.item.dragover[data-v-456a0caf]{border-top:2px solid #35b870}.item[data-v-456a0caf]::-moz-selection{background:transparent!important}.item[data-v-456a0caf]::selection{background:transparent!important}.item .title[data-v-456a0caf]{font-size:1em;font-weight:400;margin:0}.item .side[data-v-456a0caf]{display:inline-flex;align-items:center}.item .side.right[data-v-456a0caf]{display:inline-flex;justify-content:right}.item .actions[data-v-456a0caf],.item .duration[data-v-456a0caf]{display:inline-flex;align-items:center}.item .duration[data-v-456a0caf]{font-size:.85em;opacity:.7}.item .actions[data-v-456a0caf] button{opacity:.65}.item .icon[data-v-456a0caf]{color:rgba(25,83,49,.702);margin-right:.75em}.item[data-v-456a0caf] .dropdown-container .item{box-shadow:none}.item[data-v-456a0caf] .dropdown-container button{background:none;border:none}.item[data-v-456a0caf] .dropdown-container button:hover{color:#35b870}[data-v-456a0caf] .table-row{width:100%;display:flex;flex-direction:column;box-shadow:0 0 1px .5px #cfcfcf}[data-v-456a0caf] .table-row:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}@media screen and (min-width:769px){[data-v-456a0caf] .table-row{flex-direction:row;align-items:center}}[data-v-456a0caf] .table-row .title,[data-v-456a0caf] .table-row .value{width:100%;display:flex}@media screen and (min-width:769px){[data-v-456a0caf] .table-row .title,[data-v-456a0caf] .table-row .value{display:inline-flex}}[data-v-456a0caf] .table-row .title{font-weight:700}@media screen and (min-width:769px){[data-v-456a0caf] .table-row .title{width:30%}[data-v-456a0caf] .table-row .value{justify-content:right}}main[data-v-456a0caf]{min-height:calc(100vh - 2em)}button[data-v-456a0caf]{background:none;border:none;box-shadow:none}button[data-v-456a0caf]:hover{color:#35b870}hgroup[data-v-456a0caf]{flex-grow:1}h1[data-v-456a0caf]{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-456a0caf]{border-radius:.5em .5em 0 0}}h2[data-v-456a0caf]{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-456a0caf]{max-height:50vh;display:flex;flex-direction:column;margin-top:.5em}section.args[data-v-456a0caf]{margin-top:.5em;padding-top:.5em}section.response[data-v-456a0caf]{flex-grow:1;max-height:40em}section.response .output[data-v-456a0caf]{overflow:auto}.buttons[data-v-456a0caf]{display:flex;align-items:center;justify-content:center;margin-bottom:.25em;flex-grow:1}header[data-v-456a0caf]{width:100%;display:flex;align-items:center}header .autocomplete-container[data-v-456a0caf]{width:calc(100% - 7.5em);flex-grow:1}header .autocomplete-container .items[data-v-456a0caf]{background:#fff}header .buttons[data-v-456a0caf]{width:7.5em;display:inline-flex;justify-content:flex-end;margin-right:.5em}.doc[data-v-456a0caf]{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-456a0caf] .doc blockquote{margin-left:0}textarea[data-v-456a0caf]{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-456a0caf]:hover{border:1px solid #38cf80}textarea[data-v-456a0caf]:focus{border:1px solid #32b646}form[data-v-456a0caf]{background:#f8f8f8;flex-grow:1;margin:0;border-radius:0;border:none;padding:1em .5em;margin-bottom:0!important}.raw .first-row[data-v-456a0caf]{display:flex;flex-direction:column}@media screen and (max-width:calc(769px - 1px)){.raw .first-row[data-v-456a0caf]{width:100%}}@media screen and (min-width:769px){.raw .first-row[data-v-456a0caf]{width:80%;max-width:60em}}.raw .first-row button[data-v-456a0caf]{margin-left:0}.args-list[data-v-456a0caf]{padding-top:.5em;overflow:auto}@media screen and (max-width:calc(769px - 1px)){.args-list[data-v-456a0caf]{width:100%}}@media screen and (min-width:769px){.args-list[data-v-456a0caf]{width:20em;margin-right:1.5em}}@media screen and (min-width:1024px){.args-list[data-v-456a0caf]{width:30em}}.args-list .arg[data-v-456a0caf]{margin-bottom:.25em}@media screen and (max-width:calc(769px - 1px)){.args-list .arg[data-v-456a0caf]{width:100%}}.args-list .arg .required-flag[data-v-456a0caf]{width:1.25em;font-weight:700;margin-left:.25em}.args-list .arg input[data-v-456a0caf]{width:calc(100% - 1.5em)}.args-list .action-arg-value[data-v-456a0caf]{width:100%}.args-body[data-v-456a0caf]{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-456a0caf]{flex-direction:column}}.add-arg[data-v-456a0caf]{width:100%}.add-arg button[data-v-456a0caf]{width:100%;background:#eee;border:1px solid #ddd}.extra-arg[data-v-456a0caf]{display:flex;margin-bottom:.5em}.extra-arg label[data-v-456a0caf]{margin-left:.25em}.extra-arg .action-extra-arg-del[data-v-456a0caf]{border:0;text-align:right;padding:0 .5em}.extra-arg input[type=text][data-v-456a0caf]{width:100%}.doc-container[data-v-456a0caf],.response[data-v-456a0caf]{flex-grow:1}.doc-container h2[data-v-456a0caf],.response h2[data-v-456a0caf]{display:inline-flex}.doc-container h2 .title[data-v-456a0caf],.response h2 .title[data-v-456a0caf]{width:calc(100% - 2em)}.doc-container h2 .buttons[data-v-456a0caf],.response h2 .buttons[data-v-456a0caf]{width:2em}.doc-container h2 .buttons button[data-v-456a0caf],.response h2 .buttons button[data-v-456a0caf]{padding:0}.output[data-v-456a0caf]{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-456a0caf]{color:red}textarea.curl-snippet[data-v-456a0caf]{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-456a0caf]{width:100%;display:flex;flex-direction:column;margin-top:.15em}.extensions-container header[data-v-456a0caf]{height:3.25em;padding:.5em;margin-bottom:2px;box-shadow:0 3px 2px -1px silver}.extensions-container header .filter-container input[data-v-456a0caf],.extensions-container header .filter-container[data-v-456a0caf]{width:100%}.extensions-container main[data-v-456a0caf]{height:calc(100% - 3.5em);min-height:calc(100% - 3.5em);background:#fff;display:flex;flex-direction:row}.extensions-container .items[data-v-456a0caf]{height:100%;flex-grow:1;overflow:auto;border-bottom:1px solid #ddd}.extensions-container .extension-container .extension[data-v-456a0caf]{display:flex;flex-direction:column}.extensions-container .extension-container .extension .item[data-v-456a0caf]{width:100%;display:flex;padding:1em;position:relative}.extensions-container .extension-container .extension .item .icon[data-v-456a0caf]{width:2.5em;position:absolute;right:-1em;top:.65em}.extensions-container .extension-container .extension .item.selected[data-v-456a0caf]{font-weight:700}.extensions-container .extension-body-container.desktop[data-v-456a0caf]{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-456a0caf] article{height:100%;overflow:auto}.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(769px - 1px)){.tablet.from[data-v-1eab04fa]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-1eab04fa]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-1eab04fa]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-1eab04fa]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-1eab04fa]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-1eab04fa]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-1eab04fa]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-1eab04fa]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-1eab04fa]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-1eab04fa]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-1eab04fa]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-1eab04fa]{display:none}}@media screen and (min-width:769px){.mobile[data-v-1eab04fa]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-1eab04fa]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-1eab04fa]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-1eab04fa],input[type=password][data-v-1eab04fa],input[type=search][data-v-1eab04fa],input[type=text][data-v-1eab04fa]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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(769px - 1px)){.tablet.from[data-v-40365cea]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-40365cea]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-40365cea]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-40365cea]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-40365cea]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-40365cea]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-40365cea]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-40365cea]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-40365cea]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-40365cea]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-40365cea]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-40365cea]{display:none}}@media screen and (min-width:769px){.mobile[data-v-40365cea]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-40365cea]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-40365cea]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-40365cea],input[type=password][data-v-40365cea],input[type=search][data-v-40365cea],input[type=text][data-v-40365cea]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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-5b964c03]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-5b964c03]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-5b964c03]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-5b964c03]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-5b964c03]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-5b964c03]:first-child{margin-left:26%!important}.col-offset-3[data-v-5b964c03]:not(first-child){margin-left:30%!important}.col-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-5b964c03]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-5b964c03]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-5b964c03]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-5b964c03]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-5b964c03]:first-child{margin-left:52%!important}.col-offset-6[data-v-5b964c03]:not(first-child){margin-left:56%!important}.col-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-5b964c03]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-5b964c03]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-5b964c03]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-5b964c03]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-5b964c03]:first-child{margin-left:78%!important}.col-offset-9[data-v-5b964c03]:not(first-child){margin-left:82%!important}.col-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-5b964c03]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-5b964c03]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-5b964c03]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-5b964c03]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-1[data-v-5b964c03]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-2[data-v-5b964c03]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-3[data-v-5b964c03]{margin-left:26%}.col-no-margin-s-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-4[data-v-5b964c03]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-5[data-v-5b964c03]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-6[data-v-5b964c03]{margin-left:52%}.col-no-margin-s-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-7[data-v-5b964c03]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-8[data-v-5b964c03]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-9[data-v-5b964c03]{margin-left:78%}.col-no-margin-s-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-10[data-v-5b964c03]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-5b964c03]:first-child{margin-left:0}.col-offset-s-11[data-v-5b964c03]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-s-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-5b964c03]{display:none!important}.s-visible[data-v-5b964c03]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-1[data-v-5b964c03]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-2[data-v-5b964c03]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-3[data-v-5b964c03]{margin-left:26%}.col-no-margin-m-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-4[data-v-5b964c03]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-5[data-v-5b964c03]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-6[data-v-5b964c03]{margin-left:52%}.col-no-margin-m-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-7[data-v-5b964c03]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-8[data-v-5b964c03]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-9[data-v-5b964c03]{margin-left:78%}.col-no-margin-m-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-10[data-v-5b964c03]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-5b964c03]:first-child{margin-left:0}.col-offset-m-11[data-v-5b964c03]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-m-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-5b964c03]{display:none!important}.m-visible[data-v-5b964c03]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-1[data-v-5b964c03]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-2[data-v-5b964c03]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-3[data-v-5b964c03]{margin-left:26%}.col-no-margin-l-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-4[data-v-5b964c03]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-5[data-v-5b964c03]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-6[data-v-5b964c03]{margin-left:52%}.col-no-margin-l-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-7[data-v-5b964c03]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-8[data-v-5b964c03]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-9[data-v-5b964c03]{margin-left:78%}.col-no-margin-l-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-10[data-v-5b964c03]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-5b964c03]:first-child{margin-left:0}.col-offset-l-11[data-v-5b964c03]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-l-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-5b964c03]{display:none!important}.l-visible[data-v-5b964c03]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-1[data-v-5b964c03]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-2[data-v-5b964c03]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-3[data-v-5b964c03]{margin-left:26%}.col-no-margin-xl-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-4[data-v-5b964c03]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-5[data-v-5b964c03]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-6[data-v-5b964c03]{margin-left:52%}.col-no-margin-xl-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-7[data-v-5b964c03]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-8[data-v-5b964c03]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-9[data-v-5b964c03]{margin-left:78%}.col-no-margin-xl-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-10[data-v-5b964c03]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xl-11[data-v-5b964c03]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-5b964c03]{display:none!important}.xl-visible[data-v-5b964c03]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-1[data-v-5b964c03]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-5b964c03]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-2[data-v-5b964c03]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-5b964c03]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-3[data-v-5b964c03]{margin-left:26%}.col-no-margin-xxl-3[data-v-5b964c03]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-4[data-v-5b964c03]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-5b964c03]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-5[data-v-5b964c03]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-5b964c03]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-6[data-v-5b964c03]{margin-left:52%}.col-no-margin-xxl-6[data-v-5b964c03]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-7[data-v-5b964c03]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-5b964c03]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-8[data-v-5b964c03]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-5b964c03]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-9[data-v-5b964c03]{margin-left:78%}.col-no-margin-xxl-9[data-v-5b964c03]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-10[data-v-5b964c03]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-5b964c03]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-5b964c03]:first-child{margin-left:0}.col-offset-xxl-11[data-v-5b964c03]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-5b964c03]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-5b964c03]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-5b964c03]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-5b964c03]{display:none!important}.xxl-visible[data-v-5b964c03]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-5b964c03]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-5b964c03]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-5b964c03]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-5b964c03]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-5b964c03]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-5b964c03]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-5b964c03]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-5b964c03]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-5b964c03]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-5b964c03]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-5b964c03]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-5b964c03]{display:none}}@media screen and (min-width:769px){.mobile[data-v-5b964c03]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-5b964c03]{display:none}}.vertical-center[data-v-5b964c03]{display:flex;align-items:center}.horizontal-center[data-v-5b964c03]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-5b964c03]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-5b964c03]{display:none!important}.no-content[data-v-5b964c03]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-5b964c03],.btn[data-v-5b964c03],button[data-v-5b964c03]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-5b964c03],.btn-default[type=submit][data-v-5b964c03],.btn.btn-primary[data-v-5b964c03],.btn[type=submit][data-v-5b964c03],button.btn-primary[data-v-5b964c03],button[type=submit][data-v-5b964c03]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-5b964c03],.btn-default .icon[data-v-5b964c03],button .icon[data-v-5b964c03]{margin-right:.5em}input[type=password][data-v-5b964c03],input[type=text][data-v-5b964c03]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-5b964c03]:focus,input[type=text][data-v-5b964c03]:focus{border:1px solid #35b870}button[data-v-5b964c03],input[data-v-5b964c03]{outline:none}input[type=text][data-v-5b964c03]:hover,textarea[data-v-5b964c03]:hover{border:1px solid #9cdfb0}ul[data-v-5b964c03]{margin:0;padding:0;list-style:none}a[data-v-5b964c03]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-5b964c03]:hover{color:#35b870}[data-v-5b964c03]::-webkit-scrollbar{width:.75em}[data-v-5b964c03]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-5b964c03]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-5b964c03]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-5b964c03]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-5b964c03],input[type=password][data-v-5b964c03],input[type=search][data-v-5b964c03],input[type=text][data-v-5b964c03]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-5b964c03]:hover,input[type=password][data-v-5b964c03]:hover,input[type=search][data-v-5b964c03]:hover,input[type=text][data-v-5b964c03]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-5b964c03]:focus,input[type=password][data-v-5b964c03]:focus,input[type=search][data-v-5b964c03]:focus,input[type=text][data-v-5b964c03]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-5b964c03],input[type=password].with-icon[data-v-5b964c03],input[type=search].with-icon[data-v-5b964c03],input[type=text].with-icon[data-v-5b964c03]{padding-left:.3em}input[type=search][data-v-5b964c03],input[type=text][data-v-5b964c03]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-5b964c03]{animation-fill-mode:both;animation-name:fadeIn-5b964c03;-webkit-animation-name:fadeIn-5b964c03}.fade-in[data-v-5b964c03],.fade-out[data-v-5b964c03]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-5b964c03]{animation-fill-mode:both;animation-name:fadeOut-5b964c03;-webkit-animation-name:fadeOut-5b964c03}@keyframes fadeIn-5b964c03{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-5b964c03{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-5b964c03]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-5b964c03]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-5b964c03]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.dropdown-container[data-v-5b964c03]{position:relative;display:inline-flex;flex-direction:column}.dropdown-container button[data-v-5b964c03]{background:#f8f8f8;border:0;padding:.5em}.dropdown-container button[data-v-5b964c03]:hover{color:#35b870}.dropdown-container .dropdown[data-v-5b964c03]{position:absolute;width:-moz-max-content;width:max-content;background:#f1f3f2;border-radius:.25em;border:1px solid #ccc;box-shadow:1px 1px 1px #bbb;display:flex;flex-direction:column;z-index:1}[data-v-5b964c03] .dropdown-container button{width:100%;height:100%;color:#23513a;background:#f1f3f2;border:0;padding:.75em .5em;text-align:left;letter-spacing:.01em}[data-v-5b964c03] .dropdown-container button:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0);color:#23513a}[data-v-5b964c03] .dropdown-container button .text{padding-left:.25em}.col-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-29ddda9f]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-29ddda9f]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-29ddda9f]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-29ddda9f]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-29ddda9f]:first-child{margin-left:26%!important}.col-offset-3[data-v-29ddda9f]:not(first-child){margin-left:30%!important}.col-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-29ddda9f]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-29ddda9f]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-29ddda9f]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-29ddda9f]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-29ddda9f]:first-child{margin-left:52%!important}.col-offset-6[data-v-29ddda9f]:not(first-child){margin-left:56%!important}.col-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-29ddda9f]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-29ddda9f]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-29ddda9f]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-29ddda9f]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-29ddda9f]:first-child{margin-left:78%!important}.col-offset-9[data-v-29ddda9f]:not(first-child){margin-left:82%!important}.col-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-29ddda9f]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-29ddda9f]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-29ddda9f]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-29ddda9f]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-1[data-v-29ddda9f]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-2[data-v-29ddda9f]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-3[data-v-29ddda9f]{margin-left:26%}.col-no-margin-s-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-4[data-v-29ddda9f]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-5[data-v-29ddda9f]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-6[data-v-29ddda9f]{margin-left:52%}.col-no-margin-s-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-7[data-v-29ddda9f]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-8[data-v-29ddda9f]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-9[data-v-29ddda9f]{margin-left:78%}.col-no-margin-s-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-10[data-v-29ddda9f]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-s-11[data-v-29ddda9f]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-s-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-29ddda9f]{display:none!important}.s-visible[data-v-29ddda9f]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-1[data-v-29ddda9f]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-2[data-v-29ddda9f]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-3[data-v-29ddda9f]{margin-left:26%}.col-no-margin-m-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-4[data-v-29ddda9f]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-5[data-v-29ddda9f]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-6[data-v-29ddda9f]{margin-left:52%}.col-no-margin-m-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-7[data-v-29ddda9f]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-8[data-v-29ddda9f]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-9[data-v-29ddda9f]{margin-left:78%}.col-no-margin-m-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-10[data-v-29ddda9f]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-m-11[data-v-29ddda9f]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-m-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-29ddda9f]{display:none!important}.m-visible[data-v-29ddda9f]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-1[data-v-29ddda9f]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-2[data-v-29ddda9f]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-3[data-v-29ddda9f]{margin-left:26%}.col-no-margin-l-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-4[data-v-29ddda9f]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-5[data-v-29ddda9f]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-6[data-v-29ddda9f]{margin-left:52%}.col-no-margin-l-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-7[data-v-29ddda9f]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-8[data-v-29ddda9f]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-9[data-v-29ddda9f]{margin-left:78%}.col-no-margin-l-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-10[data-v-29ddda9f]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-l-11[data-v-29ddda9f]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-l-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-29ddda9f]{display:none!important}.l-visible[data-v-29ddda9f]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-1[data-v-29ddda9f]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-2[data-v-29ddda9f]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-3[data-v-29ddda9f]{margin-left:26%}.col-no-margin-xl-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-4[data-v-29ddda9f]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-5[data-v-29ddda9f]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-6[data-v-29ddda9f]{margin-left:52%}.col-no-margin-xl-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-7[data-v-29ddda9f]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-8[data-v-29ddda9f]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-9[data-v-29ddda9f]{margin-left:78%}.col-no-margin-xl-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-10[data-v-29ddda9f]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xl-11[data-v-29ddda9f]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-29ddda9f]{display:none!important}.xl-visible[data-v-29ddda9f]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-1[data-v-29ddda9f]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-29ddda9f]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-2[data-v-29ddda9f]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-29ddda9f]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-3[data-v-29ddda9f]{margin-left:26%}.col-no-margin-xxl-3[data-v-29ddda9f]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-4[data-v-29ddda9f]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-29ddda9f]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-5[data-v-29ddda9f]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-29ddda9f]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-6[data-v-29ddda9f]{margin-left:52%}.col-no-margin-xxl-6[data-v-29ddda9f]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-7[data-v-29ddda9f]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-29ddda9f]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-8[data-v-29ddda9f]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-29ddda9f]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-9[data-v-29ddda9f]{margin-left:78%}.col-no-margin-xxl-9[data-v-29ddda9f]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-10[data-v-29ddda9f]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-29ddda9f]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-29ddda9f]:first-child{margin-left:0}.col-offset-xxl-11[data-v-29ddda9f]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-29ddda9f]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-29ddda9f]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-29ddda9f]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-29ddda9f]{display:none!important}.xxl-visible[data-v-29ddda9f]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-29ddda9f]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-29ddda9f]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-29ddda9f]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-29ddda9f]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-29ddda9f]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-29ddda9f]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-29ddda9f]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-29ddda9f]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-29ddda9f]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-29ddda9f]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-29ddda9f]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-29ddda9f]{display:none}}@media screen and (min-width:769px){.mobile[data-v-29ddda9f]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-29ddda9f]{display:none}}.vertical-center[data-v-29ddda9f]{display:flex;align-items:center}.horizontal-center[data-v-29ddda9f]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-29ddda9f]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-29ddda9f]{display:none!important}.no-content[data-v-29ddda9f]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-29ddda9f],.btn[data-v-29ddda9f],button[data-v-29ddda9f]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-29ddda9f],.btn-default[type=submit][data-v-29ddda9f],.btn.btn-primary[data-v-29ddda9f],.btn[type=submit][data-v-29ddda9f],button.btn-primary[data-v-29ddda9f],button[type=submit][data-v-29ddda9f]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-29ddda9f],.btn-default .icon[data-v-29ddda9f],button .icon[data-v-29ddda9f]{margin-right:.5em}input[type=password][data-v-29ddda9f],input[type=text][data-v-29ddda9f]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-29ddda9f]:focus,input[type=text][data-v-29ddda9f]:focus{border:1px solid #35b870}button[data-v-29ddda9f],input[data-v-29ddda9f]{outline:none}input[type=text][data-v-29ddda9f]:hover,textarea[data-v-29ddda9f]:hover{border:1px solid #9cdfb0}ul[data-v-29ddda9f]{margin:0;padding:0;list-style:none}a[data-v-29ddda9f]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-29ddda9f]:hover{color:#35b870}[data-v-29ddda9f]::-webkit-scrollbar{width:.75em}[data-v-29ddda9f]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-29ddda9f]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-29ddda9f]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-29ddda9f]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-29ddda9f],input[type=password][data-v-29ddda9f],input[type=search][data-v-29ddda9f],input[type=text][data-v-29ddda9f]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-29ddda9f]:hover,input[type=password][data-v-29ddda9f]:hover,input[type=search][data-v-29ddda9f]:hover,input[type=text][data-v-29ddda9f]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-29ddda9f]:focus,input[type=password][data-v-29ddda9f]:focus,input[type=search][data-v-29ddda9f]:focus,input[type=text][data-v-29ddda9f]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-29ddda9f],input[type=password].with-icon[data-v-29ddda9f],input[type=search].with-icon[data-v-29ddda9f],input[type=text].with-icon[data-v-29ddda9f]{padding-left:.3em}input[type=search][data-v-29ddda9f],input[type=text][data-v-29ddda9f]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-29ddda9f]{animation-fill-mode:both;animation-name:fadeIn-29ddda9f;-webkit-animation-name:fadeIn-29ddda9f}.fade-in[data-v-29ddda9f],.fade-out[data-v-29ddda9f]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-29ddda9f]{animation-fill-mode:both;animation-name:fadeOut-29ddda9f;-webkit-animation-name:fadeOut-29ddda9f}@keyframes fadeIn-29ddda9f{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-29ddda9f{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-29ddda9f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-29ddda9f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-29ddda9f]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-29ddda9f]{display:flex;padding:.75em .5em;cursor:pointer;align-items:center;color:#23513a;border:0;box-shadow:none}.item[data-v-29ddda9f]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.selected[data-v-29ddda9f]{font-weight:700}.item.disabled[data-v-29ddda9f]{color:#999;cursor:auto}.item .text[data-v-29ddda9f]{text-align:left;margin-left:.5em}.item .icon[data-v-29ddda9f]{width:1.5em;display:inline-flex;align-items:center}.item[data-v-29ddda9f] .icon-container{width:2em;display:inline-flex;align-items:center}.item[data-v-29ddda9f] .icon-container .icon{margin:0 1.5em 0 .5em}.col-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-133e57f8]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-133e57f8]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-133e57f8]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-133e57f8]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-133e57f8]:first-child{margin-left:26%!important}.col-offset-3[data-v-133e57f8]:not(first-child){margin-left:30%!important}.col-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-133e57f8]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-133e57f8]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-133e57f8]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-133e57f8]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-133e57f8]:first-child{margin-left:52%!important}.col-offset-6[data-v-133e57f8]:not(first-child){margin-left:56%!important}.col-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-133e57f8]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-133e57f8]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-133e57f8]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-133e57f8]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-133e57f8]:first-child{margin-left:78%!important}.col-offset-9[data-v-133e57f8]:not(first-child){margin-left:82%!important}.col-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-133e57f8]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-133e57f8]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-133e57f8]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-133e57f8]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-1[data-v-133e57f8]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-2[data-v-133e57f8]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-3[data-v-133e57f8]{margin-left:26%}.col-no-margin-s-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-4[data-v-133e57f8]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-5[data-v-133e57f8]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-6[data-v-133e57f8]{margin-left:52%}.col-no-margin-s-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-7[data-v-133e57f8]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-8[data-v-133e57f8]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-9[data-v-133e57f8]{margin-left:78%}.col-no-margin-s-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-10[data-v-133e57f8]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-133e57f8]:first-child{margin-left:0}.col-offset-s-11[data-v-133e57f8]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-s-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-133e57f8]{display:none!important}.s-visible[data-v-133e57f8]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-1[data-v-133e57f8]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-2[data-v-133e57f8]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-3[data-v-133e57f8]{margin-left:26%}.col-no-margin-m-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-4[data-v-133e57f8]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-5[data-v-133e57f8]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-6[data-v-133e57f8]{margin-left:52%}.col-no-margin-m-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-7[data-v-133e57f8]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-8[data-v-133e57f8]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-9[data-v-133e57f8]{margin-left:78%}.col-no-margin-m-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-10[data-v-133e57f8]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-133e57f8]:first-child{margin-left:0}.col-offset-m-11[data-v-133e57f8]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-m-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-133e57f8]{display:none!important}.m-visible[data-v-133e57f8]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-1[data-v-133e57f8]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-2[data-v-133e57f8]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-3[data-v-133e57f8]{margin-left:26%}.col-no-margin-l-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-4[data-v-133e57f8]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-5[data-v-133e57f8]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-6[data-v-133e57f8]{margin-left:52%}.col-no-margin-l-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-7[data-v-133e57f8]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-8[data-v-133e57f8]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-9[data-v-133e57f8]{margin-left:78%}.col-no-margin-l-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-10[data-v-133e57f8]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-133e57f8]:first-child{margin-left:0}.col-offset-l-11[data-v-133e57f8]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-l-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-133e57f8]{display:none!important}.l-visible[data-v-133e57f8]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-1[data-v-133e57f8]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-2[data-v-133e57f8]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-3[data-v-133e57f8]{margin-left:26%}.col-no-margin-xl-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-4[data-v-133e57f8]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-5[data-v-133e57f8]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-6[data-v-133e57f8]{margin-left:52%}.col-no-margin-xl-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-7[data-v-133e57f8]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-8[data-v-133e57f8]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-9[data-v-133e57f8]{margin-left:78%}.col-no-margin-xl-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-10[data-v-133e57f8]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xl-11[data-v-133e57f8]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-133e57f8]{display:none!important}.xl-visible[data-v-133e57f8]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-1[data-v-133e57f8]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-133e57f8]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-2[data-v-133e57f8]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-133e57f8]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-3[data-v-133e57f8]{margin-left:26%}.col-no-margin-xxl-3[data-v-133e57f8]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-4[data-v-133e57f8]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-133e57f8]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-5[data-v-133e57f8]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-133e57f8]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-6[data-v-133e57f8]{margin-left:52%}.col-no-margin-xxl-6[data-v-133e57f8]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-7[data-v-133e57f8]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-133e57f8]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-8[data-v-133e57f8]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-133e57f8]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-9[data-v-133e57f8]{margin-left:78%}.col-no-margin-xxl-9[data-v-133e57f8]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-10[data-v-133e57f8]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-133e57f8]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-133e57f8]:first-child{margin-left:0}.col-offset-xxl-11[data-v-133e57f8]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-133e57f8]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-133e57f8]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-133e57f8]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-133e57f8]{display:none!important}.xxl-visible[data-v-133e57f8]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-133e57f8]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-133e57f8]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-133e57f8]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-133e57f8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-133e57f8]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-133e57f8]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-133e57f8]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-133e57f8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-133e57f8]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-133e57f8]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-133e57f8]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-133e57f8]{display:none}}@media screen and (min-width:769px){.mobile[data-v-133e57f8]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-133e57f8]{display:none}}.vertical-center[data-v-133e57f8]{display:flex;align-items:center}.horizontal-center[data-v-133e57f8]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-133e57f8]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-133e57f8]{display:none!important}.no-content[data-v-133e57f8]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-133e57f8],.btn[data-v-133e57f8],button[data-v-133e57f8]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-133e57f8],.btn-default[type=submit][data-v-133e57f8],.btn.btn-primary[data-v-133e57f8],.btn[type=submit][data-v-133e57f8],button.btn-primary[data-v-133e57f8],button[type=submit][data-v-133e57f8]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-133e57f8],.btn-default .icon[data-v-133e57f8],button .icon[data-v-133e57f8]{margin-right:.5em}input[type=password][data-v-133e57f8],input[type=text][data-v-133e57f8]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-133e57f8]:focus,input[type=text][data-v-133e57f8]:focus{border:1px solid #35b870}button[data-v-133e57f8],input[data-v-133e57f8]{outline:none}input[type=text][data-v-133e57f8]:hover,textarea[data-v-133e57f8]:hover{border:1px solid #9cdfb0}ul[data-v-133e57f8]{margin:0;padding:0;list-style:none}a[data-v-133e57f8]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-133e57f8]:hover{color:#35b870}[data-v-133e57f8]::-webkit-scrollbar{width:.75em}[data-v-133e57f8]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-133e57f8]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-133e57f8]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-133e57f8]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-133e57f8],input[type=password][data-v-133e57f8],input[type=search][data-v-133e57f8],input[type=text][data-v-133e57f8]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-133e57f8]:hover,input[type=password][data-v-133e57f8]:hover,input[type=search][data-v-133e57f8]:hover,input[type=text][data-v-133e57f8]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-133e57f8]:focus,input[type=password][data-v-133e57f8]:focus,input[type=search][data-v-133e57f8]:focus,input[type=text][data-v-133e57f8]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-133e57f8],input[type=password].with-icon[data-v-133e57f8],input[type=search].with-icon[data-v-133e57f8],input[type=text].with-icon[data-v-133e57f8]{padding-left:.3em}input[type=search][data-v-133e57f8],input[type=text][data-v-133e57f8]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-133e57f8]{animation-fill-mode:both;animation-name:fadeIn-133e57f8;-webkit-animation-name:fadeIn-133e57f8}.fade-in[data-v-133e57f8],.fade-out[data-v-133e57f8]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-133e57f8]{animation-fill-mode:both;animation-name:fadeOut-133e57f8;-webkit-animation-name:fadeOut-133e57f8}@keyframes fadeIn-133e57f8{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-133e57f8{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-133e57f8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-133e57f8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-133e57f8]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.floating-btn[data-v-133e57f8]{position:fixed;bottom:0;right:0;margin:auto 1em 1em auto}.floating-btn button[data-v-133e57f8]{background:#9cdfb0!important;color:#32b646!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-133e57f8]:hover{background:#bef6da!important;color:#35b870!important}.floating-btn[data-v-133e57f8] button .icon-container{width:4em}.floating-btn[data-v-133e57f8] button .icon-container .icon{margin:auto}.col-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-510035f2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-510035f2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-510035f2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-510035f2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-510035f2]:first-child{margin-left:26%!important}.col-offset-3[data-v-510035f2]:not(first-child){margin-left:30%!important}.col-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-510035f2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-510035f2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-510035f2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-510035f2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-510035f2]:first-child{margin-left:52%!important}.col-offset-6[data-v-510035f2]:not(first-child){margin-left:56%!important}.col-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-510035f2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-510035f2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-510035f2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-510035f2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-510035f2]:first-child{margin-left:78%!important}.col-offset-9[data-v-510035f2]:not(first-child){margin-left:82%!important}.col-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-510035f2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-510035f2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-510035f2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-510035f2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-1[data-v-510035f2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-2[data-v-510035f2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-3[data-v-510035f2]{margin-left:26%}.col-no-margin-s-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-4[data-v-510035f2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-5[data-v-510035f2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-6[data-v-510035f2]{margin-left:52%}.col-no-margin-s-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-7[data-v-510035f2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-8[data-v-510035f2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-9[data-v-510035f2]{margin-left:78%}.col-no-margin-s-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-10[data-v-510035f2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-11[data-v-510035f2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-510035f2]{display:none!important}.s-visible[data-v-510035f2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-1[data-v-510035f2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-2[data-v-510035f2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-3[data-v-510035f2]{margin-left:26%}.col-no-margin-m-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-4[data-v-510035f2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-5[data-v-510035f2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-6[data-v-510035f2]{margin-left:52%}.col-no-margin-m-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-7[data-v-510035f2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-8[data-v-510035f2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-9[data-v-510035f2]{margin-left:78%}.col-no-margin-m-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-10[data-v-510035f2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-11[data-v-510035f2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-510035f2]{display:none!important}.m-visible[data-v-510035f2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-1[data-v-510035f2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-2[data-v-510035f2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-3[data-v-510035f2]{margin-left:26%}.col-no-margin-l-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-4[data-v-510035f2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-5[data-v-510035f2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-6[data-v-510035f2]{margin-left:52%}.col-no-margin-l-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-7[data-v-510035f2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-8[data-v-510035f2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-9[data-v-510035f2]{margin-left:78%}.col-no-margin-l-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-10[data-v-510035f2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-11[data-v-510035f2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-510035f2]{display:none!important}.l-visible[data-v-510035f2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-1[data-v-510035f2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-2[data-v-510035f2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-3[data-v-510035f2]{margin-left:26%}.col-no-margin-xl-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-4[data-v-510035f2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-5[data-v-510035f2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-6[data-v-510035f2]{margin-left:52%}.col-no-margin-xl-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-7[data-v-510035f2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-8[data-v-510035f2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-9[data-v-510035f2]{margin-left:78%}.col-no-margin-xl-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-10[data-v-510035f2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-11[data-v-510035f2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-510035f2]{display:none!important}.xl-visible[data-v-510035f2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-510035f2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-510035f2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-510035f2]{margin-left:26%}.col-no-margin-xxl-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-510035f2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-510035f2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-510035f2]{margin-left:52%}.col-no-margin-xxl-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-510035f2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-510035f2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-510035f2]{margin-left:78%}.col-no-margin-xxl-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-510035f2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-510035f2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-510035f2]{display:none!important}.xxl-visible[data-v-510035f2]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-510035f2]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-510035f2]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-510035f2]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-510035f2]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-510035f2]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-510035f2]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-510035f2]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-510035f2]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-510035f2]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-510035f2]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-510035f2]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-510035f2]{display:none}}@media screen and (min-width:769px){.mobile[data-v-510035f2]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-510035f2]{display:none}}.vertical-center[data-v-510035f2]{display:flex;align-items:center}.horizontal-center[data-v-510035f2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-510035f2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-510035f2]{display:none!important}.no-content[data-v-510035f2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-510035f2],.btn[data-v-510035f2],button[data-v-510035f2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-510035f2],.btn-default[type=submit][data-v-510035f2],.btn.btn-primary[data-v-510035f2],.btn[type=submit][data-v-510035f2],button.btn-primary[data-v-510035f2],button[type=submit][data-v-510035f2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-510035f2],.btn-default .icon[data-v-510035f2],button .icon[data-v-510035f2]{margin-right:.5em}input[type=password][data-v-510035f2],input[type=text][data-v-510035f2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-510035f2]:focus,input[type=text][data-v-510035f2]:focus{border:1px solid #35b870}button[data-v-510035f2],input[data-v-510035f2]{outline:none}input[type=text][data-v-510035f2]:hover,textarea[data-v-510035f2]:hover{border:1px solid #9cdfb0}ul[data-v-510035f2]{margin:0;padding:0;list-style:none}a[data-v-510035f2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-510035f2]:hover{color:#35b870}[data-v-510035f2]::-webkit-scrollbar{width:.75em}[data-v-510035f2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-510035f2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-510035f2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-510035f2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-510035f2],input[type=password][data-v-510035f2],input[type=search][data-v-510035f2],input[type=text][data-v-510035f2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-510035f2]:hover,input[type=password][data-v-510035f2]:hover,input[type=search][data-v-510035f2]:hover,input[type=text][data-v-510035f2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-510035f2]:focus,input[type=password][data-v-510035f2]:focus,input[type=search][data-v-510035f2]:focus,input[type=text][data-v-510035f2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-510035f2],input[type=password].with-icon[data-v-510035f2],input[type=search].with-icon[data-v-510035f2],input[type=text].with-icon[data-v-510035f2]{padding-left:.3em}input[type=search][data-v-510035f2],input[type=text][data-v-510035f2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-510035f2]{animation-fill-mode:both;animation-name:fadeIn-510035f2;-webkit-animation-name:fadeIn-510035f2}.fade-in[data-v-510035f2],.fade-out[data-v-510035f2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-510035f2]{animation-fill-mode:both;animation-name:fadeOut-510035f2;-webkit-animation-name:fadeOut-510035f2}@keyframes fadeIn-510035f2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-510035f2{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-510035f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-510035f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-510035f2]: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-510035f2]{width:100%;height:100%;display:flex;justify-content:center}.settings-container .modal .body[data-v-510035f2]{height:auto}.settings-container form label[data-v-510035f2]{display:block;text-align:center}.settings-container .users-list[data-v-510035f2]{background:#fff;margin-top:.15em;height:-moz-max-content;height:max-content}.settings-container .users-list .user[data-v-510035f2]{display:flex;align-items:center;padding:.75em}.settings-container .users-list .user[data-v-510035f2]:not(:last-child){box-shadow:0 3px 2px -1px silver}.settings-container .users-list .user[data-v-510035f2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.settings-container .users-list .user .actions[data-v-510035f2]{display:inline-flex;justify-content:right}.settings-container .users-list .user .actions button[data-v-510035f2]{background:none!important;width:-moz-min-content;width:min-content}@media screen and (max-width:1024px){.settings-container .users-list[data-v-510035f2]{width:100%}}@media screen and (min-width:1024px){.settings-container .users-list[data-v-510035f2]{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-510035f2]{border-radius:0}.settings-container .users-list .user[data-v-510035f2]:first-child{border-top-left-radius:1em;border-top-right-radius:1em}.settings-container .users-list .user[data-v-510035f2]:last-child{border-bottom-left-radius:1em;border-bottom-right-radius:1em}}[data-v-510035f2] .dropdown-container button{background:none!important}[data-v-510035f2] .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(769px - 1px)){.tablet.from{display:none}}@media screen and (min-width:1024px){.tablet.until{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only{display:none}}@media screen and (min-width:1024px){.tablet.only{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from{display:none}}@media screen and (min-width:1216px){.desktop.until{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only{display:none}}@media screen and (min-width:1216px){.desktop.only{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from{display:none}}@media screen and (min-width:1408px){.widescreen.until{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only{display:none}}@media screen and (min-width:1408px){.widescreen.only{display:none}}@media screen and (min-width:769px){.mobile{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd{display:none}}.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}.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:.75em}::-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}.input-icon{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number],input[type=password],input[type=search],input[type=text]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=text]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=text]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon,input[type=password].with-icon,input[type=search].with-icon,input[type=text].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}}.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}.col-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-bec58c5c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-bec58c5c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-bec58c5c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-bec58c5c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-bec58c5c]:first-child{margin-left:26%!important}.col-offset-3[data-v-bec58c5c]:not(first-child){margin-left:30%!important}.col-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-bec58c5c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-bec58c5c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-bec58c5c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-bec58c5c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-bec58c5c]:first-child{margin-left:52%!important}.col-offset-6[data-v-bec58c5c]:not(first-child){margin-left:56%!important}.col-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-bec58c5c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-bec58c5c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-bec58c5c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-bec58c5c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-bec58c5c]:first-child{margin-left:78%!important}.col-offset-9[data-v-bec58c5c]:not(first-child){margin-left:82%!important}.col-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-bec58c5c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-bec58c5c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-bec58c5c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-bec58c5c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-1[data-v-bec58c5c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-2[data-v-bec58c5c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-3[data-v-bec58c5c]{margin-left:26%}.col-no-margin-s-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-4[data-v-bec58c5c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-5[data-v-bec58c5c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-6[data-v-bec58c5c]{margin-left:52%}.col-no-margin-s-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-7[data-v-bec58c5c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-8[data-v-bec58c5c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-9[data-v-bec58c5c]{margin-left:78%}.col-no-margin-s-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-10[data-v-bec58c5c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-s-11[data-v-bec58c5c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-bec58c5c]{display:none!important}.s-visible[data-v-bec58c5c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-1[data-v-bec58c5c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-2[data-v-bec58c5c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-3[data-v-bec58c5c]{margin-left:26%}.col-no-margin-m-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-4[data-v-bec58c5c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-5[data-v-bec58c5c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-6[data-v-bec58c5c]{margin-left:52%}.col-no-margin-m-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-7[data-v-bec58c5c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-8[data-v-bec58c5c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-9[data-v-bec58c5c]{margin-left:78%}.col-no-margin-m-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-10[data-v-bec58c5c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-m-11[data-v-bec58c5c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-bec58c5c]{display:none!important}.m-visible[data-v-bec58c5c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-1[data-v-bec58c5c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-2[data-v-bec58c5c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-3[data-v-bec58c5c]{margin-left:26%}.col-no-margin-l-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-4[data-v-bec58c5c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-5[data-v-bec58c5c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-6[data-v-bec58c5c]{margin-left:52%}.col-no-margin-l-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-7[data-v-bec58c5c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-8[data-v-bec58c5c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-9[data-v-bec58c5c]{margin-left:78%}.col-no-margin-l-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-10[data-v-bec58c5c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-l-11[data-v-bec58c5c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-bec58c5c]{display:none!important}.l-visible[data-v-bec58c5c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-1[data-v-bec58c5c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-2[data-v-bec58c5c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-3[data-v-bec58c5c]{margin-left:26%}.col-no-margin-xl-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-4[data-v-bec58c5c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-5[data-v-bec58c5c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-6[data-v-bec58c5c]{margin-left:52%}.col-no-margin-xl-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-7[data-v-bec58c5c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-8[data-v-bec58c5c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-9[data-v-bec58c5c]{margin-left:78%}.col-no-margin-xl-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-10[data-v-bec58c5c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xl-11[data-v-bec58c5c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-bec58c5c]{display:none!important}.xl-visible[data-v-bec58c5c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-bec58c5c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-bec58c5c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-bec58c5c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-bec58c5c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-bec58c5c]{margin-left:26%}.col-no-margin-xxl-3[data-v-bec58c5c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-bec58c5c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-bec58c5c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-bec58c5c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-bec58c5c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-bec58c5c]{margin-left:52%}.col-no-margin-xxl-6[data-v-bec58c5c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-bec58c5c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-bec58c5c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-bec58c5c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-bec58c5c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-bec58c5c]{margin-left:78%}.col-no-margin-xxl-9[data-v-bec58c5c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-bec58c5c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-bec58c5c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-bec58c5c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-bec58c5c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-bec58c5c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-bec58c5c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-bec58c5c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-bec58c5c]{display:none!important}.xxl-visible[data-v-bec58c5c]{display:block!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-bec58c5c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-bec58c5c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-bec58c5c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-bec58c5c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-bec58c5c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-bec58c5c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-bec58c5c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-bec58c5c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-bec58c5c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-bec58c5c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-bec58c5c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-bec58c5c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-bec58c5c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-bec58c5c]{display:none}}.vertical-center[data-v-bec58c5c]{display:flex;align-items:center}.horizontal-center[data-v-bec58c5c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-bec58c5c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-bec58c5c]{display:none!important}.no-content[data-v-bec58c5c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-bec58c5c],.btn[data-v-bec58c5c],button[data-v-bec58c5c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-bec58c5c],.btn-default[type=submit][data-v-bec58c5c],.btn.btn-primary[data-v-bec58c5c],.btn[type=submit][data-v-bec58c5c],button.btn-primary[data-v-bec58c5c],button[type=submit][data-v-bec58c5c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-bec58c5c],.btn-default .icon[data-v-bec58c5c],button .icon[data-v-bec58c5c]{margin-right:.5em}input[type=password][data-v-bec58c5c],input[type=text][data-v-bec58c5c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-bec58c5c]:focus,input[type=text][data-v-bec58c5c]:focus{border:1px solid #35b870}button[data-v-bec58c5c],input[data-v-bec58c5c]{outline:none}input[type=text][data-v-bec58c5c]:hover,textarea[data-v-bec58c5c]:hover{border:1px solid #9cdfb0}ul[data-v-bec58c5c]{margin:0;padding:0;list-style:none}a[data-v-bec58c5c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-bec58c5c]:hover{color:#35b870}[data-v-bec58c5c]::-webkit-scrollbar{width:.75em}[data-v-bec58c5c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-bec58c5c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-bec58c5c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-bec58c5c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-bec58c5c],input[type=password][data-v-bec58c5c],input[type=search][data-v-bec58c5c],input[type=text][data-v-bec58c5c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-bec58c5c]:hover,input[type=password][data-v-bec58c5c]:hover,input[type=search][data-v-bec58c5c]:hover,input[type=text][data-v-bec58c5c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-bec58c5c]:focus,input[type=password][data-v-bec58c5c]:focus,input[type=search][data-v-bec58c5c]:focus,input[type=text][data-v-bec58c5c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-bec58c5c],input[type=password].with-icon[data-v-bec58c5c],input[type=search].with-icon[data-v-bec58c5c],input[type=text].with-icon[data-v-bec58c5c]{padding-left:.3em}input[type=search][data-v-bec58c5c],input[type=text][data-v-bec58c5c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-bec58c5c]{animation-fill-mode:both;animation-name:fadeIn-bec58c5c;-webkit-animation-name:fadeIn-bec58c5c}.fade-in[data-v-bec58c5c],.fade-out[data-v-bec58c5c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-bec58c5c]{animation-fill-mode:both;animation-name:fadeOut-bec58c5c;-webkit-animation-name:fadeOut-bec58c5c}@keyframes fadeIn-bec58c5c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-bec58c5c{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-bec58c5c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-bec58c5c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-bec58c5c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-bec58c5c]{height:100%;display:flex}@media screen and (max-width:calc(769px - 1px)){main[data-v-bec58c5c]{flex-direction:column}}main .canvas[data-v-bec58c5c]{display:flex;flex-grow:100;background:#e0eae8;overflow:auto;z-index:1}main .canvas .panel[data-v-bec58c5c]{width:100%;height:100%;display:flex;margin:0!important;box-shadow:none!important;overflow:auto}.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(769px - 1px)){.tablet.from[data-v-e339182c]{display:none}}@media screen and (min-width:1024px){.tablet.until[data-v-e339182c]{display:none}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-e339182c]{display:none}}@media screen and (min-width:1024px){.tablet.only[data-v-e339182c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-e339182c]{display:none}}@media screen and (min-width:1216px){.desktop.until[data-v-e339182c]{display:none}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-e339182c]{display:none}}@media screen and (min-width:1216px){.desktop.only[data-v-e339182c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-e339182c]{display:none}}@media screen and (min-width:1408px){.widescreen.until[data-v-e339182c]{display:none}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-e339182c]{display:none}}@media screen and (min-width:1408px){.widescreen.only[data-v-e339182c]{display:none}}@media screen and (min-width:769px){.mobile[data-v-e339182c]{display:none}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-e339182c]{display:none}}.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}.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:.75em}[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}.input-icon[data-v-e339182c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-e339182c],input[type=password][data-v-e339182c],input[type=search][data-v-e339182c],input[type=text][data-v-e339182c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}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{border:1px solid rgba(159,180,152,.83)}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{border:1px solid rgba(127,216,95,.83)}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]{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}}.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/css/app.f9c900a8.css b/platypush/backend/http/webapp/dist/static/css/app.f9c900a8.css new file mode 100644 index 00000000..e7b09c3a --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/css/app.f9c900a8.css @@ -0,0 +1,17 @@ +.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}}.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-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-db648f4c]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-db648f4c]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-db648f4c]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-db648f4c]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-db648f4c]:first-child{margin-left:26%!important}.col-offset-3[data-v-db648f4c]:not(first-child){margin-left:30%!important}.col-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-db648f4c]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-db648f4c]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-db648f4c]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-db648f4c]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-db648f4c]:first-child{margin-left:52%!important}.col-offset-6[data-v-db648f4c]:not(first-child){margin-left:56%!important}.col-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-db648f4c]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-db648f4c]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-db648f4c]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-db648f4c]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-db648f4c]:first-child{margin-left:78%!important}.col-offset-9[data-v-db648f4c]:not(first-child){margin-left:82%!important}.col-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-db648f4c]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-db648f4c]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-db648f4c]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-db648f4c]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-1[data-v-db648f4c]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-2[data-v-db648f4c]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-3[data-v-db648f4c]{margin-left:26%}.col-no-margin-s-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-4[data-v-db648f4c]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-5[data-v-db648f4c]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-6[data-v-db648f4c]{margin-left:52%}.col-no-margin-s-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-7[data-v-db648f4c]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-8[data-v-db648f4c]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-9[data-v-db648f4c]{margin-left:78%}.col-no-margin-s-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-10[data-v-db648f4c]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-db648f4c]:first-child{margin-left:0}.col-offset-s-11[data-v-db648f4c]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-s-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-db648f4c]{display:none!important}.s-visible[data-v-db648f4c]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-1[data-v-db648f4c]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-2[data-v-db648f4c]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-3[data-v-db648f4c]{margin-left:26%}.col-no-margin-m-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-4[data-v-db648f4c]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-5[data-v-db648f4c]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-6[data-v-db648f4c]{margin-left:52%}.col-no-margin-m-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-7[data-v-db648f4c]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-8[data-v-db648f4c]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-9[data-v-db648f4c]{margin-left:78%}.col-no-margin-m-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-10[data-v-db648f4c]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-db648f4c]:first-child{margin-left:0}.col-offset-m-11[data-v-db648f4c]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-m-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-db648f4c]{display:none!important}.m-visible[data-v-db648f4c]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-1[data-v-db648f4c]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-2[data-v-db648f4c]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-3[data-v-db648f4c]{margin-left:26%}.col-no-margin-l-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-4[data-v-db648f4c]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-5[data-v-db648f4c]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-6[data-v-db648f4c]{margin-left:52%}.col-no-margin-l-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-7[data-v-db648f4c]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-8[data-v-db648f4c]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-9[data-v-db648f4c]{margin-left:78%}.col-no-margin-l-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-10[data-v-db648f4c]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-db648f4c]:first-child{margin-left:0}.col-offset-l-11[data-v-db648f4c]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-l-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-db648f4c]{display:none!important}.l-visible[data-v-db648f4c]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-1[data-v-db648f4c]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-2[data-v-db648f4c]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-3[data-v-db648f4c]{margin-left:26%}.col-no-margin-xl-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-4[data-v-db648f4c]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-5[data-v-db648f4c]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-6[data-v-db648f4c]{margin-left:52%}.col-no-margin-xl-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-7[data-v-db648f4c]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-8[data-v-db648f4c]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-9[data-v-db648f4c]{margin-left:78%}.col-no-margin-xl-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-10[data-v-db648f4c]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xl-11[data-v-db648f4c]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-db648f4c]{display:none!important}.xl-visible[data-v-db648f4c]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-1[data-v-db648f4c]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-db648f4c]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-2[data-v-db648f4c]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-db648f4c]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-3[data-v-db648f4c]{margin-left:26%}.col-no-margin-xxl-3[data-v-db648f4c]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-4[data-v-db648f4c]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-db648f4c]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-5[data-v-db648f4c]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-db648f4c]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-6[data-v-db648f4c]{margin-left:52%}.col-no-margin-xxl-6[data-v-db648f4c]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-7[data-v-db648f4c]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-db648f4c]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-8[data-v-db648f4c]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-db648f4c]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-9[data-v-db648f4c]{margin-left:78%}.col-no-margin-xxl-9[data-v-db648f4c]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-10[data-v-db648f4c]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-db648f4c]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-db648f4c]:first-child{margin-left:0}.col-offset-xxl-11[data-v-db648f4c]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-db648f4c]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-db648f4c]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-db648f4c]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-db648f4c]{display:none!important}.xxl-visible[data-v-db648f4c]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-db648f4c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-db648f4c]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-db648f4c]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-db648f4c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-db648f4c]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-db648f4c]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-db648f4c]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-db648f4c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-db648f4c]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-db648f4c]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-db648f4c]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-db648f4c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-db648f4c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-db648f4c]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-db648f4c]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-db648f4c]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-db648f4c]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-db648f4c]{display:none!important}}.vertical-center[data-v-db648f4c]{display:flex;align-items:center}.horizontal-center[data-v-db648f4c]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-db648f4c]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-db648f4c]{display:none!important}.no-content[data-v-db648f4c]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-db648f4c]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-db648f4c]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-db648f4c]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-db648f4c]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-db648f4c]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-db648f4c]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-db648f4c],.btn[data-v-db648f4c],button[data-v-db648f4c]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-db648f4c],.btn-default[type=submit][data-v-db648f4c],.btn.btn-primary[data-v-db648f4c],.btn[type=submit][data-v-db648f4c],button.btn-primary[data-v-db648f4c],button[type=submit][data-v-db648f4c]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-db648f4c],.btn-default .icon[data-v-db648f4c],button .icon[data-v-db648f4c]{margin-right:.5em}input[type=password][data-v-db648f4c],input[type=text][data-v-db648f4c]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-db648f4c]:focus,input[type=text][data-v-db648f4c]:focus{border:1px solid #35b870}button[data-v-db648f4c],input[data-v-db648f4c]{outline:none}input[type=text][data-v-db648f4c]:hover,textarea[data-v-db648f4c]:hover{border:1px solid #9cdfb0}ul[data-v-db648f4c]{margin:0;padding:0;list-style:none}a[data-v-db648f4c]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-db648f4c]:hover{color:#35b870}[data-v-db648f4c]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-db648f4c]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-db648f4c]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-db648f4c]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-db648f4c]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-db648f4c] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-db648f4c] .nav .path{cursor:pointer}.browser[data-v-db648f4c] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-db648f4c] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-db648f4c]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-db648f4c],input[type=number][data-v-db648f4c],input[type=password][data-v-db648f4c],input[type=search][data-v-db648f4c],input[type=text][data-v-db648f4c],input[type=time][data-v-db648f4c]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-db648f4c]:hover,input[type=number][data-v-db648f4c]:hover,input[type=password][data-v-db648f4c]:hover,input[type=search][data-v-db648f4c]:hover,input[type=text][data-v-db648f4c]:hover,input[type=time][data-v-db648f4c]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-db648f4c]:focus,input[type=number][data-v-db648f4c]:focus,input[type=password][data-v-db648f4c]:focus,input[type=search][data-v-db648f4c]:focus,input[type=text][data-v-db648f4c]:focus,input[type=time][data-v-db648f4c]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-db648f4c],input[type=number].with-icon[data-v-db648f4c],input[type=password].with-icon[data-v-db648f4c],input[type=search].with-icon[data-v-db648f4c],input[type=text].with-icon[data-v-db648f4c],input[type=time].with-icon[data-v-db648f4c]{padding-left:.3em}input[type=search][data-v-db648f4c],input[type=text][data-v-db648f4c]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-db648f4c]{animation-fill-mode:both;animation-name:fadeIn-db648f4c;-webkit-animation-name:fadeIn-db648f4c}.fade-in[data-v-db648f4c],.fade-out[data-v-db648f4c]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-db648f4c]{animation-fill-mode:both;animation-name:fadeOut-db648f4c;-webkit-animation-name:fadeOut-db648f4c}@keyframes fadeIn-db648f4c{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-db648f4c{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-db648f4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-db648f4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-db648f4c]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}[data-v-db648f4c] .modal .dialog-content{padding:1em}[data-v-db648f4c] .modal .body{padding:1.5em}[data-v-db648f4c] .modal .buttons{display:flex;flex-direction:row;justify-content:right;margin-bottom:1em;border:0;border-radius:0}[data-v-db648f4c] .modal .buttons button{margin-right:1em;padding:.5em 1em;border:1px solid #ddd;border-radius:1em}[data-v-db648f4c] .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}}.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}}.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}/*! + * Font Awesome Free 6.4.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 2023 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,none))}.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-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-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-arrow-turn-right:before,.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.4.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 2023 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.fd0b155c.woff2) format("woff2"),url(/static/fonts/fa-solid-900.6a8db53d.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}/*! + * Font Awesome Free 6.4.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 2023 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.3580b4a9.woff2) format("woff2"),url(/static/fonts/fa-regular-400.67a0fb74.ttf) format("truetype")}.fa-regular,.far{font-weight:400}/*! + * Font Awesome Free 6.4.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 2023 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.b6033b54.woff2) format("woff2"),url(/static/fonts/fa-brands-400.9a905705.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-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-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-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-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{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-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-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-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-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-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-facebook-f:before{content:""}.fa-google-plus-square:before,.fa-square-google-plus: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-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-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-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-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-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-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-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}.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}}.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-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}}.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}}.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-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-54e0248a]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-54e0248a]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-54e0248a]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-54e0248a]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-54e0248a]:first-child{margin-left:26%!important}.col-offset-3[data-v-54e0248a]:not(first-child){margin-left:30%!important}.col-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-54e0248a]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-54e0248a]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-54e0248a]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-54e0248a]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-54e0248a]:first-child{margin-left:52%!important}.col-offset-6[data-v-54e0248a]:not(first-child){margin-left:56%!important}.col-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-54e0248a]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-54e0248a]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-54e0248a]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-54e0248a]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-54e0248a]:first-child{margin-left:78%!important}.col-offset-9[data-v-54e0248a]:not(first-child){margin-left:82%!important}.col-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-54e0248a]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-54e0248a]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-54e0248a]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-54e0248a]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-1[data-v-54e0248a]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-2[data-v-54e0248a]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-3[data-v-54e0248a]{margin-left:26%}.col-no-margin-s-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-4[data-v-54e0248a]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-5[data-v-54e0248a]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-6[data-v-54e0248a]{margin-left:52%}.col-no-margin-s-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-7[data-v-54e0248a]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-8[data-v-54e0248a]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-9[data-v-54e0248a]{margin-left:78%}.col-no-margin-s-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-10[data-v-54e0248a]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-54e0248a]:first-child{margin-left:0}.col-offset-s-11[data-v-54e0248a]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-s-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-54e0248a]{display:none!important}.s-visible[data-v-54e0248a]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-1[data-v-54e0248a]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-2[data-v-54e0248a]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-3[data-v-54e0248a]{margin-left:26%}.col-no-margin-m-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-4[data-v-54e0248a]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-5[data-v-54e0248a]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-6[data-v-54e0248a]{margin-left:52%}.col-no-margin-m-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-7[data-v-54e0248a]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-8[data-v-54e0248a]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-9[data-v-54e0248a]{margin-left:78%}.col-no-margin-m-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-10[data-v-54e0248a]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-54e0248a]:first-child{margin-left:0}.col-offset-m-11[data-v-54e0248a]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-m-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-54e0248a]{display:none!important}.m-visible[data-v-54e0248a]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-1[data-v-54e0248a]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-2[data-v-54e0248a]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-3[data-v-54e0248a]{margin-left:26%}.col-no-margin-l-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-4[data-v-54e0248a]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-5[data-v-54e0248a]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-6[data-v-54e0248a]{margin-left:52%}.col-no-margin-l-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-7[data-v-54e0248a]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-8[data-v-54e0248a]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-9[data-v-54e0248a]{margin-left:78%}.col-no-margin-l-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-10[data-v-54e0248a]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-54e0248a]:first-child{margin-left:0}.col-offset-l-11[data-v-54e0248a]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-l-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-54e0248a]{display:none!important}.l-visible[data-v-54e0248a]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-1[data-v-54e0248a]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-2[data-v-54e0248a]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-3[data-v-54e0248a]{margin-left:26%}.col-no-margin-xl-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-4[data-v-54e0248a]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-5[data-v-54e0248a]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-6[data-v-54e0248a]{margin-left:52%}.col-no-margin-xl-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-7[data-v-54e0248a]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-8[data-v-54e0248a]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-9[data-v-54e0248a]{margin-left:78%}.col-no-margin-xl-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-10[data-v-54e0248a]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xl-11[data-v-54e0248a]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-54e0248a]{display:none!important}.xl-visible[data-v-54e0248a]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-1[data-v-54e0248a]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-54e0248a]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-2[data-v-54e0248a]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-54e0248a]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-3[data-v-54e0248a]{margin-left:26%}.col-no-margin-xxl-3[data-v-54e0248a]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-4[data-v-54e0248a]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-54e0248a]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-5[data-v-54e0248a]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-54e0248a]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-6[data-v-54e0248a]{margin-left:52%}.col-no-margin-xxl-6[data-v-54e0248a]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-7[data-v-54e0248a]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-54e0248a]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-8[data-v-54e0248a]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-54e0248a]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-9[data-v-54e0248a]{margin-left:78%}.col-no-margin-xxl-9[data-v-54e0248a]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-10[data-v-54e0248a]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-54e0248a]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-54e0248a]:first-child{margin-left:0}.col-offset-xxl-11[data-v-54e0248a]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-54e0248a]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-54e0248a]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-54e0248a]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-54e0248a]{display:none!important}.xxl-visible[data-v-54e0248a]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-54e0248a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-54e0248a]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-54e0248a]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-54e0248a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-54e0248a]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-54e0248a]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-54e0248a]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-54e0248a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-54e0248a]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-54e0248a]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-54e0248a]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-54e0248a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-54e0248a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-54e0248a]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-54e0248a]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-54e0248a]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-54e0248a]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-54e0248a]{display:none!important}}.vertical-center[data-v-54e0248a]{display:flex;align-items:center}.horizontal-center[data-v-54e0248a]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-54e0248a]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-54e0248a]{display:none!important}.no-content[data-v-54e0248a]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-54e0248a]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-54e0248a]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-54e0248a]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-54e0248a]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-54e0248a]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-54e0248a]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-54e0248a],.btn[data-v-54e0248a],button[data-v-54e0248a]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-54e0248a],.btn-default[type=submit][data-v-54e0248a],.btn.btn-primary[data-v-54e0248a],.btn[type=submit][data-v-54e0248a],button.btn-primary[data-v-54e0248a],button[type=submit][data-v-54e0248a]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-54e0248a],.btn-default .icon[data-v-54e0248a],button .icon[data-v-54e0248a]{margin-right:.5em}input[type=password][data-v-54e0248a],input[type=text][data-v-54e0248a]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-54e0248a]:focus,input[type=text][data-v-54e0248a]:focus{border:1px solid #35b870}button[data-v-54e0248a],input[data-v-54e0248a]{outline:none}input[type=text][data-v-54e0248a]:hover,textarea[data-v-54e0248a]:hover{border:1px solid #9cdfb0}ul[data-v-54e0248a]{margin:0;padding:0;list-style:none}a[data-v-54e0248a]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-54e0248a]:hover{color:#35b870}[data-v-54e0248a]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-54e0248a]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-54e0248a]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-54e0248a]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-54e0248a]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-54e0248a] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-54e0248a] .nav .path{cursor:pointer}.browser[data-v-54e0248a] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-54e0248a] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-54e0248a]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-54e0248a],input[type=number][data-v-54e0248a],input[type=password][data-v-54e0248a],input[type=search][data-v-54e0248a],input[type=text][data-v-54e0248a],input[type=time][data-v-54e0248a]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-54e0248a]:hover,input[type=number][data-v-54e0248a]:hover,input[type=password][data-v-54e0248a]:hover,input[type=search][data-v-54e0248a]:hover,input[type=text][data-v-54e0248a]:hover,input[type=time][data-v-54e0248a]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-54e0248a]:focus,input[type=number][data-v-54e0248a]:focus,input[type=password][data-v-54e0248a]:focus,input[type=search][data-v-54e0248a]:focus,input[type=text][data-v-54e0248a]:focus,input[type=time][data-v-54e0248a]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-54e0248a],input[type=number].with-icon[data-v-54e0248a],input[type=password].with-icon[data-v-54e0248a],input[type=search].with-icon[data-v-54e0248a],input[type=text].with-icon[data-v-54e0248a],input[type=time].with-icon[data-v-54e0248a]{padding-left:.3em}input[type=search][data-v-54e0248a],input[type=text][data-v-54e0248a]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-54e0248a]{animation-fill-mode:both;animation-name:fadeIn-54e0248a;-webkit-animation-name:fadeIn-54e0248a}.fade-in[data-v-54e0248a],.fade-out[data-v-54e0248a]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-54e0248a]{animation-fill-mode:both;animation-name:fadeOut-54e0248a;-webkit-animation-name:fadeOut-54e0248a}@keyframes fadeIn-54e0248a{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-54e0248a{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-54e0248a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-54e0248a]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-54e0248a]: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-54e0248a]{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-54e0248a]{filter:blur(.075em)}.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}}.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}.col-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-f1e41416]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-f1e41416]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-f1e41416]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-f1e41416]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-f1e41416]:first-child{margin-left:26%!important}.col-offset-3[data-v-f1e41416]:not(first-child){margin-left:30%!important}.col-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-f1e41416]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-f1e41416]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-f1e41416]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-f1e41416]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-f1e41416]:first-child{margin-left:52%!important}.col-offset-6[data-v-f1e41416]:not(first-child){margin-left:56%!important}.col-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-f1e41416]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-f1e41416]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-f1e41416]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-f1e41416]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-f1e41416]:first-child{margin-left:78%!important}.col-offset-9[data-v-f1e41416]:not(first-child){margin-left:82%!important}.col-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-f1e41416]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-f1e41416]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-f1e41416]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-f1e41416]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-1[data-v-f1e41416]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-2[data-v-f1e41416]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-3[data-v-f1e41416]{margin-left:26%}.col-no-margin-s-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-4[data-v-f1e41416]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-5[data-v-f1e41416]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-6[data-v-f1e41416]{margin-left:52%}.col-no-margin-s-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-7[data-v-f1e41416]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-8[data-v-f1e41416]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-9[data-v-f1e41416]{margin-left:78%}.col-no-margin-s-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-10[data-v-f1e41416]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-f1e41416]:first-child{margin-left:0}.col-offset-s-11[data-v-f1e41416]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-s-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-f1e41416]{display:none!important}.s-visible[data-v-f1e41416]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-1[data-v-f1e41416]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-2[data-v-f1e41416]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-3[data-v-f1e41416]{margin-left:26%}.col-no-margin-m-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-4[data-v-f1e41416]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-5[data-v-f1e41416]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-6[data-v-f1e41416]{margin-left:52%}.col-no-margin-m-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-7[data-v-f1e41416]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-8[data-v-f1e41416]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-9[data-v-f1e41416]{margin-left:78%}.col-no-margin-m-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-10[data-v-f1e41416]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-f1e41416]:first-child{margin-left:0}.col-offset-m-11[data-v-f1e41416]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-m-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-f1e41416]{display:none!important}.m-visible[data-v-f1e41416]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-1[data-v-f1e41416]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-2[data-v-f1e41416]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-3[data-v-f1e41416]{margin-left:26%}.col-no-margin-l-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-4[data-v-f1e41416]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-5[data-v-f1e41416]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-6[data-v-f1e41416]{margin-left:52%}.col-no-margin-l-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-7[data-v-f1e41416]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-8[data-v-f1e41416]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-9[data-v-f1e41416]{margin-left:78%}.col-no-margin-l-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-10[data-v-f1e41416]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-f1e41416]:first-child{margin-left:0}.col-offset-l-11[data-v-f1e41416]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-l-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-f1e41416]{display:none!important}.l-visible[data-v-f1e41416]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-1[data-v-f1e41416]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-2[data-v-f1e41416]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-3[data-v-f1e41416]{margin-left:26%}.col-no-margin-xl-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-4[data-v-f1e41416]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-5[data-v-f1e41416]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-6[data-v-f1e41416]{margin-left:52%}.col-no-margin-xl-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-7[data-v-f1e41416]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-8[data-v-f1e41416]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-9[data-v-f1e41416]{margin-left:78%}.col-no-margin-xl-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-10[data-v-f1e41416]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xl-11[data-v-f1e41416]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-f1e41416]{display:none!important}.xl-visible[data-v-f1e41416]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-1[data-v-f1e41416]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-f1e41416]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-2[data-v-f1e41416]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-f1e41416]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-3[data-v-f1e41416]{margin-left:26%}.col-no-margin-xxl-3[data-v-f1e41416]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-4[data-v-f1e41416]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-f1e41416]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-5[data-v-f1e41416]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-f1e41416]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-6[data-v-f1e41416]{margin-left:52%}.col-no-margin-xxl-6[data-v-f1e41416]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-7[data-v-f1e41416]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-f1e41416]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-8[data-v-f1e41416]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-f1e41416]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-9[data-v-f1e41416]{margin-left:78%}.col-no-margin-xxl-9[data-v-f1e41416]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-10[data-v-f1e41416]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-f1e41416]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-f1e41416]:first-child{margin-left:0}.col-offset-xxl-11[data-v-f1e41416]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-f1e41416]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-f1e41416]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-f1e41416]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-f1e41416]{display:none!important}.xxl-visible[data-v-f1e41416]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-f1e41416]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-f1e41416]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-f1e41416]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-f1e41416]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-f1e41416]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-f1e41416]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-f1e41416]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-f1e41416]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-f1e41416]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-f1e41416]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-f1e41416]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-f1e41416]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-f1e41416]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-f1e41416]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-f1e41416]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-f1e41416]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-f1e41416]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-f1e41416]{display:none!important}}.vertical-center[data-v-f1e41416]{display:flex;align-items:center}.horizontal-center[data-v-f1e41416]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-f1e41416]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-f1e41416]{display:none!important}.no-content[data-v-f1e41416]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-f1e41416]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-f1e41416]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-f1e41416]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-f1e41416]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-f1e41416]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-f1e41416]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-f1e41416],.btn[data-v-f1e41416],button[data-v-f1e41416]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-f1e41416],.btn-default[type=submit][data-v-f1e41416],.btn.btn-primary[data-v-f1e41416],.btn[type=submit][data-v-f1e41416],button.btn-primary[data-v-f1e41416],button[type=submit][data-v-f1e41416]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-f1e41416],.btn-default .icon[data-v-f1e41416],button .icon[data-v-f1e41416]{margin-right:.5em}input[type=password][data-v-f1e41416],input[type=text][data-v-f1e41416]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-f1e41416]:focus,input[type=text][data-v-f1e41416]:focus{border:1px solid #35b870}button[data-v-f1e41416],input[data-v-f1e41416]{outline:none}input[type=text][data-v-f1e41416]:hover,textarea[data-v-f1e41416]:hover{border:1px solid #9cdfb0}ul[data-v-f1e41416]{margin:0;padding:0;list-style:none}a[data-v-f1e41416]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-f1e41416]:hover{color:#35b870}[data-v-f1e41416]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-f1e41416]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-f1e41416]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-f1e41416]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-f1e41416]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-f1e41416] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-f1e41416] .nav .path{cursor:pointer}.browser[data-v-f1e41416] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-f1e41416] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-f1e41416]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-f1e41416],input[type=number][data-v-f1e41416],input[type=password][data-v-f1e41416],input[type=search][data-v-f1e41416],input[type=text][data-v-f1e41416],input[type=time][data-v-f1e41416]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-f1e41416]:hover,input[type=number][data-v-f1e41416]:hover,input[type=password][data-v-f1e41416]:hover,input[type=search][data-v-f1e41416]:hover,input[type=text][data-v-f1e41416]:hover,input[type=time][data-v-f1e41416]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-f1e41416]:focus,input[type=number][data-v-f1e41416]:focus,input[type=password][data-v-f1e41416]:focus,input[type=search][data-v-f1e41416]:focus,input[type=text][data-v-f1e41416]:focus,input[type=time][data-v-f1e41416]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-f1e41416],input[type=number].with-icon[data-v-f1e41416],input[type=password].with-icon[data-v-f1e41416],input[type=search].with-icon[data-v-f1e41416],input[type=text].with-icon[data-v-f1e41416],input[type=time].with-icon[data-v-f1e41416]{padding-left:.3em}input[type=search][data-v-f1e41416],input[type=text][data-v-f1e41416]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-f1e41416]{animation-fill-mode:both;animation-name:fadeIn-f1e41416;-webkit-animation-name:fadeIn-f1e41416}.fade-in[data-v-f1e41416],.fade-out[data-v-f1e41416]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-f1e41416]{animation-fill-mode:both;animation-name:fadeOut-f1e41416;-webkit-animation-name:fadeOut-f1e41416}@keyframes fadeIn-f1e41416{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-f1e41416{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-f1e41416]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-f1e41416]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-f1e41416]: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-f1e41416]{width:100%;height:100%}.col-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-4d35e6e2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-4d35e6e2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-4d35e6e2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-4d35e6e2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-4d35e6e2]:first-child{margin-left:26%!important}.col-offset-3[data-v-4d35e6e2]:not(first-child){margin-left:30%!important}.col-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-4d35e6e2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-4d35e6e2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-4d35e6e2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-4d35e6e2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-4d35e6e2]:first-child{margin-left:52%!important}.col-offset-6[data-v-4d35e6e2]:not(first-child){margin-left:56%!important}.col-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-4d35e6e2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-4d35e6e2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-4d35e6e2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-4d35e6e2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-4d35e6e2]:first-child{margin-left:78%!important}.col-offset-9[data-v-4d35e6e2]:not(first-child){margin-left:82%!important}.col-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-4d35e6e2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-4d35e6e2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-4d35e6e2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-4d35e6e2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-1[data-v-4d35e6e2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-2[data-v-4d35e6e2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-3[data-v-4d35e6e2]{margin-left:26%}.col-no-margin-s-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-4[data-v-4d35e6e2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-5[data-v-4d35e6e2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-6[data-v-4d35e6e2]{margin-left:52%}.col-no-margin-s-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-7[data-v-4d35e6e2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-8[data-v-4d35e6e2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-9[data-v-4d35e6e2]{margin-left:78%}.col-no-margin-s-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-10[data-v-4d35e6e2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-s-11[data-v-4d35e6e2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-4d35e6e2]{display:none!important}.s-visible[data-v-4d35e6e2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-1[data-v-4d35e6e2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-2[data-v-4d35e6e2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-3[data-v-4d35e6e2]{margin-left:26%}.col-no-margin-m-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-4[data-v-4d35e6e2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-5[data-v-4d35e6e2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-6[data-v-4d35e6e2]{margin-left:52%}.col-no-margin-m-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-7[data-v-4d35e6e2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-8[data-v-4d35e6e2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-9[data-v-4d35e6e2]{margin-left:78%}.col-no-margin-m-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-10[data-v-4d35e6e2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-m-11[data-v-4d35e6e2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-4d35e6e2]{display:none!important}.m-visible[data-v-4d35e6e2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-1[data-v-4d35e6e2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-2[data-v-4d35e6e2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-3[data-v-4d35e6e2]{margin-left:26%}.col-no-margin-l-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-4[data-v-4d35e6e2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-5[data-v-4d35e6e2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-6[data-v-4d35e6e2]{margin-left:52%}.col-no-margin-l-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-7[data-v-4d35e6e2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-8[data-v-4d35e6e2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-9[data-v-4d35e6e2]{margin-left:78%}.col-no-margin-l-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-10[data-v-4d35e6e2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-l-11[data-v-4d35e6e2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-4d35e6e2]{display:none!important}.l-visible[data-v-4d35e6e2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-1[data-v-4d35e6e2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-2[data-v-4d35e6e2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-3[data-v-4d35e6e2]{margin-left:26%}.col-no-margin-xl-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-4[data-v-4d35e6e2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-5[data-v-4d35e6e2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-6[data-v-4d35e6e2]{margin-left:52%}.col-no-margin-xl-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-7[data-v-4d35e6e2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-8[data-v-4d35e6e2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-9[data-v-4d35e6e2]{margin-left:78%}.col-no-margin-xl-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-10[data-v-4d35e6e2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xl-11[data-v-4d35e6e2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-4d35e6e2]{display:none!important}.xl-visible[data-v-4d35e6e2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-4d35e6e2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-4d35e6e2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-4d35e6e2]{margin-left:26%}.col-no-margin-xxl-3[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-4d35e6e2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-4d35e6e2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-4d35e6e2]{margin-left:52%}.col-no-margin-xxl-6[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-4d35e6e2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-4d35e6e2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-4d35e6e2]{margin-left:78%}.col-no-margin-xxl-9[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-4d35e6e2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-4d35e6e2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-4d35e6e2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-4d35e6e2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-4d35e6e2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-4d35e6e2]{display:none!important}.xxl-visible[data-v-4d35e6e2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-4d35e6e2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-4d35e6e2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-4d35e6e2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-4d35e6e2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-4d35e6e2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-4d35e6e2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-4d35e6e2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-4d35e6e2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-4d35e6e2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-4d35e6e2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-4d35e6e2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-4d35e6e2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-4d35e6e2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-4d35e6e2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-4d35e6e2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-4d35e6e2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-4d35e6e2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-4d35e6e2]{display:none!important}}.vertical-center[data-v-4d35e6e2]{display:flex;align-items:center}.horizontal-center[data-v-4d35e6e2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-4d35e6e2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-4d35e6e2]{display:none!important}.no-content[data-v-4d35e6e2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-4d35e6e2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-4d35e6e2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-4d35e6e2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-4d35e6e2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-4d35e6e2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-4d35e6e2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-4d35e6e2],.btn[data-v-4d35e6e2],button[data-v-4d35e6e2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-4d35e6e2],.btn-default[type=submit][data-v-4d35e6e2],.btn.btn-primary[data-v-4d35e6e2],.btn[type=submit][data-v-4d35e6e2],button.btn-primary[data-v-4d35e6e2],button[type=submit][data-v-4d35e6e2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-4d35e6e2],.btn-default .icon[data-v-4d35e6e2],button .icon[data-v-4d35e6e2]{margin-right:.5em}input[type=password][data-v-4d35e6e2],input[type=text][data-v-4d35e6e2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-4d35e6e2]:focus,input[type=text][data-v-4d35e6e2]:focus{border:1px solid #35b870}button[data-v-4d35e6e2],input[data-v-4d35e6e2]{outline:none}input[type=text][data-v-4d35e6e2]:hover,textarea[data-v-4d35e6e2]:hover{border:1px solid #9cdfb0}ul[data-v-4d35e6e2]{margin:0;padding:0;list-style:none}a[data-v-4d35e6e2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-4d35e6e2]:hover{color:#35b870}[data-v-4d35e6e2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-4d35e6e2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-4d35e6e2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-4d35e6e2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-4d35e6e2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-4d35e6e2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-4d35e6e2] .nav .path{cursor:pointer}.browser[data-v-4d35e6e2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-4d35e6e2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-4d35e6e2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-4d35e6e2],input[type=number][data-v-4d35e6e2],input[type=password][data-v-4d35e6e2],input[type=search][data-v-4d35e6e2],input[type=text][data-v-4d35e6e2],input[type=time][data-v-4d35e6e2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-4d35e6e2]:hover,input[type=number][data-v-4d35e6e2]:hover,input[type=password][data-v-4d35e6e2]:hover,input[type=search][data-v-4d35e6e2]:hover,input[type=text][data-v-4d35e6e2]:hover,input[type=time][data-v-4d35e6e2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-4d35e6e2]:focus,input[type=number][data-v-4d35e6e2]:focus,input[type=password][data-v-4d35e6e2]:focus,input[type=search][data-v-4d35e6e2]:focus,input[type=text][data-v-4d35e6e2]:focus,input[type=time][data-v-4d35e6e2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-4d35e6e2],input[type=number].with-icon[data-v-4d35e6e2],input[type=password].with-icon[data-v-4d35e6e2],input[type=search].with-icon[data-v-4d35e6e2],input[type=text].with-icon[data-v-4d35e6e2],input[type=time].with-icon[data-v-4d35e6e2]{padding-left:.3em}input[type=search][data-v-4d35e6e2],input[type=text][data-v-4d35e6e2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-4d35e6e2]{animation-fill-mode:both;animation-name:fadeIn-4d35e6e2;-webkit-animation-name:fadeIn-4d35e6e2}.fade-in[data-v-4d35e6e2],.fade-out[data-v-4d35e6e2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-4d35e6e2]{animation-fill-mode:both;animation-name:fadeOut-4d35e6e2;-webkit-animation-name:fadeOut-4d35e6e2}@keyframes fadeIn-4d35e6e2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-4d35e6e2{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-4d35e6e2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-4d35e6e2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-4d35e6e2]: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-4d35e6e2]{width:100%;height:100vh;background:#4c4c4c;color:#fff;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5)}nav.collapsed[data-v-4d35e6e2]{box-shadow:1px 1px 1px 1px silver;margin-bottom:2px;z-index:1}nav[data-v-4d35e6e2]:not(.collapsed){position:absolute;top:0;left:0;z-index:5}nav:not(.collapsed) .icon.status[data-v-4d35e6e2]{top:.75em!important;left:2em}}@media screen and (min-width:769px){nav[data-v-4d35e6e2]{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-4d35e6e2]{width:20em;min-width:20em}}nav li[data-v-4d35e6e2]{border-bottom:1px solid hsla(0,0%,100%,.15);cursor:pointer;list-style:none}nav li a[data-v-4d35e6e2]{display:block;color:#fff;padding:1em .5em;text-decoration:none}nav li a[data-v-4d35e6e2]:hover{color:#fff}nav li.selected[data-v-4d35e6e2]{background:rgba(80,120,110,.8);border:1px solid transparent}nav li[data-v-4d35e6e2]:hover{background:#5a8c78;border:1px solid transparent}nav li .name[data-v-4d35e6e2]{margin-left:.5em}nav li .icon[data-v-4d35e6e2]{margin-right:.5em}nav .toggler[data-v-4d35e6e2]{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-4d35e6e2]{position:absolute;top:1.3em;right:.5em;font-size:.5em}nav .toggler .icon.status.ok[data-v-4d35e6e2]{color:#17ad17}nav .toggler .icon.status.error[data-v-4d35e6e2]{color:#ad1717}nav .hostname[data-v-4d35e6e2]{font-size:.7em;margin-top:-.2em}@media screen and (min-width:769px){nav .hostname[data-v-4d35e6e2]{margin-left:1em}}@media screen and (max-width:768px){nav .hostname[data-v-4d35e6e2]{text-align:right;margin-right:.25em;flex-grow:1}}nav .plugins[data-v-4d35e6e2]{height:calc(100% - 14.5em);overflow:auto}nav .plugins[data-v-4d35e6e2] .icon{display:inline-flex}nav .plugins[data-v-4d35e6e2] .icon .extension-icon{margin-left:0;display:inline-flex}nav .footer[data-v-4d35e6e2]{height:11.4em;background:rgba(0,0,0,.25);padding:0;margin:0}nav .footer li[data-v-4d35e6e2]:last-child{border:0}nav ul li .icon[data-v-4d35e6e2]{margin-right:0}nav ul li .icon i[data-v-4d35e6e2],nav ul li .icon img[data-v-4d35e6e2]{width:1.5em;height:1.5em}nav .icon.status[data-v-4d35e6e2]{width:1em}nav.collapsed[data-v-4d35e6e2]{display:flex;flex-direction:column;margin-right:1px}@media screen and (min-width:769px){nav.collapsed[data-v-4d35e6e2]{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-4d35e6e2]{display:none}}@media screen and (max-width:768px){nav.collapsed[data-v-4d35e6e2]{height:auto}}nav.collapsed a[data-v-4d35e6e2]{color:#5e5e5e;padding:.25em 0}nav.collapsed a[data-v-4d35e6e2]:hover{color:#5e5e5e}nav.collapsed .toggler[data-v-4d35e6e2]{height:2em;text-align:center;box-shadow:none;background:none}nav.collapsed .toggler .icon.status[data-v-4d35e6e2]{top:.75em;left:2em}@media screen and (max-width:calc(769px - 1px)){nav.collapsed .toggler[data-v-4d35e6e2]{background:#3c3c3c;color:#fff}nav.collapsed .toggler .icon.status[data-v-4d35e6e2]{top:.75em!important}}nav.collapsed .footer[data-v-4d35e6e2]{height:7.5em;background:none;padding:0;margin-bottom:.5em;box-shadow:none}@media screen and (max-width:768px){nav.collapsed .footer[data-v-4d35e6e2]{display:none}}nav.collapsed ul[data-v-4d35e6e2]{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-4d35e6e2]{margin:2em 0}}nav.collapsed ul[data-v-4d35e6e2]:hover{overflow:auto}nav.collapsed ul li[data-v-4d35e6e2]{border:none;padding:0;text-align:center}nav.collapsed ul li.selected[data-v-4d35e6e2],nav.collapsed ul li[data-v-4d35e6e2]:hover{border-radius:1em;margin:0 .2em}nav.collapsed ul li.selected[data-v-4d35e6e2]{background:rgba(160,245,178,.95)}nav.collapsed ul li[data-v-4d35e6e2]:hover{background:rgba(160,245,178,.6)}nav.collapsed ul li .icon[data-v-4d35e6e2]{margin-right:0}@media screen and (max-width:768px){nav.collapsed ul li[data-v-4d35e6e2]{display:none}}.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}}.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}.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}}.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}}.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}.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}}.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}.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}}.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-217d1092]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-1[data-v-217d1092]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-217d1092]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-217d1092]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-217d1092]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-2[data-v-217d1092]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-217d1092]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-217d1092]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-217d1092]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-3[data-v-217d1092]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-217d1092]:first-child{margin-left:26%!important}.col-offset-3[data-v-217d1092]:not(first-child){margin-left:30%!important}.col-4[data-v-217d1092]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-4[data-v-217d1092]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-217d1092]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-217d1092]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-217d1092]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-5[data-v-217d1092]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-217d1092]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-217d1092]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-217d1092]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-6[data-v-217d1092]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-217d1092]:first-child{margin-left:52%!important}.col-offset-6[data-v-217d1092]:not(first-child){margin-left:56%!important}.col-7[data-v-217d1092]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-7[data-v-217d1092]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-217d1092]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-217d1092]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-217d1092]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-8[data-v-217d1092]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-217d1092]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-217d1092]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-217d1092]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-9[data-v-217d1092]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-217d1092]:first-child{margin-left:78%!important}.col-offset-9[data-v-217d1092]:not(first-child){margin-left:82%!important}.col-10[data-v-217d1092]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-10[data-v-217d1092]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-217d1092]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-217d1092]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-217d1092]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-217d1092]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-217d1092]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-1[data-v-217d1092]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-217d1092]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-217d1092]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-2[data-v-217d1092]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-217d1092]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-217d1092]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-3[data-v-217d1092]{margin-left:26%}.col-no-margin-s-3[data-v-217d1092]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-217d1092]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-4[data-v-217d1092]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-217d1092]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-217d1092]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-5[data-v-217d1092]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-217d1092]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-217d1092]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-6[data-v-217d1092]{margin-left:52%}.col-no-margin-s-6[data-v-217d1092]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-217d1092]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-7[data-v-217d1092]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-217d1092]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-217d1092]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-8[data-v-217d1092]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-217d1092]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-217d1092]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-9[data-v-217d1092]{margin-left:78%}.col-no-margin-s-9[data-v-217d1092]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-217d1092]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-10[data-v-217d1092]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-217d1092]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-217d1092]:first-child{margin-left:0}.col-offset-s-11[data-v-217d1092]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-s-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-217d1092]{display:none!important}.s-visible[data-v-217d1092]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-217d1092]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-1[data-v-217d1092]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-217d1092]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-217d1092]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-2[data-v-217d1092]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-217d1092]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-217d1092]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-3[data-v-217d1092]{margin-left:26%}.col-no-margin-m-3[data-v-217d1092]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-217d1092]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-4[data-v-217d1092]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-217d1092]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-217d1092]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-5[data-v-217d1092]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-217d1092]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-217d1092]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-6[data-v-217d1092]{margin-left:52%}.col-no-margin-m-6[data-v-217d1092]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-217d1092]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-7[data-v-217d1092]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-217d1092]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-217d1092]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-8[data-v-217d1092]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-217d1092]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-217d1092]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-9[data-v-217d1092]{margin-left:78%}.col-no-margin-m-9[data-v-217d1092]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-217d1092]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-10[data-v-217d1092]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-217d1092]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-217d1092]:first-child{margin-left:0}.col-offset-m-11[data-v-217d1092]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-m-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-217d1092]{display:none!important}.m-visible[data-v-217d1092]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-217d1092]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-1[data-v-217d1092]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-217d1092]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-217d1092]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-2[data-v-217d1092]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-217d1092]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-217d1092]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-3[data-v-217d1092]{margin-left:26%}.col-no-margin-l-3[data-v-217d1092]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-217d1092]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-4[data-v-217d1092]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-217d1092]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-217d1092]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-5[data-v-217d1092]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-217d1092]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-217d1092]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-6[data-v-217d1092]{margin-left:52%}.col-no-margin-l-6[data-v-217d1092]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-217d1092]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-7[data-v-217d1092]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-217d1092]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-217d1092]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-8[data-v-217d1092]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-217d1092]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-217d1092]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-9[data-v-217d1092]{margin-left:78%}.col-no-margin-l-9[data-v-217d1092]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-217d1092]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-10[data-v-217d1092]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-217d1092]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-217d1092]:first-child{margin-left:0}.col-offset-l-11[data-v-217d1092]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-l-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-217d1092]{display:none!important}.l-visible[data-v-217d1092]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-217d1092]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-1[data-v-217d1092]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-217d1092]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-217d1092]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-2[data-v-217d1092]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-217d1092]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-217d1092]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-3[data-v-217d1092]{margin-left:26%}.col-no-margin-xl-3[data-v-217d1092]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-217d1092]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-4[data-v-217d1092]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-217d1092]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-217d1092]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-5[data-v-217d1092]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-217d1092]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-217d1092]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-6[data-v-217d1092]{margin-left:52%}.col-no-margin-xl-6[data-v-217d1092]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-217d1092]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-7[data-v-217d1092]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-217d1092]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-217d1092]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-8[data-v-217d1092]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-217d1092]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-217d1092]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-9[data-v-217d1092]{margin-left:78%}.col-no-margin-xl-9[data-v-217d1092]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-217d1092]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-10[data-v-217d1092]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-217d1092]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-217d1092]:first-child{margin-left:0}.col-offset-xl-11[data-v-217d1092]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-217d1092]{display:none!important}.xl-visible[data-v-217d1092]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-217d1092]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-1[data-v-217d1092]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-217d1092]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-217d1092]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-2[data-v-217d1092]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-217d1092]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-217d1092]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-3[data-v-217d1092]{margin-left:26%}.col-no-margin-xxl-3[data-v-217d1092]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-217d1092]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-4[data-v-217d1092]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-217d1092]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-217d1092]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-5[data-v-217d1092]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-217d1092]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-217d1092]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-6[data-v-217d1092]{margin-left:52%}.col-no-margin-xxl-6[data-v-217d1092]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-217d1092]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-7[data-v-217d1092]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-217d1092]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-217d1092]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-8[data-v-217d1092]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-217d1092]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-217d1092]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-9[data-v-217d1092]{margin-left:78%}.col-no-margin-xxl-9[data-v-217d1092]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-217d1092]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-10[data-v-217d1092]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-217d1092]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-217d1092]:first-child{margin-left:0}.col-offset-xxl-11[data-v-217d1092]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-217d1092]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-217d1092]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-217d1092]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-217d1092]{display:none!important}.xxl-visible[data-v-217d1092]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-217d1092]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-217d1092]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-217d1092]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-217d1092]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-217d1092]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-217d1092]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-217d1092]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-217d1092]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-217d1092]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-217d1092]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-217d1092]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-217d1092]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-217d1092]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-217d1092]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-217d1092]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-217d1092]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-217d1092]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-217d1092]{display:none!important}}.vertical-center[data-v-217d1092]{display:flex;align-items:center}.horizontal-center[data-v-217d1092]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-217d1092]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-217d1092]{display:none!important}.no-content[data-v-217d1092]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-217d1092]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-217d1092]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-217d1092]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-217d1092]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-217d1092]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-217d1092]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-217d1092],.btn[data-v-217d1092],button[data-v-217d1092]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-217d1092],.btn-default[type=submit][data-v-217d1092],.btn.btn-primary[data-v-217d1092],.btn[type=submit][data-v-217d1092],button.btn-primary[data-v-217d1092],button[type=submit][data-v-217d1092]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-217d1092],.btn-default .icon[data-v-217d1092],button .icon[data-v-217d1092]{margin-right:.5em}input[type=password][data-v-217d1092],input[type=text][data-v-217d1092]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-217d1092]:focus,input[type=text][data-v-217d1092]:focus{border:1px solid #35b870}button[data-v-217d1092],input[data-v-217d1092]{outline:none}input[type=text][data-v-217d1092]:hover,textarea[data-v-217d1092]:hover{border:1px solid #9cdfb0}ul[data-v-217d1092]{margin:0;padding:0;list-style:none}a[data-v-217d1092]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-217d1092]:hover{color:#35b870}[data-v-217d1092]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-217d1092]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-217d1092]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-217d1092]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-217d1092]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-217d1092] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-217d1092] .nav .path{cursor:pointer}.browser[data-v-217d1092] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-217d1092] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-217d1092]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-217d1092],input[type=number][data-v-217d1092],input[type=password][data-v-217d1092],input[type=search][data-v-217d1092],input[type=text][data-v-217d1092],input[type=time][data-v-217d1092]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-217d1092]:hover,input[type=number][data-v-217d1092]:hover,input[type=password][data-v-217d1092]:hover,input[type=search][data-v-217d1092]:hover,input[type=text][data-v-217d1092]:hover,input[type=time][data-v-217d1092]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-217d1092]:focus,input[type=number][data-v-217d1092]:focus,input[type=password][data-v-217d1092]:focus,input[type=search][data-v-217d1092]:focus,input[type=text][data-v-217d1092]:focus,input[type=time][data-v-217d1092]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-217d1092],input[type=number].with-icon[data-v-217d1092],input[type=password].with-icon[data-v-217d1092],input[type=search].with-icon[data-v-217d1092],input[type=text].with-icon[data-v-217d1092],input[type=time].with-icon[data-v-217d1092]{padding-left:.3em}input[type=search][data-v-217d1092],input[type=text][data-v-217d1092]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-217d1092]{animation-fill-mode:both;animation-name:fadeIn-217d1092;-webkit-animation-name:fadeIn-217d1092}.fade-in[data-v-217d1092],.fade-out[data-v-217d1092]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-217d1092]{animation-fill-mode:both;animation-name:fadeOut-217d1092;-webkit-animation-name:fadeOut-217d1092}@keyframes fadeIn-217d1092{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-217d1092{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-217d1092]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-217d1092]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-217d1092]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}section[data-v-217d1092]{height:100%}section header[data-v-217d1092]{height:3.5em;padding:.5em;border-bottom:1px solid #ddd}section header h2[data-v-217d1092]{margin:0;padding:0;font-size:1.25em}section header .title[data-v-217d1092]{display:flex;align-items:center}section header .title .name[data-v-217d1092]{margin-left:.5em}section article[data-v-217d1092]{height:calc(100% - 3.5em);padding:.5em;overflow:auto}section article[data-v-217d1092] ul{margin-left:1em}section article[data-v-217d1092] ul li{list-style:disc}section .actions[data-v-217d1092],section .events[data-v-217d1092]{padding:.5em;overflow:auto}section .actions h3[data-v-217d1092],section .events h3[data-v-217d1092]{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-217d1092],section .events ul[data-v-217d1092]{display:flex;flex-direction:column;margin:0}section .actions ul li[data-v-217d1092],section .events ul li[data-v-217d1092]{width:100%;display:block;margin:.5em 0;list-style:none}section .actions ul li a[data-v-217d1092],section .events ul li a[data-v-217d1092]{width:100%;display:block}section .actions pre[data-v-217d1092],section .events pre[data-v-217d1092]{margin:0}.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}}.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)}.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}}.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}}.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}}.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}.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}}.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}}.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-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}}.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}}.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}}.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}.col-1[data-v-681f7492]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-1[data-v-681f7492]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-681f7492]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-681f7492]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-681f7492]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-2[data-v-681f7492]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-681f7492]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-681f7492]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-681f7492]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-3[data-v-681f7492]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-681f7492]:first-child{margin-left:26%!important}.col-offset-3[data-v-681f7492]:not(first-child){margin-left:30%!important}.col-4[data-v-681f7492]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-4[data-v-681f7492]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-681f7492]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-681f7492]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-681f7492]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-5[data-v-681f7492]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-681f7492]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-681f7492]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-681f7492]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-6[data-v-681f7492]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-681f7492]:first-child{margin-left:52%!important}.col-offset-6[data-v-681f7492]:not(first-child){margin-left:56%!important}.col-7[data-v-681f7492]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-7[data-v-681f7492]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-681f7492]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-681f7492]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-681f7492]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-8[data-v-681f7492]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-681f7492]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-681f7492]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-681f7492]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-9[data-v-681f7492]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-681f7492]:first-child{margin-left:78%!important}.col-offset-9[data-v-681f7492]:not(first-child){margin-left:82%!important}.col-10[data-v-681f7492]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-10[data-v-681f7492]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-681f7492]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-681f7492]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-681f7492]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-681f7492]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-681f7492]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-1[data-v-681f7492]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-681f7492]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-681f7492]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-2[data-v-681f7492]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-681f7492]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-681f7492]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-3[data-v-681f7492]{margin-left:26%}.col-no-margin-s-3[data-v-681f7492]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-681f7492]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-4[data-v-681f7492]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-681f7492]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-681f7492]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-5[data-v-681f7492]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-681f7492]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-681f7492]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-6[data-v-681f7492]{margin-left:52%}.col-no-margin-s-6[data-v-681f7492]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-681f7492]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-7[data-v-681f7492]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-681f7492]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-681f7492]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-8[data-v-681f7492]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-681f7492]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-681f7492]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-9[data-v-681f7492]{margin-left:78%}.col-no-margin-s-9[data-v-681f7492]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-681f7492]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-10[data-v-681f7492]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-681f7492]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-681f7492]:first-child{margin-left:0}.col-offset-s-11[data-v-681f7492]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-s-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-681f7492]{display:none!important}.s-visible[data-v-681f7492]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-681f7492]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-1[data-v-681f7492]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-681f7492]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-681f7492]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-2[data-v-681f7492]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-681f7492]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-681f7492]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-3[data-v-681f7492]{margin-left:26%}.col-no-margin-m-3[data-v-681f7492]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-681f7492]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-4[data-v-681f7492]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-681f7492]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-681f7492]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-5[data-v-681f7492]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-681f7492]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-681f7492]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-6[data-v-681f7492]{margin-left:52%}.col-no-margin-m-6[data-v-681f7492]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-681f7492]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-7[data-v-681f7492]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-681f7492]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-681f7492]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-8[data-v-681f7492]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-681f7492]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-681f7492]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-9[data-v-681f7492]{margin-left:78%}.col-no-margin-m-9[data-v-681f7492]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-681f7492]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-10[data-v-681f7492]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-681f7492]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-681f7492]:first-child{margin-left:0}.col-offset-m-11[data-v-681f7492]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-m-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-681f7492]{display:none!important}.m-visible[data-v-681f7492]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-681f7492]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-1[data-v-681f7492]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-681f7492]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-681f7492]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-2[data-v-681f7492]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-681f7492]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-681f7492]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-3[data-v-681f7492]{margin-left:26%}.col-no-margin-l-3[data-v-681f7492]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-681f7492]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-4[data-v-681f7492]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-681f7492]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-681f7492]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-5[data-v-681f7492]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-681f7492]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-681f7492]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-6[data-v-681f7492]{margin-left:52%}.col-no-margin-l-6[data-v-681f7492]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-681f7492]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-7[data-v-681f7492]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-681f7492]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-681f7492]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-8[data-v-681f7492]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-681f7492]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-681f7492]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-9[data-v-681f7492]{margin-left:78%}.col-no-margin-l-9[data-v-681f7492]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-681f7492]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-10[data-v-681f7492]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-681f7492]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-681f7492]:first-child{margin-left:0}.col-offset-l-11[data-v-681f7492]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-l-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-681f7492]{display:none!important}.l-visible[data-v-681f7492]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-681f7492]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-1[data-v-681f7492]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-681f7492]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-681f7492]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-2[data-v-681f7492]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-681f7492]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-681f7492]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-3[data-v-681f7492]{margin-left:26%}.col-no-margin-xl-3[data-v-681f7492]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-681f7492]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-4[data-v-681f7492]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-681f7492]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-681f7492]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-5[data-v-681f7492]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-681f7492]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-681f7492]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-6[data-v-681f7492]{margin-left:52%}.col-no-margin-xl-6[data-v-681f7492]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-681f7492]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-7[data-v-681f7492]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-681f7492]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-681f7492]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-8[data-v-681f7492]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-681f7492]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-681f7492]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-9[data-v-681f7492]{margin-left:78%}.col-no-margin-xl-9[data-v-681f7492]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-681f7492]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-10[data-v-681f7492]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-681f7492]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-681f7492]:first-child{margin-left:0}.col-offset-xl-11[data-v-681f7492]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-681f7492]{display:none!important}.xl-visible[data-v-681f7492]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-681f7492]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-1[data-v-681f7492]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-681f7492]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-681f7492]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-2[data-v-681f7492]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-681f7492]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-681f7492]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-3[data-v-681f7492]{margin-left:26%}.col-no-margin-xxl-3[data-v-681f7492]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-681f7492]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-4[data-v-681f7492]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-681f7492]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-681f7492]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-5[data-v-681f7492]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-681f7492]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-681f7492]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-6[data-v-681f7492]{margin-left:52%}.col-no-margin-xxl-6[data-v-681f7492]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-681f7492]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-7[data-v-681f7492]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-681f7492]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-681f7492]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-8[data-v-681f7492]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-681f7492]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-681f7492]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-9[data-v-681f7492]{margin-left:78%}.col-no-margin-xxl-9[data-v-681f7492]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-681f7492]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-10[data-v-681f7492]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-681f7492]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-681f7492]:first-child{margin-left:0}.col-offset-xxl-11[data-v-681f7492]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-681f7492]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-681f7492]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-681f7492]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-681f7492]{display:none!important}.xxl-visible[data-v-681f7492]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-681f7492]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-681f7492]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-681f7492]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-681f7492]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-681f7492]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-681f7492]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-681f7492]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-681f7492]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-681f7492]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-681f7492]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-681f7492]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-681f7492]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-681f7492]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-681f7492]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-681f7492]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-681f7492]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-681f7492]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-681f7492]{display:none!important}}.vertical-center[data-v-681f7492]{display:flex;align-items:center}.horizontal-center[data-v-681f7492]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-681f7492]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-681f7492]{display:none!important}.no-content[data-v-681f7492]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-681f7492]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-681f7492]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-681f7492]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-681f7492]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-681f7492]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-681f7492]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-681f7492],.btn[data-v-681f7492],button[data-v-681f7492]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-681f7492],.btn-default[type=submit][data-v-681f7492],.btn.btn-primary[data-v-681f7492],.btn[type=submit][data-v-681f7492],button.btn-primary[data-v-681f7492],button[type=submit][data-v-681f7492]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-681f7492],.btn-default .icon[data-v-681f7492],button .icon[data-v-681f7492]{margin-right:.5em}input[type=password][data-v-681f7492],input[type=text][data-v-681f7492]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-681f7492]:focus,input[type=text][data-v-681f7492]:focus{border:1px solid #35b870}button[data-v-681f7492],input[data-v-681f7492]{outline:none}input[type=text][data-v-681f7492]:hover,textarea[data-v-681f7492]:hover{border:1px solid #9cdfb0}ul[data-v-681f7492]{margin:0;padding:0;list-style:none}a[data-v-681f7492]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-681f7492]:hover{color:#35b870}[data-v-681f7492]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-681f7492]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-681f7492]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-681f7492]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-681f7492]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-681f7492] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-681f7492] .nav .path{cursor:pointer}.browser[data-v-681f7492] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-681f7492] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-681f7492]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-681f7492],input[type=number][data-v-681f7492],input[type=password][data-v-681f7492],input[type=search][data-v-681f7492],input[type=text][data-v-681f7492],input[type=time][data-v-681f7492]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-681f7492]:hover,input[type=number][data-v-681f7492]:hover,input[type=password][data-v-681f7492]:hover,input[type=search][data-v-681f7492]:hover,input[type=text][data-v-681f7492]:hover,input[type=time][data-v-681f7492]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-681f7492]:focus,input[type=number][data-v-681f7492]:focus,input[type=password][data-v-681f7492]:focus,input[type=search][data-v-681f7492]:focus,input[type=text][data-v-681f7492]:focus,input[type=time][data-v-681f7492]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-681f7492],input[type=number].with-icon[data-v-681f7492],input[type=password].with-icon[data-v-681f7492],input[type=search].with-icon[data-v-681f7492],input[type=text].with-icon[data-v-681f7492],input[type=time].with-icon[data-v-681f7492]{padding-left:.3em}input[type=search][data-v-681f7492],input[type=text][data-v-681f7492]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-681f7492]{animation-fill-mode:both;animation-name:fadeIn-681f7492;-webkit-animation-name:fadeIn-681f7492}.fade-in[data-v-681f7492],.fade-out[data-v-681f7492]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-681f7492]{animation-fill-mode:both;animation-name:fadeOut-681f7492;-webkit-animation-name:fadeOut-681f7492}@keyframes fadeIn-681f7492{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-681f7492{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-681f7492]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-681f7492]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-681f7492]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.floating-btn[data-v-681f7492]{position:fixed;bottom:0;right:0;margin:auto 1em 1em auto}.floating-btn button[data-v-681f7492]{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-681f7492]:hover{background:linear-gradient(90deg,#29d89f,#09bc8a 70%)!important}.floating-btn[data-v-681f7492] button .icon-container{width:4em}.floating-btn[data-v-681f7492] button .icon-container .icon{margin:auto}.col-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-510035f2]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-510035f2]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-510035f2]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-510035f2]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-510035f2]:first-child{margin-left:26%!important}.col-offset-3[data-v-510035f2]:not(first-child){margin-left:30%!important}.col-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-510035f2]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-510035f2]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-510035f2]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-510035f2]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-510035f2]:first-child{margin-left:52%!important}.col-offset-6[data-v-510035f2]:not(first-child){margin-left:56%!important}.col-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-510035f2]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-510035f2]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-510035f2]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-510035f2]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-510035f2]:first-child{margin-left:78%!important}.col-offset-9[data-v-510035f2]:not(first-child){margin-left:82%!important}.col-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-510035f2]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-510035f2]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-510035f2]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-510035f2]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-1[data-v-510035f2]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-2[data-v-510035f2]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-3[data-v-510035f2]{margin-left:26%}.col-no-margin-s-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-4[data-v-510035f2]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-5[data-v-510035f2]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-6[data-v-510035f2]{margin-left:52%}.col-no-margin-s-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-7[data-v-510035f2]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-8[data-v-510035f2]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-9[data-v-510035f2]{margin-left:78%}.col-no-margin-s-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-10[data-v-510035f2]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-510035f2]:first-child{margin-left:0}.col-offset-s-11[data-v-510035f2]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-s-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-510035f2]{display:none!important}.s-visible[data-v-510035f2]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-1[data-v-510035f2]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-2[data-v-510035f2]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-3[data-v-510035f2]{margin-left:26%}.col-no-margin-m-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-4[data-v-510035f2]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-5[data-v-510035f2]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-6[data-v-510035f2]{margin-left:52%}.col-no-margin-m-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-7[data-v-510035f2]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-8[data-v-510035f2]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-9[data-v-510035f2]{margin-left:78%}.col-no-margin-m-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-10[data-v-510035f2]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-510035f2]:first-child{margin-left:0}.col-offset-m-11[data-v-510035f2]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-m-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-510035f2]{display:none!important}.m-visible[data-v-510035f2]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-1[data-v-510035f2]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-2[data-v-510035f2]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-3[data-v-510035f2]{margin-left:26%}.col-no-margin-l-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-4[data-v-510035f2]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-5[data-v-510035f2]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-6[data-v-510035f2]{margin-left:52%}.col-no-margin-l-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-7[data-v-510035f2]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-8[data-v-510035f2]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-9[data-v-510035f2]{margin-left:78%}.col-no-margin-l-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-10[data-v-510035f2]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-510035f2]:first-child{margin-left:0}.col-offset-l-11[data-v-510035f2]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-l-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-510035f2]{display:none!important}.l-visible[data-v-510035f2]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-1[data-v-510035f2]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-2[data-v-510035f2]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-3[data-v-510035f2]{margin-left:26%}.col-no-margin-xl-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-4[data-v-510035f2]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-5[data-v-510035f2]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-6[data-v-510035f2]{margin-left:52%}.col-no-margin-xl-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-7[data-v-510035f2]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-8[data-v-510035f2]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-9[data-v-510035f2]{margin-left:78%}.col-no-margin-xl-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-10[data-v-510035f2]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-510035f2]:first-child{margin-left:0}.col-offset-xl-11[data-v-510035f2]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-510035f2]{display:none!important}.xl-visible[data-v-510035f2]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-510035f2]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-1[data-v-510035f2]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-510035f2]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-510035f2]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-2[data-v-510035f2]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-510035f2]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-510035f2]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-3[data-v-510035f2]{margin-left:26%}.col-no-margin-xxl-3[data-v-510035f2]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-510035f2]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-4[data-v-510035f2]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-510035f2]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-510035f2]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-5[data-v-510035f2]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-510035f2]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-510035f2]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-6[data-v-510035f2]{margin-left:52%}.col-no-margin-xxl-6[data-v-510035f2]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-510035f2]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-7[data-v-510035f2]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-510035f2]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-510035f2]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-8[data-v-510035f2]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-510035f2]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-510035f2]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-9[data-v-510035f2]{margin-left:78%}.col-no-margin-xxl-9[data-v-510035f2]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-510035f2]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-10[data-v-510035f2]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-510035f2]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-510035f2]:first-child{margin-left:0}.col-offset-xxl-11[data-v-510035f2]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-510035f2]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-510035f2]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-510035f2]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-510035f2]{display:none!important}.xxl-visible[data-v-510035f2]{display:block!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.from[data-v-510035f2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.until[data-v-510035f2]{display:none!important}}@media screen and (max-width:calc(640px - 1px)){.tablet-small.only[data-v-510035f2]{display:none!important}}@media screen and (min-width:769px){.tablet-small.only[data-v-510035f2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.from[data-v-510035f2]{display:none!important}}@media screen and (min-width:1024px){.tablet.until[data-v-510035f2]{display:none!important}}@media screen and (max-width:calc(769px - 1px)){.tablet.only[data-v-510035f2]{display:none!important}}@media screen and (min-width:1024px){.tablet.only[data-v-510035f2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.from[data-v-510035f2]{display:none!important}}@media screen and (min-width:1216px){.desktop.until[data-v-510035f2]{display:none!important}}@media screen and (max-width:calc(1024px - 1px)){.desktop.only[data-v-510035f2]{display:none!important}}@media screen and (min-width:1216px){.desktop.only[data-v-510035f2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.from[data-v-510035f2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.until[data-v-510035f2]{display:none!important}}@media screen and (max-width:calc(1216px - 1px)){.widescreen.only[data-v-510035f2]{display:none!important}}@media screen and (min-width:1408px){.widescreen.only[data-v-510035f2]{display:none!important}}@media screen and (min-width:769px){.mobile[data-v-510035f2]{display:none!important}}@media screen and (max-width:calc(1408px - 1px)){.fullhd[data-v-510035f2]{display:none!important}}.vertical-center[data-v-510035f2]{display:flex;align-items:center}.horizontal-center[data-v-510035f2]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-510035f2]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-510035f2]{display:none!important}.no-content[data-v-510035f2]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.grid[data-v-510035f2]{width:100%;display:grid;row-gap:1em;-moz-column-gap:1.5em;column-gap:1.5em;padding:1em}@media screen and (max-width:calc(640px - 1px)){.grid[data-v-510035f2]{grid-template-columns:repeat(1,minmax(0,1fr))}}@media screen and (min-width:640px)and (max-width:calc(769px - 1px)){.grid[data-v-510035f2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media screen and (min-width:769px)and (max-width:calc(1024px - 1px)){.grid[data-v-510035f2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media screen and (min-width:1024px)and (max-width:calc(1216px - 1px)){.grid[data-v-510035f2]{grid-template-columns:repeat(4,minmax(0,1fr))}}@media screen and (min-width:1216px){.grid[data-v-510035f2]{grid-template-columns:repeat(5,minmax(0,1fr))}}.btn-default[data-v-510035f2],.btn[data-v-510035f2],button[data-v-510035f2]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-510035f2],.btn-default[type=submit][data-v-510035f2],.btn.btn-primary[data-v-510035f2],.btn[type=submit][data-v-510035f2],button.btn-primary[data-v-510035f2],button[type=submit][data-v-510035f2]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-510035f2],.btn-default .icon[data-v-510035f2],button .icon[data-v-510035f2]{margin-right:.5em}input[type=password][data-v-510035f2],input[type=text][data-v-510035f2]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-510035f2]:focus,input[type=text][data-v-510035f2]:focus{border:1px solid #35b870}button[data-v-510035f2],input[data-v-510035f2]{outline:none}input[type=text][data-v-510035f2]:hover,textarea[data-v-510035f2]:hover{border:1px solid #9cdfb0}ul[data-v-510035f2]{margin:0;padding:0;list-style:none}a[data-v-510035f2]{color:#5f7869;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:pointer}a[data-v-510035f2]:hover{color:#35b870}[data-v-510035f2]::-webkit-scrollbar{width:.5em;height:.5em}@media screen and (max-width:calc(769px - 1px)){[data-v-510035f2]::-webkit-scrollbar{width:.3333em;height:.3333em}}[data-v-510035f2]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-510035f2]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-510035f2]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.browser[data-v-510035f2] .nav{width:100%;height:2.5em;padding:.5em 1em;background:linear-gradient(0deg,#ececec,#f6f6f6);box-shadow:0 3px 2px -1px silver;white-space:nowrap;overflow:hidden}.browser[data-v-510035f2] .nav .path{cursor:pointer}.browser[data-v-510035f2] .nav .path .token:hover{color:#35b870;text-decoration:underline}.browser[data-v-510035f2] .nav .path .separator{font-size:1em;width:1.2em;padding:0 1em}.input-icon[data-v-510035f2]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=datetime-local][data-v-510035f2],input[type=number][data-v-510035f2],input[type=password][data-v-510035f2],input[type=search][data-v-510035f2],input[type=text][data-v-510035f2],input[type=time][data-v-510035f2]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=datetime-local][data-v-510035f2]:hover,input[type=number][data-v-510035f2]:hover,input[type=password][data-v-510035f2]:hover,input[type=search][data-v-510035f2]:hover,input[type=text][data-v-510035f2]:hover,input[type=time][data-v-510035f2]:hover{border:1px solid rgba(159,180,152,.83)}input[type=datetime-local][data-v-510035f2]:focus,input[type=number][data-v-510035f2]:focus,input[type=password][data-v-510035f2]:focus,input[type=search][data-v-510035f2]:focus,input[type=text][data-v-510035f2]:focus,input[type=time][data-v-510035f2]:focus{border:1px solid rgba(127,216,95,.83)}input[type=datetime-local].with-icon[data-v-510035f2],input[type=number].with-icon[data-v-510035f2],input[type=password].with-icon[data-v-510035f2],input[type=search].with-icon[data-v-510035f2],input[type=text].with-icon[data-v-510035f2],input[type=time].with-icon[data-v-510035f2]{padding-left:.3em}input[type=search][data-v-510035f2],input[type=text][data-v-510035f2]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-510035f2]{animation-fill-mode:both;animation-name:fadeIn-510035f2;-webkit-animation-name:fadeIn-510035f2}.fade-in[data-v-510035f2],.fade-out[data-v-510035f2]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-510035f2]{animation-fill-mode:both;animation-name:fadeOut-510035f2;-webkit-animation-name:fadeOut-510035f2}@keyframes fadeIn-510035f2{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-510035f2{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-510035f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-510035f2]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-510035f2]: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-510035f2]{width:100%;height:100%;display:flex;justify-content:center}.settings-container .modal .body[data-v-510035f2]{height:auto}.settings-container form label[data-v-510035f2]{display:block;text-align:center}.settings-container .users-list[data-v-510035f2]{background:#fff;margin-top:.15em;height:-moz-max-content;height:max-content}.settings-container .users-list .user[data-v-510035f2]{display:flex;align-items:center;padding:.75em}.settings-container .users-list .user[data-v-510035f2]:not(:last-child){box-shadow:0 3px 2px -1px silver}.settings-container .users-list .user[data-v-510035f2]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.settings-container .users-list .user .actions[data-v-510035f2]{display:inline-flex;justify-content:right}.settings-container .users-list .user .actions button[data-v-510035f2]{background:none!important;width:-moz-min-content;width:min-content}@media screen and (max-width:1024px){.settings-container .users-list[data-v-510035f2]{width:100%}}@media screen and (min-width:1024px){.settings-container .users-list[data-v-510035f2]{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-510035f2]{border-radius:0}.settings-container .users-list .user[data-v-510035f2]:first-child{border-top-left-radius:1em;border-top-right-radius:1em}.settings-container .users-list .user[data-v-510035f2]:last-child{border-bottom-left-radius:1em;border-bottom-right-radius:1em}}[data-v-510035f2] .dropdown-container button{background:none!important}[data-v-510035f2] .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}}.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}.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}}.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}.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}}.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/1256.978d0d43.js b/platypush/backend/http/webapp/dist/static/js/1256.978d0d43.js new file mode 100644 index 00000000..fdf7ec6c --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1256.978d0d43.js @@ -0,0 +1,2 @@ +(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1256],{2381:function(e,t,s){"use strict";s.d(t,{Z:function(){return $}});var i=s(6252),a=s(3577);const l=e=>((0,i.dD)("data-v-0f0ae058"),e=e(),(0,i.Cn)(),e),n={class:"browser"},r={class:"nav",ref:"nav"},o=["onClick"],c={class:"token"},d={key:0,class:"separator"},u=l((()=>(0,i._)("i",{class:"fa fa-chevron-right"},null,-1))),m=[u],h={class:"items",ref:"items"},p=l((()=>(0,i._)("div",{class:"col-10 left side"},[(0,i._)("i",{class:"icon fa fa-folder"}),(0,i._)("span",{class:"name"},"..")],-1))),y=[p],g=["onClick"],f={class:"col-10"},w={class:"name"},v={key:0,class:"col-2 actions"};function k(e,t,s,l,u,p){const k=(0,i.up)("Loading"),_=(0,i.up)("DropdownItem"),b=(0,i.up)("Dropdown");return(0,i.wg)(),(0,i.iD)("div",n,[u.loading?((0,i.wg)(),(0,i.j4)(k,{key:0})):(0,i.kq)("",!0),(0,i._)("div",r,[((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(p.pathTokens,((e,t)=>((0,i.wg)(),(0,i.iD)("span",{class:"path",key:t,onClick:e=>u.path=p.pathTokens.slice(0,t+1).join("/").slice(1)},[(0,i._)("span",c,(0,a.zw)(e),1),(t>0||p.pathTokens.length>1)&&tp.onBack&&p.onBack(...e))},y)):(0,i.kq)("",!0),((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(p.filteredFiles,((t,s)=>((0,i.wg)(),(0,i.iD)("div",{class:"row item",key:s,onClick:e=>p.onItemSelect(t)},[(0,i._)("div",f,[(0,i._)("i",{class:(0,a.C_)(["icon fa",{"fa-file":"directory"!==t.type,"fa-folder":"directory"===t.type}])},null,2),(0,i._)("span",w,(0,a.zw)(t.name),1)]),p.fileActions.length?((0,i.wg)(),(0,i.iD)("div",v,[(0,i.Wm)(b,null,{default:(0,i.w5)((()=>[p.hasPlay&&"directory"!==t.type?((0,i.wg)(),(0,i.j4)(_,{key:0,"icon-class":"fa fa-play",text:"Play",onClick:s=>e.$emit("play",{type:"file",url:`file://${t.path}`})},null,8,["onClick"])):(0,i.kq)("",!0)])),_:2},1024)])):(0,i.kq)("",!0)],8,g)))),128))],512)])}var _=s(6791),b=s(8637),C=s(1065),P=s(2787),x=s(815),D={name:"Browser",components:{DropdownItem:x.Z,Dropdown:P.Z,Loading:_.Z},mixins:[b.Z,C.Z],emits:["back","path-change","play","input"],props:{hasBack:{type:Boolean,default:!1},initialPath:{type:String},isMedia:{type:Boolean},filter:{type:String,default:""}},data(){return{loading:!1,path:this.initialPath,files:[]}},computed:{filteredFiles(){return this.filter?.length?this.files.filter((e=>(e?.name||"").toLowerCase().indexOf(this.filter.toLowerCase())>=0)):this.files},hasPlay(){return this.isMedia&&this.files.some((e=>this.mediaExtensions.has(e.name.split(".").pop()?.toLowerCase())))},fileActions(){return this.hasPlay?[{iconClass:"fa fa-play",text:"Play",onClick:e=>this.$emit("play",{type:"file",url:`file://${e.path}`})}]:[]},pathTokens(){return this.path?.length?["/",...this.path.split(/(?{this.$refs.nav.scrollLeft=99999,this.$refs.items.scrollTop=0}));try{this.files=await this.request("file.list",{path:this.path}),this.$emit("path-change",this.path)}finally{this.loading=!1}},onBack(){this.path?.length&&"/"!==this.path?this.path=[...this.pathTokens].slice(0,-1).join("/").slice(1):this.$emit("back")},onItemSelect(e){"directory"===e.type?this.path=e.path:this.$emit("input",e.path)}},watch:{initialPath(){this.path=this.initialPath},path(){this.refresh()}},mounted(){this.refresh()}},S=s(3744);const q=(0,S.Z)(D,[["render",k],["__scopeId","data-v-0f0ae058"]]);var $=q},1256:function(e,t,s){"use strict";s.r(t),s.d(t,{default:function(){return kt}});var i=s(6252),a=s(3577);const l={class:"media-plugin fade-in"},n={class:"view-container"},r={class:"subtitles-container"},o={key:0,class:"subtitles-content"},c={class:"play-url-container"};function d(e,t,s,d,u,m){const h=(0,i.up)("Loading"),p=(0,i.up)("Nav"),y=(0,i.up)("Header"),g=(0,i.up)("Results"),f=(0,i.up)("TorrentView"),w=(0,i.up)("Browser"),v=(0,i.up)("MediaView"),k=(0,i.up)("Subtitles"),_=(0,i.up)("Modal"),b=(0,i.up)("UrlPlayer");return(0,i.wg)(),(0,i.j4)(i.Ob,null,[(0,i._)("div",l,[u.loading?((0,i.wg)(),(0,i.j4)(h,{key:0})):(0,i.kq)("",!0),(0,i.Wm)(v,{"plugin-name":s.pluginName,status:u.selectedPlayer?.status||{},track:u.selectedPlayer?.status||{},buttons:s.mediaButtons,onPlay:m.pause,onPause:m.pause,onStop:m.stop,onSetVolume:m.setVolume,onSeek:m.seek,onSearch:m.search,onMute:m.toggleMute,onUnmute:m.toggleMute},{default:(0,i.w5)((()=>[(0,i._)("main",null,[(0,i._)("div",{class:"nav-container from tablet",style:(0,a.j5)(m.navContainerStyle)},[(0,i.Wm)(p,{"selected-view":u.selectedView,"torrent-plugin":u.torrentPlugin,onInput:t[0]||(t[0]=e=>u.selectedView=e),onToggle:t[1]||(t[1]=e=>u.forceShowNav=!u.forceShowNav)},null,8,["selected-view","torrent-plugin"])],4),(0,i._)("div",n,[(0,i.Wm)(y,{"plugin-name":s.pluginName,"selected-view":u.selectedView,"has-subtitles-plugin":m.hasSubtitlesPlugin,sources:u.sources,"selected-item":m.selectedItem,"selected-subtitles":u.selectedSubtitles,"browser-filter":u.browserFilter,"show-nav-button":!u.forceShowNav,ref:"header",onSearch:m.search,onSelectPlayer:t[2]||(t[2]=e=>u.selectedPlayer=e),onPlayerStatus:m.onStatusUpdate,onTorrentAdd:t[3]||(t[3]=e=>m.downloadTorrent(e)),onShowSubtitles:t[4]||(t[4]=e=>u.showSubtitlesModal=!u.showSubtitlesModal),onPlayUrl:m.showPlayUrlModal,onFilter:t[5]||(t[5]=e=>u.browserFilter=e),onToggleNav:t[6]||(t[6]=e=>u.forceShowNav=!u.forceShowNav),onSourceToggle:t[7]||(t[7]=e=>u.sources[e]=!u.sources[e])},null,8,["plugin-name","selected-view","has-subtitles-plugin","sources","selected-item","selected-subtitles","browser-filter","show-nav-button","onSearch","onPlayerStatus","onPlayUrl"]),(0,i._)("div",{class:(0,a.C_)(["body-container",{"expanded-header":e.$refs.header?.filterVisible}])},["search"===u.selectedView?((0,i.wg)(),(0,i.j4)(g,{key:0,results:u.results,"selected-result":u.selectedResult,sources:u.sources,loading:u.loading,filter:u.browserFilter,onSelect:t[8]||(t[8]=e=>m.onResultSelect(e)),onPlay:m.play,onView:m.view,onDownload:m.download},null,8,["results","selected-result","sources","loading","filter","onPlay","onView","onDownload"])):"torrents"===u.selectedView?((0,i.wg)(),(0,i.j4)(f,{key:1,"plugin-name":u.torrentPlugin,"is-media":!0,onPlay:m.play},null,8,["plugin-name","onPlay"])):"browser"===u.selectedView?((0,i.wg)(),(0,i.j4)(w,{key:2,filter:u.browserFilter,onPathChange:t[9]||(t[9]=e=>u.browserFilter=""),onPlay:t[10]||(t[10]=e=>m.play(e))},null,8,["filter"])):(0,i.kq)("",!0)],2)])])])),_:1},8,["plugin-name","status","track","buttons","onPlay","onPause","onStop","onSetVolume","onSeek","onSearch","onMute","onUnmute"]),(0,i._)("div",r,[(0,i.Wm)(_,{title:"Available subtitles",visible:u.showSubtitlesModal,ref:"subtitlesSelector",onClose:t[12]||(t[12]=e=>u.showSubtitlesModal=!1)},{default:(0,i.w5)((()=>[u.showSubtitlesModal&&null!=u.selectedResult?((0,i.wg)(),(0,i.iD)("div",o,[(0,i.Wm)(k,{item:u.selectedPlayer&&u.selectedPlayer.status&&("play"===u.selectedPlayer.status.state||"pause"===u.selectedPlayer.status.state)?u.selectedPlayer.status:u.results[u.selectedResult],onSelectSubs:t[11]||(t[11]=e=>m.selectSubtitles(e))},null,8,["item"])])):(0,i.kq)("",!0)])),_:1},8,["visible"])]),(0,i._)("div",c,[(0,i.Wm)(_,{title:"Play URL",ref:"playUrlModal",onOpen:m.onPlayUrlModalOpen},{default:(0,i.w5)((()=>[(0,i.Wm)(b,{value:u.urlPlay,onInput:t[13]||(t[13]=e=>u.urlPlay=e.target.value),onPlay:t[14]||(t[14]=e=>m.playUrl(e))},null,8,["value"])])),_:1},8,["onOpen"])])])],1024)}var u=s(6791),m=s(3493),h=s(8637);const p={class:"media-browser"},y={key:1,class:"media-index grid"},g=["onClick"],f={class:"icon"},w={class:"name"},v={key:2,class:"media-browser-body"};function k(e,t,s,l,n,r){const o=(0,i.up)("Loading");return(0,i.wg)(),(0,i.j4)(i.Ob,null,[(0,i._)("div",p,[n.loading?((0,i.wg)(),(0,i.j4)(o,{key:0})):n.mediaProvider?n.mediaProvider?((0,i.wg)(),(0,i.iD)("div",v,[((0,i.wg)(),(0,i.j4)((0,i.LL)(n.mediaProvider),{filter:s.filter,onBack:t[0]||(t[0]=e=>n.mediaProvider=null),onPathChange:t[1]||(t[1]=t=>e.$emit("path-change",t)),onPlay:t[2]||(t[2]=t=>e.$emit("play",t))},null,40,["filter"]))])):(0,i.kq)("",!0):((0,i.wg)(),(0,i.iD)("div",y,[((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(n.mediaProviders,((e,t)=>((0,i.wg)(),(0,i.iD)("div",{class:"item",key:t,onClick:t=>n.mediaProvider=e},[(0,i._)("div",f,[n.providersMetadata[t].icon?((0,i.wg)(),(0,i.iD)("i",(0,i.dG)({key:0},n.providersMetadata[t].icon,{style:{color:n.providersMetadata[t].icon?.color||"inherit"}}),null,16)):(0,i.kq)("",!0)]),(0,i._)("div",w,(0,a.zw)(n.providersMetadata[t].name),1)],8,g)))),128))]))])],1024)}var _=s(2262),b=s(2381),C=s(4569),P={emits:["path-change","play"],mixins:[h.Z],components:{Browser:b.Z,Loading:u.Z},props:{filter:{type:String,default:""}},data(){return{loading:!1,mediaProvider:null,mediaProviders:{},providersMetadata:C}},methods:{registerMediaProvider(e){const t=(0,_.XI)((0,i.RC)((()=>s(6809)(`./${e}`))));this.$options.components[e]=t,this.mediaProviders[e]=t},async refreshMediaProviders(){const e=await this.request("config.get");this.mediaProviders={},this.registerMediaProvider("File"),e.youtube&&this.registerMediaProvider("YouTube")}},mounted(){this.refreshMediaProviders()}},x=s(3744);const D=(0,x.Z)(P,[["render",k],["__scopeId","data-v-6b56bca2"]]);var S=D,q=s(9963);const $=e=>((0,i.dD)("data-v-39ee4bbe"),e=e(),(0,i.Cn)(),e),I={class:"row"},N={key:0,class:"col-s-8 col-m-7 left side"},T=$((()=>(0,i._)("i",{class:"fa fa-filter"},null,-1))),M=[T],z={class:"search-box"},Z={key:1,class:"col-s-8 col-m-7 left side"},V={class:"search-box"},j={key:2,class:"col-s-8 col-m-7 left side"},R={class:"search-box"},U=["value"],L={class:"col-s-4 col-m-5 right side"},O=$((()=>(0,i._)("i",{class:"fas fa-bars"},null,-1))),W=[O],E=$((()=>(0,i._)("i",{class:"fas fa-closed-captioning"},null,-1))),F=[E],Y=$((()=>(0,i._)("i",{class:"fas fa-play"},null,-1))),B=[Y],H=["checked","onChange"];function K(e,t,s,l,n,r){const o=(0,i.up)("Players");return(0,i.wg)(),(0,i.iD)("div",{class:(0,a.C_)(["header",{"with-filter":n.filterVisible}])},[(0,i._)("div",I,["search"===s.selectedView?((0,i.wg)(),(0,i.iD)("div",N,[(0,i._)("button",{title:"Filter",class:(0,a.C_)(["filter-btn",{selected:n.filterVisible}]),onClick:t[0]||(t[0]=e=>n.filterVisible=!n.filterVisible)},M,2),(0,i._)("form",{onSubmit:t[2]||(t[2]=(0,q.iM)(((...e)=>r.search&&r.search(...e)),["prevent"]))},[(0,i._)("label",z,[(0,i.wy)((0,i._)("input",{type:"search",placeholder:"Search","onUpdate:modelValue":t[1]||(t[1]=e=>n.query=e)},null,512),[[q.nr,n.query]])])],32)])):"torrents"===s.selectedView?((0,i.wg)(),(0,i.iD)("div",Z,[(0,i._)("form",{onSubmit:t[4]||(t[4]=(0,q.iM)((t=>e.$emit("torrent-add",n.torrentURL)),["prevent"]))},[(0,i._)("label",V,[(0,i.wy)((0,i._)("input",{type:"search",placeholder:"Add torrent URL","onUpdate:modelValue":t[3]||(t[3]=e=>n.torrentURL=e)},null,512),[[q.nr,n.torrentURL]])])],32)])):"browser"===s.selectedView?((0,i.wg)(),(0,i.iD)("div",j,[(0,i._)("label",R,[(0,i._)("input",{type:"search",placeholder:"Filter",value:s.browserFilter,onChange:t[5]||(t[5]=t=>e.$emit("filter",t.target.value)),onKeyup:t[6]||(t[6]=t=>e.$emit("filter",t.target.value))},null,40,U)])])):(0,i.kq)("",!0),(0,i._)("div",L,[s.showNavButton?((0,i.wg)(),(0,i.iD)("button",{key:0,class:"mobile",title:"Menu",onClick:t[7]||(t[7]=t=>e.$emit("toggle-nav"))},W)):(0,i.kq)("",!0),s.hasSubtitlesPlugin&&s.selectedItem&&("file"===s.selectedItem.type||(s.selectedItem.url||"").startsWith("file://"))?((0,i.wg)(),(0,i.iD)("button",{key:1,title:"Select subtitles",class:(0,a.C_)(["captions-btn",{selected:null!=s.selectedSubtitles}]),onClick:t[8]||(t[8]=t=>e.$emit("show-subtitles"))},F,2)):(0,i.kq)("",!0),(0,i.Wm)(o,{"plugin-name":s.pluginName,onSelect:t[9]||(t[9]=t=>e.$emit("select-player",t)),onStatus:t[10]||(t[10]=t=>e.$emit("player-status",t))},null,8,["plugin-name"]),(0,i._)("button",{title:"Play URL",onClick:t[11]||(t[11]=t=>e.$emit("play-url"))},B)])]),(0,i._)("div",{class:(0,a.C_)(["row filter fade-in",{hidden:!n.filterVisible}])},[((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(Object.keys(s.sources),(t=>((0,i.wg)(),(0,i.iD)("label",{key:t},[(0,i._)("input",{type:"checkbox",checked:s.sources[t],onChange:s=>e.$emit("source-toggle",t)},null,40,H),(0,i.Uk)(" "+(0,a.zw)(t),1)])))),128))],2)],2)}const A={class:"media-players"},Q={class:"plugins"},G={class:"players"},J={class:"refresh"},X={key:1,class:"no-results"};function ee(e,t,s,l,n,r){const o=(0,i.up)("Chromecast"),c=(0,i.up)("Kodi"),d=(0,i.up)("Mplayer"),u=(0,i.up)("Mpv"),m=(0,i.up)("Omxplayer"),h=(0,i.up)("Vlc"),p=(0,i.up)("Loading"),y=(0,i.up)("DropdownItem"),g=(0,i.up)("Dropdown");return(0,i.wg)(),(0,i.iD)("div",A,[(0,i._)("div",Q,[(0,i.Wm)(o,{player:"media.chromecast"===n.selectedPlayer?.pluginName?n.selectedPlayer:null,ref:"chromecastPlugin",onStatus:t[0]||(t[0]=t=>e.$emit("status",t))},null,8,["player"]),(0,i.Wm)(c,{player:"media.kodi"===n.selectedPlayer?.pluginName?n.selectedPlayer:null,ref:"kodiPlugin",onStatus:t[1]||(t[1]=t=>e.$emit("status",t))},null,8,["player"]),(0,i.Wm)(d,{player:"media.mplayer"===n.selectedPlayer?.pluginName?n.selectedPlayer:null,ref:"mplayerPlugin",onStatus:t[2]||(t[2]=t=>e.$emit("status",t))},null,8,["player"]),(0,i.Wm)(u,{player:"media.mpv"===n.selectedPlayer?.pluginName?n.selectedPlayer:null,ref:"mpvPlugin",onStatus:t[3]||(t[3]=t=>e.$emit("status",t))},null,8,["player"]),(0,i.Wm)(m,{player:"media.omxplayer"===n.selectedPlayer?.pluginName?n.selectedPlayer:null,ref:"omxplayerPlugin",onStatus:t[4]||(t[4]=t=>e.$emit("status",t))},null,8,["player"]),(0,i.Wm)(h,{player:"media.vlc"===n.selectedPlayer?.pluginName?n.selectedPlayer:null,ref:"vlcPlugin",onStatus:t[5]||(t[5]=t=>e.$emit("status",t))},null,8,["player"])]),(0,i._)("div",G,[(0,i.Wm)(g,{title:n.selectedPlayer?.name||"Players","icon-class":n.selectedPlayer?n.selectedPlayer.iconClass:"fab fa-chromecast"},{default:(0,i.w5)((()=>[n.loading?((0,i.wg)(),(0,i.j4)(p,{key:0})):(0,i.kq)("",!0),(0,i._)("div",J,[(0,i.Wm)(y,{text:"Refresh","icon-class":"fa fa-sync-alt",onClick:r.refresh},null,8,["onClick"])]),n.players?.length?(0,i.kq)("",!0):((0,i.wg)(),(0,i.iD)("div",X,"No players found")),((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(n.players,((e,t)=>((0,i.wg)(),(0,i.iD)("div",{class:(0,a.C_)(["player",{selected:null!=n.selectedPlayer&&n.selectedPlayer.pluginName===e.pluginName&&n.selectedPlayer.name===e.name}]),key:t},[(0,i.Wm)(y,{text:e.name,"icon-class":e.iconClass,onClick:t=>r.select(e)},null,8,["text","icon-class","onClick"])],2)))),128))])),_:1},8,["title","icon-class"])])])}s(7658);var te=s(2787),se=s(815);function ie(e,t,s,a,l,n){return(0,i.wg)(),(0,i.iD)("div")}var ae=s(1065),le={name:"Mixin",mixins:[h.Z,ae.Z],emits:["status"],props:{player:{type:Object}},data(){return{iconClass:null,name:null,pluginName:null}},methods:{async getPlayers(){return[{iconClass:this.iconClass,name:this.name,pluginName:this.pluginName,component:this,status:await this.status()}]},async status(){return await this.request(`${this.pluginName}.status`)},async play(e,t){return e?await this.request(`${this.pluginName}.play`,{resource:e.url,subtitles:t}):await this.pause()},async pause(){return await this.request(`${this.pluginName}.pause`)},async stop(){return await this.request(`${this.pluginName}.stop`)},async setVolume(e){return await this.request(`${this.pluginName}.set_volume`,{volume:e})},async toggleMute(){return await this.request(`${this.pluginName}.mute`)},async seek(e){return await this.request(`${this.pluginName}.seek`,{position:e})},async onNewMedia(e){const t=await this.onMediaEvent(e);t&&e.title&&this.notify({title:e.player||e.device||this.player?.name||this.name||this.pluginName,text:e.title,image:{iconClass:this.iconClass||"fa fa-play"}})},async onMediaEvent(e){return e.plugin===this.pluginName&&(this.$emit("status",await this.status()),!0)},async addSubtitles(e){await this.request(`${this.pluginName}.add_subtitles`,{filename:e}),await this.request(`${this.pluginName}.toggle_subtitles`,{visible:!0})},async removeSubtitles(){await this.request(`${this.pluginName}.toggle_subtitles`,{visible:!1})},supports(e){return"file"===e?.type||"youtube"===e?.type||(e.url||e).startsWith("file://")||(e.url||e).startsWith("http://")||(e.url||e).startsWith("https://")}},mounted(){this.subscribe(this.onNewMedia,`on-new-media-${this.pluginName}`,"platypush.message.event.media.NewPlayingMediaEvent"),this.subscribe(this.onMediaEvent,`on-media-event-${this.pluginName}`,"platypush.message.event.media.MediaPlayEvent","platypush.message.event.media.MediaStopEvent","platypush.message.event.media.MediaPauseEvent","platypush.message.event.media.MediaSeekEvent","platypush.message.event.media.MediaVolumeChangedEvent","platypush.message.event.media.MediaMuteChangedEvent")},destroy(){this.unsubscribe(`on-media-event-${this.pluginName}`)}};const ne=le;var re=ne,oe={name:"Chromecast",mixins:[re],data(){return{name:"Chromecast",pluginName:"media.chromecast",iconClass:"fab fa-chromecast"}},methods:{async getPlayers(){const e=Object.values(await this.request(`${this.pluginName}.status`));return Promise.all(e.map((async e=>({...e,iconClass:"audio"===e.type?"fa fa-volume-up":"fab fa-chromecast",pluginName:this.pluginName,component:this}))))},getPlayerName(e){return"string"===typeof e?e:e?e?.name:this.player?.name},async status(e){return(await this.request(`${this.pluginName}.status`,{chromecast:this.getPlayerName(e)}))?.status},async play(e,t){return e?await this.request(`${this.pluginName}.play`,{resource:e.url,chromecast:this.getPlayerName(t)}):await this.pause(t)},async pause(e){return await this.request(`${this.pluginName}.pause`,{chromecast:this.getPlayerName(e)})},async stop(e){return await this.request(`${this.pluginName}.quit`,{chromecast:this.getPlayerName(e)})},async setVolume(e,t){return await this.request(`${this.pluginName}.set_volume`,{volume:e,chromecast:this.getPlayerName(t)})},async seek(e,t){return await this.request(`${this.pluginName}.seek`,{position:e,chromecast:this.getPlayerName(t)})},async onMediaEvent(e){return e.plugin===this.pluginName&&(this.$emit("status",await this.status(e.player)),!0)},supports(){return!0}}};const ce=(0,x.Z)(oe,[["render",ie]]);var de=ce;function ue(e,t,s,a,l,n){return(0,i.wg)(),(0,i.iD)("div")}var me={name:"Kodi",mixins:[re],data(){return{iconClass:"fa fa-kodi",name:"Kodi",pluginName:"media.kodi"}},methods:{async getPlayers(){return[{iconClass:this.iconClass,pluginName:this.pluginName,name:this.$root.config["media.kodi"]?.host||this.name,component:this,status:await this.request(`${this.pluginName}.status`)}]},supports(e){return"youtube"===e?.type||(e.url||e).startsWith("http://")||(e.url||e).startsWith("https://")}}};const he=(0,x.Z)(me,[["render",ue]]);var pe=he;function ye(e,t,s,a,l,n){return(0,i.wg)(),(0,i.iD)("div")}var ge={name:"Mplayer",mixins:[re],data(){return{iconClass:"fa fa-tv",name:"MPlayer",pluginName:"media.mplayer"}}};const fe=(0,x.Z)(ge,[["render",ye]]);var we=fe;function ve(e,t,s,a,l,n){return(0,i.wg)(),(0,i.iD)("div")}var ke={name:"Mpv",mixins:[re],data(){return{iconClass:"fa fa-tv",name:"mpv",pluginName:"media.mpv"}}};const _e=(0,x.Z)(ke,[["render",ve]]);var be=_e;function Ce(e,t,s,a,l,n){return(0,i.wg)(),(0,i.iD)("div")}var Pe={name:"Omxplayer",mixins:[re],data(){return{iconClass:"fa fa-tv",name:"OMXPlayer",pluginName:"media.omxplayer"}}};const xe=(0,x.Z)(Pe,[["render",Ce]]);var De=xe;function Se(e,t,s,a,l,n){return(0,i.wg)(),(0,i.iD)("div")}var qe={name:"Vlc",mixins:[re],data(){return{iconClass:"fa fa-tv",name:"VLC",pluginName:"media.vlc"}}};const $e=(0,x.Z)(qe,[["render",Se]]);var Ie=$e,Ne={name:"Players",components:{Loading:u.Z,DropdownItem:se.Z,Dropdown:te.Z,Chromecast:de,Kodi:pe,Mplayer:we,Mpv:be,Omxplayer:De,Vlc:Ie},emits:["select","status"],props:{pluginName:{type:String,required:!0}},data(){return{loading:!1,players:[],selectedPlayer:null,config:{},plugins:[]}},methods:{loadPlugins(){this.plugins=Object.entries(this.$refs).filter((e=>e[0].endsWith("Plugin"))).map((e=>e[1]))},async refresh(){this.players=[],this.loading=!0;const e=this.$root.config;try{await Promise.all(this.plugins.map((async t=>{if(!(t.pluginName in e))return;const s=await t.getPlayers();this.players.push(...s),null==this.selectedPlayer&&t.pluginName===this.pluginName&&s.length>0&&this.select(s[0])})))}finally{this.loading=!1}},select(e){this.selectedPlayer=e,this.$emit("select",e)}},async mounted(){await this.loadPlugins(),await this.refresh()}};const Te=(0,x.Z)(Ne,[["render",ee]]);var Me=Te,ze={name:"Header",components:{Players:Me},emits:["filter","play-url","player-status","search","select-player","show-subtitles","source-toggle","toggle-nav","torrent-add"],props:{pluginName:{type:String,required:!0},selectedView:{type:String,required:!0},selectedSubtitles:{type:String},selectedItem:{type:Object},hasSubtitlesPlugin:{type:Boolean,default:!1},showNavButton:{type:Boolean},browserFilter:{type:String,default:""},sources:{type:Object,default:()=>{}}},data(){return{filterVisible:!1,query:"",torrentURL:""}},methods:{search(){const e=Object.keys(this.sources).filter((e=>this.sources[e]));this.query?.length&&e?.length&&this.$emit("search",{query:this.query,types:e})}},mounted(){this.$watch((()=>this.selectedView),(()=>{this.$emit("filter",""),this.torrentURL="",this.query=""}))}};const Ze=(0,x.Z)(ze,[["render",K],["__scopeId","data-v-39ee4bbe"]]);var Ve=Ze,je=s(1420);const Re=e=>((0,i.dD)("data-v-b15d23b2"),e=e(),(0,i.Cn)(),e),Ue=Re((()=>(0,i._)("i",{class:"fa fa-bars"},null,-1))),Le=[Ue],Oe=["title","onClick"];function We(e,t,s,l,n,r){return(0,i.wg)(),(0,i.iD)("nav",null,[(0,i._)("button",{class:"menu-button mobile",onClick:t[0]||(t[0]=t=>e.$emit("toggle"))},Le),((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(r.displayedViews,((t,l)=>((0,i.wg)(),(0,i.iD)("li",{key:l,title:t.displayName,class:(0,a.C_)({selected:l===s.selectedView}),onClick:t=>e.$emit("input",l)},[(0,i._)("i",{class:(0,a.C_)(t.iconClass)},null,2)],10,Oe)))),128))])}var Ee={emits:["input","toggle"],props:{selectedView:{type:String},collapsed:{type:Boolean,default:!1},torrentPlugin:{type:String},views:{type:Object,default:()=>({search:{iconClass:"fa fa-search",displayName:"Search"},browser:{iconClass:"fa fa-folder",displayName:"Browser"},torrents:{iconClass:"fa fa-magnet",displayName:"Torrents"}})}},computed:{displayedViews(){const e={...this.views};return this.torrentPlugin?.length||delete e.torrents,e}}};const Fe=(0,x.Z)(Ee,[["render",We],["__scopeId","data-v-b15d23b2"]]);var Ye=Fe,Be=s(5390);const He=e=>((0,i.dD)("data-v-77ae3705"),e=e(),(0,i.Cn)(),e),Ke={class:"subtitles-container"},Ae={class:"items"},Qe=He((()=>(0,i._)("div",{class:"col-1 icon"},[(0,i._)("i",{class:"fa fa-ban"})],-1))),Ge=He((()=>(0,i._)("div",{class:"col-11 title"},"None",-1))),Je=[Qe,Ge],Xe=["onClick"],et={class:"col-1 icon"},tt={key:0,class:"fa fa-file"},st={key:2,class:"fa fa-closed-captioning"},it={class:"footer"};function at(e,t,s,l,n,r){const o=(0,i.up)("Loading");return(0,i.wg)(),(0,i.iD)("div",Ke,[(0,i._)("div",Ae,[n.loading?((0,i.wg)(),(0,i.j4)(o,{key:0})):(0,i.kq)("",!0),(0,i._)("div",{class:(0,a.C_)(["row item",{selected:null==n.selectedItem}]),onClick:t[0]||(t[0]=e=>n.selectedItem=null)},Je,2),((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(n.items,((e,t)=>((0,i.wg)(),(0,i.iD)("div",{class:(0,a.C_)(["row item",{selected:n.selectedItem===t}]),key:t,onClick:e=>n.selectedItem=t},[(0,i._)("div",et,[e.IsLocal?((0,i.wg)(),(0,i.iD)("i",tt)):e.ISO639?((0,i.wg)(),(0,i.iD)("i",{key:1,class:(0,a.C_)(["flag-icon",`flag-icon-${e.ISO639}`])},null,2)):((0,i.wg)(),(0,i.iD)("i",st))]),(0,i.Uk)(" "+(0,a.zw)(e.SubFileName),1)],10,Xe)))),128))]),(0,i._)("div",it,[(0,i._)("button",{onClick:t[1]||(t[1]=t=>e.$emit("select-subs",null==n.selectedItem?null:n.items[n.selectedItem]))},"Select")])])}var lt={name:"Subtitles",mixins:[h.Z],components:{Loading:u.Z},emits:["select-subs"],props:{item:{type:Object,default:()=>{}}},data(){return{loading:!1,items:[],selectedItem:null}},methods:{async refresh(){this.loading=!0;try{this.items=await this.request("media.subtitles.search",{resource:this.item.url,language:"all"})}finally{this.loading=!1}}},mounted(){this.refresh()}};const nt=(0,x.Z)(lt,[["render",at],["__scopeId","data-v-77ae3705"]]);var rt=nt,ot=s(562);const ct=e=>((0,i.dD)("data-v-6f90e487"),e=e(),(0,i.Cn)(),e),dt={class:"row"},ut={class:"row footer"},mt=["disabled"],ht=ct((()=>(0,i._)("i",{class:"fa fa-play"},null,-1)));function pt(e,t,s,a,l,n){return(0,i.wg)(),(0,i.iD)("form",{class:"url-player",onSubmit:t[1]||(t[1]=(0,q.iM)((t=>e.$emit("play",l.value)),["prevent"]))},[(0,i._)("div",dt,[(0,i._)("label",null,[(0,i.Uk)(" Play URL (use the file:// prefix for local files) "),(0,i.wy)((0,i._)("input",{type:"text","onUpdate:modelValue":t[0]||(t[0]=e=>l.value=e),ref:"playUrlInput",autofocus:""},null,512),[[q.nr,l.value]])])]),(0,i._)("div",ut,[(0,i._)("button",{type:"submit",disabled:!l.value?.length},[ht,(0,i.Uk)(" Play ")],8,mt)])],32)}var yt={emits:["input","play"],props:{playUrl:{type:String,default:""}},data(){return{value:this.playUrl}}};const gt=(0,x.Z)(yt,[["render",pt],["__scopeId","data-v-6f90e487"]]);var ft=gt,wt={name:"Media",mixins:[h.Z,ae.Z],components:{Browser:S,Header:Ve,Loading:u.Z,MediaView:je.Z,Modal:m.Z,Nav:Ye,Results:Be.Z,Subtitles:rt,TorrentView:ot.Z,UrlPlayer:ft},props:{pluginName:{type:String,required:!0},mediaButtons:{type:Object,default:()=>({previous:!1,next:!1,stop:!0})}},data(){return{loading:!1,results:[],selectedResult:null,selectedPlayer:null,selectedView:"search",selectedSubtitles:null,showSubtitlesModal:!1,forceShowNav:!1,awaitingPlayTorrent:null,urlPlay:null,browserFilter:null,torrentPlugin:null,torrentPlugins:["torrent","rtorrent"],sources:{file:!0,youtube:!0,torrent:!0}}},computed:{hasSubtitlesPlugin(){return"media.subtitles"in this.$root.config},navContainerStyle(){return this.forceShowNav?{display:"flex !important"}:{}},selectedItem(){return this.selectedPlayer&&this.selectedPlayer.status&&("play"===this.selectedPlayer.status.state||"pause"===this.selectedPlayer.status.state)?this.selectedPlayer.status:this.results[this.selectedResult]}},methods:{async search(e){this.loading=!0;try{this.results=await this.request(`${this.pluginName}.search`,e)}finally{this.loading=!1}},async play(e){if("torrent"===e?.type)return this.awaitingPlayTorrent=e.url,this.notify({text:"Torrent queued for download",image:{iconClass:"fa fa-magnet"}}),void await this.download(e);this.loading=!0;try{this.selectedPlayer.component.supports(e)||(e=await this.startStreaming(e,this.pluginName)),await this.selectedPlayer.component.play(e,this.selectedSubtitles,this.selectedPlayer),await this.refresh()}finally{this.loading=!1}},async pause(){await this.selectedPlayer.component.pause(this.selectedPlayer),await this.refresh()},async stop(){await this.selectedPlayer.component.stop(this.selectedPlayer),await this.refresh()},async setVolume(e){await this.selectedPlayer.component.setVolume(e,this.selectedPlayer),await this.refresh()},async toggleMute(){await this.selectedPlayer.component.toggleMute(this.selectedPlayer),await this.refresh()},async seek(e){await this.selectedPlayer.component.seek(e,this.selectedPlayer),await this.refresh()},async view(e){const t=await this.startStreaming(e,this.pluginName,!0);window.open(t.url,"_blank")},async download(e){"torrent"===e?.type&&await this.downloadTorrent(e)},async refresh(){this.selectedPlayer.status=await this.selectedPlayer.component.status(this.selectedPlayer)},onStatusUpdate(e){this.selectedPlayer&&(this.selectedPlayer.status=e)},onPlayUrlModalOpen(){const e=this.$refs.playUrlModal;this.urlPlay="",e.$nextTick((()=>{const t=e.$el.querySelector("input[type=text]");t&&(t.focus(),t.select())}))},onTorrentQueued(e){this.notify({title:"Torrent queued for download",text:e.name,image:{iconClass:"fa fa-magnet"}})},onTorrentMetadata(e){this.notify({title:"Torrent metadata downloaded",text:e.name,image:{iconClass:"fa fa-info"}})},onTorrentDownloadStart(e){this.notify({title:"Torrent download started",text:e.name,image:{iconClass:"fa fa-download"}})},onTorrentDownloadCompleted(e){this.notify({title:"Torrent download completed",text:e.name,image:{iconClass:"fa fa-check"}})},getTorrentPlugin(){const e=this.$root.config[this.pluginName]||{};let t=e.torrent_plugin;if(!t)for(let s of this.torrentPlugins)if(s in this.$root.config){t=s;break}return t},async downloadTorrent(e){const t=this.getTorrentPlugin();if(t)return await this.request(`${t}.download`,{torrent:e?.url||e});this.notify({text:"No torrent plugins configured",error:!0})},async selectSubtitles(e){if(this.$refs.subtitlesSelector.close(),!e)return void(this.selectedSubtitles=null);this.notify({text:"Downloading subtitles track",image:{iconClass:"fa fa-download"}});const t=await this.request("media.subtitles.download",{link:e.SubDownloadLink});this.selectedSubtitles=t.filename,this.notify({text:"Subtitles track downloaded",image:{iconClass:"fa fa-check"}})},onResultSelect(e){null==this.selectedResult||this.selectedResult!==e?(this.selectedResult=e,this.selectedSubtitles=null):this.selectedResult=null},showPlayUrlModal(){this.$refs.playUrlModal.show()},async playUrl(e){this.urlPlay=e,this.loading=!0;try{await this.play({url:e}),this.$refs.playUrlModal.close()}finally{this.loading=!1}}},mounted(){this.$watch((()=>this.selectedPlayer),(e=>{e&&this.refresh()})),this.$watch((()=>this.selectedSubtitles),(e=>{new Set(["play","pause"]).has(this.selectedPlayer?.status?.state)&&(e?this.selectedPlayer.component.addSubtitles(e):this.selectedPlayer.component.removeSubtitles())})),this.torrentPlugin=this.getTorrentPlugin(),this.subscribe(this.onTorrentQueued,"notify-on-torrent-queued","platypush.message.event.torrent.TorrentQueuedEvent"),this.subscribe(this.onTorrentMetadata,"on-torrent-metadata","platypush.message.event.torrent.TorrentDownloadedMetadataEvent"),this.subscribe(this.onTorrentDownloadStart,"notify-on-torrent-download-start","platypush.message.event.torrent.TorrentDownloadStartEvent"),this.subscribe(this.onTorrentDownloadCompleted,"notify-on-torrent-download-completed","platypush.message.event.torrent.TorrentDownloadCompletedEvent"),"media.plex"in this.$root.config&&(this.sources.plex=!0),"media.jellyfin"in this.$root.config&&(this.sources.jellyfin=!0)},destroy(){this.unsubscribe("notify-on-torrent-queued"),this.unsubscribe("on-torrent-metadata"),this.unsubscribe("notify-on-torrent-download-start"),this.unsubscribe("notify-on-torrent-download-completed")}};const vt=(0,x.Z)(wt,[["render",d],["__scopeId","data-v-877bb22c"]]);var kt=vt},8408:function(e,t,s){"use strict";s.d(t,{Z:function(){return S}});var i=s(6252),a=s(3577);const l=e=>((0,i.dD)("data-v-0f1ba97a"),e=e(),(0,i.Cn)(),e),n=l((()=>(0,i._)("i",{class:"fas fa-play"},null,-1))),r=[n],o={key:1,class:"icon type-icon"},c=["href"],d=["title"],u=["src","alt"],m={key:3,class:"image"},h=l((()=>(0,i._)("div",{class:"inner"},[(0,i._)("i",{class:"fas fa-play"})],-1))),p=[h],y={key:4,class:"icon imdb-link"},g=["href"],f=l((()=>(0,i._)("i",{class:"fab fa-imdb"},null,-1))),w=[f],v=["textContent"],k={key:6,class:"bottom-overlay videos"};function _(e,t,s,l,n,h){return(0,i.wg)(),(0,i.iD)("div",{class:(0,a.C_)(["image-container",{"with-image":!!s.item?.image}])},[s.hasPlay?((0,i.wg)(),(0,i.iD)("div",{key:0,class:"play-overlay",onClick:t[0]||(t[0]=t=>e.$emit("play",s.item))},r)):(0,i.kq)("",!0),n.typeIcons[s.item?.type]?((0,i.wg)(),(0,i.iD)("span",o,[s.item.url?((0,i.wg)(),(0,i.iD)("a",{key:0,href:s.item.url,target:"_blank"},[(0,i._)("i",{class:(0,a.C_)(n.typeIcons[s.item.type]),title:s.item.type},"   ",10,d)],8,c)):(0,i.kq)("",!0)])):(0,i.kq)("",!0),s.item?.image?((0,i.wg)(),(0,i.iD)("img",{key:2,class:"image",src:s.item.image,alt:s.item.title},null,8,u)):((0,i.wg)(),(0,i.iD)("div",m,p)),s.item?.imdb_id?((0,i.wg)(),(0,i.iD)("span",y,[(0,i._)("a",{href:`https://www.imdb.com/title/${s.item.imdb_id}`,target:"_blank"},w,8,g)])):(0,i.kq)("",!0),null!=s.item?.duration?((0,i.wg)(),(0,i.iD)("span",{key:5,class:"bottom-overlay duration",textContent:(0,a.zw)(e.convertTime(s.item.duration))},null,8,v)):null!=s.item?.videos?((0,i.wg)(),(0,i.iD)("span",k,(0,a.zw)(s.item.videos)+" items ",1)):(0,i.kq)("",!0)],2)}var b=s(5007),C=s(1065),P={mixins:[b,C.Z],emits:["play"],props:{item:{type:Object,default:()=>{}},hasPlay:{type:Boolean,default:!0}},data(){return{typeIcons:b}}},x=s(3744);const D=(0,x.Z)(P,[["render",_],["__scopeId","data-v-0f1ba97a"]]);var S=D},5390:function(e,t,s){"use strict";s.d(t,{Z:function(){return vt}});var i=s(6252);const a={class:"media-results"};function l(e,t,s,l,n,r){const o=(0,i.up)("Loading"),c=(0,i.up)("Item"),d=(0,i.up)("Info"),u=(0,i.up)("Modal");return(0,i.wg)(),(0,i.iD)("div",a,[s.loading?((0,i.wg)(),(0,i.j4)(o,{key:0})):(0,i.kq)("",!0),s.results?.length?((0,i.wg)(),(0,i.iD)("div",{key:1,class:"grid",ref:"grid",onScroll:t[0]||(t[0]=(...e)=>r.onScroll&&r.onScroll(...e))},[((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(r.visibleResults,((t,a)=>((0,i.wg)(),(0,i.j4)(c,{key:a,item:t,selected:s.selectedResult===a,hidden:!!Object.keys(s.sources||{}).length&&!s.sources[t.type],onSelect:t=>e.$emit("select",a),onPlay:s=>e.$emit("play",t),onView:s=>e.$emit("view",t),onDownload:s=>e.$emit("download",t)},null,8,["item","selected","hidden","onSelect","onPlay","onView","onDownload"])))),128))],544)):(0,i.kq)("",!0),(0,i.Wm)(u,{ref:"infoModal",title:"Media info",onClose:t[2]||(t[2]=t=>e.$emit("select",null))},{default:(0,i.w5)((()=>[null!=s.selectedResult?((0,i.wg)(),(0,i.j4)(d,{key:0,item:s.results[s.selectedResult],onPlay:t[1]||(t[1]=t=>e.$emit("play",s.results[s.selectedResult]))},null,8,["item"])):(0,i.kq)("",!0)])),_:1},512)])}var n=s(3577);const r=e=>((0,i.dD)("data-v-91888714"),e=e(),(0,i.Cn)(),e),o={class:"media-info"},c={class:"row header"},d={class:"image-container"},u={class:"title"},m=["title"],h=["href","textContent"],p=["textContent"],y={key:0,class:"row"},g=r((()=>(0,i._)("div",{class:"left side"},"TV Series",-1))),f=["textContent"],w={key:1,class:"row"},v=r((()=>(0,i._)("div",{class:"left side"},"Season",-1))),k=["textContent"],_={key:2,class:"row"},b=r((()=>(0,i._)("div",{class:"left side"},"Episode",-1))),C=["textContent"],P={key:3,class:"row"},x=r((()=>(0,i._)("div",{class:"left side"},"Number of seasons",-1))),D=["textContent"],S={key:4,class:"row"},q=r((()=>(0,i._)("div",{class:"left side"},"Synopsis",-1))),$=["textContent"],I={key:5,class:"row"},N=r((()=>(0,i._)("div",{class:"left side"},"Description",-1))),T=["textContent"],M={key:6,class:"row"},z=r((()=>(0,i._)("div",{class:"left side"},"Summary",-1))),Z=["textContent"],V={key:7,class:"row"},j=r((()=>(0,i._)("div",{class:"left side"},"Overview",-1))),R=["textContent"],U={key:8,class:"row"},L=r((()=>(0,i._)("div",{class:"left side"},"Country",-1))),O=["textContent"],W={key:9,class:"row"},E=r((()=>(0,i._)("div",{class:"left side"},"Network",-1))),F=["textContent"],Y={key:10,class:"row"},B=r((()=>(0,i._)("div",{class:"left side"},"Status",-1))),H=["textContent"],K={key:11,class:"row"},A=r((()=>(0,i._)("div",{class:"left side"},"Resolution",-1))),Q={class:"right side"},G={key:12,class:"row"},J=r((()=>(0,i._)("div",{class:"left side"},"Rating",-1))),X={class:"right side"},ee={key:13,class:"row"},te=r((()=>(0,i._)("div",{class:"left side"},"Critic Rating",-1))),se={class:"right side"},ie={key:14,class:"row"},ae=r((()=>(0,i._)("div",{class:"left side"},"Community Rating",-1))),le={class:"right side"},ne={key:15,class:"row"},re=r((()=>(0,i._)("div",{class:"left side"},"Votes",-1))),oe=["textContent"],ce={key:16,class:"row"},de=r((()=>(0,i._)("div",{class:"left side"},"Genres",-1))),ue=["textContent"],me={key:17,class:"row"},he=r((()=>(0,i._)("div",{class:"left side"},"Channel",-1))),pe={class:"right side"},ye=["href","textContent"],ge={key:18,class:"row"},fe=r((()=>(0,i._)("div",{class:"left side"},"Year",-1))),we=["textContent"],ve={key:19,class:"row"},ke=r((()=>(0,i._)("div",{class:"left side"},"Published at",-1))),_e=["textContent"],be={key:20,class:"row"},Ce=r((()=>(0,i._)("div",{class:"left side"},"File",-1))),Pe=["textContent"],xe={key:21,class:"row"},De=r((()=>(0,i._)("div",{class:"left side"},"Trailer",-1))),Se={class:"right side url"},qe=["href","textContent"],$e={key:22,class:"row"},Ie=r((()=>(0,i._)("div",{class:"left side"},"Size",-1))),Ne=["textContent"],Te={key:23,class:"row"},Me=r((()=>(0,i._)("div",{class:"left side"},"Quality",-1))),ze=["textContent"],Ze={key:24,class:"row"},Ve=r((()=>(0,i._)("div",{class:"left side"},"Seeds",-1))),je=["textContent"],Re={key:25,class:"row"},Ue=r((()=>(0,i._)("div",{class:"left side"},"Peers",-1))),Le=["textContent"],Oe={key:26,class:"row"},We=r((()=>(0,i._)("div",{class:"left side"},"Language",-1))),Ee=["textContent"];function Fe(e,t,s,a,l,r){const Fe=(0,i.up)("MediaImage");return(0,i.wg)(),(0,i.iD)("div",o,[(0,i._)("div",c,[(0,i._)("div",d,[(0,i.Wm)(Fe,{item:s.item,onPlay:t[0]||(t[0]=t=>e.$emit("play"))},null,8,["item"])]),(0,i._)("div",u,[l.typeIcons[s.item?.type]?((0,i.wg)(),(0,i.iD)("i",{key:0,class:(0,n.C_)(l.typeIcons[s.item.type]),title:s.item.type},"   ",10,m)):(0,i.kq)("",!0),s.item.url?((0,i.wg)(),(0,i.iD)("a",{key:1,href:s.item.url,target:"_blank",textContent:(0,n.zw)(s.item.title)},null,8,h)):((0,i.wg)(),(0,i.iD)("span",{key:2,textContent:(0,n.zw)(s.item.title)},null,8,p))])]),s.item?.series?((0,i.wg)(),(0,i.iD)("div",y,[g,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.series)},null,8,f)])):(0,i.kq)("",!0),s.item?.season?((0,i.wg)(),(0,i.iD)("div",w,[v,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.season)},null,8,k)])):(0,i.kq)("",!0),s.item?.episode?((0,i.wg)(),(0,i.iD)("div",_,[b,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.episode)},null,8,C)])):(0,i.kq)("",!0),s.item?.num_seasons?((0,i.wg)(),(0,i.iD)("div",P,[x,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.num_seasons)},null,8,D)])):(0,i.kq)("",!0),s.item?.synopsis?((0,i.wg)(),(0,i.iD)("div",S,[q,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.synopsis)},null,8,$)])):(0,i.kq)("",!0),s.item?.description?((0,i.wg)(),(0,i.iD)("div",I,[N,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.description)},null,8,T)])):(0,i.kq)("",!0),s.item?.summary?((0,i.wg)(),(0,i.iD)("div",M,[z,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.summary)},null,8,Z)])):(0,i.kq)("",!0),s.item?.overview?((0,i.wg)(),(0,i.iD)("div",V,[j,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.overview)},null,8,R)])):(0,i.kq)("",!0),s.item?.country?((0,i.wg)(),(0,i.iD)("div",U,[L,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.country)},null,8,O)])):(0,i.kq)("",!0),s.item?.network?((0,i.wg)(),(0,i.iD)("div",W,[E,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.network)},null,8,F)])):(0,i.kq)("",!0),s.item?.status?((0,i.wg)(),(0,i.iD)("div",Y,[B,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.status)},null,8,H)])):(0,i.kq)("",!0),s.item?.width&&s.item?.height?((0,i.wg)(),(0,i.iD)("div",K,[A,(0,i._)("div",Q,(0,n.zw)(s.item.width)+"x"+(0,n.zw)(s.item.height),1)])):(0,i.kq)("",!0),s.item?.rating?((0,i.wg)(),(0,i.iD)("div",G,[J,(0,i._)("div",X,(0,n.zw)(s.item.rating.percentage)+"%",1)])):(0,i.kq)("",!0),s.item?.critic_rating?((0,i.wg)(),(0,i.iD)("div",ee,[te,(0,i._)("div",se,(0,n.zw)(s.item.critic_rating)+"%",1)])):(0,i.kq)("",!0),s.item?.community_rating?((0,i.wg)(),(0,i.iD)("div",ie,[ae,(0,i._)("div",le,(0,n.zw)(s.item.community_rating)+"%",1)])):(0,i.kq)("",!0),s.item?.rating?((0,i.wg)(),(0,i.iD)("div",ne,[re,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.rating.votes)},null,8,oe)])):(0,i.kq)("",!0),s.item?.genres?((0,i.wg)(),(0,i.iD)("div",ce,[de,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.genres.join(", "))},null,8,ue)])):(0,i.kq)("",!0),r.channel?((0,i.wg)(),(0,i.iD)("div",me,[he,(0,i._)("div",pe,[(0,i._)("a",{href:r.channel.url,target:"_blank",textContent:(0,n.zw)(r.channel.title||r.channel.url)},null,8,ye)])])):(0,i.kq)("",!0),s.item?.year?((0,i.wg)(),(0,i.iD)("div",ge,[fe,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.year)},null,8,we)])):(0,i.kq)("",!0),r.publishedDate?((0,i.wg)(),(0,i.iD)("div",ve,[ke,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(r.publishedDate)},null,8,_e)])):(0,i.kq)("",!0),s.item?.file?((0,i.wg)(),(0,i.iD)("div",be,[Ce,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.file)},null,8,Pe)])):(0,i.kq)("",!0),s.item?.trailer?((0,i.wg)(),(0,i.iD)("div",xe,[De,(0,i._)("div",Se,[(0,i._)("a",{href:s.item.trailer,target:"_blank",textContent:(0,n.zw)(s.item.trailer)},null,8,qe)])])):(0,i.kq)("",!0),s.item?.size?((0,i.wg)(),(0,i.iD)("div",$e,[Ie,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(e.convertSize(s.item.size))},null,8,Ne)])):(0,i.kq)("",!0),s.item?.quality?((0,i.wg)(),(0,i.iD)("div",Te,[Me,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.quality)},null,8,ze)])):(0,i.kq)("",!0),s.item?.seeds?((0,i.wg)(),(0,i.iD)("div",Ze,[Ve,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.seeds)},null,8,je)])):(0,i.kq)("",!0),s.item?.peers?((0,i.wg)(),(0,i.iD)("div",Re,[Ue,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.peers)},null,8,Le)])):(0,i.kq)("",!0),s.item?.language?((0,i.wg)(),(0,i.iD)("div",Oe,[We,(0,i._)("div",{class:"right side",textContent:(0,n.zw)(s.item.language)},null,8,Ee)])):(0,i.kq)("",!0)])}var Ye=s(8637),Be=s(1065),He=s(8408),Ke=s(5007),Ae={name:"Info",components:{MediaImage:He.Z},mixins:[Ye.Z,Be.Z],emits:["play"],props:{item:{type:Object,default:()=>{}}},data(){return{typeIcons:Ke}},computed:{channel(){let e=null;return this.item?.channelId?e={url:`https://www.youtube.com/channel/${this.item.channelId}`}:this.item?.channel_url&&(e={url:this.item.channel_url}),e?(this.item?.channelTitle?e.title=this.item.channelTitle:this.item?.channel&&(e.title=this.item.channel),e):null},publishedDate(){return this.item?.publishedAt?this.formatDate(this.item.publishedAt,!0):this.item?.created_at?this.formatDate(this.item.created_at,!0):null}}},Qe=s(3744);const Ge=(0,Qe.Z)(Ae,[["render",Fe],["__scopeId","data-v-91888714"]]);var Je=Ge;const Xe={class:"thumbnail"},et={class:"body"},tt={class:"row title"},st=["textContent"],it={class:"col-1 right side"},at={key:0,class:"row subtitle"},lt=["href"],nt=["src"],rt=["textContent"],ot={key:1,class:"row creation-date"};function ct(e,t,s,a,l,r){const o=(0,i.up)("MediaImage"),c=(0,i.up)("DropdownItem"),d=(0,i.up)("Dropdown");return s.hidden?(0,i.kq)("",!0):((0,i.wg)(),(0,i.iD)("div",{key:0,class:(0,n.C_)(["item media-item",{selected:s.selected}])},[(0,i._)("div",Xe,[(0,i.Wm)(o,{item:s.item,onPlay:t[0]||(t[0]=t=>e.$emit("play"))},null,8,["item"])]),(0,i._)("div",et,[(0,i._)("div",tt,[(0,i._)("div",{class:"col-11 left side",textContent:(0,n.zw)(s.item.title),onClick:t[1]||(t[1]=t=>e.$emit("select"))},null,8,st),(0,i._)("div",it,[(0,i.Wm)(d,{title:"Actions","icon-class":"fa fa-ellipsis-h"},{default:(0,i.w5)((()=>["torrent"!==s.item.type?((0,i.wg)(),(0,i.j4)(c,{key:0,"icon-class":"fa fa-play",text:"Play",onClick:t[2]||(t[2]=t=>e.$emit("play"))})):(0,i.kq)("",!0),"torrent"===s.item.type?((0,i.wg)(),(0,i.j4)(c,{key:1,"icon-class":"fa fa-download",text:"Download",onClick:t[3]||(t[3]=t=>e.$emit("download"))})):(0,i.kq)("",!0),"file"===s.item.type?((0,i.wg)(),(0,i.j4)(c,{key:2,"icon-class":"fa fa-window-maximize",text:"View in browser",onClick:t[4]||(t[4]=t=>e.$emit("view"))})):(0,i.kq)("",!0),(0,i.Wm)(c,{"icon-class":"fa fa-info-circle",text:"Info",onClick:t[5]||(t[5]=t=>e.$emit("select"))})])),_:1})])]),s.item.channel?((0,i.wg)(),(0,i.iD)("div",at,[(0,i._)("a",{class:"channel",href:s.item.channel_url,target:"_blank"},[s.item.channel_image?((0,i.wg)(),(0,i.iD)("img",{key:0,src:s.item.channel_image,class:"channel-image"},null,8,nt)):(0,i.kq)("",!0),(0,i._)("span",{class:"channel-name",textContent:(0,n.zw)(s.item.channel)},null,8,rt)],8,lt)])):(0,i.kq)("",!0),s.item.created_at?((0,i.wg)(),(0,i.iD)("div",ot,(0,n.zw)(e.formatDateTime(s.item.created_at,!0)),1)):(0,i.kq)("",!0)])],2))}var dt=s(2787),ut=s(815),mt={components:{Dropdown:dt.Z,DropdownItem:ut.Z,MediaImage:He.Z},mixins:[Ye.Z],emits:["play","select","view","download"],props:{item:{type:Object,required:!0},hidden:{type:Boolean,default:!1},selected:{type:Boolean,default:!1}},data(){return{typeIcons:Ke}}};const ht=(0,Qe.Z)(mt,[["render",ct],["__scopeId","data-v-19442018"]]);var pt=ht,yt=s(6791),gt=s(3493),ft={components:{Info:Je,Item:pt,Loading:yt.Z,Modal:gt.Z},emits:["select","play","view","download","scroll-end"],props:{loading:{type:Boolean,default:!1},results:{type:Array,default:()=>[]},selectedResult:{type:Number},sources:{type:Object,default:()=>{}},filter:{type:String,default:null},resultIndexStep:{type:Number,default:25}},data(){return{maxResultIndex:this.resultIndexStep}},computed:{visibleResults(){return this.results.filter((e=>!this.filter||e.title.toLowerCase().includes(this.filter.toLowerCase()))).slice(0,this.maxResultIndex)}},methods:{onScroll(e){const t=e.target;if(!t)return;const s=t.scrollHeight-t.scrollTop<=t.clientHeight+150;s&&(this.$emit("scroll-end"),this.maxResultIndex+=this.resultIndexStep)}},mounted(){this.$watch("selectedResult",(e=>{null==e?this.$refs.infoModal?.close():this.$refs.infoModal?.show()}))}};const wt=(0,Qe.Z)(ft,[["render",l],["__scopeId","data-v-7147de76"]]);var vt=wt},562:function(e,t,s){"use strict";s.d(t,{Z:function(){return me}});var i=s(6252),a=s(3577);const l=e=>((0,i.dD)("data-v-7351a8a4"),e=e(),(0,i.Cn)(),e),n={key:1,class:"torrent-transfers fade-in"},r={key:0,class:"no-content"},o=["onClick"],c={class:"col-8 left side"},d=["textContent"],u={class:"col-2 right side"},m=["textContent"],h={class:"col-2 right side"},p={key:0,class:"modal-body torrent-info"},y={key:0,class:"row"},g=l((()=>(0,i._)("div",{class:"attr"},"Name",-1))),f=["textContent"],w={key:1,class:"row"},v=l((()=>(0,i._)("div",{class:"attr"},"State",-1))),k=["textContent"],_={class:"row"},b=l((()=>(0,i._)("div",{class:"attr"},"Progress",-1))),C=["textContent"],P={class:"row"},x=l((()=>(0,i._)("div",{class:"attr"},"DL rate",-1))),D=["textContent"],S={class:"row"},q=l((()=>(0,i._)("div",{class:"attr"},"UL rate",-1))),$=["textContent"],I={class:"row"},N=l((()=>(0,i._)("div",{class:"attr"},"Size",-1))),T=["textContent"],M={key:2,class:"row"},z=l((()=>(0,i._)("div",{class:"attr"},"Remaining",-1))),Z=["textContent"],V={class:"row"},j=l((()=>(0,i._)("div",{class:"attr"},"URL",-1))),R={class:"value nowrap"},U=["href","textContent"],L={class:"row"},O=l((()=>(0,i._)("div",{class:"attr"},"Peers",-1))),W=["textContent"],E={key:3,class:"row"},F=l((()=>(0,i._)("div",{class:"attr"},"Started",-1))),Y=["textContent"],B={key:4,class:"row"},H=l((()=>(0,i._)("div",{class:"attr"},"Finished",-1))),K=["textContent"],A={key:5,class:"row"},Q=l((()=>(0,i._)("div",{class:"attr"},"Save path",-1))),G=["textContent"],J={key:0,class:"modal-body torrent-files"},X={class:"col-1 icon"},ee={key:1,class:"fa fa-file"},te=["textContent"];function se(e,t,s,l,se,ie){const ae=(0,i.up)("Loading"),le=(0,i.up)("DropdownItem"),ne=(0,i.up)("Dropdown"),re=(0,i.up)("Modal");return se.loading?((0,i.wg)(),(0,i.j4)(ae,{key:0})):((0,i.wg)(),(0,i.iD)("div",n,[Object.keys(se.transfers).length?(0,i.kq)("",!0):((0,i.wg)(),(0,i.iD)("div",r,"No torrent transfers in progress")),((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(se.transfers,((s,l)=>((0,i.wg)(),(0,i.iD)("div",{class:(0,a.C_)(["row item",{selected:se.selectedItem===l}]),key:l,onClick:e=>se.selectedItem=l},[(0,i._)("div",c,[(0,i._)("i",{class:(0,a.C_)(["icon fa",{"fa-check":null!=s.finish_date,"fa-play":!s.finish_date&&"downloading"===s.state,"fa-pause":!s.finish_date&&"paused"===s.state,"fa-stop":!s.finish_date&&"stopped"===s.state}])},null,2),(0,i._)("div",{class:"title",textContent:(0,a.zw)(s.name||s.hash||s.url)},null,8,d)]),(0,i._)("div",u,[(0,i._)("span",{textContent:(0,a.zw)(`${s.progress}%`)},null,8,m)]),(0,i._)("div",h,[(0,i.Wm)(ne,{title:"Actions","icon-class":"fa fa-ellipsis-h",onClick:e=>se.selectedItem=l},{default:(0,i.w5)((()=>["downloading"===s.state?((0,i.wg)(),(0,i.j4)(le,{key:0,"icon-class":"fa fa-pause",text:"Pause transfer",onClick:e=>ie.pause(ie.torrentId(s))},null,8,["onClick"])):(0,i.kq)("",!0),"paused"===s.state?((0,i.wg)(),(0,i.j4)(le,{key:1,"icon-class":"fa fa-play",text:"Resume transfer",onClick:e=>ie.resume(ie.torrentId(s))},null,8,["onClick"])):(0,i.kq)("",!0),(0,i.Wm)(le,{"icon-class":"fa fa-trash",text:"Remove transfer",onClick:e=>ie.remove(ie.torrentId(s))},null,8,["onClick"]),(0,i.Wm)(le,{"icon-class":"fa fa-folder",text:"View files",onClick:t[0]||(t[0]=t=>e.$refs.torrentFiles.isVisible=!0)}),(0,i.Wm)(le,{"icon-class":"fa fa-info",text:"Torrent info",onClick:t[1]||(t[1]=t=>e.$refs.torrentInfo.isVisible=!0)})])),_:2},1032,["onClick"])])],10,o)))),128)),(0,i.Wm)(re,{ref:"torrentInfo",title:"Torrent info",width:"80%"},{default:(0,i.w5)((()=>[null!=se.selectedItem&&se.transfers[se.selectedItem]?((0,i.wg)(),(0,i.iD)("div",p,[se.transfers[se.selectedItem].name?((0,i.wg)(),(0,i.iD)("div",y,[g,(0,i._)("div",{class:"value",textContent:(0,a.zw)(se.transfers[se.selectedItem].name)},null,8,f)])):(0,i.kq)("",!0),se.transfers[se.selectedItem].state?((0,i.wg)(),(0,i.iD)("div",w,[v,(0,i._)("div",{class:"value",textContent:(0,a.zw)(se.transfers[se.selectedItem].state)},null,8,k)])):(0,i.kq)("",!0),(0,i._)("div",_,[b,(0,i._)("div",{class:"value",textContent:(0,a.zw)(`${se.transfers[se.selectedItem].progress||0}%`)},null,8,C)]),(0,i._)("div",P,[x,(0,i._)("div",{class:"value",textContent:(0,a.zw)(`${e.convertSize(se.transfers[se.selectedItem].download_rate||0)}/s`)},null,8,D)]),(0,i._)("div",S,[q,(0,i._)("div",{class:"value",textContent:(0,a.zw)(`${e.convertSize(se.transfers[se.selectedItem].upload_rate||0)}/s`)},null,8,$)]),(0,i._)("div",I,[N,(0,i._)("div",{class:"value",textContent:(0,a.zw)(e.convertSize(se.transfers[se.selectedItem].size||0))},null,8,T)]),se.transfers[se.selectedItem].remaining_bytes?((0,i.wg)(),(0,i.iD)("div",M,[z,(0,i._)("div",{class:"value",textContent:(0,a.zw)(e.convertSize(se.transfers[se.selectedItem].remaining_bytes))},null,8,Z)])):(0,i.kq)("",!0),(0,i._)("div",V,[j,(0,i._)("div",R,[(0,i._)("a",{href:se.transfers[se.selectedItem].url,target:"_blank",textContent:(0,a.zw)(se.transfers[se.selectedItem].url)},null,8,U)])]),(0,i._)("div",L,[O,(0,i._)("div",{class:"value",textContent:(0,a.zw)(se.transfers[se.selectedItem].peers||0)},null,8,W)]),se.transfers[se.selectedItem].start_date?((0,i.wg)(),(0,i.iD)("div",E,[F,(0,i._)("div",{class:"value",textContent:(0,a.zw)(e.formatDateTime(se.transfers[se.selectedItem].start_date))},null,8,Y)])):(0,i.kq)("",!0),se.transfers[se.selectedItem].finish_date?((0,i.wg)(),(0,i.iD)("div",B,[H,(0,i._)("div",{class:"value",textContent:(0,a.zw)(e.formatDateTime(se.transfers[se.selectedItem].finish_date))},null,8,K)])):(0,i.kq)("",!0),se.transfers[se.selectedItem].save_path?((0,i.wg)(),(0,i.iD)("div",A,[Q,(0,i._)("div",{class:"value",textContent:(0,a.zw)(se.transfers[se.selectedItem].save_path)},null,8,G)])):(0,i.kq)("",!0)])):(0,i.kq)("",!0)])),_:1},512),(0,i.Wm)(re,{ref:"torrentFiles",title:"Torrent files",width:"80%"},{default:(0,i.w5)((()=>[null!=se.selectedItem&&se.transfers[se.selectedItem]?((0,i.wg)(),(0,i.iD)("div",J,[((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(ie.relativeFiles,((t,l)=>((0,i.wg)(),(0,i.iD)("div",{class:"row",key:t},[(0,i._)("div",X,[s.isMedia&&e.mediaExtensions.has(t.split(".").pop())?((0,i.wg)(),(0,i.j4)(ne,{key:0},{default:(0,i.w5)((()=>[(0,i.Wm)(le,{"icon-class":"fa fa-play",text:"Play",onClick:t=>e.$emit("play",{url:`file://${se.transfers[se.selectedItem].files[l]}`,type:"file"})},null,8,["onClick"])])),_:2},1024)):((0,i.wg)(),(0,i.iD)("i",ee))]),(0,i._)("div",{class:"col-11 name",textContent:(0,a.zw)(t)},null,8,te)])))),128))])):(0,i.kq)("",!0)])),_:1},512)]))}var ie=s(6791),ae=s(8637),le=s(1065),ne=s(3493),re=s(2787),oe=s(815),ce={name:"View",emits:["play","play-with-captions"],components:{Dropdown:re.Z,DropdownItem:oe.Z,Loading:ie.Z,Modal:ne.Z},mixins:[ae.Z,le.Z],props:{pluginName:{type:String,required:!0},isMedia:{type:Boolean,default:!1}},data(){return{loading:!1,transfers:{},selectedItem:null}},computed:{relativeFiles(){return null!=this.selectedItem&&this.transfers[this.selectedItem]?.files?.length?this.transfers[this.selectedItem].files.map((e=>e.split("/").pop())):[]}},methods:{torrentId(e){return e?.hash&&e.hash.length?e.hash:e.url},async refresh(){this.loading=!0;try{this.transfers=Object.values(await this.request(`${this.pluginName}.status`)||{}).reduce(((e,t)=>(e[this.torrentId(t)]=t,e)),{})}finally{this.loading=!1}},async pause(e){await this.request(`${this.pluginName}.pause`,{torrent:e}),await this.refresh()},async resume(e){await this.request(`${this.pluginName}.resume`,{torrent:e}),await this.refresh()},async remove(e){await this.request(`${this.pluginName}.remove`,{torrent:e}),await this.refresh()},onTorrentUpdate(e){this.transfers[this.torrentId(e)]=e},onTorrentRemove(e){const t=this.torrentId(e);t in this.transfers&&delete this.transfers[t]}},mounted(){this.refresh(),this.subscribe(this.onTorrentUpdate,"on-torrent-update","platypush.message.event.torrent.TorrentQueuedEvent","platypush.message.event.torrent.TorrentDownloadedMetadataEvent","platypush.message.event.torrent.TorrentDownloadStartEvent","platypush.message.event.torrent.TorrentDownloadProgressEvent","platypush.message.event.torrent.TorrentResumedEvent","platypush.message.event.torrent.TorrentPausedEvent","platypush.message.event.torrent.TorrentSeedingStartEvent","platypush.message.event.torrent.TorrentStateChangeEvent","platypush.message.event.torrent.TorrentDownloadStopEvent","platypush.message.event.torrent.TorrentDownloadCompletedEvent"),this.subscribe(this.onTorrentRemove,"on-torrent-remove","platypush.message.event.torrent.TorrentRemovedEvent")},destroy(){this.unsubscribe("on-torrent-update"),this.unsubscribe("on-torrent-remove")}},de=s(3744);const ue=(0,de.Z)(ce,[["render",se],["__scopeId","data-v-7351a8a4"]]);var me=ue},6809:function(e,t,s){var i={"./File":[2892,9,2892],"./File.vue":[2892,9,2892],"./Mixin":[6640,9,6640],"./Mixin.vue":[6640,9,6640],"./Nav":[5578,9,3661,5578],"./Nav.vue":[5578,9,3661,5578],"./YouTube":[5931,9,2992,3671,5833,3390,3661,6579,4790,5059,5931],"./YouTube.vue":[5931,9,2992,3671,5833,3390,3661,6579,4790,5059,5931],"./YouTube/Channel":[7018,9,3671,5762],"./YouTube/Channel.vue":[7018,9,3671,5762],"./YouTube/Feed":[886,9,2992,5059,886],"./YouTube/Feed.vue":[886,9,2992,5059,886],"./YouTube/Index":[2200,9,2200],"./YouTube/Index.vue":[2200,9,2200],"./YouTube/NoToken":[9091,9,4790,9091],"./YouTube/NoToken.vue":[9091,9,4790,9091],"./YouTube/Playlist":[342,9,2992,5833,342],"./YouTube/Playlist.vue":[342,9,2992,5833,342],"./YouTube/Playlists":[7898,9,2992,5833,6579,7898],"./YouTube/Playlists.vue":[7898,9,2992,5833,6579,7898],"./YouTube/Subscriptions":[7425,9,2992,3671,3390,6123],"./YouTube/Subscriptions.vue":[7425,9,2992,3671,3390,6123],"./meta":[4569,3],"./meta.json":[4569,3]};function a(e){if(!s.o(i,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=i[e],a=t[0];return Promise.all(t.slice(2).map(s.e)).then((function(){return s.t(a,16|t[1])}))}a.keys=function(){return Object.keys(i)},a.id=6809,e.exports=a},4569:function(e){"use strict";e.exports=JSON.parse('{"File":{"name":"Files","icon":{"class":"fas fa-folder","color":"#888888"}},"YouTube":{"name":"YouTube","icon":{"class":"fab fa-youtube","color":"#FF0000"}}}')},5007:function(e){"use strict";e.exports=JSON.parse('{"file":"fa fa-hdd","torrent":"fa fa-magnet","youtube":"fab fa-youtube","plex":"fa fa-plex","jellyfin":"fa fa-jellyfin"}')}}]); +//# sourceMappingURL=1256.978d0d43.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1256.978d0d43.js.map b/platypush/backend/http/webapp/dist/static/js/1256.978d0d43.js.map new file mode 100644 index 00000000..f6fcf9b0 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1256.978d0d43.js.map @@ -0,0 +1 @@ +{"version":3,"file":"static/js/1256.978d0d43.js","mappings":"yOACOA,MAAM,W,GAGJA,MAAM,MAAMC,IAAI,O,iBAKXD,MAAM,S,SAINA,MAAM,a,UACVE,EAAAA,EAAAA,GAAiC,KAA9BF,MAAM,uBAAqB,W,GAA9BG,G,GAKDH,MAAM,QAAQC,IAAI,S,UAInBC,EAAAA,EAAAA,GAGM,OAHDF,MAAM,oBAAkB,EAC3BE,EAAAA,EAAAA,GAA+B,KAA5BF,MAAM,uBACTE,EAAAA,EAAAA,GAA4B,QAAtBF,MAAM,QAAO,QAAE,K,GAFvBI,G,iBAOKJ,MAAM,U,GAEHA,MAAM,Q,SAKTA,MAAM,iB,wHApCjBK,EAAAA,EAAAA,IA6CM,MA7CNC,EA6CM,CA5CWC,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAE1BT,EAAAA,EAAAA,GAaM,MAbNU,EAaM,gBAZJP,EAAAA,EAAAA,IAWOQ,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAVoBC,EAAAC,YAAU,CAAvBC,EAAOC,M,WADrBb,EAAAA,EAAAA,IAWO,QAXDL,MAAM,OAELW,IAAKO,EACLC,QAAKC,GAAEb,EAAAc,KAAON,EAAAC,WAAWM,MAAM,EAAGJ,EAAI,GAAGK,KAAK,KAAKD,MAAM,I,EAC9DpB,EAAAA,EAAAA,GAEO,OAFPsB,GAEOC,EAAAA,EAAAA,IADFR,GAAK,IAGqBC,EAAI,GAAKH,EAAAC,WAAWU,OAAS,IAAMR,EAAIH,EAAAC,WAAWU,OAAS,IAAH,WAAvFrB,EAAAA,EAAAA,IAEO,OAFPsB,EAEOC,KAAA,wB,aAIX1B,EAAAA,EAAAA,GA0BM,MA1BN2B,EA0BM,CAvBQtB,EAAAc,MAAMK,QAAmB,MAATnB,EAAAc,MAAiBS,EAAAC,UAAO,WAFpD1B,EAAAA,EAAAA,IAOM,O,MAPDL,MAAM,WACLmB,QAAKa,EAAA,KAAAA,EAAA,OAAAC,IAAElB,EAAAmB,QAAAnB,EAAAmB,UAAAD,K,mCAQb5B,EAAAA,EAAAA,IAeMQ,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAfoCC,EAAAoB,eAAa,CAAzBC,EAAMlB,M,WAApCb,EAAAA,EAAAA,IAeM,OAfDL,MAAM,WAA+CW,IAAKO,EAAIC,QAAKC,GAAEL,EAAAsB,aAAaD,I,EACrFlC,EAAAA,EAAAA,GAKM,MALNoC,EAKM,EAJJpC,EAAAA,EAAAA,GAA6G,KAA1GF,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,UAAS,WAAmC,cAAdH,EAAKI,KAAI,YAA6C,cAAdJ,EAAKI,S,SACpFtC,EAAAA,EAAAA,GAEO,OAFPuC,GAEOhB,EAAAA,EAAAA,IADFW,EAAKM,MAAI,KAIiB3B,EAAA4B,YAAYjB,SAAM,WAAnDrB,EAAAA,EAAAA,IAMM,MANNuC,EAMM,EALJC,EAAAA,EAAAA,IAIWC,EAAA,M,kBAHT,IAE4D,CAAxC/B,EAAAgC,SAAyB,cAAdX,EAAKI,OAAI,WAFxC/B,EAAAA,EAAAA,IAE4DuC,EAAA,C,MAF9C,aAAW,aAAaC,KAAK,OAC5B9B,QAAKC,GAAE8B,EAAAC,MAAM,OAAQ,CAATX,KAAA,OAAAY,IAAA,UAAuChB,EAAKf,U,kJAgBnF,GACEqB,KAAM,UACNW,WAAY,CAACC,aAAY,IAAEC,SAAQ,IAAEC,QAAOA,EAAAA,GAC5CC,OAAQ,CAACC,EAAAA,EAAOC,EAAAA,GAChBC,MAAO,CAAC,OAAQ,cAAe,OAAQ,SAEvCC,MAAO,CACL9B,QAAS,CACPS,KAAMsB,QACNC,SAAS,GAGXC,YAAa,CACXxB,KAAMyB,QAGRC,QAAS,CACP1B,KAAMsB,SAGRK,OAAQ,CACN3B,KAAMyB,OACNF,QAAS,KAIbK,IAAAA,GACE,MAAO,CACL5D,SAAS,EACTa,KAAMgD,KAAKL,YACXM,MAAO,GAEX,EAEAC,SAAU,CACRpC,aAAAA,GACE,OAAKkC,KAAKF,QAAQzC,OAGX2C,KAAKC,MAAMH,QAAQ/B,IAAUA,GAAMM,MAAQ,IAAI8B,cAAcC,QAAQJ,KAAKF,OAAOK,gBAAkB,IAFjGH,KAAKC,KAGhB,EAEAvB,OAAAA,GACE,OAAOsB,KAAKH,SAAWG,KAAKC,MAAMI,MAAMtC,GAASiC,KAAKM,gBAAgBC,IAAIxC,EAAKM,KAAKmC,MAAM,KAAKC,OAAON,gBACxG,EAEA7B,WAAAA,GACE,OAAK0B,KAAKtB,QAGH,CACL,CACEgC,UAAW,aACX9B,KAAM,OACN9B,QAAUiB,GAASiC,KAAKlB,MAAM,OAAQ,CAACX,KAAM,OAAQY,IAAM,UAAShB,EAAKf,WANpE,EASX,EAEAL,UAAAA,GACE,OAAKqD,KAAKhD,MAAMK,OAGT,CAAC,OAAQ2C,KAAKhD,KAAKwD,MAAM,aAAavD,MAAM,IAF1C,CAAC,IAGZ,GAGF0D,QAAS,CACP,aAAMC,GACJZ,KAAK7D,SAAU,EACf6D,KAAKa,WAAU,KAEbb,KAAKc,MAAMC,IAAIC,WAAa,MAE5BhB,KAAKc,MAAMG,MAAMC,UAAY,CAAC,IAGhC,IACElB,KAAKC,YAAcD,KAAKmB,QAAQ,YAAa,CAACnE,KAAMgD,KAAKhD,OACzDgD,KAAKlB,MAAM,cAAekB,KAAKhD,KACjC,CAAE,QACAgD,KAAK7D,SAAU,CACjB,CACF,EAEA0B,MAAAA,GACOmC,KAAKhD,MAAMK,QAAwB,MAAd2C,KAAKhD,KAG7BgD,KAAKhD,KAAO,IAAIgD,KAAKrD,YAAYM,MAAM,GAAI,GAAGC,KAAK,KAAKD,MAAM,GAF9D+C,KAAKlB,MAAM,OAGf,EAEAd,YAAAA,CAAaD,GACO,cAAdA,EAAKI,KACP6B,KAAKhD,KAAOe,EAAKf,KAEjBgD,KAAKlB,MAAM,QAASf,EAAKf,KAC7B,GAGFoE,MAAO,CACLzB,WAAAA,GACEK,KAAKhD,KAAOgD,KAAKL,WACnB,EAEA3C,IAAAA,GACEgD,KAAKY,SACP,GAGFS,OAAAA,GACErB,KAAKY,SACP,G,UCjKF,MAAMU,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,mHCPS5F,MAAM,wB,GAcAA,MAAM,kB,GA8CVA,MAAM,uB,SAGFA,MAAM,qB,GAQVA,MAAM,sB,+QAxEfS,EAAAA,EAAAA,IA8EaoF,EAAAA,GAAA,OA7EX3F,EAAAA,EAAAA,GA4EM,MA5ENI,EA4EM,CA3EWC,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAE1BkC,EAAAA,EAAAA,IAuDYiD,EAAA,CAvDA,cAAahE,EAAAiE,WAAaC,OAAQzF,EAAA0F,gBAAgBD,QAAU,CAAC,EAAIE,MAAO3F,EAAA0F,gBAAgBD,QAAU,CAAC,EACnGG,QAASrE,EAAAsE,aAAeC,OAAMtF,EAAAuF,MAAQC,QAAOxF,EAAAuF,MAAQE,OAAMzF,EAAA0F,KAAOC,YAAY3F,EAAA4F,UAC9EC,OAAM7F,EAAA8F,KAAOC,SAAQ/F,EAAAgG,OAASC,OAAMjG,EAAAkG,WAAaC,SAAQnG,EAAAkG,Y,mBACnE,IAmDO,EAnDP/G,EAAAA,EAAAA,GAmDO,cAlDLA,EAAAA,EAAAA,GAKM,OALDF,MAAM,4BAA6BmH,OAAKC,EAAAA,EAAAA,IAAErG,EAAAsG,oB,EAC7CxE,EAAAA,EAAAA,IAG8CyE,EAAA,CAHxC,gBAAe/G,EAAAgH,aACf,iBAAgBhH,EAAAiH,cAChBC,QAAKzF,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAAgH,aAAenG,GACtBsG,SAAM1F,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAAoH,cAAgBpH,EAAAoH,e,gDAGhCzH,EAAAA,EAAAA,GA0CM,MA1CNU,EA0CM,EAzCJiC,EAAAA,EAAAA,IAiB8D+E,EAAA,CAjBrD,cAAa9F,EAAAiE,WACb,gBAAexF,EAAAgH,aACf,uBAAsBxG,EAAA8G,mBACtBC,QAASvH,EAAAuH,QACT,gBAAe/G,EAAAgH,aACf,qBAAoBxH,EAAAyH,kBACpB,iBAAgBzH,EAAA0H,cAChB,mBAAkB1H,EAAAoH,aACnB1H,IAAI,SACH6G,SAAQ/F,EAAAgG,OACRmB,eAAalG,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAA0F,eAAiB7E,GAChC+G,eAAepH,EAAAqH,eACfC,aAAWrG,EAAA,KAAAA,EAAA,GAAAZ,GAAEL,EAAAuH,gBAAgBlH,IAC7BmH,gBAAcvG,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAAiI,oBAAsBjI,EAAAiI,oBACtCC,UAAU1H,EAAA2H,iBACVC,SAAM3G,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAA0H,cAAgB7G,GACxBwH,YAAU5G,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAAoH,cAAgBpH,EAAAoH,cAC5BkB,eAAa7G,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAAuH,QAAQ1G,IAAWb,EAAAuH,QAAQ1G,K,0LAEnDlB,EAAAA,EAAAA,GAqBM,OArBDF,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,iBAAgB,mBAA6BW,EAAAiC,MAAM2D,QAAQC,kB,CAUpC,WAAjBxI,EAAAgH,eAAY,WAT3B9G,EAAAA,EAAAA,IAS4CuI,EAAA,C,MATlCC,QAAS1I,EAAA0I,QACT,kBAAiB1I,EAAA2I,eACjBpB,QAASvH,EAAAuH,QACTtH,QAASD,EAAAC,QACT2D,OAAQ5D,EAAA0H,cACRkB,SAAMnH,EAAA,KAAAA,EAAA,GAAAZ,GAAEL,EAAAqI,eAAehI,IACvBiF,OAAMtF,EAAAsI,KACNC,OAAMvI,EAAAwI,KACNC,WAAUzI,EAAA0I,U,mGAMqB,aAAjBlJ,EAAAgH,eAAY,WAHpC9G,EAAAA,EAAAA,IAGuDiJ,EAAA,C,MAHzC,cAAanJ,EAAAiH,cACb,YAAU,EACVnB,OAAMtF,EAAAsI,M,kCAMiB,YAAjB9I,EAAAgH,eAAY,WAHhC9G,EAAAA,EAAAA,IAGkDkJ,EAAA,C,MAHxCxF,OAAQ5D,EAAA0H,cACR2B,aAAW5H,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAA0H,cAAgB,IAC7B5B,OAAIrE,EAAA,MAAAA,EAAA,IAAAZ,GAAEL,EAAAsI,KAAKjI,K,qLAO7BlB,EAAAA,EAAAA,GASM,MATN2J,EASM,EARJhH,EAAAA,EAAAA,IAOQiH,EAAA,CAPDC,MAAM,sBAAuBC,QAASzJ,EAAAiI,mBAAoBvI,IAAI,oBAC7DgK,QAAKjI,EAAA,MAAAA,EAAA,IAAAZ,GAAEb,EAAAiI,oBAAqB,I,mBAClC,IAIM,CAJ+BjI,EAAAiI,oBAAwC,MAAlBjI,EAAA2I,iBAAc,WAAzE7I,EAAAA,EAAAA,IAIM,MAJNmB,EAIM,EAHJqB,EAAAA,EAAAA,IAE8FqH,EAAA,CAFlFC,KAAM5J,EAAA0F,gBAAkB1F,EAAA0F,eAAeD,SAAoD,SAA3BzF,EAAA0F,eAAeD,OAAOoE,OAA+C,UAA3B7J,EAAA0F,eAAeD,OAAOoE,OAAmC7J,EAAA0F,eAAeD,OAASzF,EAAA0I,QAAQ1I,EAAA2I,gBAEzJmB,aAAWrI,EAAA,MAAAA,EAAA,IAAAZ,GAAEL,EAAAuJ,gBAAgBlJ,K,8DAKzFlB,EAAAA,EAAAA,GAIM,MAJNyB,EAIM,EAHJkB,EAAAA,EAAAA,IAEQiH,EAAA,CAFDC,MAAM,WAAW9J,IAAI,eAAgBsK,OAAMxJ,EAAAyJ,oB,mBAChD,IAA6F,EAA7F3H,EAAAA,EAAAA,IAA6F4H,EAAA,CAAjFC,MAAOnK,EAAAoK,QAAUlD,QAAKzF,EAAA,MAAAA,EAAA,IAAAZ,GAAEb,EAAAoK,QAAUvJ,EAAOwJ,OAAOF,OAAQrE,OAAIrE,EAAA,MAAAA,EAAA,IAAAZ,GAAEL,EAAA8J,QAAQzJ,K,8FCzEnFpB,MAAM,iB,SAGJA,MAAM,oB,iBAKFA,MAAM,Q,GAKNA,MAAM,Q,SAMVA,MAAM,sB,sEApBfS,EAAAA,EAAAA,IA6BaoF,EAAAA,GAAA,OA5BX3F,EAAAA,EAAAA,GA2BM,MA3BNI,EA2BM,CA1BWC,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,KAEgBJ,EAAAuK,cAgBCvK,EAAAuK,gBAAa,WAAxDzK,EAAAA,EAAAA,IAOM,MAPNF,EAOM,cANJM,EAAAA,EAAAA,KAKoCsK,EAAAA,EAAAA,IAJ3BxK,EAAAuK,eAAa,CACjB3G,OAAQrC,EAAAqC,OACRjC,OAAIF,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAAuK,cAAgB,MACtBlB,aAAW5H,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,cAAe/B,IAClCiF,OAAIrE,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,OAAQ/B,K,0CAtB4B,WAAvDf,EAAAA,EAAAA,IAcM,MAdNO,EAcM,gBAbJP,EAAAA,EAAAA,IAYMQ,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAX0BP,EAAAyK,gBAAc,CAAjCC,EAAUvI,M,WADvBrC,EAAAA,EAAAA,IAYM,OAZDL,MAAM,OAELW,IAAK+B,EACLvB,QAAKC,GAAEb,EAAAuK,cAAgBG,G,EAC3B/K,EAAAA,EAAAA,GAIM,MAJNsB,EAIM,CADKjB,EAAA2K,kBAAkBxI,GAAMyI,OAAI,WAFrC9K,EAAAA,EAAAA,IAEyC,KAFzC+K,EAAAA,EAAAA,IAEyC,CAAAzK,IAAA,GAF9BJ,EAAA2K,kBAAkBxI,GAAMyI,KAAI,CACnChE,MAAK,CAAAkE,MAAW9K,EAAA2K,kBAAkBxI,GAAMyI,MAAME,OAAS,a,6BAG7DnL,EAAAA,EAAAA,GAEM,MAFNyB,GAEMF,EAAAA,EAAAA,IADDlB,EAAA2K,kBAAkBxI,GAAMA,MAAI,Y,oDAwB3C,GACEkB,MAAO,CAAC,cAAe,QACvBH,OAAQ,CAACC,EAAAA,GACTL,WAAY,CACViI,QAAO,IACP9H,QAAOA,EAAAA,GAGTK,MAAO,CACLM,OAAQ,CACN3B,KAAMyB,OACNF,QAAS,KAIbK,IAAAA,GACE,MAAO,CACL5D,SAAS,EACTsK,cAAe,KACfE,eAAgB,CAAC,EACjBE,kBAAmBA,EAEvB,EAEAlG,QAAS,CACPuG,qBAAAA,CAAsB/I,GACpB,MAAMgJ,GAAYC,EAAAA,EAAAA,KAChBC,EAAAA,EAAAA,KACE,IAAM,QAAQ,KAAsClJ,QAIxD6B,KAAKtD,SAASsC,WAAWb,GAAQgJ,EACjCnH,KAAK2G,eAAexI,GAAQgJ,CAC9B,EAEA,2BAAMG,GACJ,MAAMC,QAAevH,KAAKmB,QAAQ,cAClCnB,KAAK2G,eAAiB,CAAC,EAEvB3G,KAAKkH,sBAAsB,QAEvBK,EAAOC,SACTxH,KAAKkH,sBAAsB,UAC/B,GAGF7F,OAAAA,GACErB,KAAKsH,uBACP,G,UClFF,MAAMhG,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,Q,yECPS3F,MAAM,O,SACJA,MAAM,6B,UAGPE,EAAAA,EAAAA,GAA0B,KAAvBF,MAAM,gBAAc,W,GAAvB6J,G,GAIO7J,MAAM,c,SAMZA,MAAM,6B,GAEAA,MAAM,c,SAMZA,MAAM,6B,GACFA,MAAM,c,eAMVA,MAAM,8B,UAEPE,EAAAA,EAAAA,GAAyB,KAAtBF,MAAM,eAAa,W,GAAtBsC,G,UAMApC,EAAAA,EAAAA,GAAsC,KAAnCF,MAAM,4BAA0B,W,GAAnC4C,G,UAOA1C,EAAAA,EAAAA,GAAyB,KAAtBF,MAAM,eAAa,W,GAAtB8L,G,+FA7CRzL,EAAAA,EAAAA,IAwDM,OAxDDL,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,SAAQ,eAAyBhC,EAAAwI,kB,EAC1C7I,EAAAA,EAAAA,GA+CM,MA/CNI,EA+CM,CA9C0D,WAAjBwB,EAAAyF,eAAY,WAAzDlH,EAAAA,EAAAA,IAWM,MAXNO,EAWM,EAVJV,EAAAA,EAAAA,GAGS,UAHD6J,MAAM,SAAS/J,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,aAAY,CAAAwJ,SAAoBxL,EAAAwI,iBACpD5H,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAAwI,eAAiBxI,EAAAwI,gB,MAIjC7I,EAAAA,EAAAA,GAIO,QAJA8L,SAAMhK,EAAA,KAAAA,EAAA,IAAAiK,EAAAA,EAAAA,KAAA,IAAAhK,IAAUlB,EAAAgG,QAAAhG,EAAAgG,UAAA9E,IAAM,e,EAC3B/B,EAAAA,EAAAA,GAEQ,QAFRyB,EAEQ,WADNzB,EAAAA,EAAAA,GAA0D,SAAnDsC,KAAK,SAAS0J,YAAY,S,qCAAkB3L,EAAA4L,MAAK/K,I,iBAALb,EAAA4L,YAAK,OAKK,aAAjBrK,EAAAyF,eAAY,WAA9DlH,EAAAA,EAAAA,IAMM,MANNF,EAMM,EALJD,EAAAA,EAAAA,GAIO,QAJA8L,SAAMhK,EAAA,KAAAA,EAAA,IAAAiK,EAAAA,EAAAA,KAAA7K,GAAU8B,EAAAC,MAAM,cAAe5C,EAAA6L,aAAU,e,EACpDlM,EAAAA,EAAAA,GAEQ,QAFR0B,EAEQ,WADN1B,EAAAA,EAAAA,GAAwE,SAAjEsC,KAAK,SAAS0J,YAAY,kB,qCAA2B3L,EAAA6L,WAAUhL,I,iBAAVb,EAAA6L,iBAAU,OAKT,YAAjBtK,EAAAyF,eAAY,WAA9DlH,EAAAA,EAAAA,IAKM,MALNwB,EAKM,EAJJ3B,EAAAA,EAAAA,GAGQ,QAHRE,EAGQ,EAFNF,EAAAA,EAAAA,GACqD,SAD9CsC,KAAK,SAAS0J,YAAY,SAAUxB,MAAO5I,EAAAmG,cAAgBoE,SAAMrK,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,SAAU/B,EAAOwJ,OAAOF,QAChG4B,QAAKtK,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,SAAU/B,EAAOwJ,OAAOF,S,iCAIjDxK,EAAAA,EAAAA,GAiBM,MAjBNqM,EAiBM,CAhBmEzK,EAAA0K,gBAAa,WAApFnM,EAAAA,EAAAA,IAES,U,MAFDL,MAAM,SAAS+J,MAAM,OAAQ5I,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,gB,oBAKHrB,EAAA+F,oBAAsB/F,EAAAiG,eAAoD,SAAjBjG,EAAAiG,aAAavF,OAAoBV,EAAAiG,aAAa3E,KAAG,IAAQqJ,WAAU,yBAD3KpM,EAAAA,EAAAA,IAIS,U,MAJD0J,MAAM,mBAAmB/J,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,eAAc,CAAAwJ,SAAyC,MAArBjK,EAAAkG,qBAChE7G,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,oB,uBAKtBN,EAAAA,EAAAA,IACoD6J,EAAA,CAD1C,cAAa5K,EAAAiE,WAAaoD,SAAMnH,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,gBAAiB/B,IACzDuL,SAAM3K,EAAA,MAAAA,EAAA,IAAAZ,GAAE8B,EAAAC,MAAM,gBAAiB/B,K,yBAEzClB,EAAAA,EAAAA,GAES,UAFD6J,MAAM,WAAY5I,QAAKa,EAAA,MAAAA,EAAA,IAAAZ,GAAE8B,EAAAC,MAAM,c,QAM3CjD,EAAAA,EAAAA,GAKM,OALDF,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,qBAAoB,CAAAqK,QAAmBrM,EAAAwI,kB,gBAChD1I,EAAAA,EAAAA,IAGQQ,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHgB+L,OAAOC,KAAKhL,EAAAgG,UAAtBiF,K,WAAd1M,EAAAA,EAAAA,IAGQ,SAHuCM,IAAKoM,GAAM,EACxD7M,EAAAA,EAAAA,GAA6F,SAAtFsC,KAAK,WAAYwK,QAASlL,EAAAgG,QAAQiF,GAAUV,SAAMjL,GAAE8B,EAAAC,MAAM,gBAAiB4J,I,oBAAW,KAC7FtL,EAAAA,EAAAA,IAAGsL,GAAM,Q,uBCrDV/M,MAAM,iB,GACJA,MAAM,W,GAeNA,MAAM,W,GAKFA,MAAM,W,SAINA,MAAM,c,uPAzBjBK,EAAAA,EAAAA,IAkCM,MAlCNC,EAkCM,EAjCJJ,EAAAA,EAAAA,GAaM,MAbNU,EAaM,EAZJiC,EAAAA,EAAAA,IACuEoK,EAAA,CAD1DC,OAAuC,qBAA/B3M,EAAA0F,gBAAgBF,WAAoCxF,EAAA0F,eAAiB,KAC9EhG,IAAI,mBAAoB0M,SAAM3K,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,SAAU/B,K,oBAC5DyB,EAAAA,EAAAA,IAC2CsK,EAAA,CADpCD,OAAuC,eAA/B3M,EAAA0F,gBAAgBF,WAA8BxF,EAAA0F,eAAiB,KAAMhG,IAAI,aAChF0M,SAAM3K,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,SAAU/B,K,oBAChCyB,EAAAA,EAAAA,IAC8CuK,EAAA,CADpCF,OAAuC,kBAA/B3M,EAAA0F,gBAAgBF,WAAiCxF,EAAA0F,eAAiB,KAAMhG,IAAI,gBACnF0M,SAAM3K,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,SAAU/B,K,oBACnCyB,EAAAA,EAAAA,IACyCwK,EAAA,CADnCH,OAAuC,cAA/B3M,EAAA0F,gBAAgBF,WAA6BxF,EAAA0F,eAAiB,KAAMhG,IAAI,YAChF0M,SAAM3K,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,SAAU/B,K,oBAC9ByB,EAAAA,EAAAA,IAC+CyK,EAAA,CADnCJ,OAAuC,oBAA/B3M,EAAA0F,gBAAgBF,WAAmCxF,EAAA0F,eAAiB,KAAMhG,IAAI,kBACtF0M,SAAM3K,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,SAAU/B,K,oBACpCyB,EAAAA,EAAAA,IACyC0K,EAAA,CADnCL,OAAuC,cAA/B3M,EAAA0F,gBAAgBF,WAA6BxF,EAAA0F,eAAiB,KAAMhG,IAAI,YAChF0M,SAAM3K,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,SAAU/B,K,sBAGhClB,EAAAA,EAAAA,GAiBM,MAjBN2J,EAiBM,EAhBJhH,EAAAA,EAAAA,IAeWC,EAAA,CAfAiH,MAAOxJ,EAAA0F,gBAAgBvD,MAAQ,UAC/B,aAAYnC,EAAA0F,eAAiB1F,EAAA0F,eAAelB,UAAY,qB,mBACjE,IAA0B,CAAXxE,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAE1BT,EAAAA,EAAAA,GAEM,MAFNsB,EAEM,EADJqB,EAAAA,EAAAA,IAA4EG,EAAA,CAA9DC,KAAK,UAAU,aAAW,iBAAkB9B,QAAOJ,EAAAkE,S,sBAGpC1E,EAAAiN,SAAS9L,QAAwB,iBAAlB,WAA9CrB,EAAAA,EAAAA,IAAsE,MAAtEsB,EAAgD,uBAAgB,aAEhEtB,EAAAA,EAAAA,IAIMQ,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAJoCP,EAAAiN,SAAO,CAArBN,EAAQhM,M,WAApCb,EAAAA,EAAAA,IAIM,OAJDL,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,SAAQ,CAAAwJ,SACuB,MAAlBxL,EAAA0F,gBAA0B1F,EAAA0F,eAAeF,aAAemH,EAAOnH,YAA2BxF,EAAA0F,eAAevD,OAASwK,EAAOxK,QAD7F/B,IAAKO,G,EAGvD2B,EAAAA,EAAAA,IAA2FG,EAAA,CAA5EC,KAAMiK,EAAOxK,KAAO,aAAYwK,EAAOnI,UAAY5D,QAAKC,GAAEL,EAAA0M,OAAOP,I,uKC9BxF7M,EAAAA,EAAAA,IAAO,M,gBCGT,IACEqC,KAAM,QACNe,OAAQ,CAACC,EAAAA,EAAOC,GAAAA,GAChBC,MAAO,CAAC,UAERC,MAAO,CACLqJ,OAAQ,CACN1K,KAAMqK,SAIVzI,IAAAA,GACE,MAAO,CACLW,UAAW,KACXrC,KAAM,KACNqD,WAAY,KAEhB,EAEAf,QAAS,CACP,gBAAM0I,GACJ,MAAO,CAAC,CACN3I,UAAWV,KAAKU,UAChBrC,KAAM2B,KAAK3B,KACXqD,WAAY1B,KAAK0B,WACjByF,UAAWnH,KACX2B,aAAc3B,KAAK2B,UAEvB,EAEA,YAAMA,GACJ,aAAa3B,KAAKmB,QAAS,GAAEnB,KAAK0B,oBACpC,EAEA,UAAMsD,CAAKsE,EAAUC,GACnB,OAAKD,QAIQtJ,KAAKmB,QAAS,GAAEnB,KAAK0B,kBAAmB,CAAC4H,SAAUA,EAASvK,IAAKyK,UAAWD,UAH1EvJ,KAAKiC,OAItB,EAEA,WAAMA,GACJ,aAAajC,KAAKmB,QAAS,GAAEnB,KAAK0B,mBACpC,EAEA,UAAMU,GACJ,aAAapC,KAAKmB,QAAS,GAAEnB,KAAK0B,kBACpC,EAEA,eAAMY,CAAUmH,GACd,aAAazJ,KAAKmB,QAAS,GAAEnB,KAAK0B,wBAAyB,CAAC+H,OAAQA,GACtE,EAEA,gBAAM7G,GACJ,aAAa5C,KAAKmB,QAAS,GAAEnB,KAAK0B,kBACpC,EAEA,UAAMc,CAAKkH,GACT,aAAa1J,KAAKmB,QAAS,GAAEnB,KAAK0B,kBAAmB,CAACgI,SAAUA,GAClE,EAEA,gBAAMC,CAAWC,GACf,MAAMC,QAAe7J,KAAK8J,aAAaF,GAEnCC,GAAUD,EAAMlE,OAClB1F,KAAK+J,OAAO,CACVrE,MAAOkE,EAAMf,QAAUe,EAAMI,QAAUhK,KAAK6I,QAAQxK,MAAQ2B,KAAK3B,MAAQ2B,KAAK0B,WAC9E9C,KAAMgL,EAAMlE,MACZuE,MAAO,CACLvJ,UAAWV,KAAKU,WAAa,eAIrC,EAEA,kBAAMoJ,CAAaF,GACjB,OAAIA,EAAMM,SAAWlK,KAAK0B,aAG1B1B,KAAKlB,MAAM,eAAgBkB,KAAK2B,WACzB,EACT,EAEA,kBAAMwI,CAAaZ,SACXvJ,KAAKmB,QAAS,GAAEnB,KAAK0B,2BAA4B,CAAC0I,SAAUb,UAC5DvJ,KAAKmB,QAAS,GAAEnB,KAAK0B,8BAA+B,CAACiE,SAAS,GACtE,EAEA,qBAAM0E,SACErK,KAAKmB,QAAS,GAAEnB,KAAK0B,8BAA+B,CAACiE,SAAS,GACtE,EAEA2E,QAAAA,CAAShB,GACP,MAA0B,SAAnBA,GAAUnL,MAAsC,YAAnBmL,GAAUnL,OACzCmL,EAASvK,KAAOuK,GAAUlB,WAAW,aAAekB,EAASvK,KAAOuK,GAAUlB,WAAW,aACzFkB,EAASvK,KAAOuK,GAAUlB,WAAW,WAC5C,GAGF/G,OAAAA,GACErB,KAAKuK,UAAUvK,KAAK2J,WAAa,gBAAe3J,KAAK0B,aACjD,sDAEJ1B,KAAKuK,UAAUvK,KAAK8J,aAAe,kBAAiB9J,KAAK0B,aACrD,+CACA,+CACA,gDACA,+CACA,wDACA,sDACN,EAEA8I,OAAAA,GACExK,KAAKyK,YAAa,kBAAiBzK,KAAK0B,aAC1C,GCpHF,MAAM,GAAc,GAEpB,UFEA,IACErD,KAAM,aACNe,OAAQ,CAACsL,IACT3K,IAAAA,GACE,MAAO,CACL1B,KAAM,aACNqD,WAAY,mBACZhB,UAAW,oBAEf,EAEAC,QAAS,CACP,gBAAM0I,GACJ,MAAMsB,EAAUnC,OAAOoC,aACf5K,KAAKmB,QAAS,GAAEnB,KAAK0B,sBAG7B,OAAOmJ,QAAQC,IAAIH,EAAQI,KAAIC,UACtB,IACFhB,EACHtJ,UAA2B,UAAhBsJ,EAAO7L,KAAmB,kBAAoB,oBACzDuD,WAAY1B,KAAK0B,WACjByF,UAAWnH,SAGjB,EAEAiL,aAAAA,CAAcpC,GACZ,MAAsB,kBAAXA,EACFA,EAEJA,EAGEA,GAAQxK,KAFN2B,KAAK6I,QAAQxK,IAGxB,EAEA,YAAMsD,CAAOkH,GACX,aACQ7I,KAAKmB,QAAS,GAAEnB,KAAK0B,oBAAqB,CAACwJ,WAAYlL,KAAKiL,cAAcpC,OAC/ElH,MACL,EAEA,UAAMqD,CAAKsE,EAAUT,GACnB,OAAKS,QAIQtJ,KAAKmB,QAAS,GAAEnB,KAAK0B,kBAAmB,CAAC4H,SAAUA,EAASvK,IAAKmM,WAAYlL,KAAKiL,cAAcpC,WAH9F7I,KAAKiC,MAAM4G,EAI5B,EAEA,WAAM5G,CAAM4G,GACV,aAAa7I,KAAKmB,QAAS,GAAEnB,KAAK0B,mBAAoB,CAACwJ,WAAYlL,KAAKiL,cAAcpC,IACxF,EAEA,UAAMzG,CAAKyG,GACT,aAAa7I,KAAKmB,QAAS,GAAEnB,KAAK0B,kBAAmB,CAACwJ,WAAYlL,KAAKiL,cAAcpC,IACvF,EAEA,eAAMvG,CAAUmH,EAAQZ,GACtB,aAAa7I,KAAKmB,QAAS,GAAEnB,KAAK0B,wBAAyB,CAAC+H,OAAQA,EAAQyB,WAAYlL,KAAKiL,cAAcpC,IAC7G,EAEA,UAAMrG,CAAKkH,EAAUb,GACnB,aAAa7I,KAAKmB,QAAS,GAAEnB,KAAK0B,kBAAmB,CAACgI,SAAUA,EAAUwB,WAAYlL,KAAKiL,cAAcpC,IAC3G,EAEA,kBAAMiB,CAAaF,GACjB,OAAIA,EAAMM,SAAWlK,KAAK0B,aAG1B1B,KAAKlB,MAAM,eAAgBkB,KAAK2B,OAAOiI,EAAMf,UACtC,EACT,EAEAyB,QAAAA,GACE,OAAO,CACT,IG/EJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,U,2CCNEtO,EAAAA,EAAAA,IAAO,M,CAMT,QACEqC,KAAM,OACNe,OAAQ,CAACsL,IACT3K,IAAAA,GACE,MAAO,CACLW,UAAW,aACXrC,KAAM,OACNqD,WAAY,aAEhB,EAEAf,QAAS,CACP,gBAAM0I,GACJ,MAAO,CAAC,CACN3I,UAAWV,KAAKU,UAChBgB,WAAY1B,KAAK0B,WACjBrD,KAAM2B,KAAKmL,MAAM5D,OAAO,eAAe6D,MAAQpL,KAAK3B,KACpD8I,UAAWnH,KACX2B,aAAc3B,KAAKmB,QAAS,GAAEnB,KAAK0B,sBAEvC,EAEA4I,QAAAA,CAAShB,GACP,MAA0B,YAAnBA,GAAUnL,OAAuBmL,EAASvK,KAAOuK,GAAUlB,WAAW,aACxEkB,EAASvK,KAAOuK,GAAUlB,WAAW,WAC5C,IC3BJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,U,2CCNEpM,EAAAA,EAAAA,IAAO,M,CAMT,QACEqC,KAAM,UACNe,OAAQ,CAACsL,IACT3K,IAAAA,GACE,MAAO,CACLW,UAAW,WACXrC,KAAM,UACNqD,WAAY,gBAEhB,GCXF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,U,2CCNE1F,EAAAA,EAAAA,IAAO,M,CAMT,QACEqC,KAAM,MACNe,OAAQ,CAACsL,IACT3K,IAAAA,GACE,MAAO,CACLW,UAAW,WACXrC,KAAM,MACNqD,WAAY,YAEhB,GCXF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,U,2CCNE1F,EAAAA,EAAAA,IAAO,M,CAMT,QACEqC,KAAM,YACNe,OAAQ,CAACsL,IACT3K,IAAAA,GACE,MAAO,CACLW,UAAW,WACXrC,KAAM,YACNqD,WAAY,kBAEhB,GCXF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,U,2CCNE1F,EAAAA,EAAAA,IAAO,M,CAMT,QACEqC,KAAM,MACNe,OAAQ,CAACsL,IACT3K,IAAAA,GACE,MAAO,CACLW,UAAW,WACXrC,KAAM,MACNqD,WAAY,YAEhB,GCXF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,Ud2CA,IACErD,KAAM,UACNW,WAAY,CAACG,QAAO,IAAEF,aAAY,KAAEC,SAAQ,KAAEmM,WAAU,GAAEC,KAAI,GAAEC,QAAO,GAAEC,IAAG,GAAEC,UAAS,GAAEC,IAAGA,IAC5FnM,MAAO,CAAC,SAAU,UAElBC,MAAO,CACLkC,WAAY,CACVvD,KAAMyB,OACN+L,UAAU,IAId5L,IAAAA,GACE,MAAO,CACL5D,SAAS,EACTgN,QAAS,GACTvH,eAAgB,KAChB2F,OAAQ,CAAC,EACTqE,QAAS,GAEb,EAEAjL,QAAS,CACPkL,WAAAA,GACE7L,KAAK4L,QAAUpD,OAAOsD,QAAQ9L,KAAKc,OAAOhB,QAAQiM,GAAMA,EAAE,GAAGC,SAAS,YAAWjB,KAAKgB,GAAMA,EAAE,IAChG,EAEA,aAAMnL,GACJZ,KAAKmJ,QAAU,GACfnJ,KAAK7D,SAAU,EACf,MAAMoL,EAASvH,KAAKmL,MAAM5D,OAE1B,UACQsD,QAAQC,IAAI9K,KAAK4L,QAAQb,KAAIC,UACjC,KAAMd,EAAOxI,cAAc6F,GACzB,OAEF,MAAM4B,QAAgBe,EAAOb,aAC7BrJ,KAAKmJ,QAAQ8C,QAAQ9C,GAEM,MAAvBnJ,KAAK4B,gBAA0BsI,EAAOxI,aAAe1B,KAAK0B,YAAcyH,EAAQ9L,OAAS,GAC3F2C,KAAKoJ,OAAOD,EAAQ,GACtB,IAEJ,CAAE,QACAnJ,KAAK7D,SAAU,CACjB,CACF,EAEAiN,MAAAA,CAAOP,GACL7I,KAAK4B,eAAiBiH,EACtB7I,KAAKlB,MAAM,SAAU+J,EACvB,GAGF,aAAMxH,SACErB,KAAK6L,oBACL7L,KAAKY,SACb,GerGF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,MAEpE,UhBqDA,IACEvC,KAAM,SACNW,WAAY,CAACkN,QAAOA,IACpB3M,MAAO,CACL,SACA,WACA,gBACA,SACA,gBACA,iBACA,gBACA,aACA,eAGFC,MAAO,CACLkC,WAAY,CACVvD,KAAMyB,OACN+L,UAAU,GAGZzI,aAAc,CACZ/E,KAAMyB,OACN+L,UAAU,GAGZhI,kBAAmB,CACjBxF,KAAMyB,QAGR8D,aAAc,CACZvF,KAAMqK,QAGRhF,mBAAoB,CAClBrF,KAAMsB,QACNC,SAAS,GAGXyI,cAAe,CACbhK,KAAMsB,SAGRmE,cAAe,CACbzF,KAAMyB,OACNF,QAAS,IAGX+D,QAAS,CACPtF,KAAMqK,OACN9I,QAASA,SAIbK,IAAAA,GACE,MAAO,CACL2E,eAAe,EACfoD,MAAO,GACPC,WAAY,GAEhB,EAEApH,QAAS,CACP+B,MAAAA,GACE,MAAMyJ,EAAQ3D,OAAOC,KAAKzI,KAAKyD,SAAS3D,QAAQ4I,GAAW1I,KAAKyD,QAAQiF,KACnE1I,KAAK8H,OAAOzK,QAAW8O,GAAO9O,QAGnC2C,KAAKlB,MAAM,SAAU,CACnBgJ,MAAO9H,KAAK8H,MACZqE,MAAOA,GAEX,GAGF9K,OAAAA,GACErB,KAAKoM,QAAO,IAAMpM,KAAKkD,eAAc,KACnClD,KAAKlB,MAAM,SAAU,IACrBkB,KAAK+H,WAAa,GAClB/H,KAAK8H,MAAQ,EAAC,GAElB,GiBxIF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,U,oFCNMjM,EAAAA,EAAAA,GAAwB,KAArBF,MAAM,cAAY,W,IAArBM,I,kEAFJD,EAAAA,EAAAA,IASM,aARJH,EAAAA,EAAAA,GAES,UAFDF,MAAM,qBAAsBmB,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,Y,mBAIjD9C,EAAAA,EAAAA,IAGKQ,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHsBC,EAAA2P,gBAAc,CAA7BnH,EAAM7G,M,WAAlBrC,EAAAA,EAAAA,IAGK,MAHuCM,IAAK+B,EAAOqH,MAAOR,EAAKoH,YAC/D3Q,OAAKuC,EAAAA,EAAAA,IAAA,CAAAwJ,SAAarJ,IAASZ,EAAAyF,eAAgBpG,QAAKC,GAAE8B,EAAAC,MAAM,QAAST,I,EACpExC,EAAAA,EAAAA,GAA6B,KAAzBF,OAAKuC,EAAAA,EAAAA,IAAEgH,EAAKxE,Y,2BAMtB,QACEnB,MAAO,CAAC,QAAS,UACjBC,MAAO,CACL0D,aAAc,CACZ/E,KAAMyB,QAGR2M,UAAW,CACTpO,KAAMsB,QACNC,SAAS,GAGXyD,cAAe,CACbhF,KAAMyB,QAGR4M,MAAO,CACLrO,KAAMqK,OACN9I,QAASA,KACA,CACLgD,OAAQ,CACNhC,UAAW,eACX4L,YAAa,UAGfG,QAAS,CACP/L,UAAW,eACX4L,YAAa,WAGfI,SAAU,CACRhM,UAAW,eACX4L,YAAa,gBAOvBpM,SAAU,CACRmM,cAAAA,GACE,MAAMG,EAAQ,IAAIxM,KAAKwM,OAIvB,OAHKxM,KAAKmD,eAAe9F,eAChBmP,EAAME,SAERF,CACT,ICrDJ,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,4ECRO7Q,MAAM,uB,IACJA,MAAM,S,YAGPE,EAAAA,EAAAA,GAEM,OAFDF,MAAM,cAAY,EACrBE,EAAAA,EAAAA,GAAuB,KAApBF,MAAM,gBAAW,K,YAGtBE,EAAAA,EAAAA,GAAoC,OAA/BF,MAAM,gBAAe,QAAI,K,IAJ9B6J,GAIArI,I,mBAKKxB,MAAM,c,UACNA,MAAM,c,UAENA,MAAM,2B,IAMVA,MAAM,U,uEAtBbK,EAAAA,EAAAA,IAyBM,MAzBNC,GAyBM,EAxBJJ,EAAAA,EAAAA,GAmBM,MAnBNU,GAmBM,CAlBWL,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAC1BT,EAAAA,EAAAA,GAMM,OANDF,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,WAAU,CAAAwJ,SAAoC,MAAhBxL,EAAAwH,gBAAwB5G,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAEb,EAAAwH,aAAe,O,qBAQvF1H,EAAAA,EAAAA,IAQMQ,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAR2EP,EAAA+E,OAAK,CAAhB0L,EAAK9P,M,WAA3Eb,EAAAA,EAAAA,IAQM,OARDL,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,WAAU,CAAAwJ,SAAoBxL,EAAAwH,eAAiB7G,KAA+BP,IAAKO,EACxFC,QAAKC,GAAEb,EAAAwH,aAAe7G,G,EAC1BhB,EAAAA,EAAAA,GAIM,MAJN0B,GAIM,CAHwBoP,EAAIC,UAAO,WAAvC5Q,EAAAA,EAAAA,IAA2C,IAA3CwB,KACmEmP,EAAIE,SAAM,WAA7E7Q,EAAAA,EAAAA,IAAiF,K,MAA9EL,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,YAAW,aAAsByO,EAAIE,Y,sBAC9C7Q,EAAAA,EAAAA,IAA4C,IAA5CD,QAA4C,QACxC,KACNqB,EAAAA,EAAAA,IAAGuP,EAAIG,aAAW,c,SAItBjR,EAAAA,EAAAA,GAEM,MAFNkR,GAEM,EADJlR,EAAAA,EAAAA,GAAwG,UAA/FiB,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,cAA+B,MAAhB5C,EAAAwH,aAAuB,KAAOxH,EAAA+E,MAAM/E,EAAAwH,iBAAgB,a,CAS/F,QACErF,KAAM,YACNe,OAAQ,CAACC,EAAAA,GACTL,WAAY,CAACG,QAAOA,EAAAA,GACpBI,MAAO,CAAC,eACRC,MAAO,CACLsG,KAAM,CACJ3H,KAAMqK,OACN9I,QAASA,SAIbK,IAAAA,GACE,MAAO,CACL5D,SAAS,EACT8E,MAAO,GACPyC,aAAc,KAElB,EAEA/C,QAAS,CACP,aAAMC,GACJZ,KAAK7D,SAAU,EAEf,IACE6D,KAAKiB,YAAcjB,KAAKmB,QAAQ,yBAA0B,CAACmI,SAAUtJ,KAAK8F,KAAK/G,IAAKiO,SAAU,OAChG,CAAE,QACAhN,KAAK7D,SAAU,CACjB,CACF,GAGFkF,OAAAA,GACErB,KAAKY,SACP,GC5DF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,2ECPSjF,MAAM,O,IAUNA,MAAM,c,4BAEPE,EAAAA,EAAAA,GAA0B,KAAvBF,MAAM,cAAY,W,2CAb3BK,EAAAA,EAAAA,IAgBO,QAhBDL,MAAM,aAAcgM,SAAMhK,EAAA,KAAAA,EAAA,IAAAiK,EAAAA,EAAAA,KAAA7K,GAAU8B,EAAAC,MAAM,OAAQ5C,EAAAmK,QAAK,e,EAC3DxK,EAAAA,EAAAA,GAQM,MARNI,GAQM,EAPJJ,EAAAA,EAAAA,GAMQ,uBAND,wDAEL,SAAAA,EAAAA,EAAAA,GAGmB,SAHZsC,KAAK,O,qCACIjC,EAAAmK,MAAKtJ,GACdnB,IAAI,eACJqR,UAAA,I,iBAFS/Q,EAAAmK,cAMpBxK,EAAAA,EAAAA,GAIM,MAJNU,GAIM,EAHJV,EAAAA,EAAAA,GAES,UAFDsC,KAAK,SAAU+O,UAAWhR,EAAAmK,OAAOhJ,Q,CACvCF,IAA0B,mBAC5B,Y,CAMN,QACEoC,MAAO,CAAC,QAAS,QACjBC,MAAO,CACLgH,QAAS,CACPrI,KAAMyB,OACNF,QAAS,KAIbK,IAAAA,GACE,MAAO,CACLsG,MAAOrG,KAAKwG,QAEhB,GC3BF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U1BwFA,IACEnI,KAAM,QACNe,OAAQ,CAACC,EAAAA,EAAOC,GAAAA,GAChBN,WAAY,CACViI,QAAO,EACPkG,OAAM,GACNhO,QAAO,IACPiO,UAAS,KACTC,MAAK,IACLC,IAAG,GACHC,QAAO,KACPC,UAAS,GACTC,YAAW,KACXC,UAASA,IAGXlO,MAAO,CACLkC,WAAY,CACVvD,KAAMyB,OACN+L,UAAU,GAGZ5J,aAAc,CACZ5D,KAAMqK,OACN9I,QAASA,KACA,CACLiO,UAAU,EACVC,MAAM,EACNxL,MAAM,MAMdrC,IAAAA,GACE,MAAO,CACL5D,SAAS,EACTyI,QAAS,GACTC,eAAgB,KAChBjD,eAAgB,KAChBsB,aAAc,SACdS,kBAAmB,KACnBQ,oBAAoB,EACpBb,cAAc,EACduK,oBAAqB,KACrBvH,QAAS,KACT1C,cAAe,KACfT,cAAe,KACf2K,eAAgB,CACd,UACA,YAGFrK,QAAS,CACP,MAAQ,EACR,SAAW,EACX,SAAW,GAGjB,EAEAvD,SAAU,CACRsD,kBAAAA,GACE,MAAO,oBAAqBxD,KAAKmL,MAAM5D,MACzC,EAEAvE,iBAAAA,GACE,OAAIhD,KAAKsD,aACA,CACLyK,QAAS,mBAGN,CAAC,CACV,EAEArK,YAAAA,GACE,OACE1D,KAAK4B,gBAAkB5B,KAAK4B,eAAeD,SAEJ,SAArC3B,KAAK4B,eAAeD,OAAOoE,OACU,UAArC/F,KAAK4B,eAAeD,OAAOoE,OAGtB/F,KAAK4B,eAAeD,OAEtB3B,KAAK4E,QAAQ5E,KAAK6E,eAC3B,GAGFlE,QAAS,CACP,YAAM+B,CAAOkH,GACX5J,KAAK7D,SAAU,EAEf,IACE6D,KAAK4E,cAAgB5E,KAAKmB,QAAS,GAAEnB,KAAK0B,oBAAqBkI,EACjE,CAAE,QACA5J,KAAK7D,SAAU,CACjB,CACF,EAEA,UAAM6I,CAAKc,GACT,GAAmB,YAAfA,GAAM3H,KAUR,OATA6B,KAAK6N,oBAAsB/H,EAAK/G,IAChCiB,KAAK+J,OAAO,CACVnL,KAAM,8BACNqL,MAAO,CACLvJ,UAAW,6BAITV,KAAKoF,SAASU,GAItB9F,KAAK7D,SAAU,EAEf,IACO6D,KAAK4B,eAAeuF,UAAUmD,SAASxE,KAC1CA,QAAa9F,KAAKgO,eAAelI,EAAM9F,KAAK0B,mBAExC1B,KAAK4B,eAAeuF,UAAUnC,KAAKc,EAAM9F,KAAK2D,kBAAmB3D,KAAK4B,sBACtE5B,KAAKY,SACb,CAAE,QACAZ,KAAK7D,SAAU,CACjB,CACF,EAEA,WAAM8F,SACEjC,KAAK4B,eAAeuF,UAAUlF,MAAMjC,KAAK4B,sBACzC5B,KAAKY,SACb,EAEA,UAAMwB,SACEpC,KAAK4B,eAAeuF,UAAU/E,KAAKpC,KAAK4B,sBACxC5B,KAAKY,SACb,EAEA,eAAM0B,CAAUmH,SACRzJ,KAAK4B,eAAeuF,UAAU7E,UAAUmH,EAAQzJ,KAAK4B,sBACrD5B,KAAKY,SACb,EAEA,gBAAMgC,SACE5C,KAAK4B,eAAeuF,UAAUvE,WAAW5C,KAAK4B,sBAC9C5B,KAAKY,SACb,EAEA,UAAM4B,CAAKkH,SACH1J,KAAK4B,eAAeuF,UAAU3E,KAAKkH,EAAU1J,KAAK4B,sBAClD5B,KAAKY,SACb,EAEA,UAAMsE,CAAKY,GACT,MAAMmI,QAAYjO,KAAKgO,eAAelI,EAAM9F,KAAK0B,YAAY,GAC7DwM,OAAOC,KAAKF,EAAIlP,IAAK,SACvB,EAEA,cAAMqG,CAASU,GACM,YAAfA,GAAM3H,YACF6B,KAAKiE,gBAAgB6B,EAE/B,EAEA,aAAMlF,GACJZ,KAAK4B,eAAeD,aAAe3B,KAAK4B,eAAeuF,UAAUxF,OAAO3B,KAAK4B,eAC/E,EAEAmC,cAAAA,CAAepC,GACR3B,KAAK4B,iBAGV5B,KAAK4B,eAAeD,OAASA,EAC/B,EAEAwE,kBAAAA,GACE,MAAMiI,EAAQpO,KAAKc,MAAMuN,aACzBrO,KAAKsG,QAAU,GACf8H,EAAMvN,WAAU,KACd,MAAMyN,EAAQF,EAAMG,IAAIC,cAAc,oBAClCF,IACFA,EAAMG,QACNH,EAAMlF,SACR,GAEJ,EAEAsF,eAAAA,CAAgB9E,GACd5J,KAAK+J,OAAO,CACVrE,MAAO,8BACP9G,KAAMgL,EAAMvL,KACZ4L,MAAO,CACLvJ,UAAW,iBAGjB,EAEAiO,iBAAAA,CAAkB/E,GAChB5J,KAAK+J,OAAO,CACVrE,MAAO,8BACP9G,KAAMgL,EAAMvL,KACZ4L,MAAO,CACLvJ,UAAW,eAGjB,EAEAkO,sBAAAA,CAAuBhF,GACrB5J,KAAK+J,OAAO,CACVrE,MAAO,2BACP9G,KAAMgL,EAAMvL,KACZ4L,MAAO,CACLvJ,UAAW,mBAGjB,EAEAmO,0BAAAA,CAA2BjF,GACzB5J,KAAK+J,OAAO,CACVrE,MAAO,6BACP9G,KAAMgL,EAAMvL,KACZ4L,MAAO,CACLvJ,UAAW,gBAGjB,EAEAoO,gBAAAA,GACE,MAAMC,EAAa/O,KAAKmL,MAAM5D,OAAOvH,KAAK0B,aAAe,CAAC,EAC1D,IAAIyB,EAAgB4L,EAAWC,eAC/B,IAAK7L,EACH,IAAK,IAAI+G,KAAUlK,KAAK8N,eACtB,GAAI5D,KAAUlK,KAAKmL,MAAM5D,OAAQ,CAC/BpE,EAAgB+G,EAChB,KACF,CAIJ,OAAO/G,CACT,EAEA,qBAAMc,CAAgB6B,GACpB,MAAM3C,EAAgBnD,KAAK8O,mBAC3B,GAAK3L,EASL,aAAanD,KAAKmB,QAAS,GAAEgC,aAA0B,CAAC8L,QAASnJ,GAAM/G,KAAO+G,IAR5E9F,KAAK+J,OAAO,CACVnL,KAAM,gCACNsQ,OAAO,GAOb,EAEA,qBAAMjJ,CAAgBH,GAEpB,GADA9F,KAAKc,MAAMqO,kBAAkBC,SACxBtJ,EAEH,YADA9F,KAAK2D,kBAAoB,MAI3B3D,KAAK+J,OAAO,CACVnL,KAAM,8BACNqL,MAAO,CACLvJ,UAAW,oBAIf,MAAM6I,QAAavJ,KAAKmB,QAAQ,2BAA4B,CAACkO,KAAMvJ,EAAKwJ,kBACxEtP,KAAK2D,kBAAoB4F,EAAKa,SAE9BpK,KAAK+J,OAAO,CACVnL,KAAM,6BACNqL,MAAO,CACLvJ,UAAW,gBAGjB,EAEAqE,cAAAA,CAAewK,GACc,MAAvBvP,KAAK6E,gBAA0B7E,KAAK6E,iBAAmB0K,GACzDvP,KAAK6E,eAAiB0K,EACtBvP,KAAK2D,kBAAoB,MAEzB3D,KAAK6E,eAAiB,IAE1B,EAEAR,gBAAAA,GACErE,KAAKc,MAAMuN,aAAamB,MAC1B,EAEA,aAAMhJ,CAAQzH,GACZiB,KAAKsG,QAAUvH,EACfiB,KAAK7D,SAAU,EAEf,UACQ6D,KAAKgF,KAAK,CACdjG,IAAKA,IAGPiB,KAAKc,MAAMuN,aAAae,OAC1B,CAAE,QACApP,KAAK7D,SAAU,CACjB,CACF,GAGFkF,OAAAA,GACErB,KAAKoM,QAAO,IAAMpM,KAAK4B,iBAAiBiH,IAClCA,GACF7I,KAAKY,SAAS,IAGlBZ,KAAKoM,QAAO,IAAMpM,KAAK2D,oBAAoB4F,IACrC,IAAIkG,IAAI,CAAC,OAAQ,UAAUlP,IAAIP,KAAK4B,gBAAgBD,QAAQoE,SAC1DwD,EACFvJ,KAAK4B,eAAeuF,UAAUgD,aAAaZ,GAE3CvJ,KAAK4B,eAAeuF,UAAUkD,kBAClC,IAGFrK,KAAKmD,cAAgBnD,KAAK8O,mBAC1B9O,KAAKuK,UAAUvK,KAAK0O,gBAAgB,2BAChC,sDACJ1O,KAAKuK,UAAUvK,KAAK2O,kBAAkB,sBAClC,kEACJ3O,KAAKuK,UAAUvK,KAAK4O,uBAAuB,mCACvC,6DACJ5O,KAAKuK,UAAUvK,KAAK6O,2BAA2B,uCAC3C,iEAEA,eAAgB7O,KAAKmL,MAAM5D,SAC7BvH,KAAKyD,QAAQiM,MAAO,GAElB,mBAAoB1P,KAAKmL,MAAM5D,SACjCvH,KAAKyD,QAAQkM,UAAW,EAC5B,EAEAnF,OAAAA,GACExK,KAAKyK,YAAY,4BACjBzK,KAAKyK,YAAY,uBACjBzK,KAAKyK,YAAY,oCACjBzK,KAAKyK,YAAY,uCACnB,G2BpbF,MAAM,IAA2B,OAAgB,GAAQ,CAAC,CAAC,SAASlJ,GAAQ,CAAC,YAAY,qBAEzF,S,kKCLM1F,EAAAA,EAAAA,GAAyB,KAAtBF,MAAM,eAAa,W,GAAtBM,G,SAGIN,MAAM,kB,gDASPA,MAAM,S,UACTE,EAAAA,EAAAA,GAEM,OAFDF,MAAM,SAAO,EAChBE,EAAAA,EAAAA,GAAyB,KAAtBF,MAAM,kBAAa,K,GADxB6B,G,SAKI7B,MAAM,kB,qBAERE,EAAAA,EAAAA,GAAyB,KAAtBF,MAAM,eAAa,W,GAAtBsC,G,2BAMEtC,MAAM,yB,0CA7BdK,EAAAA,EAAAA,IAgCM,OAhCDL,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,kBAAiB,gBACGT,EAAAqI,MAAMmE,U,CAC0BxM,EAAAiB,UAAO,WAApE1C,EAAAA,EAAAA,IAEM,O,MAFDL,MAAM,eAAgBmB,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,OAAQrB,EAAAqI,Q,oBAIb5J,EAAA0T,UAAUnS,EAAAqI,MAAM3H,QAAI,WAAvDnC,EAAAA,EAAAA,IAMO,OANPwJ,EAMO,CALqC/H,EAAAqI,KAAK/G,MAAG,WAAlD/C,EAAAA,EAAAA,IAII,K,MAJA6T,KAAMpS,EAAAqI,KAAK/G,IAAKwH,OAAO,U,EACzB1K,EAAAA,EAAAA,GAEI,KAFAF,OAAKuC,EAAAA,EAAAA,IAAEhC,EAAA0T,UAAUnS,EAAAqI,KAAK3H,OAAQuH,MAAOjI,EAAAqI,KAAK3H,MAAM,MAEpD,GAAAb,IAAA,yCAIyDG,EAAAqI,MAAMmE,QAAK,WAAxEjO,EAAAA,EAAAA,IAA4E,O,MAAvEL,MAAM,QAASmU,IAAKrS,EAAAqI,KAAKmE,MAAQ8F,IAAKtS,EAAAqI,KAAKJ,O,wBAChD1J,EAAAA,EAAAA,IAIM,MAJNuB,EAIMxB,IAE6B0B,EAAAqI,MAAMkK,UAAO,WAAhDhU,EAAAA,EAAAA,IAIO,OAJP+Q,EAIO,EAHLlR,EAAAA,EAAAA,GAEI,KAFAgU,KAAI,8BAAgCpS,EAAAqI,KAAKkK,UAAWzJ,OAAO,U,0BAKH,MAAlB9I,EAAAqI,MAAMmK,WAAQ,WAA1DjU,EAAAA,EAAAA,IAC4C,Q,MADtCL,MAAM,0B,aACNyB,EAAAA,EAAAA,IAAQyB,EAA2BqR,YAAfzS,EAAAqI,KAAKmK,Y,WACgC,MAAhBxS,EAAAqI,MAAMqK,SAAM,WAA3DnU,EAAAA,EAAAA,IAEO,OAFPoU,GAEOhT,EAAAA,EAAAA,IADFK,EAAAqI,KAAKqK,QAAS,UACnB,uB,yBAQJ,GACE/Q,OAAQ,CAACiR,EAAO/Q,EAAAA,GAChBC,MAAO,CAAC,QACRC,MAAO,CACLsG,KAAM,CACJ3H,KAAMqK,OACN9I,QAASA,QAGXhB,QAAS,CACPP,KAAMsB,QACNC,SAAS,IAIbK,IAAAA,GACE,MAAO,CACL6P,UAAWS,EAEf,G,UCpDF,MAAM/O,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,4FCRO5F,MAAM,iB,gIAAXK,EAAAA,EAAAA,IAmBM,MAnBNC,EAmBM,CAlBWwB,EAAAtB,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,qBACSmB,EAAAmH,SAASvH,SAAM,WAAlDrB,EAAAA,EAAAA,IAUM,O,MAVDL,MAAM,OAAOC,IAAI,OAA+B0U,SAAM3S,EAAA,KAAAA,EAAA,OAAAC,IAAElB,EAAA4T,UAAA5T,EAAA4T,YAAA1S,K,gBAC3D5B,EAAAA,EAAAA,IAQ4CQ,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IARlBC,EAAA6T,gBAAc,CAA1BzK,EAAMjJ,M,WAApBT,EAAAA,EAAAA,IAQ4CoU,EAAA,CAPrClU,IAAKO,EACLiJ,KAAMA,EACN4B,SAAUjK,EAAAoH,iBAAmBhI,EAC7B0L,SAAUC,OAAOC,KAAKhL,EAAAgG,SAAW,CAAC,GAAGpG,SAAWI,EAAAgG,QAAQqC,EAAK3H,MAC7D2G,SAAM/H,GAAE8B,EAAAC,MAAM,SAAUjC,GACxBmF,OAAIjF,GAAE8B,EAAAC,MAAM,OAAQgH,GACpBb,OAAIlI,GAAE8B,EAAAC,MAAM,OAAQgH,GACpBX,WAAQpI,GAAE8B,EAAAC,MAAM,WAAYgH,I,gHAGrCtH,EAAAA,EAAAA,IAIQiH,EAAA,CAJD7J,IAAI,YAAY8J,MAAM,aAAcE,QAAKjI,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,SAAU,Q,mBAChE,IAEsC,CAAR,MAAlBrB,EAAAoH,iBAAc,WAF1BzI,EAAAA,EAAAA,IAEsCqU,EAAA,C,MAF/B3K,KAAMrI,EAAAmH,QAAQnH,EAAAoH,gBACd7C,OAAIrE,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,OAAQrB,EAAAmH,QAAQnH,EAAAoH,mB,8HChBlClJ,MAAM,c,GACJA,MAAM,c,GACJA,MAAM,mB,GAINA,MAAM,S,gEAWRA,MAAM,O,UACTE,EAAAA,EAAAA,GAAsC,OAAjCF,MAAM,aAAY,aAAS,K,2BAI7BA,MAAM,O,UACTE,EAAAA,EAAAA,GAAmC,OAA9BF,MAAM,aAAY,UAAM,K,2BAI1BA,MAAM,O,UACTE,EAAAA,EAAAA,GAAoC,OAA/BF,MAAM,aAAY,WAAO,K,2BAI3BA,MAAM,O,UACTE,EAAAA,EAAAA,GAA8C,OAAzCF,MAAM,aAAY,qBAAiB,K,2BAIrCA,MAAM,O,UACTE,EAAAA,EAAAA,GAAqC,OAAhCF,MAAM,aAAY,YAAQ,K,2BAI5BA,MAAM,O,UACTE,EAAAA,EAAAA,GAAwC,OAAnCF,MAAM,aAAY,eAAW,K,2BAI/BA,MAAM,O,UACTE,EAAAA,EAAAA,GAAoC,OAA/BF,MAAM,aAAY,WAAO,K,2BAI3BA,MAAM,O,UACTE,EAAAA,EAAAA,GAAqC,OAAhCF,MAAM,aAAY,YAAQ,K,2BAI5BA,MAAM,O,UACTE,EAAAA,EAAAA,GAAoC,OAA/BF,MAAM,aAAY,WAAO,K,2BAI3BA,MAAM,O,UACTE,EAAAA,EAAAA,GAAoC,OAA/BF,MAAM,aAAY,WAAO,K,4BAI3BA,MAAM,O,UACTE,EAAAA,EAAAA,GAAmC,OAA9BF,MAAM,aAAY,UAAM,K,4BAI1BA,MAAM,O,UACTE,EAAAA,EAAAA,GAAuC,OAAlCF,MAAM,aAAY,cAAU,K,GAC5BA,MAAM,c,UAKRA,MAAM,O,UACTE,EAAAA,EAAAA,GAAmC,OAA9BF,MAAM,aAAY,UAAM,K,GACxBA,MAAM,c,WAGRA,MAAM,O,WACTE,EAAAA,EAAAA,GAA0C,OAArCF,MAAM,aAAY,iBAAa,K,IAC/BA,MAAM,c,WAGRA,MAAM,O,WACTE,EAAAA,EAAAA,GAA6C,OAAxCF,MAAM,aAAY,oBAAgB,K,IAClCA,MAAM,c,WAGRA,MAAM,O,WACTE,EAAAA,EAAAA,GAAkC,OAA7BF,MAAM,aAAY,SAAK,K,8BAIzBA,MAAM,O,WACTE,EAAAA,EAAAA,GAAmC,OAA9BF,MAAM,aAAY,UAAM,K,8BAI1BA,MAAM,O,WACTE,EAAAA,EAAAA,GAAoC,OAA/BF,MAAM,aAAY,WAAO,K,IACzBA,MAAM,c,qCAKRA,MAAM,O,WACTE,EAAAA,EAAAA,GAAiC,OAA5BF,MAAM,aAAY,QAAI,K,8BAIxBA,MAAM,O,WACTE,EAAAA,EAAAA,GAAyC,OAApCF,MAAM,aAAY,gBAAY,K,8BAIhCA,MAAM,O,WACTE,EAAAA,EAAAA,GAAiC,OAA5BF,MAAM,aAAY,QAAI,K,8BAIxBA,MAAM,O,WACTE,EAAAA,EAAAA,GAAoC,OAA/BF,MAAM,aAAY,WAAO,K,IACzBA,MAAM,kB,qCAKRA,MAAM,O,WACTE,EAAAA,EAAAA,GAAiC,OAA5BF,MAAM,aAAY,QAAI,K,8BAIxBA,MAAM,O,WACTE,EAAAA,EAAAA,GAAoC,OAA/BF,MAAM,aAAY,WAAO,K,8BAI3BA,MAAM,O,WACTE,EAAAA,EAAAA,GAAkC,OAA7BF,MAAM,aAAY,SAAK,K,8BAIzBA,MAAM,O,WACTE,EAAAA,EAAAA,GAAkC,OAA7BF,MAAM,aAAY,SAAK,K,8BAIzBA,MAAM,O,WACTE,EAAAA,EAAAA,GAAqC,OAAhCF,MAAM,aAAY,YAAQ,K,8FA1JnCK,EAAAA,EAAAA,IA6JM,MA7JNC,EA6JM,EA5JJJ,EAAAA,EAAAA,GAcM,MAdNU,EAcM,EAbJV,EAAAA,EAAAA,GAEM,MAFN2J,EAEM,EADJhH,EAAAA,EAAAA,IAAiDkS,GAAA,CAApC5K,KAAMrI,EAAAqI,KAAO9D,OAAIrE,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,U,oBAGxCjD,EAAAA,EAAAA,GAQM,MARNsB,EAQM,CALKjB,EAAA0T,UAAUnS,EAAAqI,MAAM3H,QAAI,WAF7BnC,EAAAA,EAAAA,IAII,K,MAJAL,OAAKuC,EAAAA,EAAAA,IAAEhC,EAAA0T,UAAUnS,EAAAqI,KAAK3H,OACtBuH,MAAOjI,EAAAqI,KAAK3H,MACgB,MAEhC,GAAAb,KAAA,eAC0CG,EAAAqI,KAAK/G,MAAG,WAAlD/C,EAAAA,EAAAA,IAA0E,K,MAAtE6T,KAAMpS,EAAAqI,KAAK/G,IAAKwH,OAAO,S,aAAyBnJ,EAAAA,EAAAA,IAAQK,EAAWqI,KAANJ,Q,wBACjE1J,EAAAA,EAAAA,IAAmC,Q,mBAAtBoB,EAAAA,EAAAA,IAAQK,EAAWqI,KAANJ,Q,eAIPjI,EAAAqI,MAAM6K,SAAM,WAAnC3U,EAAAA,EAAAA,IAGM,MAHNwB,EAGM,CAFJzB,GACAF,EAAAA,EAAAA,GAA+C,OAA1CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAYqI,KAAP6K,S,6BAGhBlT,EAAAqI,MAAM8K,SAAM,WAAnC5U,EAAAA,EAAAA,IAGM,MAHNkM,EAGM,CAFJjK,GACApC,EAAAA,EAAAA,GAA+C,OAA1CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAYqI,KAAP8K,S,6BAGhBnT,EAAAqI,MAAM+K,UAAO,WAApC7U,EAAAA,EAAAA,IAGM,MAHNuC,EAGM,CAFJ6R,GACAvU,EAAAA,EAAAA,GAAgD,OAA3CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAaqI,KAAR+K,U,6BAGhBpT,EAAAqI,MAAMgL,cAAW,WAAxC9U,EAAAA,EAAAA,IAGM,MAHN+U,EAGM,CAFJC,GACAnV,EAAAA,EAAAA,GAAoD,OAA/CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAiBqI,KAAZgL,c,6BAGhBrT,EAAAqI,MAAMmL,WAAQ,WAArCjV,EAAAA,EAAAA,IAGM,MAHNkV,EAGM,CAFJC,GACAtV,EAAAA,EAAAA,GAAiD,OAA5CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAcqI,KAATmL,W,6BAGhBxT,EAAAqI,MAAMsL,cAAW,WAAxCpV,EAAAA,EAAAA,IAGM,MAHNqV,EAGM,CAFJC,GACAzV,EAAAA,EAAAA,GAAoD,OAA/CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAiBqI,KAAZsL,c,6BAGhB3T,EAAAqI,MAAMyL,UAAO,WAApCvV,EAAAA,EAAAA,IAGM,MAHNwV,EAGM,CAFJC,GACA5V,EAAAA,EAAAA,GAAgD,OAA3CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAaqI,KAARyL,U,6BAGhB9T,EAAAqI,MAAM4L,WAAQ,WAArC1V,EAAAA,EAAAA,IAGM,MAHN2V,EAGM,CAFJC,GACA/V,EAAAA,EAAAA,GAAiD,OAA5CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAcqI,KAAT4L,W,6BAGhBjU,EAAAqI,MAAM+L,UAAO,WAApC7V,EAAAA,EAAAA,IAGM,MAHN8V,EAGM,CAFJC,GACAlW,EAAAA,EAAAA,GAAgD,OAA3CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAaqI,KAAR+L,U,6BAGhBpU,EAAAqI,MAAMkM,UAAO,WAApChW,EAAAA,EAAAA,IAGM,MAHNiW,EAGM,CAFJC,GACArW,EAAAA,EAAAA,GAAgD,OAA3CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAaqI,KAARkM,U,6BAGhBvU,EAAAqI,MAAMnE,SAAM,WAAnC3F,EAAAA,EAAAA,IAGM,MAHNmW,EAGM,CAFJC,GACAvW,EAAAA,EAAAA,GAA+C,OAA1CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAYqI,KAAPnE,S,6BAGhBlE,EAAAqI,MAAMuM,OAAS5U,EAAAqI,MAAMwM,SAAM,WAAlDtW,EAAAA,EAAAA,IAKM,MALNuW,EAKM,CAJJC,GACA3W,EAAAA,EAAAA,GAEM,MAFN4W,GAEMrV,EAAAA,EAAAA,IADDK,EAAAqI,KAAKuM,OAAQ,KAACjV,EAAAA,EAAAA,IAAGK,EAAAqI,KAAKwM,QAAM,sBAIZ7U,EAAAqI,MAAM4M,SAAM,WAAnC1W,EAAAA,EAAAA,IAGM,MAHN2W,EAGM,CAFJC,GACA/W,EAAAA,EAAAA,GAA2D,MAA3DgX,GAA2DzV,EAAAA,EAAAA,IAAhCK,EAAAqI,KAAK4M,OAAOI,YAAa,IAAC,sBAGhCrV,EAAAqI,MAAMiN,gBAAa,WAA1C/W,EAAAA,EAAAA,IAGM,MAHNgX,GAGM,CAFJC,IACApX,EAAAA,EAAAA,GAAuD,MAAvDqX,IAAuD9V,EAAAA,EAAAA,IAA5BK,EAAAqI,KAAKiN,eAAgB,IAAC,sBAG5BtV,EAAAqI,MAAMqN,mBAAgB,WAA7CnX,EAAAA,EAAAA,IAGM,MAHNoX,GAGM,CAFJC,IACAxX,EAAAA,EAAAA,GAA0D,MAA1DyX,IAA0DlW,EAAAA,EAAAA,IAA/BK,EAAAqI,KAAKqN,kBAAmB,IAAC,sBAG/B1V,EAAAqI,MAAM4M,SAAM,WAAnC1W,EAAAA,EAAAA,IAGM,MAHNuX,GAGM,CAFJC,IACA3X,EAAAA,EAAAA,GAAqD,OAAhDF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAkBqI,KAAb4M,OAAOe,Q,8BAGvBhW,EAAAqI,MAAM4N,SAAM,WAAnC1X,EAAAA,EAAAA,IAGM,MAHN2X,GAGM,CAFJC,IACA/X,EAAAA,EAAAA,GAA0D,OAArDF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAuBqI,KAAlB4N,OAAOxW,KAAK,Q,8BAG5BR,EAAAmX,UAAO,WAA9B7X,EAAAA,EAAAA,IAKM,MALN8X,GAKM,CAJJC,IACAlY,EAAAA,EAAAA,GAEM,MAFNmY,GAEM,EADJnY,EAAAA,EAAAA,GAA+E,KAA3EgU,KAAMnT,EAAAmX,QAAQ9U,IAAKwH,OAAO,S,aAASnJ,EAAAA,EAAAA,IAAQV,EAA6BmX,QAArBnO,OAAShJ,EAAAmX,QAAQ9U,M,gCAIrDtB,EAAAqI,MAAMmO,OAAI,WAAjCjY,EAAAA,EAAAA,IAGM,MAHNkY,GAGM,CAFJC,IACAtY,EAAAA,EAAAA,GAA6C,OAAxCF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAUqI,KAALmO,O,8BAGhBvX,EAAA0X,gBAAa,WAApCpY,EAAAA,EAAAA,IAGM,MAHNqY,GAGM,CAFJC,IACAzY,EAAAA,EAAAA,GAAiD,OAA5CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQV,EAAc0X,gB,8BAGzB3W,EAAAqI,MAAM/H,OAAI,WAAjC/B,EAAAA,EAAAA,IAGM,MAHNuY,GAGM,CAFJC,IACA3Y,EAAAA,EAAAA,GAA6C,OAAxCF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAUqI,KAAL/H,O,8BAGhBN,EAAAqI,MAAM2O,UAAO,WAApCzY,EAAAA,EAAAA,IAKM,MALN0Y,GAKM,CAJJC,IACA9Y,EAAAA,EAAAA,GAEM,MAFN+Y,GAEM,EADJ/Y,EAAAA,EAAAA,GAAgE,KAA5DgU,KAAMpS,EAAAqI,KAAK2O,QAASlO,OAAO,S,aAASnJ,EAAAA,EAAAA,IAAQK,EAAaqI,KAAR2O,U,gCAIlChX,EAAAqI,MAAM+O,OAAI,WAAjC7Y,EAAAA,EAAAA,IAGM,MAHN8Y,GAGM,CAFJC,IACAlZ,EAAAA,EAAAA,GAA0D,OAArDF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQyB,EAAuBmW,YAAXvX,EAAAqI,KAAK+O,Q,8BAG5BpX,EAAAqI,MAAMmP,UAAO,WAApCjZ,EAAAA,EAAAA,IAGM,MAHNkZ,GAGM,CAFJC,IACAtZ,EAAAA,EAAAA,GAAgD,OAA3CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAaqI,KAARmP,U,8BAGhBxX,EAAAqI,MAAMsP,QAAK,WAAlCpZ,EAAAA,EAAAA,IAGM,MAHNqZ,GAGM,CAFJC,IACAzZ,EAAAA,EAAAA,GAA8C,OAAzCF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAWqI,KAANsP,Q,8BAGhB3X,EAAAqI,MAAMyP,QAAK,WAAlCvZ,EAAAA,EAAAA,IAGM,MAHNwZ,GAGM,CAFJC,IACA5Z,EAAAA,EAAAA,GAA8C,OAAzCF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAWqI,KAANyP,Q,8BAGhB9X,EAAAqI,MAAMkH,WAAQ,WAArChR,EAAAA,EAAAA,IAGM,MAHN0Z,GAGM,CAFJC,IACA9Z,EAAAA,EAAAA,GAAiD,OAA5CF,MAAM,a,aAAayB,EAAAA,EAAAA,IAAQK,EAAcqI,KAATkH,W,gFAW3C,IACE3O,KAAM,OACNW,WAAY,CAAC4W,WAAUA,GAAAA,GACvBxW,OAAQ,CAACC,GAAAA,EAAOC,GAAAA,GAChBC,MAAO,CAAC,QACRC,MAAO,CACLsG,KAAM,CACJ3H,KAAMqK,OACN9I,QAASA,SAIbK,IAAAA,GACE,MAAO,CACL6P,UAAWS,GAEf,EAEAnQ,SAAU,CACR2T,OAAAA,GACE,IAAI5F,EAAM,KAUV,OATIjO,KAAK8F,MAAM+P,UACb5H,EAAM,CACJlP,IAAM,mCAAkCiB,KAAK8F,KAAK+P,aAE7C7V,KAAK8F,MAAMgQ,cAClB7H,EAAM,CACJlP,IAAKiB,KAAK8F,KAAKgQ,cAGd7H,GAGDjO,KAAK8F,MAAMiQ,aACb9H,EAAIvI,MAAQ1F,KAAK8F,KAAKiQ,aACf/V,KAAK8F,MAAM+N,UAClB5F,EAAIvI,MAAQ1F,KAAK8F,KAAK+N,SAEjB5F,GAPE,IAQX,EAEAmG,aAAAA,GACE,OAAIpU,KAAK8F,MAAMkQ,YACNhW,KAAKiW,WAAWjW,KAAK8F,KAAKkQ,aAAa,GAC5ChW,KAAK8F,MAAMoQ,WACNlW,KAAKiW,WAAWjW,KAAK8F,KAAKoQ,YAAY,GAExC,IACT,I,WChNJ,MAAM5U,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,UCPS3F,MAAM,a,IAINA,MAAM,Q,IACJA,MAAM,a,uBAEJA,MAAM,oB,UAaRA,MAAM,gB,oDAONA,MAAM,qB,iHA5BmD8B,EAAA8K,QA6B3B,iBA7BiC,WAAxEvM,EAAAA,EAAAA,IAgCM,O,MAhCDL,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,kBAAiB,CAAAwJ,SAAoBjK,EAAAiK,a,EAC9C7L,EAAAA,EAAAA,GAEM,MAFNI,GAEM,EADJuC,EAAAA,EAAAA,IAAiDkS,EAAA,CAApC5K,KAAMrI,EAAAqI,KAAO9D,OAAIrE,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,U,oBAGxCjD,EAAAA,EAAAA,GA0BM,MA1BNU,GA0BM,EAzBJV,EAAAA,EAAAA,GAaM,MAbN2J,GAaM,EAZJ3J,EAAAA,EAAAA,GAA6E,OAAxEF,MAAM,mB,aAAmByB,EAAAA,EAAAA,IAAQK,EAAWqI,KAANJ,OAAQ5I,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,Y,YAChEjD,EAAAA,EAAAA,GAUM,MAVNyB,GAUM,EATJkB,EAAAA,EAAAA,IAQWC,EAAA,CARDiH,MAAM,UAAU,aAAW,oB,mBACnC,IAC+C,CAAb,YAAdjI,EAAAqI,KAAK3H,OAAI,WAD7B/B,EAAAA,EAAAA,IAC+CuC,EAAA,C,MADjC,aAAW,aAAaC,KAAK,OAAQ9B,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,a,eAG9B,YAAdrB,EAAAqI,KAAK3H,OAAI,WAD7B/B,EAAAA,EAAAA,IAC+CuC,EAAA,C,MADjC,aAAW,iBAAiBC,KAAK,WAAY9B,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,iB,eAGtC,SAAdrB,EAAAqI,KAAK3H,OAAI,WAD7B/B,EAAAA,EAAAA,IAC4CuC,EAAA,C,MAD9B,aAAW,wBAAwBC,KAAK,kBAAmB9B,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,a,gBAEtFN,EAAAA,EAAAA,IAAoFG,EAAA,CAAtE,aAAW,oBAAoBC,KAAK,OAAQ9B,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAC,MAAM,gB,UAK7CrB,EAAAqI,KAAK+N,UAAO,WAA5C7X,EAAAA,EAAAA,IAKM,MALNF,GAKM,EAJJD,EAAAA,EAAAA,GAGI,KAHDF,MAAM,UAAWkU,KAAMpS,EAAAqI,KAAKgQ,YAAavP,OAAO,U,CACU9I,EAAAqI,KAAKqQ,gBAAa,WAA7Ena,EAAAA,EAAAA,IAAiF,O,MAA3E8T,IAAKrS,EAAAqI,KAAKqQ,cAAexa,MAAM,iB,6BACrCE,EAAAA,EAAAA,GAAmD,QAA7CF,MAAM,e,aAAeyB,EAAAA,EAAAA,IAAQK,EAAaqI,KAAR+N,U,qCAIPpW,EAAAqI,KAAKoQ,aAAU,WAApDla,EAAAA,EAAAA,IAEM,MAFN+Q,IAEM3P,EAAAA,EAAAA,IADDyB,EAAAuX,eAAe3Y,EAAAqI,KAAKoQ,YAAY,IAAF,0B,0BAazC,IACElX,WAAY,CAACE,SAAQ,KAAED,aAAY,KAAE2W,WAAUA,GAAAA,GAC/CxW,OAAQ,CAACC,GAAAA,GACTE,MAAO,CAAC,OAAQ,SAAU,OAAQ,YAClCC,MAAO,CACLsG,KAAM,CACJ3H,KAAMqK,OACNmD,UAAU,GAGZpD,OAAQ,CACNpK,KAAMsB,QACNC,SAAS,GAGXgI,SAAU,CACRvJ,KAAMsB,QACNC,SAAS,IAIbK,IAAAA,GACE,MAAO,CACL6P,UAAWS,GAEf,GC7DF,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,sBJoBA,IACErR,WAAY,CAACqX,KAAI,GAAEC,KAAI,GAAEnX,QAAO,KAAEkO,MAAKA,GAAAA,GACvC9N,MAAO,CAAC,SAAU,OAAQ,OAAQ,WAAY,cAC9CC,MAAO,CACLrD,QAAS,CACPgC,KAAMsB,QACNC,SAAS,GAGXkF,QAAS,CACPzG,KAAMoY,MACN7W,QAASA,IAAM,IAGjBmF,eAAgB,CACd1G,KAAMqY,QAGR/S,QAAS,CACPtF,KAAMqK,OACN9I,QAASA,QAGXI,OAAQ,CACN3B,KAAMyB,OACNF,QAAS,MAGX+W,gBAAiB,CACftY,KAAMqY,OACN9W,QAAS,KAIbK,IAAAA,GACE,MAAO,CACL2W,eAAgB1W,KAAKyW,gBAEzB,EAEAvW,SAAU,CACRqQ,cAAAA,GACE,OAAOvQ,KAAK4E,QACT9E,QAAQgG,IACF9F,KAAKF,QAGHgG,EAAKJ,MAAMvF,cAAcwW,SAAS3W,KAAKF,OAAOK,iBAEtDlD,MAAM,EAAG+C,KAAK0W,eACnB,GAGF/V,QAAS,CACP2P,QAAAA,CAASsG,GACP,MAAMC,EAAKD,EAAErQ,OACb,IAAKsQ,EACH,OAEF,MAAMC,EAAUD,EAAGE,aAAeF,EAAG3V,WAAc2V,EAAGG,aAAe,IAChEF,IAGL9W,KAAKlB,MAAM,cACXkB,KAAK0W,gBAAkB1W,KAAKyW,gBAC9B,GAGFpV,OAAAA,GACErB,KAAKoM,OAAO,kBAAmB/F,IAChB,MAATA,EACFrG,KAAKc,MAAMmW,WAAW7H,QAEtBpP,KAAKc,MAAMmW,WAAWzH,MAAM,GAElC,GKjGF,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAASjO,GAAQ,CAAC,YAAY,qBAEzF,S,iKCNO5F,MAAM,6B,SACJA,MAAM,c,iBAIJA,MAAM,mB,qBAUNA,MAAM,oB,qBAINA,MAAM,oB,SAcNA,MAAM,2B,SACJA,MAAM,O,UACTE,EAAAA,EAAAA,GAA4B,OAAvBF,MAAM,QAAO,QAAI,K,2BAInBA,MAAM,O,UACTE,EAAAA,EAAAA,GAA6B,OAAxBF,MAAM,QAAO,SAAK,K,qBAIpBA,MAAM,O,UACTE,EAAAA,EAAAA,GAAgC,OAA3BF,MAAM,QAAO,YAAQ,K,qBAIvBA,MAAM,O,UACTE,EAAAA,EAAAA,GAA+B,OAA1BF,MAAM,QAAO,WAAO,K,qBAItBA,MAAM,O,UACTE,EAAAA,EAAAA,GAA+B,OAA1BF,MAAM,QAAO,WAAO,K,qBAItBA,MAAM,O,UACTE,EAAAA,EAAAA,GAA4B,OAAvBF,MAAM,QAAO,QAAI,K,2BAInBA,MAAM,O,UACTE,EAAAA,EAAAA,GAAiC,OAA5BF,MAAM,QAAO,aAAS,K,qBAIxBA,MAAM,O,UACTE,EAAAA,EAAAA,GAA2B,OAAtBF,MAAM,QAAO,OAAG,K,GAChBA,MAAM,gB,4BAKRA,MAAM,O,UACTE,EAAAA,EAAAA,GAA6B,OAAxBF,MAAM,QAAO,SAAK,K,2BAIpBA,MAAM,O,UACTE,EAAAA,EAAAA,GAA+B,OAA1BF,MAAM,QAAO,WAAO,K,2BAItBA,MAAM,O,UACTE,EAAAA,EAAAA,GAAgC,OAA3BF,MAAM,QAAO,YAAQ,K,2BAIvBA,MAAM,O,UACTE,EAAAA,EAAAA,GAAiC,OAA5BF,MAAM,QAAO,aAAS,K,2BAO1BA,MAAM,4B,GAEFA,MAAM,c,UAMNA,MAAM,c,2JA7GJO,GAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,GAAA,CAAAC,IAAA,kBAE1BN,EAAAA,EAAAA,IAiHM,MAjHNC,EAiHM,CAhH2BuM,OAAOC,KAAKvM,GAAAgb,WAAW7Z,QAAwC,iBAAlC,WAA5DrB,EAAAA,EAAAA,IAAoG,MAApGO,EAA8D,uCAAgC,aAE9FP,EAAAA,EAAAA,IA2BMQ,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IA3B+EP,GAAAgb,WAAS,CAAxBjI,EAASpS,M,WAA/Eb,EAAAA,EAAAA,IA2BM,OA3BDL,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,WAAU,CAAAwJ,SAAoBxL,GAAAwH,eAAiB7G,KAAuCP,IAAKO,EAChGC,QAAKC,GAAEb,GAAAwH,aAAe7G,G,EAC1BhB,EAAAA,EAAAA,GAQM,MARNsB,EAQM,EAPJtB,EAAAA,EAAAA,GAKK,KALFF,OAAKuC,EAAAA,EAAAA,IAAA,CAAC,UAAS,C,WAAoD,MAAnB+Q,EAAQkI,Y,WAA2ClI,EAAQkI,aAA4B,gBAAblI,EAAQlJ,M,YAAgDkJ,EAAQkI,aAA4B,WAAblI,EAAQlJ,M,WAA0CkJ,EAAQkI,aAA4B,YAAblI,EAAQlJ,U,SAM7RlK,EAAAA,EAAAA,GAA0E,OAArEF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAQ6R,EAAQ5Q,MAAQ4Q,EAAQmI,MAAQnI,EAAQlQ,M,aAGrElD,EAAAA,EAAAA,GAEM,MAFNC,EAEM,EADJD,EAAAA,EAAAA,GAAwC,Q,aAAlCuB,EAAAA,EAAAA,IAA+B,GAApB6R,EAAQoI,c,aAG3Bxb,EAAAA,EAAAA,GAUM,MAVN2B,EAUM,EATJgB,EAAAA,EAAAA,IAQWC,GAAA,CARDiH,MAAM,UAAU,aAAW,mBAAoB5I,QAAKC,GAAEb,GAAAwH,aAAe7G,G,mBAC7E,IACuD,CAAjB,gBAAlBoS,EAAQlJ,QAAK,WADjC3J,EAAAA,EAAAA,IACuDuC,GAAA,C,MADzC,aAAW,cAAcC,KAAK,iBAAkB9B,QAAKC,GAAEL,GAAAuF,MAAMvF,GAAA4a,UAAUrI,K,qCAG/C,WAAlBA,EAAQlJ,QAAK,WADjC3J,EAAAA,EAAAA,IACkDuC,GAAA,C,MADpC,aAAW,aAAaC,KAAK,kBAAmB9B,QAAKC,GAAEL,GAAA6a,OAAO7a,GAAA4a,UAAUrI,K,sCAEtFzQ,EAAAA,EAAAA,IAAoGG,GAAA,CAAtF,aAAW,cAAcC,KAAK,kBAAmB9B,QAAKC,GAAEL,GAAA8a,OAAO9a,GAAA4a,UAAUrI,K,qBACvFzQ,EAAAA,EAAAA,IAAyGG,GAAA,CAA3F,aAAW,eAAeC,KAAK,aAAc9B,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAiC,MAAM2W,aAAaC,WAAY,MACjGlZ,EAAAA,EAAAA,IAAwGG,GAAA,CAA1F,aAAW,aAAaC,KAAK,eAAgB9B,QAAKa,EAAA,KAAAA,EAAA,GAAAZ,GAAE8B,EAAAiC,MAAM6W,YAAYD,WAAY,Q,0CAKtGlZ,EAAAA,EAAAA,IAgEQiH,GAAA,CAhED7J,IAAI,cAAc8J,MAAM,eAAe2M,MAAM,O,mBAClD,IA8DM,CA9DqD,MAAhBnW,GAAAwH,cAAwBxH,GAAAgb,UAAUhb,GAAAwH,gBAAY,WAAzF1H,EAAAA,EAAAA,IA8DM,MA9DND,EA8DM,CA7DmBG,GAAAgb,UAAUhb,GAAAwH,cAAcrF,OAAI,WAAnDrC,EAAAA,EAAAA,IAGM,MAHN+Q,EAGM,CAFJ7E,GACArM,EAAAA,EAAAA,GAA2D,OAAtDF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAQlB,GAA6Bgb,UAAnBhb,GAAAwH,cAAcrF,O,6BAG9BnC,GAAAgb,UAAUhb,GAAAwH,cAAcqC,QAAK,WAApD/J,EAAAA,EAAAA,IAGM,MAHNoC,EAGM,CAFJG,GACA1C,EAAAA,EAAAA,GAA4D,OAAvDF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAQlB,GAA8Bgb,UAApBhb,GAAAwH,cAAcqC,Q,8BAGrDlK,EAAAA,EAAAA,GAGM,MAHN4L,EAGM,CAFJsJ,GACAlV,EAAAA,EAAAA,GAA0E,OAArEF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAoD,GAAzClB,GAAAgb,UAAUhb,GAAAwH,cAAc2T,UAAY,O,aAGpExb,EAAAA,EAAAA,GAGM,MAHN+b,EAGM,CAFJ1G,GACArV,EAAAA,EAAAA,GAA6F,OAAxFF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAuE,GAA5DyB,EAAAmW,YAAY9Y,GAAAgb,UAAUhb,GAAAwH,cAAcmU,eAAiB,S,aAGrFhc,EAAAA,EAAAA,GAGM,MAHNic,EAGM,CAFJzG,GACAxV,EAAAA,EAAAA,GAA2F,OAAtFF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAqE,GAA1DyB,EAAAmW,YAAY9Y,GAAAgb,UAAUhb,GAAAwH,cAAcqU,aAAe,S,aAGnFlc,EAAAA,EAAAA,GAGM,MAHNmc,EAGM,CAFJxG,GACA3V,EAAAA,EAAAA,GAA6E,OAAxEF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAQyB,EAA+CmW,YAAnC9Y,GAAAgb,UAAUhb,GAAAwH,cAAcmR,MAAQ,K,YAGlD3Y,GAAAgb,UAAUhb,GAAAwH,cAAcuU,kBAAe,WAA9Djc,EAAAA,EAAAA,IAGM,MAHNkc,EAGM,CAFJvG,GACA9V,EAAAA,EAAAA,GAAmF,OAA9EF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAQyB,EAAqDmW,YAAzC9Y,GAAAgb,UAAUhb,GAAAwH,cAAcuU,mB,8BAGjEpc,EAAAA,EAAAA,GAKM,MALNsc,EAKM,CAJJrG,GACAjW,EAAAA,EAAAA,GAEM,MAFNkW,EAEM,EADJlW,EAAAA,EAAAA,GAA8F,KAA1FgU,KAAM3T,GAAAgb,UAAUhb,GAAAwH,cAAc3E,IAAKwH,OAAO,S,aAASnJ,EAAAA,EAAAA,IAAQlB,GAA4Bgb,UAAlBhb,GAAAwH,cAAc3E,M,eAI3FlD,EAAAA,EAAAA,GAGM,MAHNoW,EAGM,CAFJC,GACArW,EAAAA,EAAAA,GAAiE,OAA5DF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAQlB,GAAmCgb,UAAzBhb,GAAAwH,cAAc6R,OAAS,I,YAGvCrZ,GAAAgb,UAAUhb,GAAAwH,cAAc0U,aAAU,WAAzDpc,EAAAA,EAAAA,IAGM,MAHNmW,EAGM,CAFJC,GACAvW,EAAAA,EAAAA,GAAiF,OAA5EF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAQyB,EAAmDuX,eAApCla,GAAAgb,UAAUhb,GAAAwH,cAAc0U,c,6BAG7Clc,GAAAgb,UAAUhb,GAAAwH,cAAcyT,cAAW,WAA1Dnb,EAAAA,EAAAA,IAGM,MAHNuW,EAGM,CAFJC,GACA3W,EAAAA,EAAAA,GAAkF,OAA7EF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAQyB,EAAoDuX,eAArCla,GAAAgb,UAAUhb,GAAAwH,cAAcyT,e,6BAG7Cjb,GAAAgb,UAAUhb,GAAAwH,cAAc2U,YAAS,WAAxDrc,EAAAA,EAAAA,IAGM,MAHN2W,EAGM,CAFJC,GACA/W,EAAAA,EAAAA,GAAgE,OAA3DF,MAAM,Q,aAAQyB,EAAAA,EAAAA,IAAQlB,GAAkCgb,UAAxBhb,GAAAwH,cAAc2U,Y,8DAKzD7Z,EAAAA,EAAAA,IAcQiH,GAAA,CAdD7J,IAAI,eAAe8J,MAAM,gBAAgB2M,MAAM,O,mBACpD,IAYM,CAZsD,MAAhBnW,GAAAwH,cAAwBxH,GAAAgb,UAAUhb,GAAAwH,gBAAY,WAA1F1H,EAAAA,EAAAA,IAYM,MAZNgX,EAYM,gBAXJhX,EAAAA,EAAAA,IAUMQ,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAV+BC,GAAA4b,eAAa,CAAzBva,EAAMlB,M,WAA/Bb,EAAAA,EAAAA,IAUM,OAVDL,MAAM,MAA0CW,IAAKyB,G,EACxDlC,EAAAA,EAAAA,GAOM,MAPNoX,EAOM,CANYxV,EAAAoC,SAAWhB,EAAAyB,gBAAgBC,IAAIxC,EAAKyC,MAAM,KAAKC,SAAG,WAAlErE,EAAAA,EAAAA,IAGWqC,GAAA,CAAAnC,IAAA,I,kBAFT,IAC0G,EAD1GkC,EAAAA,EAAAA,IAC0GG,GAAA,CAD5F,aAAW,aAAaC,KAAK,OAC5B9B,QAAKC,GAAE8B,EAAAC,MAAM,OAAQ,CAATC,IAAA,UAAyB7C,GAAAgb,UAAUhb,GAAAwH,cAAczD,MAAMpD,KAACsB,KAAA,U,gDAGrFnC,EAAAA,EAAAA,IAA+B,IAA/BkX,QAEFrX,EAAAA,EAAAA,GAAyC,OAApCF,MAAM,c,aAAcyB,EAAAA,EAAAA,IAAQW,I,8HAe3C,IACEM,KAAM,OACNkB,MAAO,CAAC,OAAQ,sBAChBP,WAAY,CAACE,SAAQ,KAAED,aAAY,KAAEE,QAAO,KAAEkO,MAAKA,GAAAA,GACnDjO,OAAQ,CAACC,GAAAA,EAAOC,GAAAA,GAChBE,MAAO,CACLkC,WAAY,CACVvD,KAAMyB,OACN+L,UAAU,GAGZ9L,QAAS,CACP1B,KAAMsB,QACNC,SAAS,IAIbK,IAAAA,GACE,MAAO,CACL5D,SAAS,EACT+a,UAAW,CAAC,EACZxT,aAAc,KAElB,EAEAxD,SAAU,CACRoY,aAAAA,GACE,OAAyB,MAArBtY,KAAK0D,cAAyB1D,KAAKkX,UAAUlX,KAAK0D,eAAezD,OAAO5C,OAGrE2C,KAAKkX,UAAUlX,KAAK0D,cAAczD,MAAM8K,KAAKhN,GAASA,EAAKyC,MAAM,KAAKC,QAFpE,EAGX,GAGFE,QAAS,CACP2W,SAAAA,CAAUrI,GACR,OAAIA,GAASmI,MAAQnI,EAAQmI,KAAK/Z,OACzB4R,EAAQmI,KAEVnI,EAAQlQ,GACjB,EAEA,aAAM6B,GACJZ,KAAK7D,SAAU,EAEf,IACE6D,KAAKkX,UAAY1O,OAAOoC,aAAa5K,KAAKmB,QAAS,GAAEnB,KAAK0B,sBAAwB,CAAC,GAC9E6W,QAAO,CAACC,EAAKvJ,KACZuJ,EAAIxY,KAAKsX,UAAUrI,IAAYA,EACxBuJ,IACN,CAAC,EACV,CAAE,QACAxY,KAAK7D,SAAU,CACjB,CACF,EAEA,WAAM8F,CAAMgN,SACJjP,KAAKmB,QAAS,GAAEnB,KAAK0B,mBAAoB,CAACuN,QAASA,UACnDjP,KAAKY,SACb,EAEA,YAAM2W,CAAOtI,SACLjP,KAAKmB,QAAS,GAAEnB,KAAK0B,oBAAqB,CAACuN,QAASA,UACpDjP,KAAKY,SACb,EAEA,YAAM4W,CAAOvI,SACLjP,KAAKmB,QAAS,GAAEnB,KAAK0B,oBAAqB,CAACuN,QAASA,UACpDjP,KAAKY,SACb,EAEA6X,eAAAA,CAAgBxJ,GACdjP,KAAKkX,UAAUlX,KAAKsX,UAAUrI,IAAYA,CAC5C,EAEAyJ,eAAAA,CAAgBzJ,GACd,MAAMqI,EAAYtX,KAAKsX,UAAUrI,GAC7BqI,KAAatX,KAAKkX,kBACblX,KAAKkX,UAAUI,EAC1B,GAGFjW,OAAAA,GACErB,KAAKY,UAELZ,KAAKuK,UACDvK,KAAKyY,gBAAgB,oBACrB,qDACA,iEACA,4DACA,+DACA,sDACA,qDACA,2DACA,0DACA,2DACA,iEAEJzY,KAAKuK,UAAUvK,KAAK0Y,gBAAgB,oBAChC,sDACN,EAEAlO,OAAAA,GACExK,KAAKyK,YAAY,qBACjBzK,KAAKyK,YAAY,oBACnB,G,WCjOF,MAAMnJ,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAASC,IAAQ,CAAC,YAAY,qBAEzF,S,uBCTA,IAAIwJ,EAAM,CACT,SAAU,CACT,KACA,EACA,MAED,aAAc,CACb,KACA,EACA,MAED,UAAW,CACV,KACA,EACA,MAED,cAAe,CACd,KACA,EACA,MAED,QAAS,CACR,KACA,EACA,KACA,MAED,YAAa,CACZ,KACA,EACA,KACA,MAED,YAAa,CACZ,KACA,EACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,MAED,gBAAiB,CAChB,KACA,EACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,KACA,MAED,oBAAqB,CACpB,KACA,EACA,KACA,MAED,wBAAyB,CACxB,KACA,EACA,KACA,MAED,iBAAkB,CACjB,IACA,EACA,KACA,KACA,KAED,qBAAsB,CACrB,IACA,EACA,KACA,KACA,KAED,kBAAmB,CAClB,KACA,EACA,MAED,sBAAuB,CACtB,KACA,EACA,MAED,oBAAqB,CACpB,KACA,EACA,KACA,MAED,wBAAyB,CACxB,KACA,EACA,KACA,MAED,qBAAsB,CACrB,IACA,EACA,KACA,KACA,KAED,yBAA0B,CACzB,IACA,EACA,KACA,KACA,KAED,sBAAuB,CACtB,KACA,EACA,KACA,KACA,KACA,MAED,0BAA2B,CAC1B,KACA,EACA,KACA,KACA,KACA,MAED,0BAA2B,CAC1B,KACA,EACA,KACA,KACA,KACA,MAED,8BAA+B,CAC9B,KACA,EACA,KACA,KACA,KACA,MAED,SAAU,CACT,KACA,GAED,cAAe,CACd,KACA,IAGF,SAAS4N,EAAoBC,GAC5B,IAAIC,EAAoBC,EAAE/N,EAAK6N,GAC9B,OAAO/N,QAAQkO,UAAUC,MAAK,WAC7B,IAAIpC,EAAI,IAAIqC,MAAM,uBAAyBL,EAAM,KAEjD,MADAhC,EAAEsC,KAAO,mBACHtC,CACP,IAGD,IAAIuC,EAAMpO,EAAI6N,GAAMQ,EAAKD,EAAI,GAC7B,OAAOtO,QAAQC,IAAIqO,EAAIlc,MAAM,GAAG8N,IAAI8N,EAAoBjC,IAAIoC,MAAK,WAChE,OAAOH,EAAoBQ,EAAED,EAAa,GAATD,EAAI,GACtC,GACD,CACAR,EAAoBlQ,KAAO,WAAa,OAAOD,OAAOC,KAAKsC,EAAM,EACjE4N,EAAoBS,GAAK,KACzBE,EAAOC,QAAUZ,C","sources":["webpack://platypush/./src/components/File/Browser.vue","webpack://platypush/./src/components/File/Browser.vue?8abf","webpack://platypush/./src/components/panels/Media/Index.vue","webpack://platypush/./src/components/panels/Media/Browser.vue","webpack://platypush/./src/components/panels/Media/Browser.vue?039d","webpack://platypush/./src/components/panels/Media/Header.vue","webpack://platypush/./src/components/panels/Media/Players.vue","webpack://platypush/./src/components/panels/Media/Players/Chromecast.vue","webpack://platypush/./src/components/panels/Media/Players/Mixin.vue","webpack://platypush/./src/components/panels/Media/Players/Mixin.vue?8a34","webpack://platypush/./src/components/panels/Media/Players/Chromecast.vue?c107","webpack://platypush/./src/components/panels/Media/Players/Kodi.vue","webpack://platypush/./src/components/panels/Media/Players/Kodi.vue?6dfd","webpack://platypush/./src/components/panels/Media/Players/Mplayer.vue","webpack://platypush/./src/components/panels/Media/Players/Mplayer.vue?eab0","webpack://platypush/./src/components/panels/Media/Players/Mpv.vue","webpack://platypush/./src/components/panels/Media/Players/Mpv.vue?06ab","webpack://platypush/./src/components/panels/Media/Players/Omxplayer.vue","webpack://platypush/./src/components/panels/Media/Players/Omxplayer.vue?69bd","webpack://platypush/./src/components/panels/Media/Players/Vlc.vue","webpack://platypush/./src/components/panels/Media/Players/Vlc.vue?4868","webpack://platypush/./src/components/panels/Media/Players.vue?c223","webpack://platypush/./src/components/panels/Media/Header.vue?b895","webpack://platypush/./src/components/panels/Media/Nav.vue","webpack://platypush/./src/components/panels/Media/Nav.vue?bae0","webpack://platypush/./src/components/panels/Media/Subtitles.vue","webpack://platypush/./src/components/panels/Media/Subtitles.vue?17fa","webpack://platypush/./src/components/panels/Media/UrlPlayer.vue","webpack://platypush/./src/components/panels/Media/UrlPlayer.vue?df3e","webpack://platypush/./src/components/panels/Media/Index.vue?1f2c","webpack://platypush/./src/components/panels/Media/MediaImage.vue","webpack://platypush/./src/components/panels/Media/MediaImage.vue?fc5b","webpack://platypush/./src/components/panels/Media/Results.vue","webpack://platypush/./src/components/panels/Media/Info.vue","webpack://platypush/./src/components/panels/Media/Info.vue?c19c","webpack://platypush/./src/components/panels/Media/Item.vue","webpack://platypush/./src/components/panels/Media/Item.vue?41dd","webpack://platypush/./src/components/panels/Media/Results.vue?23d6","webpack://platypush/./src/components/panels/Torrent/View.vue","webpack://platypush/./src/components/panels/Torrent/View.vue?80df","webpack://platypush/./src/components/panels/Media/Providers/ lazy ^\\.\\/.*$ namespace object"],"sourcesContent":["\n\n\n\n\n","import { render } from \"./Browser.vue?vue&type=template&id=0f0ae058&scoped=true\"\nimport script from \"./Browser.vue?vue&type=script&lang=js\"\nexport * from \"./Browser.vue?vue&type=script&lang=js\"\n\nimport \"./Browser.vue?vue&type=style&index=0&id=0f0ae058&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-0f0ae058\"]])\n\nexport default __exports__","\n\n\n\n\n","\n\n\n\n\n","import { render } from \"./Browser.vue?vue&type=template&id=6b56bca2&scoped=true\"\nimport script from \"./Browser.vue?vue&type=script&lang=js\"\nexport * from \"./Browser.vue?vue&type=script&lang=js\"\n\nimport \"./Browser.vue?vue&type=style&index=0&id=6b56bca2&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-6b56bca2\"]])\n\nexport default __exports__","\n\n\n\n\n","\n\n\n\n\n","\n\n\n","\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__","import { render } from \"./Chromecast.vue?vue&type=template&id=79fe2304\"\nimport script from \"./Chromecast.vue?vue&type=script&lang=js\"\nexport * from \"./Chromecast.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 \"./Kodi.vue?vue&type=template&id=25a1a1cf\"\nimport script from \"./Kodi.vue?vue&type=script&lang=js\"\nexport * from \"./Kodi.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 \"./Mplayer.vue?vue&type=template&id=0caf2d73\"\nimport script from \"./Mplayer.vue?vue&type=script&lang=js\"\nexport * from \"./Mplayer.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 \"./Mpv.vue?vue&type=template&id=3b3bb533\"\nimport script from \"./Mpv.vue?vue&type=script&lang=js\"\nexport * from \"./Mpv.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 \"./Omxplayer.vue?vue&type=template&id=0f086473\"\nimport script from \"./Omxplayer.vue?vue&type=script&lang=js\"\nexport * from \"./Omxplayer.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 \"./Vlc.vue?vue&type=template&id=5b5bcdd3\"\nimport script from \"./Vlc.vue?vue&type=script&lang=js\"\nexport * from \"./Vlc.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 \"./Players.vue?vue&type=template&id=642cb651\"\nimport script from \"./Players.vue?vue&type=script&lang=js\"\nexport * from \"./Players.vue?vue&type=script&lang=js\"\n\nimport \"./Players.vue?vue&type=style&index=0&id=642cb651&lang=scss\"\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 \"./Header.vue?vue&type=template&id=39ee4bbe&scoped=true\"\nimport script from \"./Header.vue?vue&type=script&lang=js\"\nexport * from \"./Header.vue?vue&type=script&lang=js\"\n\nimport \"./Header.vue?vue&type=style&index=0&id=39ee4bbe&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-39ee4bbe\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Nav.vue?vue&type=template&id=b15d23b2&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=b15d23b2&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-b15d23b2\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Subtitles.vue?vue&type=template&id=77ae3705&scoped=true\"\nimport script from \"./Subtitles.vue?vue&type=script&lang=js\"\nexport * from \"./Subtitles.vue?vue&type=script&lang=js\"\n\nimport \"./Subtitles.vue?vue&type=style&index=0&id=77ae3705&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-77ae3705\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./UrlPlayer.vue?vue&type=template&id=6f90e487&scoped=true\"\nimport script from \"./UrlPlayer.vue?vue&type=script&lang=js\"\nexport * from \"./UrlPlayer.vue?vue&type=script&lang=js\"\n\nimport \"./UrlPlayer.vue?vue&type=style&index=0&id=6f90e487&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-6f90e487\"]])\n\nexport default __exports__","import { render } from \"./Index.vue?vue&type=template&id=877bb22c&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=877bb22c&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-877bb22c\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./MediaImage.vue?vue&type=template&id=0f1ba97a&scoped=true\"\nimport script from \"./MediaImage.vue?vue&type=script&lang=js\"\nexport * from \"./MediaImage.vue?vue&type=script&lang=js\"\n\nimport \"./MediaImage.vue?vue&type=style&index=0&id=0f1ba97a&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-0f1ba97a\"]])\n\nexport default __exports__","\n\n\n\n\n","\n\n\n\n\n","import { render } from \"./Info.vue?vue&type=template&id=91888714&scoped=true\"\nimport script from \"./Info.vue?vue&type=script&lang=js\"\nexport * from \"./Info.vue?vue&type=script&lang=js\"\n\nimport \"./Info.vue?vue&type=style&index=0&id=91888714&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-91888714\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./Item.vue?vue&type=template&id=19442018&scoped=true\"\nimport script from \"./Item.vue?vue&type=script&lang=js\"\nexport * from \"./Item.vue?vue&type=script&lang=js\"\n\nimport \"./Item.vue?vue&type=style&index=0&id=19442018&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-19442018\"]])\n\nexport default __exports__","import { render } from \"./Results.vue?vue&type=template&id=7147de76&scoped=true\"\nimport script from \"./Results.vue?vue&type=script&lang=js\"\nexport * from \"./Results.vue?vue&type=script&lang=js\"\n\nimport \"./Results.vue?vue&type=style&index=0&id=7147de76&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-7147de76\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./View.vue?vue&type=template&id=7351a8a4&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=7351a8a4&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-7351a8a4\"]])\n\nexport default __exports__","var map = {\n\t\"./File\": [\n\t\t2892,\n\t\t9,\n\t\t2892\n\t],\n\t\"./File.vue\": [\n\t\t2892,\n\t\t9,\n\t\t2892\n\t],\n\t\"./Mixin\": [\n\t\t6640,\n\t\t9,\n\t\t6640\n\t],\n\t\"./Mixin.vue\": [\n\t\t6640,\n\t\t9,\n\t\t6640\n\t],\n\t\"./Nav\": [\n\t\t5578,\n\t\t9,\n\t\t3661,\n\t\t5578\n\t],\n\t\"./Nav.vue\": [\n\t\t5578,\n\t\t9,\n\t\t3661,\n\t\t5578\n\t],\n\t\"./YouTube\": [\n\t\t5931,\n\t\t9,\n\t\t2992,\n\t\t3671,\n\t\t5833,\n\t\t3390,\n\t\t3661,\n\t\t6579,\n\t\t4790,\n\t\t5059,\n\t\t5931\n\t],\n\t\"./YouTube.vue\": [\n\t\t5931,\n\t\t9,\n\t\t2992,\n\t\t3671,\n\t\t5833,\n\t\t3390,\n\t\t3661,\n\t\t6579,\n\t\t4790,\n\t\t5059,\n\t\t5931\n\t],\n\t\"./YouTube/Channel\": [\n\t\t7018,\n\t\t9,\n\t\t3671,\n\t\t5762\n\t],\n\t\"./YouTube/Channel.vue\": [\n\t\t7018,\n\t\t9,\n\t\t3671,\n\t\t5762\n\t],\n\t\"./YouTube/Feed\": [\n\t\t886,\n\t\t9,\n\t\t2992,\n\t\t5059,\n\t\t886\n\t],\n\t\"./YouTube/Feed.vue\": [\n\t\t886,\n\t\t9,\n\t\t2992,\n\t\t5059,\n\t\t886\n\t],\n\t\"./YouTube/Index\": [\n\t\t2200,\n\t\t9,\n\t\t2200\n\t],\n\t\"./YouTube/Index.vue\": [\n\t\t2200,\n\t\t9,\n\t\t2200\n\t],\n\t\"./YouTube/NoToken\": [\n\t\t9091,\n\t\t9,\n\t\t4790,\n\t\t9091\n\t],\n\t\"./YouTube/NoToken.vue\": [\n\t\t9091,\n\t\t9,\n\t\t4790,\n\t\t9091\n\t],\n\t\"./YouTube/Playlist\": [\n\t\t342,\n\t\t9,\n\t\t2992,\n\t\t5833,\n\t\t342\n\t],\n\t\"./YouTube/Playlist.vue\": [\n\t\t342,\n\t\t9,\n\t\t2992,\n\t\t5833,\n\t\t342\n\t],\n\t\"./YouTube/Playlists\": [\n\t\t7898,\n\t\t9,\n\t\t2992,\n\t\t5833,\n\t\t6579,\n\t\t7898\n\t],\n\t\"./YouTube/Playlists.vue\": [\n\t\t7898,\n\t\t9,\n\t\t2992,\n\t\t5833,\n\t\t6579,\n\t\t7898\n\t],\n\t\"./YouTube/Subscriptions\": [\n\t\t7425,\n\t\t9,\n\t\t2992,\n\t\t3671,\n\t\t3390,\n\t\t6123\n\t],\n\t\"./YouTube/Subscriptions.vue\": [\n\t\t7425,\n\t\t9,\n\t\t2992,\n\t\t3671,\n\t\t3390,\n\t\t6123\n\t],\n\t\"./meta\": [\n\t\t4569,\n\t\t3\n\t],\n\t\"./meta.json\": [\n\t\t4569,\n\t\t3\n\t]\n};\nfunction webpackAsyncContext(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\treturn Promise.resolve().then(function() {\n\t\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\t\te.code = 'MODULE_NOT_FOUND';\n\t\t\tthrow e;\n\t\t});\n\t}\n\n\tvar ids = map[req], id = ids[0];\n\treturn Promise.all(ids.slice(2).map(__webpack_require__.e)).then(function() {\n\t\treturn __webpack_require__.t(id, ids[1] | 16)\n\t});\n}\nwebpackAsyncContext.keys = function() { return Object.keys(map); };\nwebpackAsyncContext.id = 6809;\nmodule.exports = webpackAsyncContext;"],"names":["class","ref","_createElementVNode","_hoisted_6","_hoisted_9","_createElementBlock","_hoisted_1","$data","loading","_createBlock","_component_Loading","key","_hoisted_2","_Fragment","_renderList","$options","pathTokens","token","i","onClick","$event","path","slice","join","_hoisted_4","_toDisplayString","length","_hoisted_5","_hoisted_7","_hoisted_8","$props","hasBack","_cache","args","onBack","filteredFiles","file","onItemSelect","_hoisted_12","_normalizeClass","type","_hoisted_13","name","fileActions","_hoisted_14","_createVNode","_component_Dropdown","hasPlay","_component_DropdownItem","text","_ctx","$emit","url","components","DropdownItem","Dropdown","Loading","mixins","Utils","MediaUtils","emits","props","Boolean","default","initialPath","String","isMedia","filter","data","this","files","computed","toLowerCase","indexOf","some","mediaExtensions","has","split","pop","iconClass","methods","refresh","$nextTick","$refs","nav","scrollLeft","items","scrollTop","request","watch","mounted","__exports__","render","_KeepAlive","_component_MediaView","pluginName","status","selectedPlayer","track","buttons","mediaButtons","onPlay","pause","onPause","onStop","stop","onSetVolume","setVolume","onSeek","seek","onSearch","search","onMute","toggleMute","onUnmute","style","_normalizeStyle","navContainerStyle","_component_Nav","selectedView","torrentPlugin","onInput","onToggle","forceShowNav","_component_Header","hasSubtitlesPlugin","sources","selectedItem","selectedSubtitles","browserFilter","onSelectPlayer","onPlayerStatus","onStatusUpdate","onTorrentAdd","downloadTorrent","onShowSubtitles","showSubtitlesModal","onPlayUrl","showPlayUrlModal","onFilter","onToggleNav","onSourceToggle","header","filterVisible","_component_Results","results","selectedResult","onSelect","onResultSelect","play","onView","view","onDownload","download","_component_TorrentView","_component_Browser","onPathChange","_hoisted_3","_component_Modal","title","visible","onClose","_component_Subtitles","item","state","onSelectSubs","selectSubtitles","onOpen","onPlayUrlModalOpen","_component_UrlPlayer","value","urlPlay","target","playUrl","mediaProvider","_resolveDynamicComponent","mediaProviders","provider","providersMetadata","icon","_mergeProps","color","Browser","registerMediaProvider","component","shallowRef","defineAsyncComponent","refreshMediaProviders","config","youtube","_hoisted_16","selected","onSubmit","_withModifiers","placeholder","query","torrentURL","onChange","onKeyup","_hoisted_11","showNavButton","startsWith","_component_Players","onStatus","hidden","Object","keys","source","checked","_component_Chromecast","player","_component_Kodi","_component_Mplayer","_component_Mpv","_component_Omxplayer","_component_Vlc","players","select","getPlayers","resource","subs","subtitles","volume","position","onNewMedia","event","isMine","onMediaEvent","notify","device","image","plugin","addSubtitles","filename","removeSubtitles","supports","subscribe","destroy","unsubscribe","Mixin","devices","values","Promise","all","map","async","getPlayerName","chromecast","$root","host","Chromecast","Kodi","Mplayer","Mpv","Omxplayer","Vlc","required","plugins","loadPlugins","entries","p","endsWith","push","Players","types","$watch","displayedViews","displayName","collapsed","views","browser","torrents","sub","IsLocal","ISO639","SubFileName","_hoisted_10","language","autofocus","disabled","Header","MediaView","Modal","Nav","Results","Subtitles","TorrentView","UrlPlayer","previous","next","awaitingPlayTorrent","torrentPlugins","display","startStreaming","ret","window","open","modal","playUrlModal","input","$el","querySelector","focus","onTorrentQueued","onTorrentMetadata","onTorrentDownloadStart","onTorrentDownloadCompleted","getTorrentPlugin","pluginConf","torrent_plugin","torrent","error","subtitlesSelector","close","link","SubDownloadLink","result","show","Set","plex","jellyfin","typeIcons","href","src","alt","imdb_id","duration","convertTime","videos","_hoisted_15","Icons","onScroll","visibleResults","_component_Item","_component_Info","_component_MediaImage","series","season","episode","num_seasons","_hoisted_17","_hoisted_18","synopsis","_hoisted_20","_hoisted_21","description","_hoisted_23","_hoisted_24","summary","_hoisted_26","_hoisted_27","overview","_hoisted_29","_hoisted_30","country","_hoisted_32","_hoisted_33","network","_hoisted_35","_hoisted_36","_hoisted_38","_hoisted_39","width","height","_hoisted_41","_hoisted_42","_hoisted_43","rating","_hoisted_44","_hoisted_45","_hoisted_46","percentage","critic_rating","_hoisted_47","_hoisted_48","_hoisted_49","community_rating","_hoisted_50","_hoisted_51","_hoisted_52","_hoisted_53","_hoisted_54","votes","genres","_hoisted_56","_hoisted_57","channel","_hoisted_59","_hoisted_60","_hoisted_61","year","_hoisted_63","_hoisted_64","publishedDate","_hoisted_66","_hoisted_67","_hoisted_69","_hoisted_70","trailer","_hoisted_72","_hoisted_73","_hoisted_74","size","_hoisted_76","_hoisted_77","convertSize","quality","_hoisted_79","_hoisted_80","seeds","_hoisted_82","_hoisted_83","peers","_hoisted_85","_hoisted_86","_hoisted_88","_hoisted_89","MediaImage","channelId","channel_url","channelTitle","publishedAt","formatDate","created_at","channel_image","formatDateTime","Info","Item","Array","Number","resultIndexStep","maxResultIndex","includes","e","el","bottom","scrollHeight","clientHeight","infoModal","transfers","finish_date","hash","progress","torrentId","resume","remove","torrentFiles","isVisible","torrentInfo","_hoisted_19","download_rate","_hoisted_22","upload_rate","_hoisted_25","remaining_bytes","_hoisted_28","_hoisted_31","start_date","save_path","relativeFiles","reduce","obj","onTorrentUpdate","onTorrentRemove","webpackAsyncContext","req","__webpack_require__","o","resolve","then","Error","code","ids","id","t","module","exports"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1259.658da6e0.js b/platypush/backend/http/webapp/dist/static/js/1259.658da6e0.js new file mode 100644 index 00000000..8c9a820d --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1259.658da6e0.js @@ -0,0 +1,2 @@ +"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1259],{4212:function(e,t,s){s.d(t,{N:function(){return i}});class i{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,s){return s[0]+(e-t[0])*(s[1]-s[0])/(t[1]-t[0])}hslToRgb(e,t,s){[e,t,s]=[this.normalize(e,this.ranges.hue,[0,360]),this.normalize(t,this.ranges.sat,[0,100]),this.normalize(s,this.ranges.bri,[0,100])],s/=100;const i=t*Math.min(s,1-s)/100,a=t=>{const a=(t+e/30)%12,n=s-i*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,s){e/=255,t/=255,s/=255;const i=Math.max(e,t,s),a=Math.min(e,t,s);let n,l,r=(i+a)/2;if(i===a)n=l=0;else{const o=i-a;switch(l=r>.5?o/(2-i-a):o/(i+a),i){case e:n=(t-s)/o+(td&&r>o&&r>1?(o/=r,d/=r,r=1):o>d&&o>r&&o>1?(r/=o,d/=o,o=1):d>r&&d>o&&d>1&&(r/=d,o/=d,d=1),r=r<=.0031308?12.92*r:1.055*Math.pow(r,1/2.4)-.055,o=o<=.0031308?12.92*o:1.055*Math.pow(o,1/2.4)-.055,d=d<=.0031308?12.92*d:1.055*Math.pow(d,1/2.4)-.055,r=Math.round(255*r),o=Math.round(255*o),d=Math.round(255*d),isNaN(r)&&(r=0),isNaN(o)&&(o=0),isNaN(d)&&(d=0),[r,o,d].map((e=>Math.min(Math.max(0,e),255)))}rgbToXY(e,t,s){e>1&&(e/=255),t>1&&(t/=255),s>1&&(s/=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,s=s>.04045?Math.pow((s+.055)/1.055,2.4):s/12.92;const i=.664511*e+.154324*t+.162028*s,a=.283881*e+.668433*t+.047685*s,n=88e-6*e+.07231*t+.986039*s;let l=parseFloat((i/(i+a+n)).toFixed(4)),r=parseFloat((a/(i+a+n)).toFixed(4));return isNaN(l)&&(l=0),isNaN(r)&&(r=0),[l,r]}rgbToBri(e,t,s){return Math.min(2*this.rgbToHsl(e,t,s)[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 s=this.getXY(e);return s&&e.bri?this.xyToRgb(...s,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 s=this.getRGB(e);if(s)return this.rgbToXY(...s);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 s=this.getXY(e);if(s&&e.bri){const t=this.xyToRgb(...s,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("")}}},8140:function(e,t,s){s.d(t,{Z:function(){return g}});var i=s(6252),a=s(3577),n=s(9963);const l={class:"slider-wrapper"},r=["textContent"],o=["textContent"],d={class:"slider-container"},u=["min","max","step","disabled","value"],c=["textContent"];function v(e,t,s,v,p,m){return(0,i.wg)(),(0,i.iD)("label",l,[s.withRange?((0,i.wg)(),(0,i.iD)("span",{key:0,class:(0,a.C_)(["range-labels",{"with-label":s.withLabel}])},[s.withRange?((0,i.wg)(),(0,i.iD)("span",{key:0,class:"label left",textContent:(0,a.zw)(s.range[0])},null,8,r)):(0,i.kq)("",!0),s.withRange?((0,i.wg)(),(0,i.iD)("span",{key:1,class:"label right",textContent:(0,a.zw)(s.range[1])},null,8,o)):(0,i.kq)("",!0)],2)):(0,i.kq)("",!0),(0,i._)("span",d,[(0,i._)("input",{class:(0,a.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: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,u),s.withLabel?((0,i.wg)(),(0,i.iD)("span",{key:0,class:"label",textContent:(0,a.zw)(s.value),ref:"label"},null,8,c)):(0,i.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}}},m=s(3744);const h=(0,m.Z)(p,[["render",v],["__scopeId","data-v-d90e850c"]]);var g=h},7514:function(e,t,s){s.d(t,{Z:function(){return m}});var i=s(6252),a=s(3577),n=s(9963);const l=e=>((0,i.dD)("data-v-eff375b6"),e=e(),(0,i.Cn)(),e),r=["checked","id"],o=l((()=>(0,i._)("div",{class:"switch"},[(0,i._)("div",{class:"dot"})],-1))),d={class:"label"};function u(e,t,s,l,u,c){return(0,i.wg)(),(0,i.iD)("div",{class:(0,a.C_)(["power-switch",{disabled:s.disabled}]),onClick:t[0]||(t[0]=(0,n.iM)(((...e)=>c.onInput&&c.onInput(...e)),["stop"]))},[(0,i._)("input",{type:"checkbox",checked:s.value,id:s.id},null,8,r),(0,i._)("label",null,[o,(0,i._)("span",d,[(0,i.WI)(e.$slots,"default",{},void 0,!0)])])],2)}var c={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=s(3744);const p=(0,v.Z)(c,[["render",u],["__scopeId","data-v-eff375b6"]]);var m=p},1259:function(e,t,s){s.r(t),s.d(t,{default:function(){return vs}});var i=s(6252),a=s(3577);const n={class:"zigbee-container"},l={key:0,class:"info-body"},r={class:"row"},o=(0,i._)("div",{class:"param-name"},"State",-1),d=["textContent"],u={class:"row"},c=(0,i._)("div",{class:"param-name"},"Permit Join",-1),v=["textContent"],p={key:0,class:"row"},m=(0,i._)("div",{class:"param-name"},"Network Channel",-1),h=["textContent"],g={class:"row"},b=(0,i._)("div",{class:"param-name"},"Zigbee2MQTT Version",-1),y=["textContent"],f={key:1,class:"row"},_=(0,i._)("div",{class:"param-name"},"MQTT Server",-1),w=["textContent"],k={key:2,class:"row"},q=(0,i._)("div",{class:"param-name"},"Serial Port",-1),C=["textContent"],x={key:3,class:"row"},z=(0,i._)("div",{class:"param-name"},"Firmware Type",-1),D=["textContent"],M={key:4,class:"row"},R=(0,i._)("div",{class:"param-name"},"Firmware Version",-1),G={class:"param-value"},Z={key:5,class:"row"},I=(0,i._)("div",{class:"param-name"},"Firmware Revision",-1),N=["textContent"],T={class:"view-options"},V={class:"view-selector col-s-8 col-m-9 col-l-10"},j=["value"],E=["textContent","selected","value"],S={class:"buttons"},A=["disabled"],$=(0,i._)("i",{class:"fa fa-plus"},null,-1),O=[$],F=["disabled"],B=(0,i._)("i",{class:"fa fa-sync-alt"},null,-1),L=[B],Y={class:"view-container"},U={key:0,class:"view devices"},H={key:0,class:"no-items"},P={key:0,class:"loading"},X={key:1,class:"empty"},W={key:1,class:"view groups"},J={key:0,class:"no-items"},K={key:0,class:"loading"},Q={key:1,class:"empty"};function ee(e,t,s,$,B,ee){const te=(0,i.up)("Loading"),se=(0,i.up)("Modal"),ie=(0,i.up)("DropdownItem"),ae=(0,i.up)("Dropdown"),ne=(0,i.up)("Device"),le=(0,i.up)("Group");return(0,i.wg)(),(0,i.iD)("div",n,[B.loading?((0,i.wg)(),(0,i.j4)(te,{key:0})):(0,i.kq)("",!0),(0,i.Wm)(se,{title:"Network Info",ref:"infoModal"},{default:(0,i.w5)((()=>[B.status.info?((0,i.wg)(),(0,i.iD)("div",l,[(0,i._)("div",r,[o,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.state)},null,8,d)]),(0,i._)("div",u,[c,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.permit_join)},null,8,v)]),B.status.info.network?((0,i.wg)(),(0,i.iD)("div",p,[m,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.network.channel)},null,8,h)])):(0,i.kq)("",!0),(0,i._)("div",g,[b,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.version)},null,8,y)]),B.status.info.config?.mqtt?((0,i.wg)(),(0,i.iD)("div",f,[_,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.config.mqtt.server)},null,8,w)])):(0,i.kq)("",!0),B.status.info.config?.serial?((0,i.wg)(),(0,i.iD)("div",k,[q,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.config.serial.port)},null,8,C)])):(0,i.kq)("",!0),B.status.info.coordinator?.type?((0,i.wg)(),(0,i.iD)("div",x,[z,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.coordinator.type)},null,8,D)])):(0,i.kq)("",!0),B.status.info.coordinator?.meta?((0,i.wg)(),(0,i.iD)("div",M,[R,(0,i._)("div",G,(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,i.kq)("",!0),B.status.info.coordinator?.meta?((0,i.wg)(),(0,i.iD)("div",Z,[I,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(B.status.info.coordinator.meta.revision)},null,8,N)])):(0,i.kq)("",!0)])):(0,i.kq)("",!0)])),_:1},512),(0,i._)("div",T,[(0,i._)("div",V,[(0,i._)("label",null,[(0,i._)("select",{value:B.selected.view,onChange:t[0]||(t[0]=e=>this.selected.view=e.target.value)},[((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(B.views,((e,t)=>((0,i.wg)(),(0,i.iD)("option",{textContent:(0,a.zw)((t[0].toUpperCase()+t.slice(1)).replace("_"," ")),key:t,selected:e,value:t},null,8,E)))),128))],40,j)])]),(0,i._)("div",S,["groups"===B.selected.view?((0,i.wg)(),(0,i.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))},O,8,A)):(0,i.kq)("",!0),(0,i.Wm)(ae,{ref:"networkCommandsDropdown","icon-class":"fa fa-cog",title:"Network commands"},{default:(0,i.w5)((()=>[(0,i.Wm)(ie,{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,i.wg)(),(0,i.j4)(ie,{key:1,text:"Disable Join",disabled:B.loading,onClick:t[4]||(t[4]=e=>ee.permitJoin(!1))},null,8,["disabled"])):((0,i.wg)(),(0,i.j4)(ie,{key:0,text:"Permit Join",disabled:B.loading,onClick:t[3]||(t[3]=e=>ee.permitJoin(!0))},null,8,["disabled"])),(0,i.Wm)(ie,{text:"Factory Reset",disabled:B.loading,onClick:ee.factoryReset},null,8,["disabled","onClick"])])),_:1},512),(0,i._)("button",{class:"btn btn-default",title:"Refresh network",disabled:B.loading,onClick:t[5]||(t[5]=(...e)=>ee.refresh&&ee.refresh(...e))},L,8,F)])]),(0,i._)("div",Y,["devices"===B.selected.view?((0,i.wg)(),(0,i.iD)("div",U,[Object.keys(B.devices).length?(0,i.kq)("",!0):((0,i.wg)(),(0,i.iD)("div",H,[B.loading?((0,i.wg)(),(0,i.iD)("div",P,"Loading devices...")):((0,i.wg)(),(0,i.iD)("div",X,"No devices found on the network"))])),((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(B.devices,((e,t)=>((0,i.wg)(),(0,i.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,i.wg)(),(0,i.iD)("div",W,[Object.keys(B.groups).length?(0,i.kq)("",!0):((0,i.wg)(),(0,i.iD)("div",J,[B.loading?((0,i.wg)(),(0,i.iD)("div",K,"Loading groups...")):((0,i.wg)(),(0,i.iD)("div",Q,"No groups available on the network"))])),((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(B.groups,((e,t)=>((0,i.wg)(),(0,i.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,i.kq)("",!0)])])}var te=s(2787),se=s(815),ie=s(6791),ae=s(8637),ne=s(9963);const le=e=>((0,i.dD)("data-v-6437b841"),e=e(),(0,i.Cn)(),e),re={class:"groups"},oe=["value","checked"],de=["textContent"],ue=le((()=>(0,i._)("div",{class:"footer buttons"},[(0,i._)("button",{type:"submit"},"Save")],-1))),ce=["textContent"],ve={key:1,class:"params"},pe={class:"row"},me=le((()=>(0,i._)("div",{class:"param-name"},"Name",-1))),he={class:"param-value"},ge=["value"],be={class:"buttons"},ye=le((()=>(0,i._)("i",{class:"fas fa-times"},null,-1))),fe=[ye],_e=le((()=>(0,i._)("button",{type:"submit",class:"btn btn-default"},[(0,i._)("i",{class:"fa fa-check"})],-1))),we=["textContent"],ke={class:"buttons"},qe=le((()=>(0,i._)("i",{class:"fa fa-edit"},null,-1))),Ce=[qe],xe={class:"row"},ze=le((()=>(0,i._)("div",{class:"param-name"},"IEEE Address",-1))),De=["textContent"],Me={key:0,class:"row"},Re=le((()=>(0,i._)("div",{class:"param-name"},"Network Address",-1))),Ge=["textContent"],Ze={class:"row"},Ie=le((()=>(0,i._)("div",{class:"param-name"},"Type",-1))),Ne=["textContent"],Te={key:1,class:"row"},Ve=le((()=>(0,i._)("div",{class:"param-name"},"Vendor",-1))),je={class:"param-value"},Ee={key:2,class:"row"},Se=le((()=>(0,i._)("div",{class:"param-name"},"Model",-1))),Ae={class:"param-value"},$e={key:3,class:"row"},Oe=le((()=>(0,i._)("div",{class:"param-name"},"Model ID",-1))),Fe={class:"param-value"},Be={key:4,class:"row"},Le=le((()=>(0,i._)("div",{class:"param-name"},"Description",-1))),Ye={class:"param-value"},Ue={key:5,class:"row"},He=le((()=>(0,i._)("div",{class:"param-name"},"Software Build ID",-1))),Pe={class:"param-value"},Xe={key:6,class:"row"},We=le((()=>(0,i._)("div",{class:"param-name"},"Date Code",-1))),Je={class:"param-value"},Ke={key:7,class:"row"},Qe=le((()=>(0,i._)("div",{class:"param-name"},"Power Source",-1))),et={class:"param-value"},tt={key:8,class:"section values"},st=le((()=>(0,i._)("div",{class:"header"},[(0,i._)("div",{class:"title"},"Values")],-1))),it={class:"body"},at={class:"param-name"},nt={key:0,class:"text"},lt=["textContent"],rt=["textContent"],ot={class:"param-value"},dt={key:2},ut=["value","disabled","onChange"],ct={key:3},vt=["value","onChange"],pt={key:0},mt=["value","textContent","selected","disabled"],ht={key:4},gt=["onChange","value"],bt={key:5},yt=["disabled","value","onChange"],ft={class:"section actions"},_t=le((()=>(0,i._)("div",{class:"header"},[(0,i._)("div",{class:"title"},"Actions")],-1))),wt={class:"body"},kt=le((()=>(0,i._)("div",{class:"param-name"},"Manage groups",-1))),qt=le((()=>(0,i._)("div",{class:"param-value"},[(0,i._)("i",{class:"fa fa-network-wired"})],-1))),Ct=[kt,qt],xt={key:0,class:"param-name"},zt={key:1,class:"param-name"},Dt=le((()=>(0,i._)("div",{class:"param-value"},[(0,i._)("i",{class:"fa fa-sync-alt"})],-1))),Mt=le((()=>(0,i._)("div",{class:"param-name"},"Remove Device",-1))),Rt=le((()=>(0,i._)("div",{class:"param-value"},[(0,i._)("i",{class:"fa fa-trash"})],-1))),Gt=[Mt,Rt],Zt=le((()=>(0,i._)("div",{class:"param-name"},"Force Remove Device",-1))),It=le((()=>(0,i._)("div",{class:"param-value"},[(0,i._)("i",{class:"fa fa-trash"})],-1))),Nt=[Zt,It];function Tt(e,t,s,n,l,r){const o=(0,i.up)("Loading"),d=(0,i.up)("Modal"),u=(0,i.up)("ToggleSwitch"),c=(0,i.up)("Slider");return(0,i.wg)(),(0,i.iD)("div",{class:(0,a.C_)(["item device",{selected:s.selected}])},[l.loading?((0,i.wg)(),(0,i.j4)(o,{key:0})):(0,i.kq)("",!0),(0,i.Wm)(d,{class:"groups-modal",ref:"groupsModal",title:"Device groups"},{default:(0,i.w5)((()=>[l.loading?((0,i.wg)(),(0,i.j4)(o,{key:0})):(0,i.kq)("",!0),(0,i._)("form",{class:"content",onSubmit:t[0]||(t[0]=(0,ne.iM)(((...e)=>r.manageGroups&&r.manageGroups(...e)),["prevent"]))},[(0,i._)("div",re,[((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(s.groups,((e,t)=>((0,i.wg)(),(0,i.iD)("label",{class:"row group",key:t},[(0,i._)("input",{type:"checkbox",value:t,checked:r.associatedGroups.has(parseInt(e.id))},null,8,oe),(0,i._)("span",{class:"name",textContent:(0,a.zw)(e.friendly_name?.length?e.friendly_name:`[Group #${e.id}]`)},null,8,de)])))),128))]),ue],32)])),_:1},512),(0,i._)("div",{class:(0,a.C_)(["row name header vertical-center",{selected:s.selected}]),textContent:(0,a.zw)(s.device.friendly_name||s.device.ieee_address),onClick:t[1]||(t[1]=t=>e.$emit("select"))},null,10,ce),s.selected?((0,i.wg)(),(0,i.iD)("div",ve,[(0,i._)("div",pe,[me,(0,i._)("div",he,[(0,i._)("div",{class:(0,a.C_)(["name-edit",{hidden:!l.editName}])},[(0,i._)("form",{onSubmit:t[3]||(t[3]=(0,ne.iM)(((...e)=>r.rename&&r.rename(...e)),["prevent"]))},[(0,i._)("label",null,[(0,i._)("input",{type:"text",name:"name",ref:"name",value:s.device.friendly_name},null,8,ge)]),(0,i._)("span",be,[(0,i._)("button",{type:"button",class:"btn btn-default",onClick:t[2]||(t[2]=e=>l.editName=!1)},fe),_e])],32)],2),(0,i._)("div",{class:(0,a.C_)(["name-edit",{hidden:l.editName}])},[(0,i._)("span",{textContent:(0,a.zw)(s.device.friendly_name)},null,8,we),(0,i._)("span",ke,[(0,i._)("button",{type:"button",class:"btn btn-default",onClick:t[4]||(t[4]=e=>l.editName=!0)},Ce)])],2)])]),(0,i._)("div",xe,[ze,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(s.device.ieee_address)},null,8,De)]),s.device.network_address?((0,i.wg)(),(0,i.iD)("div",Me,[Re,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(s.device.network_address)},null,8,Ge)])):(0,i.kq)("",!0),(0,i._)("div",Ze,[Ie,(0,i._)("div",{class:"param-value",textContent:(0,a.zw)(s.device.type)},null,8,Ne)]),s.device.definition?.vendor?((0,i.wg)(),(0,i.iD)("div",Te,[Ve,(0,i._)("div",je,(0,a.zw)(s.device.definition.vendor),1)])):(0,i.kq)("",!0),s.device.definition?.model?((0,i.wg)(),(0,i.iD)("div",Ee,[Se,(0,i._)("div",Ae,(0,a.zw)(s.device.definition.model),1)])):(0,i.kq)("",!0),s.device.model_id?((0,i.wg)(),(0,i.iD)("div",$e,[Oe,(0,i._)("div",Fe,(0,a.zw)(s.device.model_id),1)])):(0,i.kq)("",!0),s.device.definition?.description?((0,i.wg)(),(0,i.iD)("div",Be,[Le,(0,i._)("div",Ye,(0,a.zw)(s.device.definition.description),1)])):(0,i.kq)("",!0),s.device.software_build_id?((0,i.wg)(),(0,i.iD)("div",Ue,[He,(0,i._)("div",Pe,(0,a.zw)(s.device.software_build_id),1)])):(0,i.kq)("",!0),s.device.definition?.date_code?((0,i.wg)(),(0,i.iD)("div",Xe,[We,(0,i._)("div",Je,(0,a.zw)(s.device.definition.date_code),1)])):(0,i.kq)("",!0),s.device.power_source?((0,i.wg)(),(0,i.iD)("div",Ke,[Qe,(0,i._)("div",et,(0,a.zw)(s.device.power_source),1)])):(0,i.kq)("",!0),Object.keys(r.displayedValues).length?((0,i.wg)(),(0,i.iD)("div",tt,[st,(0,i._)("div",it,[((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(r.displayedValues,((e,t)=>((0,i.wg)(),(0,i.iD)("div",{class:"row value",key:t},[(0,i._)("div",at,[(0,i.Uk)((0,a.zw)(e.description)+" ",1),null!=r.rgbColor&&null!=e.value?.x&&null!=e.value?.y||null!=e.value?.hue&&null!=e.value?.saturation?((0,i.wg)(),(0,i.iD)("span",nt,"Color")):(0,i.kq)("",!0),e.property?((0,i.wg)(),(0,i.iD)("span",{key:1,class:"name",textContent:(0,a.zw)(e.property)},null,8,lt)):(0,i.kq)("",!0),e.unit?((0,i.wg)(),(0,i.iD)("span",{key:2,class:"unit",textContent:(0,a.zw)(e.unit)},null,8,rt)):(0,i.kq)("",!0)]),(0,i._)("div",ot,["binary"===e.type?((0,i.wg)(),(0,i.j4)(u,{key:0,value:null!=e.value_on?e.value===e.value_on:!!e.value,disabled:!e.writable,onInput:t=>r.setValue(e,t)},null,8,["value","disabled","onInput"])):"numeric"===e.type&&null!=e.value_min&&null!=e.value_max?((0,i.wg)(),(0,i.j4)(c,{key:1,"with-label":!0,range:[e.value_min,e.value_max],value:e.value,disabled:!e.writable,onChange:t=>r.setValue(e,t)},null,8,["range","value","disabled","onChange"])):"numeric"!==e.type||null!=e.value_min&&null!=e.value_max?"enum"===e.type?((0,i.wg)(),(0,i.iD)("label",ct,[(0,i._)("select",{value:e.readable&&null!=e.value?e.value:"",onChange:t=>r.setValue(e,t)},[e.readable?(0,i.kq)("",!0):((0,i.wg)(),(0,i.iD)("option",pt)),((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(e.values,(t=>((0,i.wg)(),(0,i.iD)("option",{key:t,value:t,textContent:(0,a.zw)(t),selected:e.readable&&e.value===t,disabled:!e.writable},null,8,mt)))),128))],40,vt)])):null!=r.rgbColor&&null!=e.value?.x&&null!=e.value?.y||null!=e.value?.hue&&null!=e.value?.saturation?((0,i.wg)(),(0,i.iD)("label",ht,[(0,i._)("input",{type:"color",onChange:(0,ne.iM)((t=>r.setValue(e,t)),["stop"]),value:"#"+r.rgbColor.map((e=>(e=Number(e).toString(16),1===e.length?"0"+e:e))).join("")},null,40,gt)])):((0,i.wg)(),(0,i.iD)("label",bt,[(0,i._)("input",{type:"text",disabled:!e.writable,value:e.value,onChange:t=>r.setValue(e,t)},null,40,yt)])):((0,i.wg)(),(0,i.iD)("label",dt,[(0,i._)("input",{type:"number","with-label":!0,value:e.value,disabled:!e.writable,onChange:t=>r.setValue(e,t)},null,40,ut)]))])])))),128))])])):(0,i.kq)("",!0),(0,i._)("div",ft,[_t,(0,i._)("div",wt,[(0,i._)("div",{class:"row",onClick:t[5]||(t[5]=t=>e.$refs.groupsModal.show())},Ct),(0,i._)("div",{class:"row",onClick:t[6]||(t[6]=e=>l.otaUpdatesAvailable?r.installOtaUpdates():r.checkOtaUpdates())},[l.otaUpdatesAvailable?((0,i.wg)(),(0,i.iD)("div",zt,"Install updates")):((0,i.wg)(),(0,i.iD)("div",xt,"Check for updates")),Dt]),(0,i._)("div",{class:"row",onClick:t[7]||(t[7]=e=>r.remove(!1))},Gt),(0,i._)("div",{class:"row error",onClick:t[8]||(t[8]=e=>r.remove(!0))},Nt)])])])):(0,i.kq)("",!0)],2)}var Vt=s(8140),jt=s(7514),Et=s(4212),St=s(3493),At={name:"Device",components:{Modal:St.Z,ToggleSwitch:jt.Z,Slider:Vt.Z,Loading:ie.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,s)=>{if(e.features){e.property&&(s[e.property]=s[e.property]||{},s=s[e.property]);for(const i of e.features)t(i,s)}else e.property&&(s[e.property]=e)},s={};for(const i of e)t(i,s);return s};return e(this.device.definition.exposes)},displayedValues(){const e={},t=(e,[s,i])=>(s in this.status&&(i={...i,value:this.status[s]}),null!=i.access&&(i.readable=!!(1&i.access),i.writable=!!(2&i.access),delete i.access),e[s]=i,Object.entries(i).filter((e=>e[1]instanceof Object)).reduce(t,e[s]),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 Et.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",s=new Et.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 s.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 s={device:this.device.friendly_name||this.device.ieee_address,property:e.property,value:null};switch(e.type){case"binary":e.value_toggle?s.value=e.value_toggle:e.value_on&&e.value_off?s.value=e.value===e.value_on?e.value_off:e.value_on:s.value=!e.value;break;case"numeric":s.value=parseFloat(t.target.value);break;case"enum":t.target.value?.length&&(s.value=t.target.value);break;default:if(null!=e.x&&null!=e.y||null!=e.hue&&(null!=e.saturation||null!=e.sat)){s.property="color";const i=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 Et.N({bri:[this.displayedValues.brightness?.value_min||0,this.displayedValues.brightness?.value_max||255]}),t=e.rgbToXY(...i);s.value={x:t[0],y:t[1]}}else{const e=null!=this.displayedValues.color.saturation?"saturation":"sat",t=new Et.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(...i);s.value={hue:a[0]},s.value[e]=a[1]}}break}if(null!=s.value){this.loading=!0;try{await this.request("zigbee.mqtt.device_set",s),await this.refresh()}finally{this.loading=!1}}},async manageGroups(e){const t=[...e.target.querySelectorAll("input[type=checkbox]")].reduce(((e,t)=>{const s=parseInt(t.value);return t.checked&&!this.associatedGroups.has(s)?e.add.add(s):!t.checked&&this.associatedGroups.has(s)&&e.remove.add(s),e}),{add:new Set,remove:new Set}),s=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(s)),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}`)}},$t=s(3744);const Ot=(0,$t.Z)(At,[["render",Tt],["__scopeId","data-v-6437b841"]]);var Ft=Ot;const Bt=e=>((0,i.dD)("data-v-7667f7ba"),e=e(),(0,i.Cn)(),e),Lt=["textContent"],Yt={key:1,class:"params"},Ut={class:"section devices"},Ht=Bt((()=>(0,i._)("div",{class:"header"},[(0,i._)("div",{class:"title"},"Devices")],-1))),Pt={class:"body"},Xt=["checked","value","onChange"],Wt=["textContent"],Jt={class:"section actions"},Kt=Bt((()=>(0,i._)("div",{class:"header"},[(0,i._)("div",{class:"title"},"Actions")],-1))),Qt={class:"body"},es=Bt((()=>(0,i._)("div",{class:"col-10"},"Rename Group",-1))),ts=Bt((()=>(0,i._)("div",{class:"buttons col-2 pull-right"},[(0,i._)("i",{class:"fa fa-edit"})],-1))),ss=[es,ts],is=Bt((()=>(0,i._)("div",{class:"col-10"},"Remove Group",-1))),as=Bt((()=>(0,i._)("div",{class:"buttons col-2 pull-right"},[(0,i._)("i",{class:"fa fa-trash"})],-1))),ns=[is,as];function ls(e,t,s,n,l,r){const o=(0,i.up)("Loading");return(0,i.wg)(),(0,i.iD)("div",{class:(0,a.C_)(["item group",{selected:s.selected}])},[l.loading?((0,i.wg)(),(0,i.j4)(o,{key:0})):(0,i.kq)("",!0),(0,i._)("div",{class:(0,a.C_)(["row name header vertical-center",{selected:s.selected}]),textContent:(0,a.zw)(s.group.friendly_name),onClick:t[0]||(t[0]=t=>e.$emit("select"))},null,10,Lt),s.selected?((0,i.wg)(),(0,i.iD)("div",Yt,[(0,i._)("div",Ut,[Ht,(0,i._)("div",Pt,[(0,i._)("form",null,[((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(s.devices,((e,t)=>((0,i.wg)(),(0,i.iD)("label",{class:"row",key:t},[(0,i._)("input",{type:"checkbox",checked:r.members.has(e.ieee_address),value:e.ieee_address,onChange:t=>r.toggleDevice(e.ieee_address)},null,40,Xt),(0,i._)("span",{class:"label",textContent:(0,a.zw)(e.friendly_name?.length?e.friendly_name:e.ieee_address)},null,8,Wt)])))),128))])])]),(0,i._)("div",Jt,[Kt,(0,i._)("div",Qt,[(0,i._)("div",{class:"row",onClick:t[1]||(t[1]=(...e)=>r.rename&&r.rename(...e))},ss),(0,i._)("div",{class:"row",onClick:t[2]||(t[2]=(...e)=>r.remove&&r.remove(...e))},ns)])])])):(0,i.kq)("",!0)],2)}var rs={name:"Group",emits:["select","remove","edit"],mixins:[ae.Z],components:{Loading:ie.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 s=t[1];return e[s.ieee_address]=s,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],s=t.friendly_name?.length?t.friendly_name:e,i=this.members.has(e)?"remove":"add";this.loading=!0;try{await this.request(`zigbee.mqtt.group_${i}_device`,{group:this.group.friendly_name,device:s}),this.$emit("edit",{device:s,method:i})}finally{this.loading=!1}}}};const os=(0,$t.Z)(rs,[["render",ls],["__scopeId","data-v-7667f7ba"]]);var ds=os,us={name:"ZigbeeMqtt",components:{Modal:St.Z,Dropdown:te.Z,DropdownItem:se.Z,Loading:ie.Z,Device:Ft,Group:ds},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 s=this;setTimeout((()=>{s.refresh(),s.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 cs=(0,$t.Z)(us,[["render",ee]]);var vs=cs}}]); +//# sourceMappingURL=1259.658da6e0.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1259.658da6e0.js.map b/platypush/backend/http/webapp/dist/static/js/1259.658da6e0.js.map new file mode 100644 index 00000000..69eee586 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1259.658da6e0.js.map @@ -0,0 +1 @@ +{"version":3,"file":"static/js/1259.658da6e0.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,kGCpOKC,MAAM,kB,uCAMLA,MAAM,oB,sGANdC,EAAAA,EAAAA,IAqBQ,QArBRC,EAqBQ,CApB8DC,EAAAC,YAAS,WAA7EH,EAAAA,EAAAA,IAGO,Q,MAHDD,OAAKK,EAAAA,EAAAA,IAAA,CAAC,eAAc,cAAwBF,EAAAG,c,CACjBH,EAAAC,YAAS,WAAxCH,EAAAA,EAAAA,IAA8D,Q,MAAxDD,MAAM,a,aAA8BO,EAAAA,EAAAA,IAAQJ,EAASK,MAAH,K,2BACxBL,EAAAC,YAAS,WAAzCH,EAAAA,EAAAA,IAA+D,Q,MAAzDD,MAAM,c,aAA+BO,EAAAA,EAAAA,IAAQJ,EAASK,MAAH,K,iDAG3DC,EAAAA,EAAAA,GAcO,OAdPC,EAcO,EAbLD,EAAAA,EAAAA,GAU8C,SAVvCT,OAAKK,EAAAA,EAAAA,IAAA,CAAC,SAAQ,cAESF,EAAAG,aADvBK,KAAK,QAEJ3D,IAAKmD,EAAAK,MAAM,GACXnD,IAAK8C,EAAAK,MAAM,GACXI,KAAMT,EAAAS,KACNC,SAAUV,EAAAU,SACVC,MAAOX,EAAAW,MACRC,IAAI,QACHC,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOC,EAAAC,MAAM,QAASF,IAAM,WACjCG,SAAML,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAAC,GAAOC,EAAAC,MAAM,SAAUF,IAAM,Y,WAEjBhB,EAAAG,YAAS,WAAnCL,EAAAA,EAAAA,IAAuE,Q,MAAjED,MAAM,Q,aAAyBO,EAAAA,EAAAA,IAAQJ,EAAMW,OAACC,IAAI,S,+BAM9D,OACEQ,MAAO,CAAC,QAAS,UACjBC,MAAO,CACLV,MAAO,CACLH,KAAMc,QAGRZ,SAAU,CACRF,KAAMe,QACNC,SAAS,GAGXnB,MAAO,CACLG,KAAMiB,MACND,QAASA,IAAM,CAAC,EAAG,MAGrBf,KAAM,CACJD,KAAMc,OACNE,QAAS,GAGXrB,UAAW,CACTK,KAAMe,QACNC,SAAS,GAGXvB,UAAW,CACTO,KAAMe,QACNC,SAAS,K,UChDf,MAAME,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,kLCHMrB,EAAAA,EAAAA,GAEM,OAFDT,MAAM,UAAQ,EACjBS,EAAAA,EAAAA,GAAmB,OAAdT,MAAM,UAAK,K,GAEZA,MAAM,S,0CARhBC,EAAAA,EAAAA,IAYM,OAZDD,OAAKK,EAAAA,EAAAA,IAAA,CAAC,eAAc,CAAAQ,SAAoBV,EAAAU,YAAYkB,QAAKd,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAA,IAAAc,IAAOC,EAAAjB,SAAAiB,EAAAjB,WAAAgB,IAAO,Y,EAE1EvB,EAAAA,EAAAA,GAAiD,SAA1CE,KAAK,WAAYuB,QAAS/B,EAAAW,MAAQqB,GAAIhC,EAAAgC,I,WAC7C1B,EAAAA,EAAAA,GAQQ,cANN2B,GAGA3B,EAAAA,EAAAA,GAEO,OAFP4B,EAEO,EADLC,EAAAA,EAAAA,IAAQlB,EAAAmB,OAAA,kBAAAC,GAAA,U,CAOhB,OACEC,KAAM,eACNlB,MAAO,CAAC,SACRC,MAAO,CACLW,GAAI,CACFxB,KAAM+B,QAGR5B,MAAO,CACLH,KAAMe,QACNC,SAAS,GAGXd,SAAU,CACRF,KAAMe,QACNC,SAAS,IAIbgB,QAAS,CACP3B,OAAAA,CAAQ4B,GACN,GAAI9G,KAAK+E,SACP,OAAO,EAET/E,KAAKuF,MAAM,QAASuB,EACtB,I,UCnCJ,MAAMf,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,sGCRO9B,MAAM,oB,SAIFA,MAAM,a,GACJA,MAAM,O,GACTS,EAAAA,EAAAA,GAAmC,OAA9BT,MAAM,cAAa,SAAK,G,qBAI1BA,MAAM,O,GACTS,EAAAA,EAAAA,GAAyC,OAApCT,MAAM,cAAa,eAAW,G,2BAIhCA,MAAM,O,GACTS,EAAAA,EAAAA,GAA6C,OAAxCT,MAAM,cAAa,mBAAe,G,qBAIpCA,MAAM,O,GACTS,EAAAA,EAAAA,GAAiD,OAA5CT,MAAM,cAAa,uBAAmB,G,2BAIxCA,MAAM,O,GACTS,EAAAA,EAAAA,GAAyC,OAApCT,MAAM,cAAa,eAAW,G,2BAIhCA,MAAM,O,GACTS,EAAAA,EAAAA,GAAyC,OAApCT,MAAM,cAAa,eAAW,G,2BAIhCA,MAAM,O,GACTS,EAAAA,EAAAA,GAA2C,OAAtCT,MAAM,cAAa,iBAAa,G,2BAIlCA,MAAM,O,GACTS,EAAAA,EAAAA,GAA8C,OAAzCT,MAAM,cAAa,oBAAgB,G,GACnCA,MAAM,e,SAKRA,MAAM,O,GACTS,EAAAA,EAAAA,GAA+C,OAA1CT,MAAM,cAAa,qBAAiB,G,qBAM1CA,MAAM,gB,GACJA,MAAM,0C,oDAWNA,MAAM,W,kBAGPS,EAAAA,EAAAA,GAA0B,KAAvBT,MAAM,cAAY,S,GAArB6C,G,kBAYApC,EAAAA,EAAAA,GAA8B,KAA3BT,MAAM,kBAAgB,S,GAAzB8C,G,GAKD9C,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,6LAtGnBC,EAAAA,EAAAA,IA+GM,MA/GNC,EA+GM,CA9GW6C,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,GAAA,CAAAC,IAAA,sBAE1BC,EAAAA,EAAAA,IAiDQC,GAAA,CAjDDC,MAAM,eAAevC,IAAI,a,mBAC9B,IA+CM,CA/CuBgC,EAAAQ,OAAOC,OAAI,WAAxCvD,EAAAA,EAAAA,IA+CM,MA/CNmC,EA+CM,EA9CJ3B,EAAAA,EAAAA,GAGM,MAHN4B,EAGM,CAFJ3B,GACAD,EAAAA,EAAAA,GAAiD,OAA5CT,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQwC,EAAaQ,OAANE,Q,aAG1ChD,EAAAA,EAAAA,GAGM,MAHNiD,EAGM,CAFJC,GACAlD,EAAAA,EAAAA,GAA4D,OAAvDT,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQwC,EAAwBQ,OAAjBC,KAAKI,c,YAGxBb,EAAAQ,OAAOC,KAAKK,UAAO,WAA1C5D,EAAAA,EAAAA,IAGM,MAHN6D,EAGM,CAFJC,GACAtD,EAAAA,EAAAA,GAAgE,OAA3DT,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQwC,EAA4BQ,OAArBC,KAAKK,QAAQG,U,8BAGvDvD,EAAAA,EAAAA,GAGM,MAHNwD,EAGM,CAFJC,GACAzD,EAAAA,EAAAA,GAAwD,OAAnDT,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQwC,EAAoBQ,OAAbC,KAAKW,U,YAGxBpB,EAAAQ,OAAOC,KAAKY,QAAQC,OAAI,WAA/CpE,EAAAA,EAAAA,IAGM,MAHNqE,EAGM,CAFJC,GACA9D,EAAAA,EAAAA,GAAmE,OAA9DT,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQwC,EAA+BQ,OAAxBC,KAAKY,OAAOC,KAAKG,S,6BAGpCzB,EAAAQ,OAAOC,KAAKY,QAAQK,SAAM,WAAjDxE,EAAAA,EAAAA,IAGM,MAHNyE,EAGM,CAFJC,GACAlE,EAAAA,EAAAA,GAAmE,OAA9DT,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQwC,EAA+BQ,OAAxBC,KAAKY,OAAOK,OAAOG,O,6BAGtC7B,EAAAQ,OAAOC,KAAKqB,aAAalE,OAAI,WAApDV,EAAAA,EAAAA,IAGM,MAHN6E,EAGM,CAFJC,GACAtE,EAAAA,EAAAA,GAAiE,OAA5DT,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQwC,EAA6BQ,OAAtBC,KAAKqB,YAAYlE,O,6BAGpCoC,EAAAQ,OAAOC,KAAKqB,aAAaG,OAAI,WAApD/E,EAAAA,EAAAA,IAKM,MALNgF,EAKM,CAJJC,GACAzE,EAAAA,EAAAA,GAEM,MAFN0E,GAEM5E,EAAAA,EAAAA,IADDwC,EAAAQ,OAAOC,KAAKqB,YAAYG,KAAKI,UAAW,KAAC7E,EAAAA,EAAAA,IAAGwC,EAAAQ,OAAOC,KAAKqB,YAAYG,KAAKK,UAAW,KAAC9E,EAAAA,EAAAA,IAAGwC,EAAAQ,OAAOC,KAAKqB,YAAYG,KAAKM,UAAQ,sBAI7GvC,EAAAQ,OAAOC,KAAKqB,aAAaG,OAAI,WAApD/E,EAAAA,EAAAA,IAGM,MAHNsF,EAGM,CAFJC,GACA/E,EAAAA,EAAAA,GAA0E,OAArET,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQwC,EAAsCQ,OAA/BC,KAAKqB,YAAYG,KAAKS,W,8DAKpEhF,EAAAA,EAAAA,GA8BM,MA9BNiF,EA8BM,EA7BJjF,EAAAA,EAAAA,GASM,MATNkF,EASM,EARJlF,EAAAA,EAAAA,GAOQ,eANNA,EAAAA,EAAAA,GAKS,UALAK,MAAOiC,EAAA6C,SAASC,KAAOvE,SAAML,EAAA,KAAAA,EAAA,GAAAE,GAAA,KAAOyE,SAASC,KAAO1E,EAAO2E,OAAOhF,Q,gBACzEb,EAAAA,EAAAA,IAGS8F,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHyBjD,EAAAkD,OAAK,CAAvBC,EAASL,M,WAAzB5F,EAAAA,EAAAA,IAGS,U,aAFDM,EAAAA,EAAAA,KAASsF,EAAK,GAAGM,cAAgBN,EAAKnG,MAAM,IAAI0G,QAAQ,IAAK,MAC5DjD,IAAK0C,EAAOD,SAAUM,EAAUpF,MAAO+E,G,+BAMtDpF,EAAAA,EAAAA,GAiBM,MAjBN4F,EAiBM,CAhBsE,WAAlBtD,EAAA6C,SAASC,OAAI,WAArE5F,EAAAA,EAAAA,IAGS,U,MAHDD,MAAM,kBAAkBsD,MAAM,YAC7BzC,SAAUkC,EAAAC,QAAUjB,QAAKd,EAAA,KAAAA,EAAA,OAAAe,IAAEC,GAAAqE,UAAArE,GAAAqE,YAAAtE,K,yBAIpCoB,EAAAA,EAAAA,IAMWmD,GAAA,CANDxF,IAAI,0BAA0B,aAAW,YAAYuC,MAAM,oB,mBACnE,IAAwF,EAAxFF,EAAAA,EAAAA,IAAwFoD,GAAA,CAA1EC,KAAK,eAAgB5F,SAAUkC,EAAAC,QAAUjB,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAEC,EAAAsF,MAAMC,UAAUC,S,qBAEzD7D,EAAAQ,OAAOC,MAAMI,c,WAClCX,EAAAA,EAAAA,IAAyFuD,GAAA,C,MAA3EC,KAAK,eAAgB5F,SAAUkC,EAAAC,QAAUjB,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAEc,GAAA4E,YAAW,K,wBAD5B,WAD7C5D,EAAAA,EAAAA,IACiDuD,GAAA,C,MADnCC,KAAK,cAAe5F,SAAUkC,EAAAC,QAAUjB,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAEc,GAAA4E,YAAW,K,uBAGxEzD,EAAAA,EAAAA,IAA+EoD,GAAA,CAAjEC,KAAK,gBAAiB5F,SAAUkC,EAAAC,QAAUjB,QAAOE,GAAA6E,c,6CAGjErG,EAAAA,EAAAA,GAES,UAFDT,MAAM,kBAAkBsD,MAAM,kBAAmBzC,SAAUkC,EAAAC,QAAUjB,QAAKd,EAAA,KAAAA,EAAA,OAAAe,IAAEC,GAAA8E,SAAA9E,GAAA8E,WAAA/E,K,YAMxFvB,EAAAA,EAAAA,GAwBM,MAxBNuG,EAwBM,CAvB8C,YAAlBjE,EAAA6C,SAASC,OAAI,WAA7C5F,EAAAA,EAAAA,IAUM,MAVNgH,EAUM,CATyB7K,OAAOC,KAAK0G,EAAAmE,SAASpH,QAES,iBAFH,WAAxDG,EAAAA,EAAAA,IAGM,MAHNkH,EAGM,CAFuBpE,EAAAC,UAAO,WAAlC/C,EAAAA,EAAAA,IAA4D,MAA5DmH,EAAoC,yBAAkB,WACtDnH,EAAAA,EAAAA,IAA+D,MAA/DoH,EAA0B,yCAA+B,aAG3DpH,EAAAA,EAAAA,IAGyF8F,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAH1DjD,EAAAmE,SAAO,CAAtBI,EAAQnF,M,WAAxBc,EAAAA,EAAAA,IAGyFsE,GAAA,CAHhDpE,IAAKhB,EACrCmF,OAAQA,EAASE,OAAQzE,EAAAyE,OAAS5B,SAAU7C,EAAA6C,SAAS6B,WAAatF,EAClEuF,SAAMvG,GAAE4B,EAAA6C,SAAS6B,SAAW1E,EAAA6C,SAAS6B,WAAatF,EAAK,KAAOA,EAC9DwF,SAAQ1F,GAAA2F,eAAiBC,SAAQ5F,GAAA2F,eAAiBE,aAAa7F,GAAA8F,e,mGAGpB,WAAlBhF,EAAA6C,SAASC,OAAI,WAAjD5F,EAAAA,EAAAA,IAUM,MAVN+H,EAUM,CATyB5L,OAAOC,KAAK0G,EAAAyE,QAAQ1H,QAEa,iBAFP,WAAvDG,EAAAA,EAAAA,IAGM,MAHNgI,EAGM,CAFuBlF,EAAAC,UAAO,WAAlC/C,EAAAA,EAAAA,IAA2D,MAA3DiI,EAAoC,wBAAiB,WACrDjI,EAAAA,EAAAA,IAAkE,MAAlEkI,EAA0B,4CAAkC,aAG9DlI,EAAAA,EAAAA,IAG+E8F,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHlDjD,EAAAyE,QAAM,CAApBY,EAAOjG,M,WAAtBc,EAAAA,EAAAA,IAG+EoF,GAAA,CAHzClF,IAAKhB,EAAKiG,MAAOA,EAAQlB,QAASnE,EAAAmE,QAChEtB,SAAU7C,EAAA6C,SAAS0C,UAAYnG,EAC/BuF,SAAMvG,GAAE4B,EAAA6C,SAAS0C,QAAUvF,EAAA6C,SAAS0C,UAAYnG,EAAK,KAAOA,EAC5DwF,SAAQ1F,GAAA8F,cAAgBF,SAAQ5F,GAAA8F,cAAgBQ,OAAMtG,GAAA8F,e,4OCrGzD/H,MAAM,U,sDAOXS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,kBAAgB,EACzBS,EAAAA,EAAAA,GAAmC,UAA3BE,KAAK,UAAS,UAAI,K,6BAQ3BX,MAAM,U,IACJA,MAAM,O,YACTS,EAAAA,EAAAA,GAAkC,OAA7BT,MAAM,cAAa,QAAI,K,IACvBA,MAAM,e,iBAOCA,MAAM,W,YAERS,EAAAA,EAAAA,GAA4B,KAAzBT,MAAM,gBAAc,W,IAAvBiE,I,YAGFxD,EAAAA,EAAAA,GAES,UAFDE,KAAK,SAASX,MAAM,mB,EAC1BS,EAAAA,EAAAA,GAA2B,KAAxBT,MAAM,kBAAa,K,uBAQtBA,MAAM,W,YAERS,EAAAA,EAAAA,GAA0B,KAAvBT,MAAM,cAAY,W,IAArBwI,I,IAOLxI,MAAM,O,YACTS,EAAAA,EAAAA,GAA0C,OAArCT,MAAM,cAAa,gBAAY,K,6BAIjCA,MAAM,O,YACTS,EAAAA,EAAAA,GAA6C,OAAxCT,MAAM,cAAa,mBAAe,K,uBAIpCA,MAAM,O,YACTS,EAAAA,EAAAA,GAAkC,OAA7BT,MAAM,cAAa,QAAI,K,6BAIzBA,MAAM,O,YACTS,EAAAA,EAAAA,GAAoC,OAA/BT,MAAM,cAAa,UAAM,K,IACzBA,MAAM,e,UAKRA,MAAM,O,YACTS,EAAAA,EAAAA,GAAmC,OAA9BT,MAAM,cAAa,SAAK,K,IACxBA,MAAM,e,UAKRA,MAAM,O,YACTS,EAAAA,EAAAA,GAAsC,OAAjCT,MAAM,cAAa,YAAQ,K,IAC3BA,MAAM,e,UAKRA,MAAM,O,YACTS,EAAAA,EAAAA,GAAyC,OAApCT,MAAM,cAAa,eAAW,K,IAC9BA,MAAM,e,UAKRA,MAAM,O,YACTS,EAAAA,EAAAA,GAA+C,OAA1CT,MAAM,cAAa,qBAAiB,K,IACpCA,MAAM,e,UAKRA,MAAM,O,YACTS,EAAAA,EAAAA,GAAuC,OAAlCT,MAAM,cAAa,aAAS,K,IAC5BA,MAAM,e,UAKRA,MAAM,O,YACTS,EAAAA,EAAAA,GAA0C,OAArCT,MAAM,cAAa,gBAAY,K,IAC/BA,MAAM,e,UAKRA,MAAM,kB,YACTS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,UAAQ,EACjBS,EAAAA,EAAAA,GAA+B,OAA1BT,MAAM,SAAQ,YAAM,K,IAGtBA,MAAM,Q,IAEFA,MAAM,c,UAEHA,MAAM,Q,0CAMTA,MAAM,e,kOAqCZA,MAAM,mB,YACTS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,UAAQ,EACjBS,EAAAA,EAAAA,GAAgC,OAA3BT,MAAM,SAAQ,aAAO,K,IAGvBA,MAAM,Q,YAEPS,EAAAA,EAAAA,GAA2C,OAAtCT,MAAM,cAAa,iBAAa,K,YACrCS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,eAAa,EACtBS,EAAAA,EAAAA,GAAiC,KAA9BT,MAAM,0BAAqB,K,IAFhCyI,GACAC,I,UAMK1I,MAAM,c,UACNA,MAAM,c,YACXS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,eAAa,EACtBS,EAAAA,EAAAA,GAA4B,KAAzBT,MAAM,qBAAgB,K,YAK3BS,EAAAA,EAAAA,GAA2C,OAAtCT,MAAM,cAAa,iBAAa,K,YACrCS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,eAAa,EACtBS,EAAAA,EAAAA,GAAyB,KAAtBT,MAAM,kBAAa,K,IAFxB2I,GACAC,I,YAMAnI,EAAAA,EAAAA,GAAiD,OAA5CT,MAAM,cAAa,uBAAmB,K,YAC3CS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,eAAa,EACtBS,EAAAA,EAAAA,GAAyB,KAAtBT,MAAM,kBAAa,K,IAFxB6I,GACAC,I,2IA1MV7I,EAAAA,EAAAA,IAiNM,OAjNDD,OAAKK,EAAAA,EAAAA,IAAA,CAAC,cAAa,CAAAuF,SAAoBzF,EAAAyF,a,CAC3B7C,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAE1BC,EAAAA,EAAAA,IAeQC,EAAA,CAfDrD,MAAM,eAAee,IAAI,cAAcuC,MAAM,iB,mBAClD,IAA0B,CAAXP,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAE1B1C,EAAAA,EAAAA,GAWO,QAXDT,MAAM,UAAW+I,SAAM9H,EAAA,KAAAA,EAAA,IAAAC,EAAAA,GAAAA,KAAA,IAAAc,IAAUC,EAAA+G,cAAA/G,EAAA+G,gBAAAhH,IAAY,e,EACjDvB,EAAAA,EAAAA,GAKM,MALNP,GAKM,gBAJJD,EAAAA,EAAAA,IAGQ8F,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHuC7F,EAAAqH,QAAM,CAApBY,EAAOjG,M,WAAxClC,EAAAA,EAAAA,IAGQ,SAHDD,MAAM,YAA2CmD,IAAKhB,G,EAC3D1B,EAAAA,EAAAA,GAAuF,SAAhFE,KAAK,WAAYG,MAAOqB,EAAKD,QAASD,EAAAgH,iBAAiBC,IAAItL,SAASwK,EAAMjG,M,YACjF1B,EAAAA,EAAAA,GAAyG,QAAnGT,MAAM,O,aAAOO,EAAAA,EAAAA,IAAQ6H,EAAMe,eAAerJ,OAASsI,EAAMe,cAAgB,WAAWf,EAAMjG,Q,wBAIpGzB,IAEM,O,WAIVD,EAAAA,EAAAA,GACqF,OADhFT,OAAKK,EAAAA,EAAAA,IAAA,CAAC,kCAAiC,CAAAuF,SAAoBzF,EAAAyF,Y,aAC3DrF,EAAAA,EAAAA,IAAQJ,EAA4CmH,OAArC6B,eAAiBhJ,EAAAmH,OAAO8B,cAAerH,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAEC,EAAAC,MAAM,Y,YAE9ClB,EAAAyF,WAAQ,WAAlC3F,EAAAA,EAAAA,IAyLM,MAzLNyD,GAyLM,EAxLJjD,EAAAA,EAAAA,GA8BM,MA9BNkD,GA8BM,CA7BJ0F,IACA5I,EAAAA,EAAAA,GA2BM,MA3BNqD,GA2BM,EA1BJrD,EAAAA,EAAAA,GAgBM,OAhBDT,OAAKK,EAAAA,EAAAA,IAAA,CAAC,YAAW,CAAAiJ,QAAmBvG,EAAAwG,a,EACvC9I,EAAAA,EAAAA,GAcO,QAdAsI,SAAM9H,EAAA,KAAAA,EAAA,IAAAC,EAAAA,GAAAA,KAAA,IAAAc,IAAUC,EAAAuH,QAAAvH,EAAAuH,UAAAxH,IAAM,e,EAC3BvB,EAAAA,EAAAA,GAEQ,eADNA,EAAAA,EAAAA,GAAwE,SAAjEE,KAAK,OAAO8B,KAAK,OAAO1B,IAAI,OAAQD,MAAOX,EAAAmH,OAAO6B,e,cAG3D1I,EAAAA,EAAAA,GAQO,OARPgJ,GAQO,EAPLhJ,EAAAA,EAAAA,GAES,UAFDE,KAAK,SAASX,MAAM,kBAAmB+B,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAE4B,EAAAwG,UAAW,I,IAIjEG,MAES,SAKfjJ,EAAAA,EAAAA,GAOM,OAPDT,OAAKK,EAAAA,EAAAA,IAAA,CAAC,YAAW,CAAAiJ,OAAkBvG,EAAAwG,a,EACtC9I,EAAAA,EAAAA,GAA2C,Q,aAArCF,EAAAA,EAAAA,IAAQJ,EAAqBmH,OAAd6B,gB,YACrB1I,EAAAA,EAAAA,GAIO,OAJP8D,GAIO,EAHL9D,EAAAA,EAAAA,GAES,UAFDE,KAAK,SAASX,MAAM,kBAAmB+B,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAE4B,EAAAwG,UAAW,I,eAQzE9I,EAAAA,EAAAA,GAGM,MAHNkE,GAGM,CAFJgF,IACAlJ,EAAAA,EAAAA,GAA4D,OAAvDT,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQJ,EAAoBmH,OAAb8B,e,aAGnBjJ,EAAAmH,OAAOsC,kBAAe,WAA7C3J,EAAAA,EAAAA,IAGM,MAHN8E,GAGM,CAFJ8E,IACApJ,EAAAA,EAAAA,GAA+D,OAA1DT,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQJ,EAAuBmH,OAAhBsC,kB,+BAG1CnJ,EAAAA,EAAAA,GAGM,MAHNyE,GAGM,CAFJC,IACA1E,EAAAA,EAAAA,GAAoD,OAA/CT,MAAM,c,aAAcO,EAAAA,EAAAA,IAAQJ,EAAYmH,OAAL3G,O,aAGnBR,EAAAmH,OAAOwC,YAAYC,SAAM,WAAhD9J,EAAAA,EAAAA,IAKM,MALNuF,GAKM,CAJJwE,IACAvJ,EAAAA,EAAAA,GAEM,MAFNiF,IAEMnF,EAAAA,EAAAA,IADDJ,EAAAmH,OAAOwC,WAAWC,QAAM,sBAIR5J,EAAAmH,OAAOwC,YAAYG,QAAK,WAA/ChK,EAAAA,EAAAA,IAKM,MALN0F,GAKM,CAJJuE,IACAzJ,EAAAA,EAAAA,GAEM,MAFN0J,IAEM5J,EAAAA,EAAAA,IADDJ,EAAAmH,OAAOwC,WAAWG,OAAK,sBAIP9J,EAAAmH,OAAO8C,WAAQ,WAAtCnK,EAAAA,EAAAA,IAKM,MALNoG,GAKM,CAJJgE,IACA5J,EAAAA,EAAAA,GAEM,MAFNoC,IAEMtC,EAAAA,EAAAA,IADDJ,EAAAmH,OAAO8C,UAAQ,sBAICjK,EAAAmH,OAAOwC,YAAYQ,cAAW,WAArDrK,EAAAA,EAAAA,IAKM,MALNsK,GAKM,CAJJC,IACA/J,EAAAA,EAAAA,GAEM,MAFNqC,IAEMvC,EAAAA,EAAAA,IADDJ,EAAAmH,OAAOwC,WAAWQ,aAAW,sBAIbnK,EAAAmH,OAAOmD,oBAAiB,WAA/CxK,EAAAA,EAAAA,IAKM,MALNyK,GAKM,CAJJ1D,IACAvG,EAAAA,EAAAA,GAEM,MAFNwG,IAEM1G,EAAAA,EAAAA,IADDJ,EAAAmH,OAAOmD,mBAAiB,sBAIRtK,EAAAmH,OAAOwC,YAAYa,YAAS,WAAnD1K,EAAAA,EAAAA,IAKM,MALNkH,GAKM,CAJJC,IACA3G,EAAAA,EAAAA,GAEM,MAFN4G,IAEM9G,EAAAA,EAAAA,IADDJ,EAAAmH,OAAOwC,WAAWa,WAAS,sBAIXxK,EAAAmH,OAAOsD,eAAY,WAA1C3K,EAAAA,EAAAA,IAKM,MALN+H,GAKM,CAJJC,IACAxH,EAAAA,EAAAA,GAEM,MAFNyH,IAEM3H,EAAAA,EAAAA,IADDJ,EAAAmH,OAAOsD,cAAY,sBAIQxO,OAAOC,KAAK4F,EAAA4I,iBAAiB/K,SAAM,WAArEG,EAAAA,EAAAA,IAkDM,MAlDNkI,GAkDM,CAjDJ2C,IAIArK,EAAAA,EAAAA,GA4CM,MA5CNsK,GA4CM,gBA3CJ9K,EAAAA,EAAAA,IA0CM8F,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IA1C6C/D,EAAA4I,iBAAe,CAAnC/J,EAAOkK,M,WAAtC/K,EAAAA,EAAAA,IA0CM,OA1CDD,MAAM,YAA0DmD,IAAK6H,G,EACxEvK,EAAAA,EAAAA,GAMM,MANNwK,GAMM,mBALDnK,EAAMwJ,aAAc,IACvB,GAAqC,MAAZrI,EAAAiJ,UAAuC,MAAlBpK,EAAMA,OAAOvE,GAA+B,MAAlBuE,EAAMA,OAAOhD,GAAsE,MAAhBgD,EAAMA,OAAO/E,KAAsC,MAAvB+E,EAAMA,OAAOqK,aAAU,WAA9LlL,EAAAA,EAAAA,IACoG,OADpGmL,GACwF,WAAK,eAC5CtK,EAAMkK,WAAQ,WAA/D/K,EAAAA,EAAAA,IAAmE,Q,MAA7DD,MAAM,O,aAAOO,EAAAA,EAAAA,IAAQO,EAAMkK,W,4BACYlK,EAAMuK,OAAI,WAAvDpL,EAAAA,EAAAA,IAA2D,Q,MAArDD,MAAM,O,aAAOO,EAAAA,EAAAA,IAAQO,EAAMuK,O,+BAGnC5K,EAAAA,EAAAA,GAgCM,MAhCN6K,GAgCM,CA9B2D,WAAfxK,EAAMH,OAAI,WAD1DsC,EAAAA,EAAAA,IAEiDsI,EAAA,C,MAFlCzK,MAAyB,MAAlBA,EAAM0K,SAAmB1K,EAAMA,QAAUA,EAAM0K,WAAa1K,EAAMA,MACzED,UAAWC,EAAM2K,SACjBzK,QAAKG,GAAEc,EAAAyJ,SAAS5K,EAAOK,I,wCAIJ,YAAfL,EAAMH,MAAyC,MAAnBG,EAAM6K,WAAwC,MAAnB7K,EAAM8K,YAAS,WAFzF3I,EAAAA,EAAAA,IAEqG4I,EAAA,C,MAF5F,cAAY,EAAOrL,MAAK,CAAGM,EAAM6K,UAAW7K,EAAM8K,WAAa9K,MAAOA,EAAMA,MAC5ED,UAAWC,EAAM2K,SAAWnK,SAAMH,GAAEc,EAAAyJ,SAAS5K,EAAOK,I,iDAG5B,YAAfL,EAAMH,MAA0C,MAAnBG,EAAM6K,WAAwC,MAAnB7K,EAAM8K,UAK/C,SAAf9K,EAAMH,OAAI,WAA5BV,EAAAA,EAAAA,IAOQ,QAAA6L,GAAA,EANNrL,EAAAA,EAAAA,GAKS,UALAK,MAAOA,EAAMiL,UAA2B,MAAfjL,EAAMA,MAAgBA,EAAMA,MAAQ,GAC7DQ,SAAMH,GAAEc,EAAAyJ,SAAS5K,EAAOK,I,CAChBL,EAAMiL,UAAY,iBAAJ,WAA7B9L,EAAAA,EAAAA,IAAiC,SAAA+L,OAAA,aACjC/L,EAAAA,EAAAA,IAC2F8F,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IADlElF,EAAMmL,QAAhBC,K,WAAfjM,EAAAA,EAAAA,IAC2F,UADnDkD,IAAK+I,EAASpL,MAAOoL,E,aAAQ3L,EAAAA,EAAAA,IAAQ2L,GACpEtG,SAAU9E,EAAMiL,UAAYjL,EAAMA,QAAUoL,EAASrL,UAAWC,EAAM2K,U,+BAIrD,MAAZxJ,EAAAiJ,UAAuC,MAAlBpK,EAAMA,OAAOvE,GAA+B,MAAlBuE,EAAMA,OAAOhD,GAA+D,MAAhBgD,EAAMA,OAAO/E,KAAsC,MAAvB+E,EAAMA,OAAOqK,aAAU,WAAhLlL,EAAAA,EAAAA,IAIQ,QAAAkM,GAAA,EAFN1L,EAAAA,EAAAA,GAC0H,SADnHE,KAAK,QAASW,UAAMJ,EAAAA,GAAAA,KAAAC,GAAOc,EAAAyJ,SAAS5K,EAAOK,IAAM,UAChDL,MAAK,IAAQmB,EAAAiJ,SAASxM,KAAK0N,IAAQA,EAAI3K,OAAO2K,GAAGvM,SAAS,IAAyB,IAAbuM,EAAEtM,OAAe,IAAMsM,EAAIA,KAAKrM,KAAK,K,4BAGrHE,EAAAA,EAAAA,IAEQ,QAAAoM,GAAA,EADN5L,EAAAA,EAAAA,GAAwG,SAAjGE,KAAK,OAAQE,UAAWC,EAAM2K,SAAW3K,MAAOA,EAAMA,MAAQQ,SAAMH,GAAEc,EAAAyJ,SAAS5K,EAAOK,I,iBArBN,WAAzFlB,EAAAA,EAAAA,IAGQ,QAAAqM,GAAA,EAFN7L,EAAAA,EAAAA,GAC2C,SADpCE,KAAK,SAAU,cAAY,EAAOG,MAAOA,EAAMA,MAAQD,UAAWC,EAAM2K,SACvEnK,SAAMH,GAAEc,EAAAyJ,SAAS5K,EAAOK,I,kDA0B1CV,EAAAA,EAAAA,GAmCM,MAnCN8L,GAmCM,CAlCJC,IAIA/L,EAAAA,EAAAA,GA6BM,MA7BNgM,GA6BM,EA5BJhM,EAAAA,EAAAA,GAKM,OALDT,MAAM,MAAO+B,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAEC,EAAAsF,MAAMgG,YAAY9F,S,KAO3CnG,EAAAA,EAAAA,GAMM,OANDT,MAAM,MAAO+B,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAE4B,EAAA4J,oBAAsB1K,EAAA2K,oBAAsB3K,EAAA4K,oB,CACpC9J,EAAA4J,sBAAsC,WACrE1M,EAAAA,EAAAA,IAAoD,MAApD6M,GAA+B,sBADmB,WAAlD7M,EAAAA,EAAAA,IAA2E,MAA3E8M,GAAoD,sBAEpDC,MAKFvM,EAAAA,EAAAA,GAKM,OALDT,MAAM,MAAO+B,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAEc,EAAAgL,QAAO,K,KAOhCxM,EAAAA,EAAAA,GAKM,OALDT,MAAM,YAAa+B,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAEc,EAAAgL,QAAO,K,+EAoBhD,IACExK,KAAM,SACNyK,WAAY,CAACC,MAAK,KAAEC,aAAY,KAAEC,OAAM,KAAEC,QAAOA,GAAAA,GACjDC,OAAQ,CAACC,GAAAA,GACTjM,MAAO,CAAC,SAAU,SAAU,SAAU,eAEtCC,MAAO,CACL8F,OAAQ,CACN3G,KAAMvE,OACNqR,UAAU,GAGZjG,OAAQ,CACN7G,KAAMvE,OACNuF,QAASA,QAGXiE,SAAU,CACRjF,KAAMe,QACNC,SAAS,IAIb+L,IAAAA,GACE,MAAO,CACLnE,UAAU,EACVvG,SAAS,EACTO,OAAQ,CAAC,EACToJ,qBAAqB,EAEzB,EAEAgB,SAAU,CACR1B,MAAAA,GACE,IAAKnQ,KAAKwL,OAAOwC,YAAY8D,QAC3B,MAAO,CAAC,EAEV,MAAMC,EAAiB5B,IACrB,MAAM6B,EAAeA,CAAChN,EAAOiN,KAC3B,GAAKjN,EAAMkN,SAAX,CAOIlN,EAAMkK,WACR+C,EAAKjN,EAAMkK,UAAY+C,EAAKjN,EAAMkK,WAAa,CAAC,EAChD+C,EAAOA,EAAKjN,EAAMkK,WAGpB,IAAK,MAAMiD,KAAWnN,EAAMkN,SAC1BF,EAAaG,EAASF,EARxB,MAJMjN,EAAMkK,WACR+C,EAAKjN,EAAMkK,UAAYlK,EAWE,EAGzBoN,EAAM,CAAC,EACb,IAAK,MAAMpN,KAASmL,EAClB6B,EAAahN,EAAOoN,GAEtB,OAAOA,CAAE,EAGX,OAAOL,EAAc/R,KAAKwL,OAAOwC,WAAW8D,QAC9C,EAEA/C,eAAAA,GACE,MAAMqD,EAAM,CAAC,EACPC,EAAcA,CAACC,GAAMjL,EAAKrC,MAC1BqC,KAAOrH,KAAKyH,SACdzC,EAAQ,IACHA,EACHA,MAAOhF,KAAKyH,OAAOJ,KAGH,MAAhBrC,EAAMuN,SACRvN,EAAMiL,YAA6B,EAAfjL,EAAMuN,QAC1BvN,EAAM2K,YAA6B,EAAf3K,EAAMuN,eACnBvN,EAAMuN,QAGfD,EAAIjL,GAAOrC,EACX1E,OAAOkS,QAAQxN,GAAOyN,QAAQC,GAAMA,EAAE,aAAcpS,SAAQqS,OAAON,EAAaC,EAAIjL,IAC7EiL,GAIT,OADAhS,OAAOkS,QAAQxS,KAAKmQ,QAAQwC,OAAON,EAAaD,GACzCA,CACT,EAEAhD,QAAAA,GACE,IAAKpP,KAAK+O,gBAAgBzN,MACxB,OAEF,MAAMA,EAAQtB,KAAK+O,gBAAgBzN,OAAO0D,MAC1C,GAAK1D,EAAL,CAGA,GAAe,MAAXA,EAAMb,GAAwB,MAAXa,EAAMU,EAAW,CACtC,MAAM4Q,EAAY,IAAI/S,GAAAA,EAAe,CACnCM,IAAK,CAACH,KAAK+O,gBAAgB9M,YAAY4N,WAAa,EAAG7P,KAAK+O,gBAAgB9M,YAAY6N,WAAa,OAGvG,OAAO8C,EAAU7Q,QAAQT,EAAMb,EAAGa,EAAMU,EAAGhC,KAAK+O,gBAAgB9M,WAAW+C,MAC7E,CACA,GAAiB,MAAb1D,EAAMrB,MAAoC,MAApBqB,EAAM+N,YAAmC,MAAb/N,EAAMpB,KAAc,CACxE,MAAM2S,EAA8B,MAApBvR,EAAM+N,WAAqB,aAAe,MACpDuD,EAAY,IAAI/S,GAAAA,EAAe,CACnCI,IAAK,CAACD,KAAK+O,gBAAgBzN,MAAMrB,KAAK4P,WAAa,EAAG7P,KAAK+O,gBAAgBzN,MAAMrB,IAAI6P,WAAa,OAClG5P,IAAK,CAACF,KAAK+O,gBAAgBzN,MAAMuR,IAAUhD,WAAa,EAAG7P,KAAK+O,gBAAgBzN,MAAMuR,GAAS/C,WAAa,KAC5G3P,IAAK,CAACH,KAAK+O,gBAAgB9M,YAAY4N,WAAa,EAAG7P,KAAK+O,gBAAgB9M,YAAY6N,WAAa,OAGvG,OAAO8C,EAAUhS,SAASU,EAAMrB,IAAKqB,EAAMuR,GAAU7S,KAAK+O,gBAAgB9M,WAAW+C,MACvF,CAEA,OAAO,IApBC,CAqBV,EAEAmI,gBAAAA,GACE,OAAO,IAAI2F,IAAIxS,OAAO6P,OAAOnQ,KAAK0L,QAC7B+G,QAAQnG,GAAU,IAAIwG,KAClBxG,EAAMyG,SAAW,IAAInQ,KAAKoQ,GAAWA,EAAO1F,gBAAeF,IAAIpN,KAAKwL,OAAO8B,gBAC/E1K,KAAK0J,GAAUxK,SAASwK,EAAMjG,MACrC,GAGFQ,QAAS,CACP,aAAMoE,GACJjL,KAAKkH,SAAU,EACf,IACElH,KAAKyH,aAAezH,KAAKiT,QAAQ,yBAC7B,CAACzH,OAAQxL,KAAKwL,OAAO6B,eAAiBrN,KAAKwL,OAAO8B,cACxD,CAAE,QACAtN,KAAKkH,SAAU,CACjB,CACF,EAEA,YAAMwG,GACJ,MAAM/G,GAAQ3G,KAAK4K,MAAMjE,KAAK3B,OAAS,IAAIkO,OAC3C,GAAKvM,EAAK3C,QAAU2C,IAAS3G,KAAKwL,OAAO6B,cAAzC,CAGArN,KAAKkH,SAAU,EACf,UACQlH,KAAKiT,QAAQ,4BAA6B,CAC9CzH,OAAQxL,KAAKwL,OAAO6B,eAAerJ,OAAShE,KAAKwL,OAAO6B,cAAgBrN,KAAKwL,OAAO8B,aACpF3G,KAAMA,IAGR3G,KAAKuF,MAAM,SAAU,CAACoB,KAAM3G,KAAKwL,OAAO6B,cAAe8F,QAASxM,GAClE,CAAE,QACA3G,KAAKyN,UAAW,EAChBzN,KAAKkH,SAAU,CACjB,CAbQ,CAcV,EAEA,YAAMiK,CAAOiC,GACX,GAAKC,QAAQ,6EAAb,CAGAD,IAAUA,EACVpT,KAAKkH,SAAU,EACf,UACQlH,KAAKiT,QAAQ,4BAA6B,CAC9CzH,OAAQxL,KAAKwL,OAAO6B,eAAerJ,OAAShE,KAAKwL,OAAO6B,cAAgBrN,KAAKwL,OAAO8B,aACpF8F,MAAOA,IAGTpT,KAAKuF,MAAM,SAAU,CAACiG,OAAQxL,KAAKwL,OAAO6B,eAAiBrN,KAAKwL,OAAO8B,cACzE,CAAE,QACAtN,KAAKkH,SAAU,CACjB,CAbQ,CAcV,EAEA,cAAM0I,CAAS5K,EAAO8B,GACpB,MAAMmM,EAAU,CACdzH,OAAQxL,KAAKwL,OAAO6B,eAAiBrN,KAAKwL,OAAO8B,aACjD4B,SAAUlK,EAAMkK,SAChBlK,MAAO,MAGT,OAAQA,EAAMH,MACZ,IAAK,SACCG,EAAMsO,aACRL,EAAQjO,MAAQA,EAAMsO,aACbtO,EAAM0K,UAAY1K,EAAMuO,UACjCN,EAAQjO,MAAQA,EAAMA,QAAUA,EAAM0K,SAAW1K,EAAMuO,UAAYvO,EAAM0K,SAEzEuD,EAAQjO,OAASA,EAAMA,MAEzB,MAEF,IAAK,UACHiO,EAAQjO,MAAQjC,WAAW+D,EAAMkD,OAAOhF,OACxC,MAEF,IAAK,OACC8B,EAAMkD,OAAOhF,OAAOhB,SACtBiP,EAAQjO,MAAQ8B,EAAMkD,OAAOhF,OAE/B,MAEF,QACE,GAAgB,MAAXA,EAAMvE,GAAwB,MAAXuE,EAAMhD,GAA4B,MAAbgD,EAAM/E,MAAoC,MAApB+E,EAAMqK,YAAmC,MAAbrK,EAAM9E,KAAe,CAClH+S,EAAQ/D,SAAW,QACnB,MAAMhM,EAAM4D,EAAMkD,OAAOhF,MAAMpB,MAAM,GAChC4P,MAAM,oBACNf,QAAO,CAAC5O,EAAGyM,IAAMA,EAAI,IACrB1N,KAAK0N,GAAMxO,SAASwO,EAAG,MAE5B,GAAgB,MAAXtL,EAAMvE,GAAwB,MAAXuE,EAAMhD,EAAY,CACxC,MAAM4Q,EAAY,IAAI/S,GAAAA,EAAe,CACnCM,IAAK,CAACH,KAAK+O,gBAAgB9M,YAAY4N,WAAa,EAAG7P,KAAK+O,gBAAgB9M,YAAY6N,WAAa,OAGjG1M,EAAKwP,EAAU9P,WAAWI,GAChC+P,EAAQjO,MAAQ,CACdvE,EAAG2C,EAAG,GACNpB,EAAGoB,EAAG,GAEV,KAAO,CACL,MAAMyP,EAAmD,MAAzC7S,KAAK+O,gBAAgBzN,MAAM+N,WAAqB,aAAe,MACzEuD,EAAY,IAAI/S,GAAAA,EAAe,CACnCI,IAAK,CAACD,KAAK+O,gBAAgBzN,MAAMrB,KAAK4P,WAAa,EAAG7P,KAAK+O,gBAAgBzN,MAAMrB,IAAI6P,WAAa,OAClG5P,IAAK,CAACF,KAAK+O,gBAAgBzN,MAAMuR,IAAUhD,WAAa,EAAG7P,KAAK+O,gBAAgBzN,MAAMuR,GAAS/C,WAAa,KAC5G3P,IAAK,CAACH,KAAK+O,gBAAgB9M,YAAY4N,WAAa,EAAG7P,KAAK+O,gBAAgB9M,YAAY6N,WAAa,OAGjG2D,EAAMb,EAAUnR,YAAYyB,GAClC+P,EAAQjO,MAAQ,CACd/E,IAAKwT,EAAI,IAGXR,EAAQjO,MAAM6N,GAAWY,EAAI,EAC/B,CACF,CACA,MAGJ,GAAqB,MAAjBR,EAAQjO,MAAZ,CAGAhF,KAAKkH,SAAU,EACf,UACQlH,KAAKiT,QAAQ,yBAA0BA,SACvCjT,KAAKiL,SACb,CAAE,QACAjL,KAAKkH,SAAU,CACjB,CARQ,CASV,EAEA,kBAAMgG,CAAapG,GACjB,MAAM4E,EAAS,IAAI5E,EAAMkD,OAAO0J,iBAAiB,yBAAyBf,QAAO,CAACL,EAAKqB,KACrF,MAAMnH,EAAU1K,SAAS6R,EAAQ3O,OAMjC,OALI2O,EAAQvN,UAAYpG,KAAKmN,iBAAiBC,IAAIZ,GAChD8F,EAAIsB,IAAIA,IAAIpH,IACJmH,EAAQvN,SAAWpG,KAAKmN,iBAAiBC,IAAIZ,IACrD8F,EAAInB,OAAOyC,IAAIpH,GAEV8F,CAAE,GACR,CAACsB,IAAK,IAAId,IAAO3B,OAAQ,IAAI2B,MAE1Be,EAAaC,gBACXC,QAAQC,IAAI,IAAItI,EAAOuI,IAASrR,KAAIkR,gBAClC9T,KAAKiT,QAAS,qBAAoBgB,WAAiB,CACvD3H,MAAOtM,KAAK0L,OAAOc,GAASa,cAC5B7B,OAAQxL,KAAKwL,OAAO6B,eAAerJ,OAAShE,KAAKwL,OAAO6B,cAAgBrN,KAAKwL,OAAO8B,cACpF,IACD,EAGLtN,KAAKkH,SAAU,EACf,UACQ6M,QAAQC,IAAI1T,OAAOC,KAAKmL,GAAQ9I,IAAIiR,IAC1C7T,KAAKuF,MAAM,cAAemG,EAC5B,CAAE,QACA1L,KAAKkH,SAAU,CACjB,CACF,EAEA,qBAAM6J,GACJ/Q,KAAKkH,SAAU,EACf,IACElH,KAAK6Q,2BAA6B7Q,KAAKiT,QAAQ,uCAAwC,CACrFzH,OAAQxL,KAAKwL,OAAO6B,eAAerJ,OAAShE,KAAKwL,OAAO6B,cAAgBrN,KAAKwL,OAAO8B,gBAClF4G,iBAEAlU,KAAK6Q,oBACP7Q,KAAKmU,OAAO,CACVxJ,KAAM,gDACNyJ,MAAO,CACLC,UAAW,oBAIfrU,KAAKmU,OAAO,CACVxJ,KAAM,2BACNyJ,MAAO,CACLC,UAAW,gBAGnB,CAAE,QACArU,KAAKkH,SAAU,CACjB,CACF,EAEA,uBAAM4J,GACJ9Q,KAAKkH,SAAU,EACf,UACQlH,KAAKiT,QAAQ,yCAA0C,CAC3DzH,OAAQxL,KAAKwL,OAAO6B,eAAerJ,OAAShE,KAAKwL,OAAO6B,cAAgBrN,KAAKwL,OAAO8B,cAExF,CAAE,QACAtN,KAAKkH,SAAU,CACjB,CACF,GAGFoN,OAAAA,GACEtU,KAAKuU,QAAO,IAAMvU,KAAK8J,WAAW0K,IAC5BA,GACFxU,KAAKiL,SAAS,IAGlBjL,KAAKuU,QAAO,IAAMvU,KAAKyH,OAAOyM,mBAAmBM,IAC/CxU,KAAK6Q,oBAAsB2D,CAAO,IAGpCxU,KAAKyU,WAAW3N,IACVA,EAAM0E,SAAWxL,KAAKwL,OAAO6B,eAAiBvG,EAAM0E,SAAWxL,KAAKwL,OAAO8B,eAG/EtN,KAAKyH,OAAS,IAAIzH,KAAKyH,UAAWX,EAAM4N,YAAW,GACjD,sBAAqB1U,KAAKwL,OAAO8B,eACjC,uEACN,EAEAqH,SAAAA,GACE3U,KAAK4U,YAAa,sBAAqB5U,KAAKwL,OAAO8B,eACrD,G,WCziBF,MAAMvH,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,0FCHS7B,MAAM,U,IACJA,MAAM,mB,YACTS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,UAAQ,EACjBS,EAAAA,EAAAA,GAAgC,OAA3BT,MAAM,SAAQ,aAAO,K,IAGvBA,MAAM,Q,yDAWRA,MAAM,mB,YACTS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,UAAQ,EACjBS,EAAAA,EAAAA,GAAgC,OAA3BT,MAAM,SAAQ,aAAO,K,IAGvBA,MAAM,Q,YAEPS,EAAAA,EAAAA,GAAsC,OAAjCT,MAAM,UAAS,gBAAY,K,YAChCS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,4BAA0B,EACnCS,EAAAA,EAAAA,GAA0B,KAAvBT,MAAM,iBAAY,K,IAFvByJ,GACAxF,I,YAMAxD,EAAAA,EAAAA,GAAsC,OAAjCT,MAAM,UAAS,gBAAY,K,YAChCS,EAAAA,EAAAA,GAEM,OAFDT,MAAM,4BAA0B,EACnCS,EAAAA,EAAAA,GAA2B,KAAxBT,MAAM,kBAAa,K,IAFxB0J,GACApF,I,uEArCVrE,EAAAA,EAAAA,IA4CM,OA5CDD,OAAKK,EAAAA,EAAAA,IAAA,CAAC,aAAY,CAAAuF,SAAoBzF,EAAAyF,a,CAC1B7C,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAC1B1C,EAAAA,EAAAA,GAC6D,OADxDT,OAAKK,EAAAA,EAAAA,IAAA,CAAC,kCAAiC,CAAAuF,SAAoBzF,EAAAyF,Y,aAC3DrF,EAAAA,EAAAA,IAAQJ,EAAoBiI,MAAde,eAAgBpH,QAAKd,EAAA,KAAAA,EAAA,GAAAE,GAAEC,EAAAC,MAAM,Y,YAEtBlB,EAAAyF,WAAQ,WAAlC3F,EAAAA,EAAAA,IAsCM,MAtCNmC,GAsCM,EArCJ3B,EAAAA,EAAAA,GAcM,MAdN4B,GAcM,CAbJ3B,IAIAD,EAAAA,EAAAA,GAQM,MARNkQ,GAQM,EAPJlQ,EAAAA,EAAAA,GAMO,4BALLR,EAAAA,EAAAA,IAIQ8F,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAJkC7F,EAAA+G,SAAO,CAAtBI,EAAQnF,M,WAAnClC,EAAAA,EAAAA,IAIQ,SAJDD,MAAM,MAAuCmD,IAAKhB,G,EACvD1B,EAAAA,EAAAA,GACqD,SAD9CE,KAAK,WAAYuB,QAASD,EAAA4M,QAAQ3F,IAAI5B,EAAO8B,cAAgBtI,MAAOwG,EAAO8B,aAC1E9H,SAAMH,GAAEc,EAAA2O,aAAatJ,EAAO8B,e,aACpC3I,EAAAA,EAAAA,GAAyG,QAAnGT,MAAM,Q,aAAQO,EAAAA,EAAAA,IAAQ+G,EAAO6B,eAAerJ,OAASwH,EAAO6B,cAAgB7B,EAAO8B,e,6BAMjG3I,EAAAA,EAAAA,GAoBM,MApBN4I,GAoBM,CAnBJvF,IAIArD,EAAAA,EAAAA,GAcM,MAdNsD,GAcM,EAbJtD,EAAAA,EAAAA,GAKM,OALDT,MAAM,MAAO+B,QAAKd,EAAA,KAAAA,EAAA,OAAAe,IAAEC,EAAAuH,QAAAvH,EAAAuH,UAAAxH,K,KAOzBvB,EAAAA,EAAAA,GAKM,OALDT,MAAM,MAAO+B,QAAKd,EAAA,KAAAA,EAAA,OAAAe,IAAEC,EAAAgL,QAAAhL,EAAAgL,UAAAjL,K,+BAgBnC,QACES,KAAM,QACNlB,MAAO,CAAC,SAAU,SAAU,QAC5BgM,OAAQ,CAACC,GAAAA,GACTN,WAAY,CAACI,QAAOA,GAAAA,GAEpB9L,MAAO,CACL4G,MAAO,CACLzH,KAAMvE,OACNqR,UAAU,GAGZvG,QAAS,CACPvG,KAAMvE,OACNuF,QAASA,KAAe,CAAC,IAG3BiE,SAAU,CACRjF,KAAMe,QACNC,SAAS,IAIb+L,IAAAA,GACE,MAAO,CACL1K,SAAS,EACTiJ,OAAQ,CAAC,EAEb,EAEA0B,SAAU,CACRkD,gBAAAA,GACE,OAAOzU,OAAOkS,QAAQxS,KAAKoL,SAASuH,QAAO,CAACL,EAAK0C,KAC/C,MAAMxJ,EAASwJ,EAAM,GAErB,OADA1C,EAAI9G,EAAO8B,cAAgB9B,EACpB8G,CAAE,GACR,CAAC,EACN,EAEAS,OAAAA,GACE,OAAO,IAAID,KAAK9S,KAAKsM,MAAMyG,SAAW,IAAInQ,KAAKoQ,GAAWA,EAAO1F,eACnE,GAGFzG,QAAS,CACP,YAAMsK,GACJ,GAAKkC,QAAQ,oDAAb,CAGArT,KAAKkH,SAAU,EACf,UACQlH,KAAKiT,QAAQ,2BAA4B,CAACtM,KAAM3G,KAAKsM,MAAMe,gBACjErN,KAAKuF,MAAM,SAAU,CAACoB,KAAM3G,KAAKsM,MAAMe,eACzC,CAAE,QACArN,KAAKkH,SAAU,CACjB,CARQ,CASV,EAEA,YAAMwG,GACJ,IAAI/G,EAAOsO,OAAO,iBAAkBjV,KAAKsM,MAAMe,eAC/C,GAAK1G,GAAM3C,OAAX,CAGA2C,EAAOA,EAAKuM,OACZlT,KAAKkH,SAAU,EAEf,UACQlH,KAAKiT,QAAQ,2BAA4B,CAC7C3G,MAAOtM,KAAKsM,MAAMe,eAAiBrN,KAAKsM,MAAMjG,GAC9CM,KAAMA,IAGR3G,KAAKuF,MAAM,SAAU,CAACoB,KAAM3G,KAAKsM,MAAMe,cAAe8F,QAASxM,GACjE,CAAE,QACA3G,KAAKkH,SAAU,CACjB,CAdQ,CAeV,EAEA,kBAAM4N,CAAaI,GACjB,MAAM1J,EAASxL,KAAK+U,iBAAiBG,GAC/BvO,EAAO6E,EAAO6B,eAAerJ,OAASwH,EAAO6B,cAAgB6H,EAC7DC,EAASnV,KAAK+S,QAAQ3F,IAAI8H,GAAe,SAAW,MAE1DlV,KAAKkH,SAAU,EACf,UACQlH,KAAKiT,QAAS,qBAAoBkC,WAAiB,CACvD7I,MAAOtM,KAAKsM,MAAMe,cAClB7B,OAAQ7E,IAGV3G,KAAKuF,MAAM,OAAQ,CAACiG,OAAQ7E,EAAMwO,OAAQA,GAC5C,CAAE,QACAnV,KAAKkH,SAAU,CACjB,CACF,IC3IJ,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UJoHA,IACEP,KAAM,aACNyK,WAAY,CAACC,MAAK,KAAE+D,SAAQ,KAAEC,aAAY,KAAE7D,QAAO,KAAE8D,OAAM,GAAEC,MAAKA,IAClE9D,OAAQ,CAACC,GAAAA,GAETE,IAAAA,GACE,MAAO,CACLxG,QAAS,CAAC,EACVM,OAAQ,CAAC,EACTjE,OAAQ,CAAC,EACTP,SAAS,EACT4C,SAAU,CACRC,KAAM,UACN4B,cAAUjF,EACV8F,aAAS9F,GAEXyD,MAAO,CACLiB,SAAS,EACTM,QAAQ,GAEV8J,MAAO,CACLlJ,MAAO,CACLmJ,SAAS,IAIjB,EAEA5O,QAAS,CACP,oBAAMiF,GACJ9L,KAAKkH,SAAU,EAEf,IACElH,KAAKoL,eAAiBpL,KAAKiT,QAAQ,wBAAwBN,QAAO,CAACvH,EAASI,KACtEA,EAAO6B,iBAAiBrN,KAAKoL,UAC/BI,EAAS,CACP2E,OAAQnQ,KAAKoL,QAAQI,EAAO6B,eAAe8C,QAAU,CAAC,KACnDnQ,KAAKoL,QAAQI,EAAO6B,iBAI3BjC,EAAQI,EAAO6B,eAAiB7B,EACzBJ,IACN,CAAC,EACN,CAAE,QACApL,KAAKkH,SAAU,CACjB,CACF,EAEA,mBAAM+E,GACJjM,KAAKkH,SAAU,EACf,IACElH,KAAK0L,cAAgB1L,KAAKiT,QAAQ,uBAAuBN,QAAO,CAACjH,EAAQY,KACvEZ,EAAOY,EAAMjG,IAAMiG,EACZZ,IACN,CAAC,EACN,CAAE,QACA1L,KAAKkH,SAAU,CACjB,CACF,EAEA,iBAAMwO,GACJ1V,KAAKkH,SAAU,EACf,IACElH,KAAKyH,aAAezH,KAAKiT,QAAQ,mBACnC,CAAE,QACAjT,KAAKkH,SAAU,CACjB,CACF,EAEA+D,OAAAA,GACEjL,KAAK8L,iBACL9L,KAAKiM,gBACLjM,KAAK0V,aACP,EAEAC,gBAAAA,CAAiBnK,EAAQ9F,GACvB1F,KAAKoL,QAAQI,GAAQ2E,OAASzK,CAChC,EAEA,cAAM8E,GACJ,MAAM7D,EAAOsO,OAAO,cACpB,GAAMtO,GAAQA,EAAK3C,OAAnB,CAIAhE,KAAKkH,SAAU,EACf,UACQlH,KAAKiT,QAAQ,wBAAyB,CAACtM,KAAMA,GACrD,CAAE,QACA3G,KAAKkH,SAAU,CACjB,OAEMlH,KAAKiM,eATX,CAUF,EAEA,gBAAMlB,CAAW6K,GACf,MAAM1P,EAAO,CAAC0P,SAAUA,GACxB,GAAIA,EAAQ,CACV,IAAIC,EAAUZ,OAAO,+DAAgE,MACrF/O,EAAK2P,QAAUA,EAAQ7R,OAASlC,SAAS+T,GAAW,IACtD,CAEA7V,KAAKkH,SAAU,EACf,UACQlH,KAAKiT,QAAQ,0BAA2B/M,GAC9C4P,WAAW9V,KAAK0V,YAAa,IAC/B,CAAE,QACA1V,KAAKkH,SAAU,CACjB,CACF,EAEA,kBAAM8D,GACJ,GAAKqI,QAAQ,6DACNA,QAAQ,mFADf,CAKArT,KAAKkH,SAAU,EACf,UACQlH,KAAKiT,QAAQ,4BACrB,CAAE,QACAjT,KAAKkH,SAAU,CACjB,CAPA,CAQF,EAEA,gBAAM6O,CAAWvK,EAAQc,GACvBtM,KAAKkH,SAAU,QACTlH,KAAKiT,QAAQ,+BAAgC,CACjDzH,OAAQA,EACRc,MAAOA,IAGTtM,KAAKkH,SAAU,EACf,MAAM8O,EAAOhW,KAEb8V,YAAW,KACTE,EAAK/K,UACL+K,EAAK/J,eAAe,GACnB,IACL,GAGFgK,OAAAA,GACEjW,KAAKyU,WAAU,KACbzU,KAAKmU,OAAO,CACVxJ,KAAM,qCACNuL,OAAO,GACP,GACD,oBAAqB,8DAExBlW,KAAKyU,WAAU,KACbzU,KAAKmU,OAAO,CACVxJ,KAAM,+BACN0J,UAAW,gBACX,GACD,mBAAoB,6DAEvBrU,KAAKyU,WAAU,KACbzU,KAAKmU,OAAO,CACVxJ,KAAM,8BACNuL,OAAO,GACP,GACD,iCAAkC,0EAErClW,KAAKyU,WAAU,KACbzU,KAAKmU,OAAO,CACVxJ,KAAM,0BACNuL,OAAO,GACP,GACD,6BAA8B,uEAEjClW,KAAKyU,WAAU,KACbzU,KAAKmU,OAAO,CACVxJ,KAAM,yBACNuL,OAAO,GACP,GACD,gCAAiC,yEAEpClW,KAAKyU,WAAU,KACbzU,KAAKmU,OAAO,CACVxJ,KAAM,0CACNuL,OAAO,GACP,GACD,8BACC,2EAEJlW,KAAKyU,WAAW3N,IACd9G,KAAKmU,OAAO,CACVxJ,KAAM7D,EAAMoP,OAAS,kBACrBA,OAAO,GACP,GACD,kBAAmB,4DAEtBlW,KAAKyU,UAAUzU,KAAKiL,QAAS,0BACzB,4DACA,mEACA,qEACA,kEACA,mEACA,uEACA,mEACA,gEACA,mEAGJjL,KAAKyU,UAAUzU,KAAKiM,cAAe,yBAC/B,gEACA,kEACA,oEAEN,EAEAqI,OAAAA,GACEtU,KAAKiL,SACP,EAEA0J,SAAAA,GACE3U,KAAK4U,YAAY,mBACjB5U,KAAK4U,YAAY,+BACjB5U,KAAK4U,YAAY,iCACjB5U,KAAK4U,YAAY,8BACjB5U,KAAK4U,YAAY,kCACjB5U,KAAK4U,YAAY,oBACjB5U,KAAK4U,YAAY,qBACjB5U,KAAK4U,YAAY,2BACjB5U,KAAK4U,YAAY,yBACnB,GKzVF,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS5O,MAEpE,S","sources":["webpack://platypush/./src/components/panels/Light/color.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/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","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","_createElementBlock","_hoisted_1","$props","withRange","_normalizeClass","withLabel","_toDisplayString","range","_createElementVNode","_hoisted_4","type","step","disabled","value","ref","onInput","_cache","_withModifiers","$event","_ctx","$emit","onChange","emits","props","Number","Boolean","default","Array","__exports__","render","onClick","args","$options","checked","id","_hoisted_2","_hoisted_3","_renderSlot","$slots","undefined","name","String","methods","event","_hoisted_36","_hoisted_39","$data","loading","_createBlock","_component_Loading","key","_createVNode","_component_Modal","title","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","target","_Fragment","_renderList","views","enabled","toUpperCase","replace","_hoisted_34","addGroup","_component_Dropdown","_component_DropdownItem","text","$refs","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","remove","components","Modal","ToggleSwitch","Slider","Loading","mixins","Utils","required","data","computed","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","element","add","editGroups","async","Promise","all","action","update_available","notify","image","iconClass","mounted","$watch","newValue","subscribe","properties","unmounted","unsubscribe","_hoisted_5","toggleDevice","devicesByAddress","entry","prompt","ieeeAddress","method","Dropdown","DropdownItem","Device","Group","modal","visible","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/1259.7aa14adc.js b/platypush/backend/http/webapp/dist/static/js/1259.7aa14adc.js deleted file mode 100644 index 490d8015..00000000 --- a/platypush/backend/http/webapp/dist/static/js/1259.7aa14adc.js +++ /dev/null @@ -1,2 +0,0 @@ -"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1259],{4212:function(e,t,s){s.d(t,{N:function(){return a}});class a{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,s){return s[0]+(e-t[0])*(s[1]-s[0])/(t[1]-t[0])}hslToRgb(e,t,s){[e,t,s]=[this.normalize(e,this.ranges.hue,[0,360]),this.normalize(t,this.ranges.sat,[0,100]),this.normalize(s,this.ranges.bri,[0,100])],s/=100;const a=t*Math.min(s,1-s)/100,i=t=>{const i=(t+e/30)%12,n=s-a*Math.max(Math.min(i-3,9-i,1),-1);return Math.round(255*n)};return[i(0),i(8),i(4)]}rgbToHsl(e,t,s){e/=255,t/=255,s/=255;const a=Math.max(e,t,s),i=Math.min(e,t,s);let n,l,r=(a+i)/2;if(a===i)n=l=0;else{const o=a-i;switch(l=r>.5?o/(2-a-i):o/(a+i),a){case e:n=(t-s)/o+(td&&r>o&&r>1?(o/=r,d/=r,r=1):o>d&&o>r&&o>1?(r/=o,d/=o,o=1):d>r&&d>o&&d>1&&(r/=d,o/=d,d=1),r=r<=.0031308?12.92*r:1.055*Math.pow(r,1/2.4)-.055,o=o<=.0031308?12.92*o:1.055*Math.pow(o,1/2.4)-.055,d=d<=.0031308?12.92*d:1.055*Math.pow(d,1/2.4)-.055,r=Math.round(255*r),o=Math.round(255*o),d=Math.round(255*d),isNaN(r)&&(r=0),isNaN(o)&&(o=0),isNaN(d)&&(d=0),[r,o,d].map((e=>Math.min(Math.max(0,e),255)))}rgbToXY(e,t,s){e>1&&(e/=255),t>1&&(t/=255),s>1&&(s/=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,s=s>.04045?Math.pow((s+.055)/1.055,2.4):s/12.92;const a=.664511*e+.154324*t+.162028*s,i=.283881*e+.668433*t+.047685*s,n=88e-6*e+.07231*t+.986039*s;let l=parseFloat((a/(a+i+n)).toFixed(4)),r=parseFloat((i/(a+i+n)).toFixed(4));return isNaN(l)&&(l=0),isNaN(r)&&(r=0),[l,r]}rgbToBri(e,t,s){return Math.min(2*this.rgbToHsl(e,t,s)[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 s=this.getXY(e);return s&&e.bri?this.xyToRgb(...s,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 s=this.getRGB(e);if(s)return this.rgbToXY(...s);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 s=this.getXY(e);if(s&&e.bri){const t=this.xyToRgb(...s,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("")}}},4358:function(e,t,s){s.d(t,{Z:function(){return y}});var a=s(6252),i=s(3577),n=s(9963);const l={class:"slider-wrapper"},r=["textContent"],o=["textContent"],d={class:"slider-container"},u=["min","max","step","disabled","value"],c={class:"track-inner",ref:"track"},v={class:"thumb",ref:"thumb"},p=["textContent"];function h(e,t,s,h,m,g){return(0,a.wg)(),(0,a.iD)("label",l,[s.withRange?((0,a.wg)(),(0,a.iD)("span",{key:0,class:(0,i.C_)(["range-labels",{"with-label":s.withLabel}])},[s.withRange?((0,a.wg)(),(0,a.iD)("span",{key:0,class:"label left",textContent:(0,i.zw)(s.range[0])},null,8,r)):(0,a.kq)("",!0),s.withRange?((0,a.wg)(),(0,a.iD)("span",{key:1,class:"label right",textContent:(0,i.zw)(s.range[1])},null,8,o)):(0,a.kq)("",!0)],2)):(0,a.kq)("",!0),(0,a._)("span",d,[(0,a._)("input",{class:(0,i.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:t[0]||(t[0]=(0,n.iM)(((...e)=>g.onUpdate&&g.onUpdate(...e)),["stop"])),onChange:t[1]||(t[1]=(0,n.iM)(((...e)=>g.onUpdate&&g.onUpdate(...e)),["stop"]))},null,42,u),(0,a._)("div",{class:(0,i.C_)(["track",{"with-label":s.withLabel}])},[(0,a._)("div",c,null,512)],2),(0,a._)("div",v,null,512),s.withLabel?((0,a.wg)(),(0,a.iD)("span",{key:0,class:"label",textContent:(0,i.zw)(s.value),ref:"label"},null,8,p)):(0,a.kq)("",!0)])])}var m={name:"Slider",emits:["input","change","mouseup","mousedown","touchstart","touchend","keyup","keydown"],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}},methods:{onUpdate(e){this.update(e.target.value),this.$emit(e.type,{...e,target:{...e.target,value:this.$refs.range.value}})},update(e){const t=this.$refs.range.clientWidth,s=(e-this.range[0])/(this.range[1]-this.range[0]),a=s*t,i=this.$refs.thumb;i.style.left=a-i.clientWidth/2+"px",this.$refs.thumb.style.transform=`translate(-${s}%, -50%)`,this.$refs.track.style.width=`${a}px`}},mounted(){null!=this.value&&this.update(this.value),this.$watch((()=>this.value),(e=>this.update(e)))}},g=s(3744);const b=(0,g.Z)(m,[["render",h],["__scopeId","data-v-4b38623f"]]);var y=b},3405:function(e,t,s){s.d(t,{Z:function(){return h}});var a=s(6252),i=s(3577),n=s(9963);const l=e=>((0,a.dD)("data-v-a6396ae8"),e=e(),(0,a.Cn)(),e),r=["checked"],o=l((()=>(0,a._)("div",{class:"switch"},[(0,a._)("div",{class:"dot"})],-1))),d={class:"label"};function u(e,t,s,l,u,c){return(0,a.wg)(),(0,a.iD)("div",{class:(0,i.C_)(["power-switch",{disabled:s.disabled}]),onClick:t[0]||(t[0]=(0,n.iM)(((...e)=>c.onInput&&c.onInput(...e)),["stop"]))},[(0,a._)("input",{type:"checkbox",checked:s.value},null,8,r),(0,a._)("label",null,[o,(0,a._)("span",d,[(0,a.WI)(e.$slots,"default",{},void 0,!0)])])],2)}var c={name:"ToggleSwitch",emits:["input"],props:{value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{onInput(e){if(this.disabled)return!1;this.$emit("input",e)}}},v=s(3744);const p=(0,v.Z)(c,[["render",u],["__scopeId","data-v-a6396ae8"]]);var h=p},1259:function(e,t,s){s.r(t),s.d(t,{default:function(){return vs}});var a=s(6252),i=s(3577);const n={class:"zigbee-container"},l={key:0,class:"info-body"},r={class:"row"},o=(0,a._)("div",{class:"param-name"},"State",-1),d=["textContent"],u={class:"row"},c=(0,a._)("div",{class:"param-name"},"Permit Join",-1),v=["textContent"],p={key:0,class:"row"},h=(0,a._)("div",{class:"param-name"},"Network Channel",-1),m=["textContent"],g={class:"row"},b=(0,a._)("div",{class:"param-name"},"Zigbee2MQTT Version",-1),y=["textContent"],f={key:1,class:"row"},_=(0,a._)("div",{class:"param-name"},"MQTT Server",-1),w=["textContent"],k={key:2,class:"row"},q=(0,a._)("div",{class:"param-name"},"Serial Port",-1),C=["textContent"],x={key:3,class:"row"},z=(0,a._)("div",{class:"param-name"},"Firmware Type",-1),D=["textContent"],M={key:4,class:"row"},R=(0,a._)("div",{class:"param-name"},"Firmware Version",-1),G={class:"param-value"},Z={key:5,class:"row"},I=(0,a._)("div",{class:"param-name"},"Firmware Revision",-1),N=["textContent"],T={class:"view-options"},V={class:"view-selector col-s-8 col-m-9 col-l-10"},j=["value"],E=["textContent","selected","value"],S={class:"buttons"},$=["disabled"],A=(0,a._)("i",{class:"fa fa-plus"},null,-1),O=[A],F=["disabled"],U=(0,a._)("i",{class:"fa fa-sync-alt"},null,-1),B=[U],L={class:"view-container"},Y={key:0,class:"view devices"},H={key:0,class:"no-items"},W={key:0,class:"loading"},P={key:1,class:"empty"},X={key:1,class:"view groups"},J={key:0,class:"no-items"},K={key:0,class:"loading"},Q={key:1,class:"empty"};function ee(e,t,s,A,U,ee){const te=(0,a.up)("Loading"),se=(0,a.up)("Modal"),ae=(0,a.up)("DropdownItem"),ie=(0,a.up)("Dropdown"),ne=(0,a.up)("Device"),le=(0,a.up)("Group");return(0,a.wg)(),(0,a.iD)("div",n,[U.loading?((0,a.wg)(),(0,a.j4)(te,{key:0})):(0,a.kq)("",!0),(0,a.Wm)(se,{title:"Network Info",ref:"infoModal"},{default:(0,a.w5)((()=>[U.status.info?((0,a.wg)(),(0,a.iD)("div",l,[(0,a._)("div",r,[o,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(U.status.state)},null,8,d)]),(0,a._)("div",u,[c,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(U.status.info.permit_join)},null,8,v)]),U.status.info.network?((0,a.wg)(),(0,a.iD)("div",p,[h,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(U.status.info.network.channel)},null,8,m)])):(0,a.kq)("",!0),(0,a._)("div",g,[b,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(U.status.info.version)},null,8,y)]),U.status.info.config?.mqtt?((0,a.wg)(),(0,a.iD)("div",f,[_,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(U.status.info.config.mqtt.server)},null,8,w)])):(0,a.kq)("",!0),U.status.info.config?.serial?((0,a.wg)(),(0,a.iD)("div",k,[q,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(U.status.info.config.serial.port)},null,8,C)])):(0,a.kq)("",!0),U.status.info.coordinator?.type?((0,a.wg)(),(0,a.iD)("div",x,[z,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(U.status.info.coordinator.type)},null,8,D)])):(0,a.kq)("",!0),U.status.info.coordinator?.meta?((0,a.wg)(),(0,a.iD)("div",M,[R,(0,a._)("div",G,(0,i.zw)(U.status.info.coordinator.meta.maintrel)+"."+(0,i.zw)(U.status.info.coordinator.meta.majorrel)+"."+(0,i.zw)(U.status.info.coordinator.meta.minorrel),1)])):(0,a.kq)("",!0),U.status.info.coordinator?.meta?((0,a.wg)(),(0,a.iD)("div",Z,[I,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(U.status.info.coordinator.meta.revision)},null,8,N)])):(0,a.kq)("",!0)])):(0,a.kq)("",!0)])),_:1},512),(0,a._)("div",T,[(0,a._)("div",V,[(0,a._)("label",null,[(0,a._)("select",{value:U.selected.view,onChange:t[0]||(t[0]=e=>this.selected.view=e.target.value)},[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(U.views,((e,t)=>((0,a.wg)(),(0,a.iD)("option",{textContent:(0,i.zw)((t[0].toUpperCase()+t.slice(1)).replace("_"," ")),key:t,selected:e,value:t},null,8,E)))),128))],40,j)])]),(0,a._)("div",S,["groups"===U.selected.view?((0,a.wg)(),(0,a.iD)("button",{key:0,class:"btn btn-default",title:"Add Group",disabled:U.loading,onClick:t[1]||(t[1]=(...e)=>ee.addGroup&&ee.addGroup(...e))},O,8,$)):(0,a.kq)("",!0),(0,a.Wm)(ie,{ref:"networkCommandsDropdown","icon-class":"fa fa-cog",title:"Network commands"},{default:(0,a.w5)((()=>[(0,a.Wm)(ae,{text:"Network Info",disabled:U.loading,onClick:t[2]||(t[2]=t=>e.$refs.infoModal.show())},null,8,["disabled"]),U.status.info?.permit_join?((0,a.wg)(),(0,a.j4)(ae,{key:1,text:"Disable Join",disabled:U.loading,onClick:t[4]||(t[4]=e=>ee.permitJoin(!1))},null,8,["disabled"])):((0,a.wg)(),(0,a.j4)(ae,{key:0,text:"Permit Join",disabled:U.loading,onClick:t[3]||(t[3]=e=>ee.permitJoin(!0))},null,8,["disabled"])),(0,a.Wm)(ae,{text:"Factory Reset",disabled:U.loading,onClick:ee.factoryReset},null,8,["disabled","onClick"])])),_:1},512),(0,a._)("button",{class:"btn btn-default",title:"Refresh network",disabled:U.loading,onClick:t[5]||(t[5]=(...e)=>ee.refresh&&ee.refresh(...e))},B,8,F)])]),(0,a._)("div",L,["devices"===U.selected.view?((0,a.wg)(),(0,a.iD)("div",Y,[Object.keys(U.devices).length?(0,a.kq)("",!0):((0,a.wg)(),(0,a.iD)("div",H,[U.loading?((0,a.wg)(),(0,a.iD)("div",W,"Loading devices...")):((0,a.wg)(),(0,a.iD)("div",P,"No devices found on the network"))])),((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(U.devices,((e,t)=>((0,a.wg)(),(0,a.j4)(ne,{key:t,device:e,groups:U.groups,selected:U.selected.deviceId===t,onSelect:e=>U.selected.deviceId=U.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"===U.selected.view?((0,a.wg)(),(0,a.iD)("div",X,[Object.keys(U.groups).length?(0,a.kq)("",!0):((0,a.wg)(),(0,a.iD)("div",J,[U.loading?((0,a.wg)(),(0,a.iD)("div",K,"Loading groups...")):((0,a.wg)(),(0,a.iD)("div",Q,"No groups available on the network"))])),((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(U.groups,((e,t)=>((0,a.wg)(),(0,a.j4)(le,{key:t,group:e,devices:U.devices,selected:U.selected.groupId===t,onSelect:e=>U.selected.groupId=U.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,a.kq)("",!0)])])}var te=s(7261),se=s(1189),ae=s(6791),ie=s(8637),ne=s(9963);const le=e=>((0,a.dD)("data-v-6437b841"),e=e(),(0,a.Cn)(),e),re={class:"groups"},oe=["value","checked"],de=["textContent"],ue=le((()=>(0,a._)("div",{class:"footer buttons"},[(0,a._)("button",{type:"submit"},"Save")],-1))),ce=["textContent"],ve={key:1,class:"params"},pe={class:"row"},he=le((()=>(0,a._)("div",{class:"param-name"},"Name",-1))),me={class:"param-value"},ge=["value"],be={class:"buttons"},ye=le((()=>(0,a._)("i",{class:"fas fa-times"},null,-1))),fe=[ye],_e=le((()=>(0,a._)("button",{type:"submit",class:"btn btn-default"},[(0,a._)("i",{class:"fa fa-check"})],-1))),we=["textContent"],ke={class:"buttons"},qe=le((()=>(0,a._)("i",{class:"fa fa-edit"},null,-1))),Ce=[qe],xe={class:"row"},ze=le((()=>(0,a._)("div",{class:"param-name"},"IEEE Address",-1))),De=["textContent"],Me={key:0,class:"row"},Re=le((()=>(0,a._)("div",{class:"param-name"},"Network Address",-1))),Ge=["textContent"],Ze={class:"row"},Ie=le((()=>(0,a._)("div",{class:"param-name"},"Type",-1))),Ne=["textContent"],Te={key:1,class:"row"},Ve=le((()=>(0,a._)("div",{class:"param-name"},"Vendor",-1))),je={class:"param-value"},Ee={key:2,class:"row"},Se=le((()=>(0,a._)("div",{class:"param-name"},"Model",-1))),$e={class:"param-value"},Ae={key:3,class:"row"},Oe=le((()=>(0,a._)("div",{class:"param-name"},"Model ID",-1))),Fe={class:"param-value"},Ue={key:4,class:"row"},Be=le((()=>(0,a._)("div",{class:"param-name"},"Description",-1))),Le={class:"param-value"},Ye={key:5,class:"row"},He=le((()=>(0,a._)("div",{class:"param-name"},"Software Build ID",-1))),We={class:"param-value"},Pe={key:6,class:"row"},Xe=le((()=>(0,a._)("div",{class:"param-name"},"Date Code",-1))),Je={class:"param-value"},Ke={key:7,class:"row"},Qe=le((()=>(0,a._)("div",{class:"param-name"},"Power Source",-1))),et={class:"param-value"},tt={key:8,class:"section values"},st=le((()=>(0,a._)("div",{class:"header"},[(0,a._)("div",{class:"title"},"Values")],-1))),at={class:"body"},it={class:"param-name"},nt={key:0,class:"text"},lt=["textContent"],rt=["textContent"],ot={class:"param-value"},dt={key:2},ut=["value","disabled","onChange"],ct={key:3},vt=["value","onChange"],pt={key:0},ht=["value","textContent","selected","disabled"],mt={key:4},gt=["onChange","value"],bt={key:5},yt=["disabled","value","onChange"],ft={class:"section actions"},_t=le((()=>(0,a._)("div",{class:"header"},[(0,a._)("div",{class:"title"},"Actions")],-1))),wt={class:"body"},kt=le((()=>(0,a._)("div",{class:"param-name"},"Manage groups",-1))),qt=le((()=>(0,a._)("div",{class:"param-value"},[(0,a._)("i",{class:"fa fa-network-wired"})],-1))),Ct=[kt,qt],xt={key:0,class:"param-name"},zt={key:1,class:"param-name"},Dt=le((()=>(0,a._)("div",{class:"param-value"},[(0,a._)("i",{class:"fa fa-sync-alt"})],-1))),Mt=le((()=>(0,a._)("div",{class:"param-name"},"Remove Device",-1))),Rt=le((()=>(0,a._)("div",{class:"param-value"},[(0,a._)("i",{class:"fa fa-trash"})],-1))),Gt=[Mt,Rt],Zt=le((()=>(0,a._)("div",{class:"param-name"},"Force Remove Device",-1))),It=le((()=>(0,a._)("div",{class:"param-value"},[(0,a._)("i",{class:"fa fa-trash"})],-1))),Nt=[Zt,It];function Tt(e,t,s,n,l,r){const o=(0,a.up)("Loading"),d=(0,a.up)("Modal"),u=(0,a.up)("ToggleSwitch"),c=(0,a.up)("Slider");return(0,a.wg)(),(0,a.iD)("div",{class:(0,i.C_)(["item device",{selected:s.selected}])},[l.loading?((0,a.wg)(),(0,a.j4)(o,{key:0})):(0,a.kq)("",!0),(0,a.Wm)(d,{class:"groups-modal",ref:"groupsModal",title:"Device groups"},{default:(0,a.w5)((()=>[l.loading?((0,a.wg)(),(0,a.j4)(o,{key:0})):(0,a.kq)("",!0),(0,a._)("form",{class:"content",onSubmit:t[0]||(t[0]=(0,ne.iM)(((...e)=>r.manageGroups&&r.manageGroups(...e)),["prevent"]))},[(0,a._)("div",re,[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(s.groups,((e,t)=>((0,a.wg)(),(0,a.iD)("label",{class:"row group",key:t},[(0,a._)("input",{type:"checkbox",value:t,checked:r.associatedGroups.has(parseInt(e.id))},null,8,oe),(0,a._)("span",{class:"name",textContent:(0,i.zw)(e.friendly_name?.length?e.friendly_name:`[Group #${e.id}]`)},null,8,de)])))),128))]),ue],32)])),_:1},512),(0,a._)("div",{class:(0,i.C_)(["row name header vertical-center",{selected:s.selected}]),textContent:(0,i.zw)(s.device.friendly_name||s.device.ieee_address),onClick:t[1]||(t[1]=t=>e.$emit("select"))},null,10,ce),s.selected?((0,a.wg)(),(0,a.iD)("div",ve,[(0,a._)("div",pe,[he,(0,a._)("div",me,[(0,a._)("div",{class:(0,i.C_)(["name-edit",{hidden:!l.editName}])},[(0,a._)("form",{onSubmit:t[3]||(t[3]=(0,ne.iM)(((...e)=>r.rename&&r.rename(...e)),["prevent"]))},[(0,a._)("label",null,[(0,a._)("input",{type:"text",name:"name",ref:"name",value:s.device.friendly_name},null,8,ge)]),(0,a._)("span",be,[(0,a._)("button",{type:"button",class:"btn btn-default",onClick:t[2]||(t[2]=e=>l.editName=!1)},fe),_e])],32)],2),(0,a._)("div",{class:(0,i.C_)(["name-edit",{hidden:l.editName}])},[(0,a._)("span",{textContent:(0,i.zw)(s.device.friendly_name)},null,8,we),(0,a._)("span",ke,[(0,a._)("button",{type:"button",class:"btn btn-default",onClick:t[4]||(t[4]=e=>l.editName=!0)},Ce)])],2)])]),(0,a._)("div",xe,[ze,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(s.device.ieee_address)},null,8,De)]),s.device.network_address?((0,a.wg)(),(0,a.iD)("div",Me,[Re,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(s.device.network_address)},null,8,Ge)])):(0,a.kq)("",!0),(0,a._)("div",Ze,[Ie,(0,a._)("div",{class:"param-value",textContent:(0,i.zw)(s.device.type)},null,8,Ne)]),s.device.definition?.vendor?((0,a.wg)(),(0,a.iD)("div",Te,[Ve,(0,a._)("div",je,(0,i.zw)(s.device.definition.vendor),1)])):(0,a.kq)("",!0),s.device.definition?.model?((0,a.wg)(),(0,a.iD)("div",Ee,[Se,(0,a._)("div",$e,(0,i.zw)(s.device.definition.model),1)])):(0,a.kq)("",!0),s.device.model_id?((0,a.wg)(),(0,a.iD)("div",Ae,[Oe,(0,a._)("div",Fe,(0,i.zw)(s.device.model_id),1)])):(0,a.kq)("",!0),s.device.definition?.description?((0,a.wg)(),(0,a.iD)("div",Ue,[Be,(0,a._)("div",Le,(0,i.zw)(s.device.definition.description),1)])):(0,a.kq)("",!0),s.device.software_build_id?((0,a.wg)(),(0,a.iD)("div",Ye,[He,(0,a._)("div",We,(0,i.zw)(s.device.software_build_id),1)])):(0,a.kq)("",!0),s.device.definition?.date_code?((0,a.wg)(),(0,a.iD)("div",Pe,[Xe,(0,a._)("div",Je,(0,i.zw)(s.device.definition.date_code),1)])):(0,a.kq)("",!0),s.device.power_source?((0,a.wg)(),(0,a.iD)("div",Ke,[Qe,(0,a._)("div",et,(0,i.zw)(s.device.power_source),1)])):(0,a.kq)("",!0),Object.keys(r.displayedValues).length?((0,a.wg)(),(0,a.iD)("div",tt,[st,(0,a._)("div",at,[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(r.displayedValues,((e,t)=>((0,a.wg)(),(0,a.iD)("div",{class:"row value",key:t},[(0,a._)("div",it,[(0,a.Uk)((0,i.zw)(e.description)+" ",1),null!=r.rgbColor&&null!=e.value?.x&&null!=e.value?.y||null!=e.value?.hue&&null!=e.value?.saturation?((0,a.wg)(),(0,a.iD)("span",nt,"Color")):(0,a.kq)("",!0),e.property?((0,a.wg)(),(0,a.iD)("span",{key:1,class:"name",textContent:(0,i.zw)(e.property)},null,8,lt)):(0,a.kq)("",!0),e.unit?((0,a.wg)(),(0,a.iD)("span",{key:2,class:"unit",textContent:(0,i.zw)(e.unit)},null,8,rt)):(0,a.kq)("",!0)]),(0,a._)("div",ot,["binary"===e.type?((0,a.wg)(),(0,a.j4)(u,{key:0,value:null!=e.value_on?e.value===e.value_on:!!e.value,disabled:!e.writable,onInput:t=>r.setValue(e,t)},null,8,["value","disabled","onInput"])):"numeric"===e.type&&null!=e.value_min&&null!=e.value_max?((0,a.wg)(),(0,a.j4)(c,{key:1,"with-label":!0,range:[e.value_min,e.value_max],value:e.value,disabled:!e.writable,onChange:t=>r.setValue(e,t)},null,8,["range","value","disabled","onChange"])):"numeric"!==e.type||null!=e.value_min&&null!=e.value_max?"enum"===e.type?((0,a.wg)(),(0,a.iD)("label",ct,[(0,a._)("select",{value:e.readable&&null!=e.value?e.value:"",onChange:t=>r.setValue(e,t)},[e.readable?(0,a.kq)("",!0):((0,a.wg)(),(0,a.iD)("option",pt)),((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(e.values,(t=>((0,a.wg)(),(0,a.iD)("option",{key:t,value:t,textContent:(0,i.zw)(t),selected:e.readable&&e.value===t,disabled:!e.writable},null,8,ht)))),128))],40,vt)])):null!=r.rgbColor&&null!=e.value?.x&&null!=e.value?.y||null!=e.value?.hue&&null!=e.value?.saturation?((0,a.wg)(),(0,a.iD)("label",mt,[(0,a._)("input",{type:"color",onChange:(0,ne.iM)((t=>r.setValue(e,t)),["stop"]),value:"#"+r.rgbColor.map((e=>(e=Number(e).toString(16),1===e.length?"0"+e:e))).join("")},null,40,gt)])):((0,a.wg)(),(0,a.iD)("label",bt,[(0,a._)("input",{type:"text",disabled:!e.writable,value:e.value,onChange:t=>r.setValue(e,t)},null,40,yt)])):((0,a.wg)(),(0,a.iD)("label",dt,[(0,a._)("input",{type:"number","with-label":!0,value:e.value,disabled:!e.writable,onChange:t=>r.setValue(e,t)},null,40,ut)]))])])))),128))])])):(0,a.kq)("",!0),(0,a._)("div",ft,[_t,(0,a._)("div",wt,[(0,a._)("div",{class:"row",onClick:t[5]||(t[5]=t=>e.$refs.groupsModal.show())},Ct),(0,a._)("div",{class:"row",onClick:t[6]||(t[6]=e=>l.otaUpdatesAvailable?r.installOtaUpdates():r.checkOtaUpdates())},[l.otaUpdatesAvailable?((0,a.wg)(),(0,a.iD)("div",zt,"Install updates")):((0,a.wg)(),(0,a.iD)("div",xt,"Check for updates")),Dt]),(0,a._)("div",{class:"row",onClick:t[7]||(t[7]=e=>r.remove(!1))},Gt),(0,a._)("div",{class:"row error",onClick:t[8]||(t[8]=e=>r.remove(!0))},Nt)])])])):(0,a.kq)("",!0)],2)}var Vt=s(4358),jt=s(3405),Et=s(4212),St=s(3493),$t={name:"Device",components:{Modal:St.Z,ToggleSwitch:jt.Z,Slider:Vt.Z,Loading:ae.Z},mixins:[ie.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,s)=>{if(e.features){e.property&&(s[e.property]=s[e.property]||{},s=s[e.property]);for(const a of e.features)t(a,s)}else e.property&&(s[e.property]=e)},s={};for(const a of e)t(a,s);return s};return e(this.device.definition.exposes)},displayedValues(){const e={},t=(e,[s,a])=>(s in this.status&&(a={...a,value:this.status[s]}),null!=a.access&&(a.readable=!!(1&a.access),a.writable=!!(2&a.access),delete a.access),e[s]=a,Object.entries(a).filter((e=>e[1]instanceof Object)).reduce(t,e[s]),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 Et.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",s=new Et.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 s.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 s={device:this.device.friendly_name||this.device.ieee_address,property:e.property,value:null};switch(e.type){case"binary":e.value_toggle?s.value=e.value_toggle:e.value_on&&e.value_off?s.value=e.value===e.value_on?e.value_off:e.value_on:s.value=!e.value;break;case"numeric":s.value=parseFloat(t.target.value);break;case"enum":t.target.value?.length&&(s.value=t.target.value);break;default:if(null!=e.x&&null!=e.y||null!=e.hue&&(null!=e.saturation||null!=e.sat)){s.property="color";const a=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 Et.N({bri:[this.displayedValues.brightness?.value_min||0,this.displayedValues.brightness?.value_max||255]}),t=e.rgbToXY(...a);s.value={x:t[0],y:t[1]}}else{const e=null!=this.displayedValues.color.saturation?"saturation":"sat",t=new Et.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]}),i=t.rgbToHsl(...a);s.value={hue:i[0]},s.value[e]=i[1]}}break}if(null!=s.value){this.loading=!0;try{await this.request("zigbee.mqtt.device_set",s),await this.refresh()}finally{this.loading=!1}}},async manageGroups(e){const t=[...e.target.querySelectorAll("input[type=checkbox]")].reduce(((e,t)=>{const s=parseInt(t.value);return t.checked&&!this.associatedGroups.has(s)?e.add.add(s):!t.checked&&this.associatedGroups.has(s)&&e.remove.add(s),e}),{add:new Set,remove:new Set}),s=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(s)),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}`)}},At=s(3744);const Ot=(0,At.Z)($t,[["render",Tt],["__scopeId","data-v-6437b841"]]);var Ft=Ot;const Ut=e=>((0,a.dD)("data-v-7667f7ba"),e=e(),(0,a.Cn)(),e),Bt=["textContent"],Lt={key:1,class:"params"},Yt={class:"section devices"},Ht=Ut((()=>(0,a._)("div",{class:"header"},[(0,a._)("div",{class:"title"},"Devices")],-1))),Wt={class:"body"},Pt=["checked","value","onChange"],Xt=["textContent"],Jt={class:"section actions"},Kt=Ut((()=>(0,a._)("div",{class:"header"},[(0,a._)("div",{class:"title"},"Actions")],-1))),Qt={class:"body"},es=Ut((()=>(0,a._)("div",{class:"col-10"},"Rename Group",-1))),ts=Ut((()=>(0,a._)("div",{class:"buttons col-2 pull-right"},[(0,a._)("i",{class:"fa fa-edit"})],-1))),ss=[es,ts],as=Ut((()=>(0,a._)("div",{class:"col-10"},"Remove Group",-1))),is=Ut((()=>(0,a._)("div",{class:"buttons col-2 pull-right"},[(0,a._)("i",{class:"fa fa-trash"})],-1))),ns=[as,is];function ls(e,t,s,n,l,r){const o=(0,a.up)("Loading");return(0,a.wg)(),(0,a.iD)("div",{class:(0,i.C_)(["item group",{selected:s.selected}])},[l.loading?((0,a.wg)(),(0,a.j4)(o,{key:0})):(0,a.kq)("",!0),(0,a._)("div",{class:(0,i.C_)(["row name header vertical-center",{selected:s.selected}]),textContent:(0,i.zw)(s.group.friendly_name),onClick:t[0]||(t[0]=t=>e.$emit("select"))},null,10,Bt),s.selected?((0,a.wg)(),(0,a.iD)("div",Lt,[(0,a._)("div",Yt,[Ht,(0,a._)("div",Wt,[(0,a._)("form",null,[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(s.devices,((e,t)=>((0,a.wg)(),(0,a.iD)("label",{class:"row",key:t},[(0,a._)("input",{type:"checkbox",checked:r.members.has(e.ieee_address),value:e.ieee_address,onChange:t=>r.toggleDevice(e.ieee_address)},null,40,Pt),(0,a._)("span",{class:"label",textContent:(0,i.zw)(e.friendly_name?.length?e.friendly_name:e.ieee_address)},null,8,Xt)])))),128))])])]),(0,a._)("div",Jt,[Kt,(0,a._)("div",Qt,[(0,a._)("div",{class:"row",onClick:t[1]||(t[1]=(...e)=>r.rename&&r.rename(...e))},ss),(0,a._)("div",{class:"row",onClick:t[2]||(t[2]=(...e)=>r.remove&&r.remove(...e))},ns)])])])):(0,a.kq)("",!0)],2)}var rs={name:"Group",emits:["select","remove","edit"],mixins:[ie.Z],components:{Loading:ae.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 s=t[1];return e[s.ieee_address]=s,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],s=t.friendly_name?.length?t.friendly_name:e,a=this.members.has(e)?"remove":"add";this.loading=!0;try{await this.request(`zigbee.mqtt.group_${a}_device`,{group:this.group.friendly_name,device:s}),this.$emit("edit",{device:s,method:a})}finally{this.loading=!1}}}};const os=(0,At.Z)(rs,[["render",ls],["__scopeId","data-v-7667f7ba"]]);var ds=os,us={name:"ZigbeeMqtt",components:{Modal:St.Z,Dropdown:te.Z,DropdownItem:se.Z,Loading:ae.Z,Device:Ft,Group:ds},mixins:[ie.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 s=this;setTimeout((()=>{s.refresh(),s.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 cs=(0,At.Z)(us,[["render",ee]]);var vs=cs}}]); -//# sourceMappingURL=1259.7aa14adc.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1259.7aa14adc.js.map b/platypush/backend/http/webapp/dist/static/js/1259.7aa14adc.js.map deleted file mode 100644 index 4e8369e6..00000000 --- a/platypush/backend/http/webapp/dist/static/js/1259.7aa14adc.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"static/js/1259.7aa14adc.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,kGCpOKC,MAAM,kB,uCAMLA,MAAM,oB,6CAcHA,MAAM,cAAcC,IAAI,S,GAE1BD,MAAM,QAAQC,IAAI,S,4DAtB3BC,EAAAA,EAAAA,IAyBQ,QAzBRC,EAyBQ,CAxB8DC,EAAAC,YAAS,WAA7EH,EAAAA,EAAAA,IAGO,Q,MAHDF,OAAKM,EAAAA,EAAAA,IAAA,CAAC,eAAc,cAAwBF,EAAAG,c,CACjBH,EAAAC,YAAS,WAAxCH,EAAAA,EAAAA,IAA8D,Q,MAAxDF,MAAM,a,aAA8BQ,EAAAA,EAAAA,IAAQJ,EAASK,MAAH,K,2BACxBL,EAAAC,YAAS,WAAzCH,EAAAA,EAAAA,IAA+D,Q,MAAzDF,MAAM,c,aAA+BQ,EAAAA,EAAAA,IAAQJ,EAASK,MAAH,K,iDAG3DC,EAAAA,EAAAA,GAkBO,OAlBPC,EAkBO,EAjBLD,EAAAA,EAAAA,GAU+B,SAVxBV,OAAKM,EAAAA,EAAAA,IAAA,CAAC,SAAQ,cAESF,EAAAG,aADvBK,KAAK,QAEJ5D,IAAKoD,EAAAK,MAAM,GACXpD,IAAK+C,EAAAK,MAAM,GACXI,KAAMT,EAAAS,KACNC,SAAUV,EAAAU,SACVC,MAAOX,EAAAW,MACRd,IAAI,QACHe,QAAKC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAA,IAAAC,IAAOC,EAAAC,UAAAD,EAAAC,YAAAF,IAAQ,WACpBG,SAAML,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAA,IAAAC,IAAOC,EAAAC,UAAAD,EAAAC,YAAAF,IAAQ,Y,YAE7BT,EAAAA,EAAAA,GAEM,OAFDV,OAAKM,EAAAA,EAAAA,IAAA,CAAC,QAAO,cAAwBF,EAAAG,c,EACxCG,EAAAA,EAAAA,GAA2C,MAA3Ca,EAA2C,eAE7Cb,EAAAA,EAAAA,GAAqC,MAArCc,EAAqC,UACXpB,EAAAG,YAAS,WAAnCL,EAAAA,EAAAA,IAAuE,Q,MAAjEF,MAAM,Q,aAAyBQ,EAAAA,EAAAA,IAAQJ,EAAMW,OAACd,IAAI,S,+BAM9D,OACEwB,KAAM,SACNC,MAAO,CAAC,QAAS,SAAU,UAAW,YAAa,aAAc,WAAY,QAAS,WACtFC,MAAO,CACLZ,MAAO,CACLH,KAAMgB,QAGRd,SAAU,CACRF,KAAMiB,QACNC,SAAS,GAGXrB,MAAO,CACLG,KAAMmB,MACND,QAASA,IAAM,CAAC,EAAG,MAGrBjB,KAAM,CACJD,KAAMgB,OACNE,QAAS,GAGXvB,UAAW,CACTK,KAAMiB,QACNC,SAAS,GAGXzB,UAAW,CACTO,KAAMiB,QACNC,SAAS,IAIbE,QAAS,CACPX,QAAAA,CAASY,GACPnG,KAAKoG,OAAOD,EAAME,OAAOpB,OACzBjF,KAAKsG,MAAMH,EAAMrB,KAAM,IAClBqB,EACHE,OAAQ,IACHF,EAAME,OACTpB,MAAOjF,KAAKuG,MAAM5B,MAAMM,QAG9B,EAEAmB,MAAAA,CAAOnB,GACL,MAAMuB,EAAcxG,KAAKuG,MAAM5B,MAAM8B,YAC/BC,GAAWzB,EAAQjF,KAAK2E,MAAM,KAAO3E,KAAK2E,MAAM,GAAK3E,KAAK2E,MAAM,IAChEgC,EAAaD,EAAUF,EACvBI,EAAQ5G,KAAKuG,MAAMK,MAEzBA,EAAMC,MAAMC,KAAUH,EAAaC,EAAMH,YAAc,EAAnC,KACpBzG,KAAKuG,MAAMK,MAAMC,MAAME,UAAa,cAAaL,YACjD1G,KAAKuG,MAAMS,MAAMH,MAAMI,MAAS,GAAEN,KACpC,GAGFO,OAAAA,GACoB,MAAdlH,KAAKiF,OACPjF,KAAKoG,OAAOpG,KAAKiF,OACnBjF,KAAKmH,QAAO,IAAMnH,KAAKiF,QAAQmC,GAAapH,KAAKoG,OAAOgB,IAC1D,G,UCrFF,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,6KCHM1C,EAAAA,EAAAA,GAEM,OAFDV,MAAM,UAAQ,EACjBU,EAAAA,EAAAA,GAAmB,OAAdV,MAAM,UAAK,K,GAEZA,MAAM,S,0CARhBE,EAAAA,EAAAA,IAYM,OAZDF,OAAKM,EAAAA,EAAAA,IAAA,CAAC,eAAc,CAAAQ,SAAoBV,EAAAU,YAAYuC,QAAKpC,EAAA,KAAAA,EAAA,IAAAC,EAAAA,EAAAA,KAAA,IAAAC,IAAOC,EAAAJ,SAAAI,EAAAJ,WAAAG,IAAO,Y,EAE1ET,EAAAA,EAAAA,GAAwC,SAAjCE,KAAK,WAAY0C,QAASlD,EAAAW,O,WACjCL,EAAAA,EAAAA,GAQQ,cANN6C,GAGA7C,EAAAA,EAAAA,GAEO,OAFP8C,EAEO,EADLC,EAAAA,EAAAA,IAAQC,EAAAC,OAAA,kBAAAC,GAAA,U,CAOhB,OACEnC,KAAM,eACNC,MAAO,CAAC,SACRC,MAAO,CACLZ,MAAO,CACLH,KAAMiB,QACNC,SAAS,GAGXhB,SAAU,CACRF,KAAMiB,QACNC,SAAS,IAIbE,QAAS,CACPhB,OAAAA,CAAQiB,GACN,GAAInG,KAAKgF,SACP,OAAO,EAEThF,KAAKsG,MAAM,QAASH,EACtB,I,UC/BJ,MAAMkB,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,GAAQ,CAAC,YAAY,qBAEzF,O,sGCROpD,MAAM,oB,SAIFA,MAAM,a,GACJA,MAAM,O,GACTU,EAAAA,EAAAA,GAAmC,OAA9BV,MAAM,cAAa,SAAK,G,qBAI1BA,MAAM,O,GACTU,EAAAA,EAAAA,GAAyC,OAApCV,MAAM,cAAa,eAAW,G,2BAIhCA,MAAM,O,GACTU,EAAAA,EAAAA,GAA6C,OAAxCV,MAAM,cAAa,mBAAe,G,qBAIpCA,MAAM,O,GACTU,EAAAA,EAAAA,GAAiD,OAA5CV,MAAM,cAAa,uBAAmB,G,2BAIxCA,MAAM,O,GACTU,EAAAA,EAAAA,GAAyC,OAApCV,MAAM,cAAa,eAAW,G,2BAIhCA,MAAM,O,GACTU,EAAAA,EAAAA,GAAyC,OAApCV,MAAM,cAAa,eAAW,G,2BAIhCA,MAAM,O,GACTU,EAAAA,EAAAA,GAA2C,OAAtCV,MAAM,cAAa,iBAAa,G,2BAIlCA,MAAM,O,GACTU,EAAAA,EAAAA,GAA8C,OAAzCV,MAAM,cAAa,oBAAgB,G,GACnCA,MAAM,e,SAKRA,MAAM,O,GACTU,EAAAA,EAAAA,GAA+C,OAA1CV,MAAM,cAAa,qBAAiB,G,qBAM1CA,MAAM,gB,GACJA,MAAM,0C,oDAWNA,MAAM,W,kBAGPU,EAAAA,EAAAA,GAA0B,KAAvBV,MAAM,cAAY,S,GAArB6D,G,kBAYAnD,EAAAA,EAAAA,GAA8B,KAA3BV,MAAM,kBAAgB,S,GAAzB8D,G,GAKD9D,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,CA9GW4D,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,GAAA,CAAAC,IAAA,sBAE1BC,EAAAA,EAAAA,IAiDQC,GAAA,CAjDDC,MAAM,eAAerE,IAAI,a,mBAC9B,IA+CM,CA/CuB8D,EAAAQ,OAAOC,OAAI,WAAxCtE,EAAAA,EAAAA,IA+CM,MA/CNqD,EA+CM,EA9CJ7C,EAAAA,EAAAA,GAGM,MAHN8C,EAGM,CAFJ7C,GACAD,EAAAA,EAAAA,GAAiD,OAA5CV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQuD,EAAaQ,OAANE,Q,aAG1C/D,EAAAA,EAAAA,GAGM,MAHNa,EAGM,CAFJC,GACAd,EAAAA,EAAAA,GAA4D,OAAvDV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQuD,EAAwBQ,OAAjBC,KAAKE,c,YAGxBX,EAAAQ,OAAOC,KAAKG,UAAO,WAA1CzE,EAAAA,EAAAA,IAGM,MAHN0E,EAGM,CAFJC,GACAnE,EAAAA,EAAAA,GAAgE,OAA3DV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQuD,EAA4BQ,OAArBC,KAAKG,QAAQG,U,8BAGvDpE,EAAAA,EAAAA,GAGM,MAHNqE,EAGM,CAFJC,GACAtE,EAAAA,EAAAA,GAAwD,OAAnDV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQuD,EAAoBQ,OAAbC,KAAKS,U,YAGxBlB,EAAAQ,OAAOC,KAAKU,QAAQC,OAAI,WAA/CjF,EAAAA,EAAAA,IAGM,MAHNkF,EAGM,CAFJC,GACA3E,EAAAA,EAAAA,GAAmE,OAA9DV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQuD,EAA+BQ,OAAxBC,KAAKU,OAAOC,KAAKG,S,6BAGpCvB,EAAAQ,OAAOC,KAAKU,QAAQK,SAAM,WAAjDrF,EAAAA,EAAAA,IAGM,MAHNsF,EAGM,CAFJC,GACA/E,EAAAA,EAAAA,GAAmE,OAA9DV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQuD,EAA+BQ,OAAxBC,KAAKU,OAAOK,OAAOG,O,6BAGtC3B,EAAAQ,OAAOC,KAAKmB,aAAa/E,OAAI,WAApDV,EAAAA,EAAAA,IAGM,MAHN0F,EAGM,CAFJC,GACAnF,EAAAA,EAAAA,GAAiE,OAA5DV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQuD,EAA6BQ,OAAtBC,KAAKmB,YAAY/E,O,6BAGpCmD,EAAAQ,OAAOC,KAAKmB,aAAaG,OAAI,WAApD5F,EAAAA,EAAAA,IAKM,MALN6F,EAKM,CAJJC,GACAtF,EAAAA,EAAAA,GAEM,MAFNuF,GAEMzF,EAAAA,EAAAA,IADDuD,EAAAQ,OAAOC,KAAKmB,YAAYG,KAAKI,UAAW,KAAC1F,EAAAA,EAAAA,IAAGuD,EAAAQ,OAAOC,KAAKmB,YAAYG,KAAKK,UAAW,KAAC3F,EAAAA,EAAAA,IAAGuD,EAAAQ,OAAOC,KAAKmB,YAAYG,KAAKM,UAAQ,sBAI7GrC,EAAAQ,OAAOC,KAAKmB,aAAaG,OAAI,WAApD5F,EAAAA,EAAAA,IAGM,MAHNmG,EAGM,CAFJC,GACA5F,EAAAA,EAAAA,GAA0E,OAArEV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQuD,EAAsCQ,OAA/BC,KAAKmB,YAAYG,KAAKS,W,8DAKpE7F,EAAAA,EAAAA,GA8BM,MA9BN8F,EA8BM,EA7BJ9F,EAAAA,EAAAA,GASM,MATN+F,EASM,EARJ/F,EAAAA,EAAAA,GAOQ,eANNA,EAAAA,EAAAA,GAKS,UALAK,MAAOgD,EAAA2C,SAASC,KAAOrF,SAAML,EAAA,KAAAA,EAAA,GAAA2F,GAAA,KAAOF,SAASC,KAAOC,EAAOzE,OAAOpB,Q,gBACzEb,EAAAA,EAAAA,IAGS2G,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHyB/C,EAAAgD,OAAK,CAAvBC,EAASL,M,WAAzBzG,EAAAA,EAAAA,IAGS,U,aAFDM,EAAAA,EAAAA,KAASmG,EAAK,GAAGM,cAAgBN,EAAKjH,MAAM,IAAIwH,QAAQ,IAAK,MAC5D/C,IAAKwC,EAAOD,SAAUM,EAAUjG,MAAO4F,G,+BAMtDjG,EAAAA,EAAAA,GAiBM,MAjBNyG,EAiBM,CAhBsE,WAAlBpD,EAAA2C,SAASC,OAAI,WAArEzG,EAAAA,EAAAA,IAGS,U,MAHDF,MAAM,kBAAkBsE,MAAM,YAC7BxD,SAAUiD,EAAAC,QAAUX,QAAKpC,EAAA,KAAAA,EAAA,OAAAE,IAAEC,GAAAgG,UAAAhG,GAAAgG,YAAAjG,K,yBAIpCiD,EAAAA,EAAAA,IAMWiD,GAAA,CANDpH,IAAI,0BAA0B,aAAW,YAAYqE,MAAM,oB,mBACnE,IAAwF,EAAxFF,EAAAA,EAAAA,IAAwFkD,GAAA,CAA1EC,KAAK,eAAgBzG,SAAUiD,EAAAC,QAAUX,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAElD,EAAArB,MAAMmF,UAAUC,S,qBAEzD1D,EAAAQ,OAAOC,MAAME,c,WAClCT,EAAAA,EAAAA,IAAyFqD,GAAA,C,MAA3EC,KAAK,eAAgBzG,SAAUiD,EAAAC,QAAUX,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAExF,GAAAsG,YAAW,K,wBAD5B,WAD7CzD,EAAAA,EAAAA,IACiDqD,GAAA,C,MADnCC,KAAK,cAAezG,SAAUiD,EAAAC,QAAUX,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAExF,GAAAsG,YAAW,K,uBAGxEtD,EAAAA,EAAAA,IAA+EkD,GAAA,CAAjEC,KAAK,gBAAiBzG,SAAUiD,EAAAC,QAAUX,QAAOjC,GAAAuG,c,6CAGjEjH,EAAAA,EAAAA,GAES,UAFDV,MAAM,kBAAkBsE,MAAM,kBAAmBxD,SAAUiD,EAAAC,QAAUX,QAAKpC,EAAA,KAAAA,EAAA,OAAAE,IAAEC,GAAAwG,SAAAxG,GAAAwG,WAAAzG,K,YAMxFT,EAAAA,EAAAA,GAwBM,MAxBNmH,EAwBM,CAvB8C,YAAlB9D,EAAA2C,SAASC,OAAI,WAA7CzG,EAAAA,EAAAA,IAUM,MAVN4H,EAUM,CATyB1L,OAAOC,KAAK0H,EAAAgE,SAASjI,QAES,iBAFH,WAAxDI,EAAAA,EAAAA,IAGM,MAHN8H,EAGM,CAFuBjE,EAAAC,UAAO,WAAlC9D,EAAAA,EAAAA,IAA4D,MAA5D+H,EAAoC,yBAAkB,WACtD/H,EAAAA,EAAAA,IAA+D,MAA/DgI,EAA0B,yCAA+B,aAG3DhI,EAAAA,EAAAA,IAGyF2G,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAH1D/C,EAAAgE,SAAO,CAAtBI,EAAQC,M,WAAxBnE,EAAAA,EAAAA,IAGyFoE,GAAA,CAHhDlE,IAAKiE,EACrCD,OAAQA,EAASG,OAAQvE,EAAAuE,OAAS5B,SAAU3C,EAAA2C,SAAS6B,WAAaH,EAClEI,SAAM5B,GAAE7C,EAAA2C,SAAS6B,SAAWxE,EAAA2C,SAAS6B,WAAaH,EAAK,KAAOA,EAC9DK,SAAQrH,GAAAsH,eAAiBC,SAAQvH,GAAAsH,eAAiBE,aAAaxH,GAAAyH,e,mGAGpB,WAAlB9E,EAAA2C,SAASC,OAAI,WAAjDzG,EAAAA,EAAAA,IAUM,MAVN4I,EAUM,CATyB1M,OAAOC,KAAK0H,EAAAuE,QAAQxI,QAEa,iBAFP,WAAvDI,EAAAA,EAAAA,IAGM,MAHN6I,EAGM,CAFuBhF,EAAAC,UAAO,WAAlC9D,EAAAA,EAAAA,IAA2D,MAA3D8I,EAAoC,wBAAiB,WACrD9I,EAAAA,EAAAA,IAAkE,MAAlE+I,EAA0B,4CAAkC,aAG9D/I,EAAAA,EAAAA,IAG+E2G,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHlD/C,EAAAuE,QAAM,CAApBY,EAAOd,M,WAAtBnE,EAAAA,EAAAA,IAG+EkF,GAAA,CAHzChF,IAAKiE,EAAKc,MAAOA,EAAQnB,QAAShE,EAAAgE,QAChErB,SAAU3C,EAAA2C,SAAS0C,UAAYhB,EAC/BI,SAAM5B,GAAE7C,EAAA2C,SAAS0C,QAAUrF,EAAA2C,SAAS0C,UAAYhB,EAAK,KAAOA,EAC5DK,SAAQrH,GAAAyH,cAAgBF,SAAQvH,GAAAyH,cAAgBQ,OAAMjI,GAAAyH,e,6OCrGzD7I,MAAM,U,sDAOXU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,kBAAgB,EACzBU,EAAAA,EAAAA,GAAmC,UAA3BE,KAAK,UAAS,UAAI,K,6BAQ3BZ,MAAM,U,IACJA,MAAM,O,YACTU,EAAAA,EAAAA,GAAkC,OAA7BV,MAAM,cAAa,QAAI,K,IACvBA,MAAM,e,iBAOCA,MAAM,W,YAERU,EAAAA,EAAAA,GAA4B,KAAzBV,MAAM,gBAAc,W,IAAvB+E,I,YAGFrE,EAAAA,EAAAA,GAES,UAFDE,KAAK,SAASZ,MAAM,mB,EAC1BU,EAAAA,EAAAA,GAA2B,KAAxBV,MAAM,kBAAa,K,uBAQtBA,MAAM,W,YAERU,EAAAA,EAAAA,GAA0B,KAAvBV,MAAM,cAAY,W,IAArBsJ,I,IAOLtJ,MAAM,O,YACTU,EAAAA,EAAAA,GAA0C,OAArCV,MAAM,cAAa,gBAAY,K,6BAIjCA,MAAM,O,YACTU,EAAAA,EAAAA,GAA6C,OAAxCV,MAAM,cAAa,mBAAe,K,uBAIpCA,MAAM,O,YACTU,EAAAA,EAAAA,GAAkC,OAA7BV,MAAM,cAAa,QAAI,K,6BAIzBA,MAAM,O,YACTU,EAAAA,EAAAA,GAAoC,OAA/BV,MAAM,cAAa,UAAM,K,IACzBA,MAAM,e,UAKRA,MAAM,O,YACTU,EAAAA,EAAAA,GAAmC,OAA9BV,MAAM,cAAa,SAAK,K,IACxBA,MAAM,e,UAKRA,MAAM,O,YACTU,EAAAA,EAAAA,GAAsC,OAAjCV,MAAM,cAAa,YAAQ,K,IAC3BA,MAAM,e,UAKRA,MAAM,O,YACTU,EAAAA,EAAAA,GAAyC,OAApCV,MAAM,cAAa,eAAW,K,IAC9BA,MAAM,e,UAKRA,MAAM,O,YACTU,EAAAA,EAAAA,GAA+C,OAA1CV,MAAM,cAAa,qBAAiB,K,IACpCA,MAAM,e,UAKRA,MAAM,O,YACTU,EAAAA,EAAAA,GAAuC,OAAlCV,MAAM,cAAa,aAAS,K,IAC5BA,MAAM,e,UAKRA,MAAM,O,YACTU,EAAAA,EAAAA,GAA0C,OAArCV,MAAM,cAAa,gBAAY,K,IAC/BA,MAAM,e,UAKRA,MAAM,kB,YACTU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,UAAQ,EACjBU,EAAAA,EAAAA,GAA+B,OAA1BV,MAAM,SAAQ,YAAM,K,IAGtBA,MAAM,Q,IAEFA,MAAM,c,UAEHA,MAAM,Q,0CAMTA,MAAM,e,kOAqCZA,MAAM,mB,YACTU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,UAAQ,EACjBU,EAAAA,EAAAA,GAAgC,OAA3BV,MAAM,SAAQ,aAAO,K,IAGvBA,MAAM,Q,YAEPU,EAAAA,EAAAA,GAA2C,OAAtCV,MAAM,cAAa,iBAAa,K,YACrCU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,eAAa,EACtBU,EAAAA,EAAAA,GAAiC,KAA9BV,MAAM,0BAAqB,K,IAFhCuJ,GACAC,I,UAMKxJ,MAAM,c,UACNA,MAAM,c,YACXU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,eAAa,EACtBU,EAAAA,EAAAA,GAA4B,KAAzBV,MAAM,qBAAgB,K,YAK3BU,EAAAA,EAAAA,GAA2C,OAAtCV,MAAM,cAAa,iBAAa,K,YACrCU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,eAAa,EACtBU,EAAAA,EAAAA,GAAyB,KAAtBV,MAAM,kBAAa,K,IAFxByJ,GACAC,I,YAMAhJ,EAAAA,EAAAA,GAAiD,OAA5CV,MAAM,cAAa,uBAAmB,K,YAC3CU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,eAAa,EACtBU,EAAAA,EAAAA,GAAyB,KAAtBV,MAAM,kBAAa,K,IAFxB2J,GACAC,I,2IA1MV1J,EAAAA,EAAAA,IAiNM,OAjNDF,OAAKM,EAAAA,EAAAA,IAAA,CAAC,cAAa,CAAAoG,SAAoBtG,EAAAsG,a,CAC3B3C,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAE1BC,EAAAA,EAAAA,IAeQC,EAAA,CAfDrE,MAAM,eAAeC,IAAI,cAAcqE,MAAM,iB,mBAClD,IAA0B,CAAXP,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAE1BzD,EAAAA,EAAAA,GAWO,QAXDV,MAAM,UAAW6J,SAAM5I,EAAA,KAAAA,EAAA,IAAAC,EAAAA,GAAAA,KAAA,IAAAC,IAAUC,EAAA0I,cAAA1I,EAAA0I,gBAAA3I,IAAY,e,EACjDT,EAAAA,EAAAA,GAKM,MALNP,GAKM,gBAJJD,EAAAA,EAAAA,IAGQ2G,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAHuC1G,EAAAkI,QAAM,CAApBY,EAAOd,M,WAAxClI,EAAAA,EAAAA,IAGQ,SAHDF,MAAM,YAA2CmE,IAAKiE,G,EAC3D1H,EAAAA,EAAAA,GAAuF,SAAhFE,KAAK,WAAYG,MAAOqH,EAAK9E,QAASlC,EAAA2I,iBAAiBC,IAAIpM,SAASsL,EAAMd,M,YACjF1H,EAAAA,EAAAA,GAAyG,QAAnGV,MAAM,O,aAAOQ,EAAAA,EAAAA,IAAQ0I,EAAMe,eAAenK,OAASoJ,EAAMe,cAAgB,WAAWf,EAAMd,Q,wBAIpGzH,IAEM,O,WAIVD,EAAAA,EAAAA,GACqF,OADhFV,OAAKM,EAAAA,EAAAA,IAAA,CAAC,kCAAiC,CAAAoG,SAAoBtG,EAAAsG,Y,aAC3DlG,EAAAA,EAAAA,IAAQJ,EAA4C+H,OAArC8B,eAAiB7J,EAAA+H,OAAO+B,cAAe7G,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAElD,EAAAtB,MAAM,Y,YAE9ChC,EAAAsG,WAAQ,WAAlCxG,EAAAA,EAAAA,IAyLM,MAzLNqB,GAyLM,EAxLJb,EAAAA,EAAAA,GA8BM,MA9BNc,GA8BM,CA7BJ2I,IACAzJ,EAAAA,EAAAA,GA2BM,MA3BNkE,GA2BM,EA1BJlE,EAAAA,EAAAA,GAgBM,OAhBDV,OAAKM,EAAAA,EAAAA,IAAA,CAAC,YAAW,CAAA8J,QAAmBrG,EAAAsG,a,EACvC3J,EAAAA,EAAAA,GAcO,QAdAmJ,SAAM5I,EAAA,KAAAA,EAAA,IAAAC,EAAAA,GAAAA,KAAA,IAAAC,IAAUC,EAAAkJ,QAAAlJ,EAAAkJ,UAAAnJ,IAAM,e,EAC3BT,EAAAA,EAAAA,GAEQ,eADNA,EAAAA,EAAAA,GAAwE,SAAjEE,KAAK,OAAOa,KAAK,OAAOxB,IAAI,OAAQc,MAAOX,EAAA+H,OAAO8B,e,cAG3DvJ,EAAAA,EAAAA,GAQO,OARP6J,GAQO,EAPL7J,EAAAA,EAAAA,GAES,UAFDE,KAAK,SAASZ,MAAM,kBAAmBqD,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAE7C,EAAAsG,UAAW,I,IAIjEG,MAES,SAKf9J,EAAAA,EAAAA,GAOM,OAPDV,OAAKM,EAAAA,EAAAA,IAAA,CAAC,YAAW,CAAA8J,OAAkBrG,EAAAsG,a,EACtC3J,EAAAA,EAAAA,GAA2C,Q,aAArCF,EAAAA,EAAAA,IAAQJ,EAAqB+H,OAAd8B,gB,YACrBvJ,EAAAA,EAAAA,GAIO,OAJP2E,GAIO,EAHL3E,EAAAA,EAAAA,GAES,UAFDE,KAAK,SAASZ,MAAM,kBAAmBqD,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAE7C,EAAAsG,UAAW,I,eAQzE3J,EAAAA,EAAAA,GAGM,MAHN+E,GAGM,CAFJgF,IACA/J,EAAAA,EAAAA,GAA4D,OAAvDV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQJ,EAAoB+H,OAAb+B,e,aAGnB9J,EAAA+H,OAAOuC,kBAAe,WAA7CxK,EAAAA,EAAAA,IAGM,MAHN2F,GAGM,CAFJ8E,IACAjK,EAAAA,EAAAA,GAA+D,OAA1DV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQJ,EAAuB+H,OAAhBuC,kB,+BAG1ChK,EAAAA,EAAAA,GAGM,MAHNsF,GAGM,CAFJC,IACAvF,EAAAA,EAAAA,GAAoD,OAA/CV,MAAM,c,aAAcQ,EAAAA,EAAAA,IAAQJ,EAAY+H,OAALvH,O,aAGnBR,EAAA+H,OAAOyC,YAAYC,SAAM,WAAhD3K,EAAAA,EAAAA,IAKM,MALNoG,GAKM,CAJJwE,IACApK,EAAAA,EAAAA,GAEM,MAFN8F,IAEMhG,EAAAA,EAAAA,IADDJ,EAAA+H,OAAOyC,WAAWC,QAAM,sBAIRzK,EAAA+H,OAAOyC,YAAYG,QAAK,WAA/C7K,EAAAA,EAAAA,IAKM,MALNuG,GAKM,CAJJuE,IACAtK,EAAAA,EAAAA,GAEM,MAFNuK,IAEMzK,EAAAA,EAAAA,IADDJ,EAAA+H,OAAOyC,WAAWG,OAAK,sBAIP3K,EAAA+H,OAAO+C,WAAQ,WAAtChL,EAAAA,EAAAA,IAKM,MALNiH,GAKM,CAJJgE,IACAzK,EAAAA,EAAAA,GAEM,MAFNmD,IAEMrD,EAAAA,EAAAA,IADDJ,EAAA+H,OAAO+C,UAAQ,sBAIC9K,EAAA+H,OAAOyC,YAAYQ,cAAW,WAArDlL,EAAAA,EAAAA,IAKM,MALNmL,GAKM,CAJJC,IACA5K,EAAAA,EAAAA,GAEM,MAFNoD,IAEMtD,EAAAA,EAAAA,IADDJ,EAAA+H,OAAOyC,WAAWQ,aAAW,sBAIbhL,EAAA+H,OAAOoD,oBAAiB,WAA/CrL,EAAAA,EAAAA,IAKM,MALNsL,GAKM,CAJJ3D,IACAnH,EAAAA,EAAAA,GAEM,MAFNoH,IAEMtH,EAAAA,EAAAA,IADDJ,EAAA+H,OAAOoD,mBAAiB,sBAIRnL,EAAA+H,OAAOyC,YAAYa,YAAS,WAAnDvL,EAAAA,EAAAA,IAKM,MALN8H,GAKM,CAJJC,IACAvH,EAAAA,EAAAA,GAEM,MAFNwH,IAEM1H,EAAAA,EAAAA,IADDJ,EAAA+H,OAAOyC,WAAWa,WAAS,sBAIXrL,EAAA+H,OAAOuD,eAAY,WAA1CxL,EAAAA,EAAAA,IAKM,MALN4I,GAKM,CAJJC,IACArI,EAAAA,EAAAA,GAEM,MAFNsI,IAEMxI,EAAAA,EAAAA,IADDJ,EAAA+H,OAAOuD,cAAY,sBAIQtP,OAAOC,KAAK+E,EAAAuK,iBAAiB7L,SAAM,WAArEI,EAAAA,EAAAA,IAkDM,MAlDN+I,GAkDM,CAjDJ2C,IAIAlL,EAAAA,EAAAA,GA4CM,MA5CNmL,GA4CM,gBA3CJ3L,EAAAA,EAAAA,IA0CM2G,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IA1C6C1F,EAAAuK,iBAAe,CAAnC5K,EAAO+K,M,WAAtC5L,EAAAA,EAAAA,IA0CM,OA1CDF,MAAM,YAA0DmE,IAAK2H,G,EACxEpL,EAAAA,EAAAA,GAMM,MANNqL,GAMM,mBALDhL,EAAMqK,aAAc,IACvB,GAAqC,MAAZhK,EAAA4K,UAAuC,MAAlBjL,EAAMA,OAAOxE,GAA+B,MAAlBwE,EAAMA,OAAOjD,GAAsE,MAAhBiD,EAAMA,OAAOhF,KAAsC,MAAvBgF,EAAMA,OAAOkL,aAAU,WAA9L/L,EAAAA,EAAAA,IACoG,OADpGgM,GACwF,WAAK,eAC5CnL,EAAM+K,WAAQ,WAA/D5L,EAAAA,EAAAA,IAAmE,Q,MAA7DF,MAAM,O,aAAOQ,EAAAA,EAAAA,IAAQO,EAAM+K,W,4BACY/K,EAAMoL,OAAI,WAAvDjM,EAAAA,EAAAA,IAA2D,Q,MAArDF,MAAM,O,aAAOQ,EAAAA,EAAAA,IAAQO,EAAMoL,O,+BAGnCzL,EAAAA,EAAAA,GAgCM,MAhCN0L,GAgCM,CA9B2D,WAAfrL,EAAMH,OAAI,WAD1DqD,EAAAA,EAAAA,IAEiDoI,EAAA,C,MAFlCtL,MAAyB,MAAlBA,EAAMuL,SAAmBvL,EAAMA,QAAUA,EAAMuL,WAAavL,EAAMA,MACzED,UAAWC,EAAMwL,SACjBvL,QAAK4F,GAAExF,EAAAoL,SAASzL,EAAO6F,I,wCAIJ,YAAf7F,EAAMH,MAAyC,MAAnBG,EAAM0L,WAAwC,MAAnB1L,EAAM2L,YAAS,WAFzFzI,EAAAA,EAAAA,IAEqG0I,EAAA,C,MAF5F,cAAY,EAAOlM,MAAK,CAAGM,EAAM0L,UAAW1L,EAAM2L,WAAa3L,MAAOA,EAAMA,MAC5ED,UAAWC,EAAMwL,SAAWjL,SAAMsF,GAAExF,EAAAoL,SAASzL,EAAO6F,I,iDAG5B,YAAf7F,EAAMH,MAA0C,MAAnBG,EAAM0L,WAAwC,MAAnB1L,EAAM2L,UAK/C,SAAf3L,EAAMH,OAAI,WAA5BV,EAAAA,EAAAA,IAOQ,QAAA0M,GAAA,EANNlM,EAAAA,EAAAA,GAKS,UALAK,MAAOA,EAAM8L,UAA2B,MAAf9L,EAAMA,MAAgBA,EAAMA,MAAQ,GAC7DO,SAAMsF,GAAExF,EAAAoL,SAASzL,EAAO6F,I,CAChB7F,EAAM8L,UAAY,iBAAJ,WAA7B3M,EAAAA,EAAAA,IAAiC,SAAA4M,OAAA,aACjC5M,EAAAA,EAAAA,IAC2F2G,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IADlE/F,EAAMgM,QAAhBC,K,WAAf9M,EAAAA,EAAAA,IAC2F,UADnDiE,IAAK6I,EAASjM,MAAOiM,E,aAAQxM,EAAAA,EAAAA,IAAQwM,GACpEtG,SAAU3F,EAAM8L,UAAY9L,EAAMA,QAAUiM,EAASlM,UAAWC,EAAMwL,U,+BAIrD,MAAZnL,EAAA4K,UAAuC,MAAlBjL,EAAMA,OAAOxE,GAA+B,MAAlBwE,EAAMA,OAAOjD,GAA+D,MAAhBiD,EAAMA,OAAOhF,KAAsC,MAAvBgF,EAAMA,OAAOkL,aAAU,WAAhL/L,EAAAA,EAAAA,IAIQ,QAAA+M,GAAA,EAFNvM,EAAAA,EAAAA,GAC0H,SADnHE,KAAK,QAASU,UAAMJ,EAAAA,GAAAA,KAAA0F,GAAOxF,EAAAoL,SAASzL,EAAO6F,IAAM,UAChD7F,MAAK,IAAQK,EAAA4K,SAAStN,KAAKwO,IAAQA,EAAItL,OAAOsL,GAAGrN,SAAS,IAAyB,IAAbqN,EAAEpN,OAAe,IAAMoN,EAAIA,KAAKnN,KAAK,K,4BAGrHG,EAAAA,EAAAA,IAEQ,QAAAiN,GAAA,EADNzM,EAAAA,EAAAA,GAAwG,SAAjGE,KAAK,OAAQE,UAAWC,EAAMwL,SAAWxL,MAAOA,EAAMA,MAAQO,SAAMsF,GAAExF,EAAAoL,SAASzL,EAAO6F,I,iBArBN,WAAzF1G,EAAAA,EAAAA,IAGQ,QAAAkN,GAAA,EAFN1M,EAAAA,EAAAA,GAC2C,SADpCE,KAAK,SAAU,cAAY,EAAOG,MAAOA,EAAMA,MAAQD,UAAWC,EAAMwL,SACvEjL,SAAMsF,GAAExF,EAAAoL,SAASzL,EAAO6F,I,kDA0B1ClG,EAAAA,EAAAA,GAmCM,MAnCN2M,GAmCM,CAlCJC,IAIA5M,EAAAA,EAAAA,GA6BM,MA7BN6M,GA6BM,EA5BJ7M,EAAAA,EAAAA,GAKM,OALDV,MAAM,MAAOqD,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAElD,EAAArB,MAAMmL,YAAY/F,S,KAO3C/G,EAAAA,EAAAA,GAMM,OANDV,MAAM,MAAOqD,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAE7C,EAAA0J,oBAAsBrM,EAAAsM,oBAAsBtM,EAAAuM,oB,CACpC5J,EAAA0J,sBAAsC,WACrEvN,EAAAA,EAAAA,IAAoD,MAApD0N,GAA+B,sBADmB,WAAlD1N,EAAAA,EAAAA,IAA2E,MAA3E2N,GAAoD,sBAEpDC,MAKFpN,EAAAA,EAAAA,GAKM,OALDV,MAAM,MAAOqD,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAExF,EAAA2M,QAAO,K,KAOhCrN,EAAAA,EAAAA,GAKM,OALDV,MAAM,YAAaqD,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAExF,EAAA2M,QAAO,K,+EAoBhD,IACEtM,KAAM,SACNuM,WAAY,CAACC,MAAK,KAAEC,aAAY,KAAEC,OAAM,KAAEC,QAAOA,GAAAA,GACjDC,OAAQ,CAACC,GAAAA,GACT5M,MAAO,CAAC,SAAU,SAAU,SAAU,eAEtCC,MAAO,CACLwG,OAAQ,CACNvH,KAAMxE,OACNmS,UAAU,GAGZjG,OAAQ,CACN1H,KAAMxE,OACN0F,QAASA,QAGX4E,SAAU,CACR9F,KAAMiB,QACNC,SAAS,IAIb0M,IAAAA,GACE,MAAO,CACLnE,UAAU,EACVrG,SAAS,EACTO,OAAQ,CAAC,EACTkJ,qBAAqB,EAEzB,EAEAgB,SAAU,CACR1B,MAAAA,GACE,IAAKjR,KAAKqM,OAAOyC,YAAY8D,QAC3B,MAAO,CAAC,EAEV,MAAMC,EAAiB5B,IACrB,MAAM6B,EAAeA,CAAC7N,EAAO8N,KAC3B,GAAK9N,EAAM+N,SAAX,CAOI/N,EAAM+K,WACR+C,EAAK9N,EAAM+K,UAAY+C,EAAK9N,EAAM+K,WAAa,CAAC,EAChD+C,EAAOA,EAAK9N,EAAM+K,WAGpB,IAAK,MAAMiD,KAAWhO,EAAM+N,SAC1BF,EAAaG,EAASF,EARxB,MAJM9N,EAAM+K,WACR+C,EAAK9N,EAAM+K,UAAY/K,EAWE,EAGzBiO,EAAM,CAAC,EACb,IAAK,MAAMjO,KAASgM,EAClB6B,EAAa7N,EAAOiO,GAEtB,OAAOA,CAAE,EAGX,OAAOL,EAAc7S,KAAKqM,OAAOyC,WAAW8D,QAC9C,EAEA/C,eAAAA,GACE,MAAMqD,EAAM,CAAC,EACPC,EAAcA,CAACC,GAAM/K,EAAKpD,MAC1BoD,KAAOrI,KAAKyI,SACdxD,EAAQ,IACHA,EACHA,MAAOjF,KAAKyI,OAAOJ,KAGH,MAAhBpD,EAAMoO,SACRpO,EAAM8L,YAA6B,EAAf9L,EAAMoO,QAC1BpO,EAAMwL,YAA6B,EAAfxL,EAAMoO,eACnBpO,EAAMoO,QAGfD,EAAI/K,GAAOpD,EACX3E,OAAOgT,QAAQrO,GAAOsO,QAAQC,GAAMA,EAAE,aAAclT,SAAQmT,OAAON,EAAaC,EAAI/K,IAC7E+K,GAIT,OADA9S,OAAOgT,QAAQtT,KAAKiR,QAAQwC,OAAON,EAAaD,GACzCA,CACT,EAEAhD,QAAAA,GACE,IAAKlQ,KAAK6P,gBAAgBvO,MACxB,OAEF,MAAMA,EAAQtB,KAAK6P,gBAAgBvO,OAAO2D,MAC1C,GAAK3D,EAAL,CAGA,GAAe,MAAXA,EAAMb,GAAwB,MAAXa,EAAMU,EAAW,CACtC,MAAM0R,EAAY,IAAI7T,GAAAA,EAAe,CACnCM,IAAK,CAACH,KAAK6P,gBAAgB5N,YAAY0O,WAAa,EAAG3Q,KAAK6P,gBAAgB5N,YAAY2O,WAAa,OAGvG,OAAO8C,EAAU3R,QAAQT,EAAMb,EAAGa,EAAMU,EAAGhC,KAAK6P,gBAAgB5N,WAAWgD,MAC7E,CACA,GAAiB,MAAb3D,EAAMrB,MAAoC,MAApBqB,EAAM6O,YAAmC,MAAb7O,EAAMpB,KAAc,CACxE,MAAMyT,EAA8B,MAApBrS,EAAM6O,WAAqB,aAAe,MACpDuD,EAAY,IAAI7T,GAAAA,EAAe,CACnCI,IAAK,CAACD,KAAK6P,gBAAgBvO,MAAMrB,KAAK0Q,WAAa,EAAG3Q,KAAK6P,gBAAgBvO,MAAMrB,IAAI2Q,WAAa,OAClG1Q,IAAK,CAACF,KAAK6P,gBAAgBvO,MAAMqS,IAAUhD,WAAa,EAAG3Q,KAAK6P,gBAAgBvO,MAAMqS,GAAS/C,WAAa,KAC5GzQ,IAAK,CAACH,KAAK6P,gBAAgB5N,YAAY0O,WAAa,EAAG3Q,KAAK6P,gBAAgB5N,YAAY2O,WAAa,OAGvG,OAAO8C,EAAU9S,SAASU,EAAMrB,IAAKqB,EAAMqS,GAAU3T,KAAK6P,gBAAgB5N,WAAWgD,MACvF,CAEA,OAAO,IApBC,CAqBV,EAEAgJ,gBAAAA,GACE,OAAO,IAAI2F,IAAItT,OAAO2Q,OAAOjR,KAAKwM,QAC7B+G,QAAQnG,GAAU,IAAIwG,KAClBxG,EAAMyG,SAAW,IAAIjR,KAAKkR,GAAWA,EAAO1F,gBAAeF,IAAIlO,KAAKqM,OAAO+B,gBAC/ExL,KAAKwK,GAAUtL,SAASsL,EAAMd,MACrC,GAGFpG,QAAS,CACP,aAAM4F,GACJ9L,KAAKkI,SAAU,EACf,IACElI,KAAKyI,aAAezI,KAAK+T,QAAQ,yBAC7B,CAAC1H,OAAQrM,KAAKqM,OAAO8B,eAAiBnO,KAAKqM,OAAO+B,cACxD,CAAE,QACApO,KAAKkI,SAAU,CACjB,CACF,EAEA,YAAMsG,GACJ,MAAM7I,GAAQ3F,KAAKuG,MAAMZ,KAAKV,OAAS,IAAI+O,OAC3C,GAAKrO,EAAK3B,QAAU2B,IAAS3F,KAAKqM,OAAO8B,cAAzC,CAGAnO,KAAKkI,SAAU,EACf,UACQlI,KAAK+T,QAAQ,4BAA6B,CAC9C1H,OAAQrM,KAAKqM,OAAO8B,eAAenK,OAAShE,KAAKqM,OAAO8B,cAAgBnO,KAAKqM,OAAO+B,aACpFzI,KAAMA,IAGR3F,KAAKsG,MAAM,SAAU,CAACX,KAAM3F,KAAKqM,OAAO8B,cAAe8F,QAAStO,GAClE,CAAE,QACA3F,KAAKuO,UAAW,EAChBvO,KAAKkI,SAAU,CACjB,CAbQ,CAcV,EAEA,YAAM+J,CAAOiC,GACX,GAAKC,QAAQ,6EAAb,CAGAD,IAAUA,EACVlU,KAAKkI,SAAU,EACf,UACQlI,KAAK+T,QAAQ,4BAA6B,CAC9C1H,OAAQrM,KAAKqM,OAAO8B,eAAenK,OAAShE,KAAKqM,OAAO8B,cAAgBnO,KAAKqM,OAAO+B,aACpF8F,MAAOA,IAGTlU,KAAKsG,MAAM,SAAU,CAAC+F,OAAQrM,KAAKqM,OAAO8B,eAAiBnO,KAAKqM,OAAO+B,cACzE,CAAE,QACApO,KAAKkI,SAAU,CACjB,CAbQ,CAcV,EAEA,cAAMwI,CAASzL,EAAOkB,GACpB,MAAM4N,EAAU,CACd1H,OAAQrM,KAAKqM,OAAO8B,eAAiBnO,KAAKqM,OAAO+B,aACjD4B,SAAU/K,EAAM+K,SAChB/K,MAAO,MAGT,OAAQA,EAAMH,MACZ,IAAK,SACCG,EAAMmP,aACRL,EAAQ9O,MAAQA,EAAMmP,aACbnP,EAAMuL,UAAYvL,EAAMoP,UACjCN,EAAQ9O,MAAQA,EAAMA,QAAUA,EAAMuL,SAAWvL,EAAMoP,UAAYpP,EAAMuL,SAEzEuD,EAAQ9O,OAASA,EAAMA,MAEzB,MAEF,IAAK,UACH8O,EAAQ9O,MAAQlC,WAAWoD,EAAME,OAAOpB,OACxC,MAEF,IAAK,OACCkB,EAAME,OAAOpB,OAAOjB,SACtB+P,EAAQ9O,MAAQkB,EAAME,OAAOpB,OAE/B,MAEF,QACE,GAAgB,MAAXA,EAAMxE,GAAwB,MAAXwE,EAAMjD,GAA4B,MAAbiD,EAAMhF,MAAoC,MAApBgF,EAAMkL,YAAmC,MAAblL,EAAM/E,KAAe,CAClH6T,EAAQ/D,SAAW,QACnB,MAAM9M,EAAMiD,EAAME,OAAOpB,MAAMrB,MAAM,GAChC0Q,MAAM,oBACNf,QAAO,CAAC1P,EAAGuN,IAAMA,EAAI,IACrBxO,KAAKwO,GAAMtP,SAASsP,EAAG,MAE5B,GAAgB,MAAXnM,EAAMxE,GAAwB,MAAXwE,EAAMjD,EAAY,CACxC,MAAM0R,EAAY,IAAI7T,GAAAA,EAAe,CACnCM,IAAK,CAACH,KAAK6P,gBAAgB5N,YAAY0O,WAAa,EAAG3Q,KAAK6P,gBAAgB5N,YAAY2O,WAAa,OAGjGxN,EAAKsQ,EAAU5Q,WAAWI,GAChC6Q,EAAQ9O,MAAQ,CACdxE,EAAG2C,EAAG,GACNpB,EAAGoB,EAAG,GAEV,KAAO,CACL,MAAMuQ,EAAmD,MAAzC3T,KAAK6P,gBAAgBvO,MAAM6O,WAAqB,aAAe,MACzEuD,EAAY,IAAI7T,GAAAA,EAAe,CACnCI,IAAK,CAACD,KAAK6P,gBAAgBvO,MAAMrB,KAAK0Q,WAAa,EAAG3Q,KAAK6P,gBAAgBvO,MAAMrB,IAAI2Q,WAAa,OAClG1Q,IAAK,CAACF,KAAK6P,gBAAgBvO,MAAMqS,IAAUhD,WAAa,EAAG3Q,KAAK6P,gBAAgBvO,MAAMqS,GAAS/C,WAAa,KAC5GzQ,IAAK,CAACH,KAAK6P,gBAAgB5N,YAAY0O,WAAa,EAAG3Q,KAAK6P,gBAAgB5N,YAAY2O,WAAa,OAGjG2D,EAAMb,EAAUjS,YAAYyB,GAClC6Q,EAAQ9O,MAAQ,CACdhF,IAAKsU,EAAI,IAGXR,EAAQ9O,MAAM0O,GAAWY,EAAI,EAC/B,CACF,CACA,MAGJ,GAAqB,MAAjBR,EAAQ9O,MAAZ,CAGAjF,KAAKkI,SAAU,EACf,UACQlI,KAAK+T,QAAQ,yBAA0BA,SACvC/T,KAAK8L,SACb,CAAE,QACA9L,KAAKkI,SAAU,CACjB,CARQ,CASV,EAEA,kBAAM8F,CAAa7H,GACjB,MAAMqG,EAAS,IAAIrG,EAAME,OAAOmO,iBAAiB,yBAAyBf,QAAO,CAACL,EAAKqB,KACrF,MAAMnH,EAAUxL,SAAS2S,EAAQxP,OAMjC,OALIwP,EAAQjN,UAAYxH,KAAKiO,iBAAiBC,IAAIZ,GAChD8F,EAAIsB,IAAIA,IAAIpH,IACJmH,EAAQjN,SAAWxH,KAAKiO,iBAAiBC,IAAIZ,IACrD8F,EAAInB,OAAOyC,IAAIpH,GAEV8F,CAAE,GACR,CAACsB,IAAK,IAAId,IAAO3B,OAAQ,IAAI2B,MAE1Be,EAAaC,gBACXC,QAAQC,IAAI,IAAItI,EAAOuI,IAASnS,KAAIgS,gBAClC5U,KAAK+T,QAAS,qBAAoBgB,WAAiB,CACvD3H,MAAOpN,KAAKwM,OAAOc,GAASa,cAC5B9B,OAAQrM,KAAKqM,OAAO8B,eAAenK,OAAShE,KAAKqM,OAAO8B,cAAgBnO,KAAKqM,OAAO+B,cACpF,IACD,EAGLpO,KAAKkI,SAAU,EACf,UACQ2M,QAAQC,IAAIxU,OAAOC,KAAKiM,GAAQ5J,IAAI+R,IAC1C3U,KAAKsG,MAAM,cAAekG,EAC5B,CAAE,QACAxM,KAAKkI,SAAU,CACjB,CACF,EAEA,qBAAM2J,GACJ7R,KAAKkI,SAAU,EACf,IACElI,KAAK2R,2BAA6B3R,KAAK+T,QAAQ,uCAAwC,CACrF1H,OAAQrM,KAAKqM,OAAO8B,eAAenK,OAAShE,KAAKqM,OAAO8B,cAAgBnO,KAAKqM,OAAO+B,gBAClF4G,iBAEAhV,KAAK2R,oBACP3R,KAAKiV,OAAO,CACVxJ,KAAM,gDACNyJ,MAAO,CACLC,UAAW,oBAIfnV,KAAKiV,OAAO,CACVxJ,KAAM,2BACNyJ,MAAO,CACLC,UAAW,gBAGnB,CAAE,QACAnV,KAAKkI,SAAU,CACjB,CACF,EAEA,uBAAM0J,GACJ5R,KAAKkI,SAAU,EACf,UACQlI,KAAK+T,QAAQ,yCAA0C,CAC3D1H,OAAQrM,KAAKqM,OAAO8B,eAAenK,OAAShE,KAAKqM,OAAO8B,cAAgBnO,KAAKqM,OAAO+B,cAExF,CAAE,QACApO,KAAKkI,SAAU,CACjB,CACF,GAGFhB,OAAAA,GACElH,KAAKmH,QAAO,IAAMnH,KAAK4K,WAAWxD,IAC5BA,GACFpH,KAAK8L,SAAS,IAGlB9L,KAAKmH,QAAO,IAAMnH,KAAKyI,OAAOuM,mBAAmB5N,IAC/CpH,KAAK2R,oBAAsBvK,CAAO,IAGpCpH,KAAKoV,WAAWjP,IACVA,EAAMkG,SAAWrM,KAAKqM,OAAO8B,eAAiBhI,EAAMkG,SAAWrM,KAAKqM,OAAO+B,eAG/EpO,KAAKyI,OAAS,IAAIzI,KAAKyI,UAAWtC,EAAMkP,YAAW,GACjD,sBAAqBrV,KAAKqM,OAAO+B,eACjC,uEACN,EAEAkH,SAAAA,GACEtV,KAAKuV,YAAa,sBAAqBvV,KAAKqM,OAAO+B,eACrD,G,WCziBF,MAAM/G,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,0FCHSnD,MAAM,U,IACJA,MAAM,mB,YACTU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,UAAQ,EACjBU,EAAAA,EAAAA,GAAgC,OAA3BV,MAAM,SAAQ,aAAO,K,IAGvBA,MAAM,Q,yDAWRA,MAAM,mB,YACTU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,UAAQ,EACjBU,EAAAA,EAAAA,GAAgC,OAA3BV,MAAM,SAAQ,aAAO,K,IAGvBA,MAAM,Q,YAEPU,EAAAA,EAAAA,GAAsC,OAAjCV,MAAM,UAAS,gBAAY,K,YAChCU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,4BAA0B,EACnCU,EAAAA,EAAAA,GAA0B,KAAvBV,MAAM,iBAAY,K,IAFvBuK,GACAxF,I,YAMArE,EAAAA,EAAAA,GAAsC,OAAjCV,MAAM,UAAS,gBAAY,K,YAChCU,EAAAA,EAAAA,GAEM,OAFDV,MAAM,4BAA0B,EACnCU,EAAAA,EAAAA,GAA2B,KAAxBV,MAAM,kBAAa,K,IAFxBwK,GACApF,I,uEArCVlF,EAAAA,EAAAA,IA4CM,OA5CDF,OAAKM,EAAAA,EAAAA,IAAA,CAAC,aAAY,CAAAoG,SAAoBtG,EAAAsG,a,CAC1B3C,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAC1BzD,EAAAA,EAAAA,GAC6D,OADxDV,OAAKM,EAAAA,EAAAA,IAAA,CAAC,kCAAiC,CAAAoG,SAAoBtG,EAAAsG,Y,aAC3DlG,EAAAA,EAAAA,IAAQJ,EAAoB8I,MAAde,eAAgB5G,QAAKpC,EAAA,KAAAA,EAAA,GAAA2F,GAAElD,EAAAtB,MAAM,Y,YAEtBhC,EAAAsG,WAAQ,WAAlCxG,EAAAA,EAAAA,IAsCM,MAtCNqD,GAsCM,EArCJ7C,EAAAA,EAAAA,GAcM,MAdN8C,GAcM,CAbJ7C,IAIAD,EAAAA,EAAAA,GAQM,MARN4Q,GAQM,EAPJ5Q,EAAAA,EAAAA,GAMO,4BALLR,EAAAA,EAAAA,IAIQ2G,EAAAA,GAAA,MAAAC,EAAAA,EAAAA,IAJkC1G,EAAA2H,SAAO,CAAtBI,EAAQC,M,WAAnClI,EAAAA,EAAAA,IAIQ,SAJDF,MAAM,MAAuCmE,IAAKiE,G,EACvD1H,EAAAA,EAAAA,GACqD,SAD9CE,KAAK,WAAY0C,QAASlC,EAAAuO,QAAQ3F,IAAI7B,EAAO+B,cAAgBnJ,MAAOoH,EAAO+B,aAC1E5I,SAAMsF,GAAExF,EAAAmQ,aAAapJ,EAAO+B,e,aACpCxJ,EAAAA,EAAAA,GAAyG,QAAnGV,MAAM,Q,aAAQQ,EAAAA,EAAAA,IAAQ2H,EAAO8B,eAAenK,OAASqI,EAAO8B,cAAgB9B,EAAO+B,e,6BAMjGxJ,EAAAA,EAAAA,GAoBM,MApBNyJ,GAoBM,CAnBJvF,IAIAlE,EAAAA,EAAAA,GAcM,MAdNmE,GAcM,EAbJnE,EAAAA,EAAAA,GAKM,OALDV,MAAM,MAAOqD,QAAKpC,EAAA,KAAAA,EAAA,OAAAE,IAAEC,EAAAkJ,QAAAlJ,EAAAkJ,UAAAnJ,K,KAOzBT,EAAAA,EAAAA,GAKM,OALDV,MAAM,MAAOqD,QAAKpC,EAAA,KAAAA,EAAA,OAAAE,IAAEC,EAAA2M,QAAA3M,EAAA2M,UAAA5M,K,+BAgBnC,QACEM,KAAM,QACNC,MAAO,CAAC,SAAU,SAAU,QAC5B2M,OAAQ,CAACC,GAAAA,GACTN,WAAY,CAACI,QAAOA,GAAAA,GAEpBzM,MAAO,CACLuH,MAAO,CACLtI,KAAMxE,OACNmS,UAAU,GAGZxG,QAAS,CACPnH,KAAMxE,OACN0F,QAASA,KAAe,CAAC,IAG3B4E,SAAU,CACR9F,KAAMiB,QACNC,SAAS,IAIb0M,IAAAA,GACE,MAAO,CACLxK,SAAS,EACT+I,OAAQ,CAAC,EAEb,EAEA0B,SAAU,CACR+C,gBAAAA,GACE,OAAOpV,OAAOgT,QAAQtT,KAAKiM,SAASwH,QAAO,CAACL,EAAKuC,KAC/C,MAAMtJ,EAASsJ,EAAM,GAErB,OADAvC,EAAI/G,EAAO+B,cAAgB/B,EACpB+G,CAAE,GACR,CAAC,EACN,EAEAS,OAAAA,GACE,OAAO,IAAID,KAAK5T,KAAKoN,MAAMyG,SAAW,IAAIjR,KAAKkR,GAAWA,EAAO1F,eACnE,GAGFlI,QAAS,CACP,YAAM+L,GACJ,GAAKkC,QAAQ,oDAAb,CAGAnU,KAAKkI,SAAU,EACf,UACQlI,KAAK+T,QAAQ,2BAA4B,CAACpO,KAAM3F,KAAKoN,MAAMe,gBACjEnO,KAAKsG,MAAM,SAAU,CAACX,KAAM3F,KAAKoN,MAAMe,eACzC,CAAE,QACAnO,KAAKkI,SAAU,CACjB,CARQ,CASV,EAEA,YAAMsG,GACJ,IAAI7I,EAAOiQ,OAAO,iBAAkB5V,KAAKoN,MAAMe,eAC/C,GAAKxI,GAAM3B,OAAX,CAGA2B,EAAOA,EAAKqO,OACZhU,KAAKkI,SAAU,EAEf,UACQlI,KAAK+T,QAAQ,2BAA4B,CAC7C3G,MAAOpN,KAAKoN,MAAMe,eAAiBnO,KAAKoN,MAAMd,GAC9C3G,KAAMA,IAGR3F,KAAKsG,MAAM,SAAU,CAACX,KAAM3F,KAAKoN,MAAMe,cAAe8F,QAAStO,GACjE,CAAE,QACA3F,KAAKkI,SAAU,CACjB,CAdQ,CAeV,EAEA,kBAAMuN,CAAaI,GACjB,MAAMxJ,EAASrM,KAAK0V,iBAAiBG,GAC/BlQ,EAAO0G,EAAO8B,eAAenK,OAASqI,EAAO8B,cAAgB0H,EAC7DC,EAAS9V,KAAK6T,QAAQ3F,IAAI2H,GAAe,SAAW,MAE1D7V,KAAKkI,SAAU,EACf,UACQlI,KAAK+T,QAAS,qBAAoB+B,WAAiB,CACvD1I,MAAOpN,KAAKoN,MAAMe,cAClB9B,OAAQ1G,IAGV3F,KAAKsG,MAAM,OAAQ,CAAC+F,OAAQ1G,EAAMmQ,OAAQA,GAC5C,CAAE,QACA9V,KAAKkI,SAAU,CACjB,CACF,IC3IJ,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UJoHA,IACEvC,KAAM,aACNuM,WAAY,CAACC,MAAK,KAAE4D,SAAQ,KAAEC,aAAY,KAAE1D,QAAO,KAAE2D,OAAM,GAAEC,MAAKA,IAClE3D,OAAQ,CAACC,GAAAA,GAETE,IAAAA,GACE,MAAO,CACLzG,QAAS,CAAC,EACVO,OAAQ,CAAC,EACT/D,OAAQ,CAAC,EACTP,SAAS,EACT0C,SAAU,CACRC,KAAM,UACN4B,cAAU3E,EACVwF,aAASxF,GAEXmD,MAAO,CACLgB,SAAS,EACTO,QAAQ,GAEV2J,MAAO,CACL/I,MAAO,CACLgJ,SAAS,IAIjB,EAEAlQ,QAAS,CACP,oBAAM0G,GACJ5M,KAAKkI,SAAU,EAEf,IACElI,KAAKiM,eAAiBjM,KAAK+T,QAAQ,wBAAwBN,QAAO,CAACxH,EAASI,KACtEA,EAAO8B,iBAAiBnO,KAAKiM,UAC/BI,EAAS,CACP4E,OAAQjR,KAAKiM,QAAQI,EAAO8B,eAAe8C,QAAU,CAAC,KACnDjR,KAAKiM,QAAQI,EAAO8B,iBAI3BlC,EAAQI,EAAO8B,eAAiB9B,EACzBJ,IACN,CAAC,EACN,CAAE,QACAjM,KAAKkI,SAAU,CACjB,CACF,EAEA,mBAAM6E,GACJ/M,KAAKkI,SAAU,EACf,IACElI,KAAKwM,cAAgBxM,KAAK+T,QAAQ,uBAAuBN,QAAO,CAACjH,EAAQY,KACvEZ,EAAOY,EAAMd,IAAMc,EACZZ,IACN,CAAC,EACN,CAAE,QACAxM,KAAKkI,SAAU,CACjB,CACF,EAEA,iBAAMmO,GACJrW,KAAKkI,SAAU,EACf,IACElI,KAAKyI,aAAezI,KAAK+T,QAAQ,mBACnC,CAAE,QACA/T,KAAKkI,SAAU,CACjB,CACF,EAEA4D,OAAAA,GACE9L,KAAK4M,iBACL5M,KAAK+M,gBACL/M,KAAKqW,aACP,EAEAC,gBAAAA,CAAiBjK,EAAQxG,GACvB7F,KAAKiM,QAAQI,GAAQ4E,OAASpL,CAChC,EAEA,cAAMyF,GACJ,MAAM3F,EAAOiQ,OAAO,cACpB,GAAMjQ,GAAQA,EAAK3B,OAAnB,CAIAhE,KAAKkI,SAAU,EACf,UACQlI,KAAK+T,QAAQ,wBAAyB,CAACpO,KAAMA,GACrD,CAAE,QACA3F,KAAKkI,SAAU,CACjB,OAEMlI,KAAK+M,eATX,CAUF,EAEA,gBAAMnB,CAAW2K,GACf,MAAMlR,EAAO,CAACkR,SAAUA,GACxB,GAAIA,EAAQ,CACV,IAAIC,EAAUZ,OAAO,+DAAgE,MACrFvQ,EAAKmR,QAAUA,EAAQxS,OAASlC,SAAS0U,GAAW,IACtD,CAEAxW,KAAKkI,SAAU,EACf,UACQlI,KAAK+T,QAAQ,0BAA2B1O,GAC9CoR,WAAWzW,KAAKqW,YAAa,IAC/B,CAAE,QACArW,KAAKkI,SAAU,CACjB,CACF,EAEA,kBAAM2D,GACJ,GAAKsI,QAAQ,6DACNA,QAAQ,mFADf,CAKAnU,KAAKkI,SAAU,EACf,UACQlI,KAAK+T,QAAQ,4BACrB,CAAE,QACA/T,KAAKkI,SAAU,CACjB,CAPA,CAQF,EAEA,gBAAMwO,CAAWrK,EAAQe,GACvBpN,KAAKkI,SAAU,QACTlI,KAAK+T,QAAQ,+BAAgC,CACjD1H,OAAQA,EACRe,MAAOA,IAGTpN,KAAKkI,SAAU,EACf,MAAMyO,EAAO3W,KAEbyW,YAAW,KACTE,EAAK7K,UACL6K,EAAK5J,eAAe,GACnB,IACL,GAGF6J,OAAAA,GACE5W,KAAKoV,WAAU,KACbpV,KAAKiV,OAAO,CACVxJ,KAAM,qCACNoL,OAAO,GACP,GACD,oBAAqB,8DAExB7W,KAAKoV,WAAU,KACbpV,KAAKiV,OAAO,CACVxJ,KAAM,+BACN0J,UAAW,gBACX,GACD,mBAAoB,6DAEvBnV,KAAKoV,WAAU,KACbpV,KAAKiV,OAAO,CACVxJ,KAAM,8BACNoL,OAAO,GACP,GACD,iCAAkC,0EAErC7W,KAAKoV,WAAU,KACbpV,KAAKiV,OAAO,CACVxJ,KAAM,0BACNoL,OAAO,GACP,GACD,6BAA8B,uEAEjC7W,KAAKoV,WAAU,KACbpV,KAAKiV,OAAO,CACVxJ,KAAM,yBACNoL,OAAO,GACP,GACD,gCAAiC,yEAEpC7W,KAAKoV,WAAU,KACbpV,KAAKiV,OAAO,CACVxJ,KAAM,0CACNoL,OAAO,GACP,GACD,8BACC,2EAEJ7W,KAAKoV,WAAWjP,IACdnG,KAAKiV,OAAO,CACVxJ,KAAMtF,EAAM0Q,OAAS,kBACrBA,OAAO,GACP,GACD,kBAAmB,4DAEtB7W,KAAKoV,UAAUpV,KAAK8L,QAAS,0BACzB,4DACA,mEACA,qEACA,kEACA,mEACA,uEACA,mEACA,gEACA,mEAGJ9L,KAAKoV,UAAUpV,KAAK+M,cAAe,yBAC/B,gEACA,kEACA,oEAEN,EAEA7F,OAAAA,GACElH,KAAK8L,SACP,EAEAwJ,SAAAA,GACEtV,KAAKuV,YAAY,mBACjBvV,KAAKuV,YAAY,+BACjBvV,KAAKuV,YAAY,iCACjBvV,KAAKuV,YAAY,8BACjBvV,KAAKuV,YAAY,kCACjBvV,KAAKuV,YAAY,oBACjBvV,KAAKuV,YAAY,qBACjBvV,KAAKuV,YAAY,2BACjBvV,KAAKuV,YAAY,yBACnB,GKzVF,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAASjO,MAEpE,S","sources":["webpack://platypush/./src/components/panels/Light/color.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/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","import { render } from \"./Slider.vue?vue&type=template&id=4b38623f&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=4b38623f&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-4b38623f\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./ToggleSwitch.vue?vue&type=template&id=a6396ae8&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=a6396ae8&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-a6396ae8\"]])\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","$props","withRange","_normalizeClass","withLabel","_toDisplayString","range","_createElementVNode","_hoisted_4","type","step","disabled","value","onInput","_cache","_withModifiers","args","$options","onUpdate","onChange","_hoisted_6","_hoisted_7","name","emits","props","Number","Boolean","default","Array","methods","event","update","target","$emit","$refs","sliderWidth","clientWidth","percent","innerWidth","thumb","style","left","transform","track","width","mounted","$watch","newValue","__exports__","render","onClick","checked","_hoisted_2","_hoisted_3","_renderSlot","_ctx","$slots","undefined","_hoisted_36","_hoisted_39","$data","loading","_createBlock","_component_Loading","key","_createVNode","_component_Modal","title","status","info","state","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","$event","_Fragment","_renderList","views","enabled","toUpperCase","replace","_hoisted_34","addGroup","_component_Dropdown","_component_DropdownItem","text","infoModal","show","permitJoin","factoryReset","refresh","_hoisted_41","_hoisted_42","devices","_hoisted_43","_hoisted_44","_hoisted_45","device","id","_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","remove","components","Modal","ToggleSwitch","Slider","Loading","mixins","Utils","required","data","computed","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","element","add","editGroups","async","Promise","all","action","update_available","notify","image","iconClass","subscribe","properties","unmounted","unsubscribe","_hoisted_5","toggleDevice","devicesByAddress","entry","prompt","ieeeAddress","method","Dropdown","DropdownItem","Device","Group","modal","visible","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/1309.f9dfe73a.js b/platypush/backend/http/webapp/dist/static/js/1309.f9dfe73a.js deleted file mode 100644 index e5d40027..00000000 --- a/platypush/backend/http/webapp/dist/static/js/1309.f9dfe73a.js +++ /dev/null @@ -1,2 +0,0 @@ -"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1309],{1309:function(s,a,t){t.r(a),t.d(a,{default:function(){return u}});var i=t(6252);function e(s,a,t,e,l,r){const o=(0,i.up)("Loading"),n=(0,i.up)("MusicPlugin");return(0,i.wg)(),(0,i.iD)(i.HY,null,[l.loading?((0,i.wg)(),(0,i.j4)(o,{key:0})):(0,i.kq)("",!0),(0,i.Wm)(n,{"plugin-name":"music.mpd",loading:l.loading,config:t.config,tracks:l.tracks,status:l.status,playlists:l.playlists,"edited-playlist":l.editedPlaylist,"edited-playlist-tracks":l.editedPlaylistTracks,"track-info":l.trackInfo,"search-results":l.searchResults,"library-results":l.libraryResults,path:l.path,onPlay:r.play,onPause:r.pause,onStop:r.stop,onPrevious:r.previous,onNext:r.next,onClear:r.clear,onSetVolume:r.setVolume,onSeek:r.seek,onConsume:r.consume,onRandom:r.random,onRepeat:r.repeat,onStatusUpdate:a[0]||(a[0]=s=>r.refreshStatus(!0)),onPlaylistUpdate:a[1]||(a[1]=s=>r.refresh(!0)),onNewPlayingTrack:a[2]||(a[2]=s=>r.refreshStatus(!0)),onRemoveFromTracklist:r.removeFromTracklist,onAddToTracklist:r.addToTracklist,onSwapTracks:r.swapTracks,onLoadPlaylist:r.loadPlaylist,onPlayPlaylist:r.playPlaylist,onRemovePlaylist:r.removePlaylist,onTracklistMove:r.moveTracklistTracks,onTracklistSave:r.saveToPlaylist,onPlaylistEdit:r.playlistEditChanged,onAddToTracklistFromEditedPlaylist:r.addToTracklistFromEditedPlaylist,onRemoveFromPlaylist:r.removeFromPlaylist,onInfo:a[3]||(a[3]=s=>l.trackInfo=s),onPlaylistAdd:r.playlistAdd,onAddToPlaylist:r.addToPlaylist,onPlaylistTrackMove:r.playlistTrackMove,onSearch:r.search,onSearchClear:a[4]||(a[4]=s=>l.searchResults=[]),onCd:r.cd},null,8,["loading","config","tracks","status","playlists","edited-playlist","edited-playlist-tracks","track-info","search-results","library-results","path","onPlay","onPause","onStop","onPrevious","onNext","onClear","onSetVolume","onSeek","onConsume","onRandom","onRepeat","onRemoveFromTracklist","onAddToTracklist","onSwapTracks","onLoadPlaylist","onPlayPlaylist","onRemovePlaylist","onTracklistMove","onTracklistSave","onPlaylistEdit","onAddToTracklistFromEditedPlaylist","onRemoveFromPlaylist","onPlaylistAdd","onAddToPlaylist","onPlaylistTrackMove","onSearch","onCd"])],64)}var l=t(2986),r=t(8637),o=t(6791),n={name:"MusicMpd",components:{Loading:o.Z,MusicPlugin:l["default"]},mixins:[r.Z],props:{config:{type:Object,default:()=>{}}},data(){return{loading:!1,tracks:[],playlists:[],status:{},editedPlaylist:null,editedPlaylistTracks:[],trackInfo:null,searchResults:[],libraryResults:[],path:"/"}},methods:{async refreshTracks(s){s||(this.loading=!0);try{this.tracks=await this.request("music.mpd.playlistinfo")}finally{this.loading=!1}},async refreshStatus(s){s||(this.loading=!0);try{this.status=Object.entries(await this.request("music.mpd.status")).reduce(((s,[a,t])=>{switch(a){case"bitrate":case"volume":s[a]=parseInt(t);break;case"consume":case"random":case"repeat":case"single":s[a]=!!parseInt(t);break;case"song":s["playingPos"]=parseInt(t);break;case"time":[s["elapsed"],s["duration"]]=t.split(":").map((s=>parseInt(s)));break;case"elapsed":break;default:s[a]=t;break}return s}),{})}finally{this.loading=!1}},async refreshPlaylists(s){s||(this.loading=!0);try{this.playlists=(await this.request("music.mpd.listplaylists")).map((s=>({name:s.playlist,lastModified:s["last-modified"]}))).sort(((s,a)=>s.name.localeCompare(a.name)))}finally{this.loading=!1}},async refresh(s){s||(this.loading=!0);try{await Promise.all([this.refreshTracks(s),this.refreshStatus(s),this.refreshPlaylists(s)])}finally{this.loading=!1}},async play(s){null!=s?.pos?await this.request("music.mpd.play_pos",{pos:s.pos}):s?.file?await this.request("music.mpd.play",{resource:s.file}):await this.request("music.mpd.play"),await this.refreshStatus(!0)},async pause(){await this.request("music.mpd.pause"),await this.refreshStatus(!0)},async stop(){await this.request("music.mpd.stop"),await this.refreshStatus(!0)},async previous(){await this.request("music.mpd.previous"),await this.refreshStatus(!0)},async next(){await this.request("music.mpd.next"),await this.refreshStatus(!0)},async clear(){await this.request("music.mpd.clear"),await Promise.all([this.refreshStatus(!0),this.refreshTracks(!0)])},async setVolume(s){s!==this.status.volume&&(await this.request("music.mpd.set_volume",{volume:s}),await this.refreshStatus(!0))},async seek(s){await this.request("music.mpd.seek",{position:s}),await this.refreshStatus(!0)},async repeat(s){await this.request("music.mpd.repeat",{value:parseInt(+s)}),await this.refreshStatus(!0)},async random(s){await this.request("music.mpd.random",{value:parseInt(+s)}),await this.refreshStatus(!0)},async consume(s){await this.request("music.mpd.consume",{value:parseInt(+s)}),await this.refreshStatus(!0)},async addToTracklist(s){s.file&&(s=s.file),await this.request("music.mpd.add",{resource:s}),await this.refresh(!0)},async addToTracklistFromEditedPlaylist(s){const a=this.editedPlaylistTracks[s.pos];a&&(await this.request("music.mpd.add",{resource:a.file}),await this.refresh(!0),s.play&&await this.request("music.mpd.play_pos",{pos:this.tracks.length-1}))},async removeFromPlaylist(s){await this.request("music.mpd.playlistdelete",{pos:s,name:this.playlists[this.editedPlaylist].name}),await this.playlistEditChanged(this.editedPlaylist)},async removeFromTracklist(s){await this.request("music.mpd.delete",{positions:s.sort()}),await this.refresh(!0)},async swapTracks(s){await this.request("music.mpd.move",{from_pos:s[0],to_pos:s[1]}),await this.refresh(!0)},async playPlaylist(s){await this._loadPlaylist(s,!0)},async loadPlaylist(s){await this._loadPlaylist(s,!1)},async _loadPlaylist(s,a){const t=this.playlists[s];await this.request("music.mpd.load",{playlist:t.name,play:a}),await this.refresh(!0)},async removePlaylist(s){const a=this.playlists[s];confirm(`Are you REALLY sure that you want to remove the playlist ${a.name}?`)&&(await this.request("music.mpd.rm",{playlist:a.name}),await this.refreshPlaylists(!0))},async saveToPlaylist(s){await this.request("music.mpd.save",{name:s}),await this.refreshPlaylists(!0)},async moveTracklistTracks(s){await this.request("music.mpd.move",{from_pos:s.from,to_pos:s.to}),await this.refreshTracks(!0)},async playlistAdd(s){await this.request("music.mpd.playlistadd",{uri:s,name:this.playlists[this.editedPlaylist].name}),await this.playlistEditChanged(this.editedPlaylist)},async playlistEditChanged(s){if(this.editedPlaylist=s,null!=s){this.loading=!0;try{this.editedPlaylistTracks=await this.request("music.mpd.listplaylistinfo",{name:this.playlists[s].name})}finally{this.loading=!1}}},async addToPlaylist(s){await Promise.all(s.playlists.map((async a=>{await this.request("music.mpd.playlistadd",{uri:s.track.file,name:this.playlists[a].name}),await this.playlistEditChanged(a)})))},async playlistTrackMove(s){await this.request("music.mpd.playlistmove",{name:this.playlists[s.playlist].name,from_pos:s.from,to_pos:s.to}),await this.playlistEditChanged(s.playlist)},async search(s){this.loading=!0;try{this.searchResults=await this.request("music.mpd.search",{filter:s})}finally{this.loading=!1}},async cd(s){this.loading=!0;try{this.libraryResults=(await this.request("music.mpd.lsinfo",{uri:s})).filter((s=>!s.playlist)),this.path=s}finally{this.loading=!1}}},mounted(){this.refresh(),this.cd(this.path)}},d=t(3744);const c=(0,d.Z)(n,[["render",e]]);var u=c}}]); -//# sourceMappingURL=1309.f9dfe73a.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1309.f9dfe73a.js.map b/platypush/backend/http/webapp/dist/static/js/1309.f9dfe73a.js.map deleted file mode 100644 index 154aab91..00000000 --- a/platypush/backend/http/webapp/dist/static/js/1309.f9dfe73a.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"static/js/1309.f9dfe73a.js","mappings":"gSACiBA,EAAAC,UAAO,WAAtBC,EAAAA,EAAAA,IAA0BC,EAAA,CAAAC,IAAA,sBAC1BC,EAAAA,EAAAA,IAa0DC,EAAA,CAb7C,cAAY,YAAaL,QAASD,EAAAC,QAAUM,OAAQC,EAAAD,OAASE,OAAQT,EAAAS,OAASC,OAAQV,EAAAU,OACrFC,UAAWX,EAAAW,UAAY,kBAAiBX,EAAAY,eAAiB,yBAAwBZ,EAAAa,qBACjF,aAAYb,EAAAc,UAAY,iBAAgBd,EAAAe,cAAgB,kBAAiBf,EAAAgB,eAAiBC,KAAMjB,EAAAiB,KAChGC,OAAMC,EAAAC,KAAOC,QAAOF,EAAAG,MAAQC,OAAMJ,EAAAK,KAAOC,WAAUN,EAAAO,SAAWC,OAAMR,EAAAS,KAAOC,QAAOV,EAAAW,MAClFC,YAAYZ,EAAAa,UAAYC,OAAMd,EAAAe,KAAOC,UAAShB,EAAAiB,QAAUC,SAAQlB,EAAAmB,OAASC,SAAQpB,EAAAqB,OACjFC,eAAaC,EAAA,KAAAA,EAAA,GAAAC,GAAExB,EAAAyB,eAAc,IAAQC,iBAAeH,EAAA,KAAAA,EAAA,GAAAC,GAAExB,EAAA2B,SAAQ,IAC9DC,kBAAiBL,EAAA,KAAAA,EAAA,GAAAC,GAAExB,EAAAyB,eAAc,IAAQI,sBAAuB7B,EAAA8B,oBAChEC,iBAAkB/B,EAAAgC,eAAiBC,aAAajC,EAAAkC,WAAaC,eAAenC,EAAAoC,aAC5EC,eAAerC,EAAAsC,aAAeC,iBAAiBvC,EAAAwC,eAAiBC,gBAAgBzC,EAAA0C,oBAChFC,gBAAgB3C,EAAA4C,eAAiBC,eAAe7C,EAAA8C,oBAChDC,mCAAuC/C,EAAAgD,iCACvCC,qBAAsBjD,EAAAkD,mBAAqBC,OAAI5B,EAAA,KAAAA,EAAA,GAAAC,GAAE3C,EAAAc,UAAY6B,GAAS4B,cAAcpD,EAAAqD,YACpFC,gBAAiBtD,EAAAuD,cAAgBC,oBAAqBxD,EAAAyD,kBAAoBC,SAAQ1D,EAAA2D,OAClFC,cAAYrC,EAAA,KAAAA,EAAA,GAAAC,GAAE3C,EAAAe,cAAgB,IAAKiE,KAAI7D,EAAA8D,I,mmBAQvD,GACEC,KAAM,WACNC,WAAY,CAACC,QAAO,IAAEC,YAAWA,EAAAA,YACjCC,OAAQ,CAACC,EAAAA,GACTC,MAAO,CACLjF,OAAQ,CACNkF,KAAMC,OACNC,QAASA,SAIbC,IAAAA,GACE,MAAO,CACL3F,SAAS,EACTQ,OAAQ,GACRE,UAAW,GACXD,OAAQ,CAAC,EACTE,eAAgB,KAChBC,qBAAsB,GACtBC,UAAW,KACXC,cAAe,GACfC,eAAgB,GAChBC,KAAM,IAEV,EAEA4E,QAAS,CACP,mBAAMC,CAAcC,GACbA,IACHC,KAAK/F,SAAU,GAEjB,IACE+F,KAAKvF,aAAeuF,KAAKC,QAAQ,yBACnC,CAAE,QACAD,KAAK/F,SAAU,CACjB,CACF,EAEA,mBAAM2C,CAAcmD,GACbA,IACHC,KAAK/F,SAAU,GAEjB,IACE+F,KAAKtF,OAASgF,OAAOQ,cAAcF,KAAKC,QAAQ,qBAAqBE,QAAO,CAACC,GAAMC,EAAGC,MACpF,OAAQD,GACN,IAAK,UACL,IAAK,SACHD,EAAIC,GAAKE,SAASD,GAClB,MAEF,IAAK,UACL,IAAK,SACL,IAAK,SACL,IAAK,SACHF,EAAIC,KAAOE,SAASD,GACpB,MAEF,IAAK,OACHF,EAAI,cAAgBG,SAASD,GAC7B,MAEF,IAAK,QACFF,EAAI,WAAYA,EAAI,aAAeE,EAAEE,MAAM,KAAKC,KAAIC,GAAKH,SAASG,KACnE,MAEF,IAAK,UACH,MAEF,QACEN,EAAIC,GAAKC,EACT,MAGJ,OAAOF,CAAE,GACR,CAAC,EACN,CAAE,QACAJ,KAAK/F,SAAU,CACjB,CACF,EAEA,sBAAM0G,CAAiBZ,GAChBA,IACHC,KAAK/F,SAAU,GAEjB,IACE+F,KAAKrF,iBAAmBqF,KAAKC,QAAQ,4BAA4BQ,KAAKG,IAC7D,CACL1B,KAAM0B,EAASA,SACfC,aAAcD,EAAS,qBAExBE,MAAK,CAACC,EAAGC,IAAMD,EAAE7B,KAAK+B,cAAcD,EAAE9B,OAC3C,CAAE,QACAc,KAAK/F,SAAU,CACjB,CACF,EAEA,aAAM6C,CAAQiD,GACPA,IACHC,KAAK/F,SAAU,GAEjB,UACQiH,QAAQC,IAAI,CAChBnB,KAAKF,cAAcC,GACnBC,KAAKpD,cAAcmD,GACnBC,KAAKW,iBAAiBZ,IAE1B,CAAE,QACAC,KAAK/F,SAAU,CACjB,CACF,EAEA,UAAMmB,CAAKgG,GACS,MAAdA,GAAOC,UACHrB,KAAKC,QAAQ,qBAAsB,CAACoB,IAAKD,EAAMC,MAC5CD,GAAOE,WACVtB,KAAKC,QAAQ,iBAAkB,CAACsB,SAAUH,EAAME,aAEhDtB,KAAKC,QAAQ,wBAGfD,KAAKpD,eAAc,EAC3B,EAEA,WAAMtB,SACE0E,KAAKC,QAAQ,yBACbD,KAAKpD,eAAc,EAC3B,EAEA,UAAMpB,SACEwE,KAAKC,QAAQ,wBACbD,KAAKpD,eAAc,EAC3B,EAEA,cAAMlB,SACEsE,KAAKC,QAAQ,4BACbD,KAAKpD,eAAc,EAC3B,EAEA,UAAMhB,SACEoE,KAAKC,QAAQ,wBACbD,KAAKpD,eAAc,EAC3B,EAEA,WAAMd,SACEkE,KAAKC,QAAQ,yBACbiB,QAAQC,IAAI,CAACnB,KAAKpD,eAAc,GAAOoD,KAAKF,eAAc,IAClE,EAEA,eAAM9D,CAAUwF,GACVA,IAAWxB,KAAKtF,OAAO8G,eAGrBxB,KAAKC,QAAQ,uBAAwB,CAACuB,OAAQA,UAC9CxB,KAAKpD,eAAc,GAC3B,EAEA,UAAMV,CAAKmF,SACHrB,KAAKC,QAAQ,iBAAkB,CAACwB,SAAUJ,UAC1CrB,KAAKpD,eAAc,EAC3B,EAEA,YAAMJ,CAAOkF,SACL1B,KAAKC,QAAQ,mBAAoB,CAACyB,MAAOnB,UAAUmB,WACnD1B,KAAKpD,eAAc,EAC3B,EAEA,YAAMN,CAAOoF,SACL1B,KAAKC,QAAQ,mBAAoB,CAACyB,MAAOnB,UAAUmB,WACnD1B,KAAKpD,eAAc,EAC3B,EAEA,aAAMR,CAAQsF,SACN1B,KAAKC,QAAQ,oBAAqB,CAACyB,MAAOnB,UAAUmB,WACpD1B,KAAKpD,eAAc,EAC3B,EAEA,oBAAMO,CAAeoE,GACfA,EAASD,OACXC,EAAWA,EAASD,YAEhBtB,KAAKC,QAAQ,gBAAiB,CAACsB,SAAUA,UACzCvB,KAAKlD,SAAQ,EACrB,EAEA,sCAAMqB,CAAiCiD,GACrC,MAAMO,EAAQ3B,KAAKnF,qBAAqBuG,EAAMC,KACzCM,UAGC3B,KAAKC,QAAQ,gBAAiB,CAACsB,SAAUI,EAAML,aAC/CtB,KAAKlD,SAAQ,GAEfsE,EAAMhG,YACF4E,KAAKC,QAAQ,qBAAsB,CAACoB,IAAKrB,KAAKvF,OAAOmH,OAAO,IACtE,EAEA,wBAAMvD,CAAmBwD,SACjB7B,KAAKC,QAAQ,2BACf,CAACoB,IAAKQ,EAAW3C,KAAMc,KAAKrF,UAAUqF,KAAKpF,gBAAgBsE,aACzDc,KAAK/B,oBAAoB+B,KAAKpF,eACtC,EAEA,yBAAMqC,CAAoB4E,SAClB7B,KAAKC,QAAQ,mBAAoB,CAAC4B,UAAWA,EAAUf,eACvDd,KAAKlD,SAAQ,EACrB,EAEA,gBAAMO,CAAWwE,SACT7B,KAAKC,QAAQ,iBAAkB,CAAC6B,SAAUD,EAAU,GAAIE,OAAQF,EAAU,WAC1E7B,KAAKlD,SAAQ,EACrB,EAEA,kBAAMW,CAAagE,SACXzB,KAAKgC,cAAcP,GAAU,EACrC,EAEA,kBAAMlE,CAAakE,SACXzB,KAAKgC,cAAcP,GAAU,EACrC,EAEA,mBAAMO,CAAcP,EAAUrG,GAC5B,MAAMwF,EAAWZ,KAAKrF,UAAU8G,SAC1BzB,KAAKC,QAAQ,iBAAkB,CAACW,SAAUA,EAAS1B,KAAM9D,KAAMA,UAC/D4E,KAAKlD,SAAQ,EACrB,EAEA,oBAAMa,CAAe8D,GACnB,MAAMb,EAAWZ,KAAKrF,UAAU8G,GAC3BQ,QAAS,4DAA2DrB,EAAS1B,iBAG5Ec,KAAKC,QAAQ,eAAgB,CAACW,SAAUA,EAAS1B,aACjDc,KAAKW,kBAAiB,GAC9B,EAEA,oBAAM5C,CAAemB,SACbc,KAAKC,QAAQ,iBAAkB,CAACf,KAAMA,UACtCc,KAAKW,kBAAiB,EAC9B,EAEA,yBAAM9C,CAAoBuD,SAClBpB,KAAKC,QAAQ,iBAAkB,CAAC6B,SAAUV,EAAMc,KAAMH,OAAQX,EAAMe,WACpEnC,KAAKF,eAAc,EAC3B,EAEA,iBAAMtB,CAAYmD,SACV3B,KAAKC,QAAQ,wBAAyB,CAACmC,IAAKT,EAAOzC,KAAMc,KAAKrF,UAAUqF,KAAKpF,gBAAgBsE,aAC7Fc,KAAK/B,oBAAoB+B,KAAKpF,eACtC,EAEA,yBAAMqD,CAAoB2C,GAExB,GADAZ,KAAKpF,eAAiBgG,EACN,MAAZA,EAAJ,CAGAZ,KAAK/F,SAAU,EACf,IACE+F,KAAKnF,2BAA6BmF,KAAKC,QAAQ,6BAC3C,CAACf,KAAMc,KAAKrF,UAAUiG,GAAU1B,MACtC,CAAE,QACAc,KAAK/F,SAAU,CACjB,CARQ,CASV,EAEA,mBAAMyE,CAAc0C,SACZF,QAAQC,IAAIC,EAAMzG,UAAU8F,KAAI4B,gBAC9BrC,KAAKC,QAAQ,wBAAyB,CAC1CmC,IAAKhB,EAAMO,MAAML,KACjBpC,KAAMc,KAAKrF,UAAU2H,GAAapD,aAG9Bc,KAAK/B,oBAAoBqE,EAAY,IAE/C,EAEA,uBAAM1D,CAAkBwC,SAChBpB,KAAKC,QAAQ,yBAA0B,CAC3Cf,KAAMc,KAAKrF,UAAUyG,EAAMR,UAAU1B,KACrC4C,SAAUV,EAAMc,KAChBH,OAAQX,EAAMe,WAGVnC,KAAK/B,oBAAoBmD,EAAMR,SACvC,EAEA,YAAM9B,CAAOyD,GACXvC,KAAK/F,SAAU,EAEf,IACE+F,KAAKjF,oBAAsBiF,KAAKC,QAAQ,mBAAoB,CAACuC,OAAQD,GACvE,CAAE,QACAvC,KAAK/F,SAAU,CACjB,CACF,EAEA,QAAMgF,CAAGhE,GACP+E,KAAK/F,SAAU,EAEf,IACE+F,KAAKhF,sBAAwBgF,KAAKC,QAAQ,mBAAoB,CAACmC,IAAKnH,KAClEuH,QAAQC,IAAYA,EAAO7B,WAE7BZ,KAAK/E,KAAOA,CACd,CAAE,QACA+E,KAAK/F,SAAU,CACjB,CACF,GAGFyI,OAAAA,GACE1C,KAAKlD,UACLkD,KAAKf,GAAGe,KAAK/E,KACf,G,UC1UF,MAAM0H,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,KAEpE,O","sources":["webpack://platypush/./src/components/panels/MusicMpd/Index.vue","webpack://platypush/./src/components/panels/MusicMpd/Index.vue?9486"],"sourcesContent":["\n\n\n","import { render } from \"./Index.vue?vue&type=template&id=e343abe6\"\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":["$data","loading","_createBlock","_component_Loading","key","_createVNode","_component_MusicPlugin","config","$props","tracks","status","playlists","editedPlaylist","editedPlaylistTracks","trackInfo","searchResults","libraryResults","path","onPlay","$options","play","onPause","pause","onStop","stop","onPrevious","previous","onNext","next","onClear","clear","onSetVolume","setVolume","onSeek","seek","onConsume","consume","onRandom","random","onRepeat","repeat","onStatusUpdate","_cache","$event","refreshStatus","onPlaylistUpdate","refresh","onNewPlayingTrack","onRemoveFromTracklist","removeFromTracklist","onAddToTracklist","addToTracklist","onSwapTracks","swapTracks","onLoadPlaylist","loadPlaylist","onPlayPlaylist","playPlaylist","onRemovePlaylist","removePlaylist","onTracklistMove","moveTracklistTracks","onTracklistSave","saveToPlaylist","onPlaylistEdit","playlistEditChanged","onAddToTracklistFromEditedPlaylist","addToTracklistFromEditedPlaylist","onRemoveFromPlaylist","removeFromPlaylist","onInfo","onPlaylistAdd","playlistAdd","onAddToPlaylist","addToPlaylist","onPlaylistTrackMove","playlistTrackMove","onSearch","search","onSearchClear","onCd","cd","name","components","Loading","MusicPlugin","mixins","Utils","props","type","Object","default","data","methods","refreshTracks","background","this","request","entries","reduce","obj","k","v","parseInt","split","map","t","refreshPlaylists","playlist","lastModified","sort","a","b","localeCompare","Promise","all","event","pos","file","resource","volume","position","value","track","length","positions","from_pos","to_pos","_loadPlaylist","confirm","from","to","uri","async","playlistIdx","query","filter","result","mounted","__exports__","render"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1420.fea2168b.js b/platypush/backend/http/webapp/dist/static/js/1420.fea2168b.js new file mode 100644 index 00000000..94d57cb0 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1420.fea2168b.js @@ -0,0 +1,2 @@ +"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1420],{1065:function(t,e,s){s.d(e,{Z:function(){return l}});s(7658);var a=s(8637),n={name:"Utils",mixins:[a.Z],computed:{audioExtensions(){return new Set(["3gp","aa","aac","aax","act","aiff","amr","ape","au","awb","dct","dss","dvf","flac","gsm","iklax","ivs","m4a","m4b","m4p","mmf","mp3","mpc","msv","nmf","nsf","ogg,","opus","ra,","raw","sln","tta","vox","wav","wma","wv","webm","8svx"])},videoExtensions(){return new Set(["webm","mkv","flv","flv","vob","ogv","ogg","drc","gif","gifv","mng","avi","mts","m2ts","mov","qt","wmv","yuv","rm","rmvb","asf","amv","mp4","m4p","m4v","mpg","mp2","mpeg","mpe","mpv","mpg","mpeg","m2v","m4v","svi","3gp","3g2","mxf","roq","nsv","flv","f4v","f4p","f4a","f4b"])},mediaExtensions(){return new Set([...this.videoExtensions,...this.audioExtensions])}},methods:{convertTime(t){t=parseFloat(t);const e={};e.h=""+parseInt(t/3600),e.m=""+parseInt(t/60-60*e.h),e.s=""+parseInt(t-(3600*e.h+60*e.m));for(const a of["m","s"])parseInt(e[a])<10&&(e[a]="0"+e[a]);const s=[];return parseInt(e.h)&&s.push(e.h),s.push(e.m,e.s),s.join(":")},async startStreaming(t,e,s=!1){let a=t,n=null;t instanceof Object?(a=t.url,n=t.subtitles):t={url:a};const o=await this.request(`${e}.start_streaming`,{media:a,subtitles:n,download:s});return{...t,...o}},async stopStreaming(t,e){await this.request(`${e}.stop_streaming`,{media_id:t})}}};const o=n;var l=o},1420:function(t,e,s){s.d(e,{Z:function(){return At}});var a=s(6252);const n={class:"media-container"},o={class:"view-container"},l={class:"controls-container"};function i(t,e,s,i,u,r){const c=(0,a.up)("Controls");return(0,a.wg)(),(0,a.iD)("div",n,[(0,a._)("div",o,[(0,a.WI)(t.$slots,"default",{},void 0,!0)]),(0,a._)("div",l,[(0,a.Wm)(c,{status:s.status,track:s.track,buttons:s.buttons,onPlay:e[0]||(e[0]=e=>t.$emit("play",e)),onPause:e[1]||(e[1]=e=>t.$emit("pause",e)),onStop:e[2]||(e[2]=e=>t.$emit("stop")),onPrevious:e[3]||(e[3]=e=>t.$emit("previous")),onNext:e[4]||(e[4]=e=>t.$emit("next")),onSeek:e[5]||(e[5]=e=>t.$emit("seek",e)),onSetVolume:e[6]||(e[6]=e=>t.$emit("set-volume",e)),onConsume:e[7]||(e[7]=e=>t.$emit("consume",e)),onRepeat:e[8]||(e[8]=e=>t.$emit("repeat",e)),onRandom:e[9]||(e[9]=e=>t.$emit("random",e)),onSearch:e[10]||(e[10]=e=>t.$emit("search",e)),onMute:e[11]||(e[11]=e=>t.$emit("mute")),onUnmute:e[12]||(e[12]=e=>t.$emit("unmute"))},null,8,["status","track","buttons"])])])}var u=s(3577),r=s(9963);const c=t=>((0,a.dD)("data-v-34374f87"),t=t(),(0,a.Cn)(),t),m={key:0,class:"remote-image-container"},p=["src","alt"],d={key:1,class:"icon-container"},v={class:"row buttons-container"},k={class:"buttons"},g={class:"buttons"},b=c((()=>(0,a._)("i",{class:"icon fa fa-step-backward"},null,-1))),f=[b],y=c((()=>(0,a._)("i",{class:"icon fa fa-stop"},null,-1))),w=[y],h=c((()=>(0,a._)("i",{class:"icon fa fa-step-forward"},null,-1))),_=[h],C={class:"row"},x={class:"row"},$={class:"controls"},D={class:"playback-controls until tablet col-2"},S={class:"track-container col-s-9 col-m-9 col-l-3"},q={key:0,class:"track-info"},P={key:0,class:"img-container"},I=["src","alt"],Z={class:"title-container"},R={key:0,class:"title"},T=["href","textContent"],j=["href","textContent"],O=["textContent"],W={key:1,class:"artist"},M=["href","textContent"],z={class:"playback-controls from desktop col-6"},N={class:"row buttons"},B=c((()=>(0,a._)("i",{class:"icon fa fa-step-backward"},null,-1))),E=[B],V=c((()=>(0,a._)("i",{class:"icon fa fa-stop"},null,-1))),U=[V],L=c((()=>(0,a._)("i",{class:"icon fa fa-step-forward"},null,-1))),A=[L],H={class:"row"},F={class:"col-1 until tablet right-controls"},Y=["title"],G={class:"col-3 from desktop right-controls"};function J(t,e,s,n,o,l){const i=(0,a.up)("VolumeSlider"),c=(0,a.up)("ExtraControls"),b=(0,a.up)("ProgressBar"),y=(0,a.up)("PlayPauseButton");return(0,a.wg)(),(0,a.iD)(a.HY,null,[(0,a._)("div",{class:(0,u.C_)(["extension fade-in",{hidden:!o.expanded}])},["stop"!==s.status?.state?((0,a.wg)(),(0,a.iD)("div",{key:0,class:"image-container",onClick:e[0]||(e[0]=(0,r.iM)(((...t)=>l.onImageClick&&l.onImageClick(...t)),["prevent"]))},[s.track?.image?((0,a.wg)(),(0,a.iD)("div",m,[(0,a._)("img",{class:"image",src:s.track.image,alt:s.track.title},null,8,p)])):((0,a.wg)(),(0,a.iD)("div",d,[(0,a._)("i",{class:(0,u.C_)(["icon fas fa-compact-disc",{playing:"play"===s.status?.state}])},null,2)]))])):(0,a.kq)("",!0),(0,a._)("div",v,[(0,a._)("div",k,[(0,a._)("div",g,[o.buttons_.previous?((0,a.wg)(),(0,a.iD)("button",{key:0,onClick:e[1]||(e[1]=e=>t.$emit("previous")),title:"Play previous track"},f)):(0,a.kq)("",!0),o.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"},w)):(0,a.kq)("",!0),o.buttons_.next?((0,a.wg)(),(0,a.iD)("button",{key:2,onClick:e[3]||(e[3]=e=>t.$emit("next")),title:"Play next track"},_)):(0,a.kq)("",!0)])])]),(0,a._)("div",C,[(0,a.Wm)(i,{value:s.status.volume,range:s.volumeRange,status:s.status,onMute:e[4]||(e[4]=e=>t.$emit("mute")),onUnmute:e[5]||(e[5]=e=>t.$emit("unmute")),onSetVolume:e[6]||(e[6]=e=>t.$emit("set-volume",e))},null,8,["value","range","status"]),(0,a.Wm)(c,{status:s.status,buttons:o.buttons_,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,["status","buttons"])]),(0,a._)("div",x,[(0,a.Wm)(b,{elapsed:o.elapsed,duration:l.duration,status:s.status,onSeek:e[10]||(e[10]=e=>t.$emit("seek",e))},null,8,["elapsed","duration","status"])])],2),(0,a._)("div",$,[(0,a._)("div",D,[(0,a.Wm)(y,{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",q,[s.track.image?((0,a.wg)(),(0,a.iD)("div",P,[(0,a._)("img",{class:"image from desktop",src:s.track.image,alt:s.track.title},null,8,I)])):(0,a.kq)("",!0),(0,a._)("div",Z,["play"===s.status.state||"pause"===s.status.state?((0,a.wg)(),(0,a.iD)("div",R,[s.track.album?((0,a.wg)(),(0,a.iD)("a",{key:0,href:t.$route.fullPath,textContent:(0,u.zw)(s.track.title?.length?s.track.title:"[No Title]"),onClick:e[13]||(e[13]=(0,r.iM)((e=>t.$emit("search",{artist:s.track.artist,album:s.track.album})),["prevent"]))},null,8,T)):s.track.url?((0,a.wg)(),(0,a.iD)("a",{key:1,href:s.track.url,textContent:(0,u.zw)(s.track.title?.length?s.track.title:"[No Title]")},null,8,j)):((0,a.wg)(),(0,a.iD)("span",{key:2,textContent:(0,u.zw)(s.track.title?.length?s.track.title:"[No Title]")},null,8,O))])):(0,a.kq)("",!0),!s.track.artist?.length||"play"!==s.status.state&&"pause"!==s.status.state?(0,a.kq)("",!0):((0,a.wg)(),(0,a.iD)("div",W,[(0,a._)("a",{href:t.$route.fullPath,textContent:(0,u.zw)(s.track.artist),onClick:e[14]||(e[14]=(0,r.iM)((e=>t.$emit("search",{artist:s.track.artist})),["prevent"]))},null,8,M)]))])])):(0,a.kq)("",!0)]),(0,a._)("div",z,[(0,a._)("div",N,[o.buttons_.previous?((0,a.wg)(),(0,a.iD)("button",{key:0,onClick:e[15]||(e[15]=e=>t.$emit("previous")),title:"Play previous track"},E)):(0,a.kq)("",!0),(0,a.Wm)(y,{status:s.status,onPlay:e[16]||(e[16]=e=>t.$emit("play")),onPause:e[17]||(e[17]=e=>t.$emit("pause"))},null,8,["status"]),o.buttons_.stop&&"stop"!==s.status.state?((0,a.wg)(),(0,a.iD)("button",{key:1,onClick:e[18]||(e[18]=e=>t.$emit("stop")),title:"Stop playback"},U)):(0,a.kq)("",!0),o.buttons_.next?((0,a.wg)(),(0,a.iD)("button",{key:2,onClick:e[19]||(e[19]=e=>t.$emit("next")),title:"Play next track"},A)):(0,a.kq)("",!0)]),(0,a._)("div",H,[(0,a.Wm)(b,{elapsed:o.elapsed,duration:l.duration,status:s.status,onSeek:e[20]||(e[20]=e=>t.$emit("seek",e))},null,8,["elapsed","duration","status"])])]),(0,a._)("div",F,[(0,a._)("button",{onClick:e[21]||(e[21]=t=>o.expanded=!o.expanded),title:o.expanded?"Show more controls":"Hide extra controls"},[(0,a._)("i",{class:(0,u.C_)(["fas",["fa-chevron-"+(o.expanded?"down":"up")]])},null,2)],8,Y)]),(0,a._)("div",G,[(0,a.Wm)(i,{value:s.status.volume,range:s.volumeRange,status:s.status,onMute:e[22]||(e[22]=e=>t.$emit("mute")),onUnmute:e[23]||(e[23]=e=>t.$emit("unmute")),onSetVolume:e[24]||(e[24]=e=>t.$emit("set-volume",e))},null,8,["value","range","status"]),(0,a.Wm)(c,{status:s.status,buttons:o.buttons_,onConsume:e[25]||(e[25]=e=>t.$emit("consume",!s.status.consume)),onRandom:e[26]||(e[26]=e=>t.$emit("random",!s.status.random)),onRepeat:e[27]||(e[27]=e=>t.$emit("repeat",!s.status.repeat))},null,8,["status","buttons"])])])],64)}var K=s(8637),Q=s(1065);const X=t=>((0,a.dD)("data-v-772c7a5b"),t=t(),(0,a.Cn)(),t),tt={class:"extra-controls-container"},et=X((()=>(0,a._)("i",{class:"icon fa fa-utensils"},null,-1))),st=[et],at=X((()=>(0,a._)("i",{class:"icon fa fa-random"},null,-1))),nt=[at],ot=X((()=>(0,a._)("i",{class:"icon fa fa-redo"},null,-1))),lt=[ot];function it(t,e,s,n,o,l){return(0,a.wg)(),(0,a.iD)("div",tt,[s.buttons.consume?((0,a.wg)(),(0,a.iD)("button",{key:0,onClick:e[0]||(e[0]=e=>t.$emit("consume")),class:(0,u.C_)({enabled:s.status.consume}),title:"Toggle consume mode"},st,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,u.C_)({enabled:s.status.random}),title:"Toggle shuffle"},nt,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,u.C_)({enabled:s.status.repeat}),title:"Toggle repeat"},lt,2)):(0,a.kq)("",!0)])}var ut={emits:["consume","random","repeat"],props:{status:{type:Object,default:()=>({})},buttons:{type:Object,default:()=>({})}}},rt=s(3744);const ct=(0,rt.Z)(ut,[["render",it],["__scopeId","data-v-772c7a5b"]]);var mt=ct;const pt=["title"],dt={key:0,class:"icon play-pause fa fa-pause"},vt={key:1,class:"icon play-pause fa fa-play"};function kt(t,e,s,n,o,l){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",dt)):((0,a.wg)(),(0,a.iD)("i",vt))],8,pt)}var gt={emits:["play","pause"],props:{status:{type:Object,default:()=>({})}}};const bt=(0,rt.Z)(gt,[["render",kt],["__scopeId","data-v-a742ddb0"]]);var ft=bt;const yt={class:"progress-bar-container"},wt={class:"col-s-2 col-m-1 time"},ht=["textContent"],_t={class:"col-s-8 col-m-10 time-bar"},Ct={class:"col-s-2 col-m-1 time"},xt=["textContent"];function $t(t,e,s,n,o,l){const i=(0,a.up)("Slider");return(0,a.wg)(),(0,a.iD)("div",yt,[(0,a._)("div",wt,[(0,a._)("span",{class:"elapsed-time",textContent:(0,u.zw)(null==s.elapsed||"play"!==s.status.state&&"pause"!==s.status.state?"-:--":t.convertTime(s.elapsed))},null,8,ht)]),(0,a._)("div",_t,[(0,a.Wm)(i,{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",Ct,[(0,a._)("span",{class:"total-time",textContent:(0,u.zw)(s.duration&&"stop"!==s.status.state?t.convertTime(s.duration):"-:--")},null,8,xt)])])}var Dt=s(8140),St={components:{Slider:Dt.Z},emits:["seek"],mixins:[Q.Z],props:{elapsed:{type:Number},duration:{type:Number},status:{type:Object,default:()=>({})}}};const qt=(0,rt.Z)(St,[["render",$t],["__scopeId","data-v-3894ad4d"]]);var Pt=qt;const It={class:"volume-slider-container"},Zt={class:"col-1"},Rt=["disabled","title"],Tt={key:0,class:"icon fa fa-volume-xmark"},jt={key:1,class:"icon fa fa-volume-up"},Ot={class:"col-11 volume-slider"};function Wt(t,e,s,n,o,l){const i=(0,a.up)("Slider");return(0,a.wg)(),(0,a.iD)("div",It,[(0,a._)("div",Zt,[(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",Tt)):((0,a.wg)(),(0,a.iD)("i",jt))],8,Rt)]),(0,a._)("div",Ot,[(0,a.Wm)(i,{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 Mt={components:{Slider:Dt.Z},emits:["set-volume","mute","unmute"],props:{volumeRange:{type:Array,default:()=>[0,100]},status:{type:Object,default:()=>({})}}};const zt=(0,rt.Z)(Mt,[["render",Wt],["__scopeId","data-v-662f988f"]]);var Nt=zt,Bt={components:{ExtraControls:mt,PlayPauseButton:ft,ProgressBar:Pt,VolumeSlider:Nt},mixins:[K.Z,Q.Z],emits:["consume","mute","next","pause","play","previous","random","repeat","search","seek","set-volume","stop","unmute"],props:{track:{type:Object},status:{type:Object,default:()=>{}},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(){return null!=this.status?.duration?this.status.duration:this.track?.duration}},methods:{getTime(){return(new Date).getTime()/1e3},onImageClick(){this.track?.artist&&this.track?.album&&this.$emit("search",{artist:this.track.artist,album:this.track.album})}},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 Et=(0,rt.Z)(Bt,[["render",J],["__scopeId","data-v-34374f87"]]);var Vt=Et,Ut={name:"View",components:{Controls:Vt},emits:["consume","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},buttons:{type:Object}}};const Lt=(0,rt.Z)(Ut,[["render",i],["__scopeId","data-v-7a861c3a"]]);var At=Lt},8140:function(t,e,s){s.d(e,{Z:function(){return g}});var a=s(6252),n=s(3577),o=s(9963);const l={class:"slider-wrapper"},i=["textContent"],u=["textContent"],r={class:"slider-container"},c=["min","max","step","disabled","value"],m=["textContent"];function p(t,e,s,p,d,v){return(0,a.wg)(),(0,a.iD)("label",l,[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,i)):(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,u)):(0,a.kq)("",!0)],2)):(0,a.kq)("",!0),(0,a._)("span",r,[(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,o.iM)((e=>t.$emit("input",e)),["stop"])),onChange:e[1]||(e[1]=(0,o.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,m)):(0,a.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}}},v=s(3744);const k=(0,v.Z)(d,[["render",p],["__scopeId","data-v-d90e850c"]]);var g=k}}]); +//# sourceMappingURL=1420.fea2168b.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1420.fea2168b.js.map b/platypush/backend/http/webapp/dist/static/js/1420.fea2168b.js.map new file mode 100644 index 00000000..5f4d3a43 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1420.fea2168b.js.map @@ -0,0 +1 @@ +{"version":3,"file":"static/js/1420.fea2168b.js","mappings":"wKAGA,GACEA,KAAM,QACNC,OAAQ,CAACC,EAAAA,GAETC,SAAU,CACRC,eAAAA,GACE,OAAO,IAAIC,IAAI,CACb,MAAO,KAAM,MAAO,MAAO,MAAO,OAAQ,MAAO,MAAO,KACxD,MAAO,MAAO,MAAO,MAAO,OAAQ,MAAO,QAAS,MACpD,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MACxD,OAAQ,OAAQ,MAAO,MAAO,MAAO,MAAO,MAAO,MACnD,MAAO,KAAM,OAAQ,QAEzB,EAEAC,eAAAA,GACE,OAAO,IAAID,IAAI,CACb,OAAQ,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MACzD,OAAQ,MAAO,MAAO,MAAO,OAAQ,MAAO,KAAM,MAAO,MACzD,KAAM,OAAQ,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MACxD,OAAQ,MAAO,MAAO,MAAO,OAAQ,MAAO,MAAO,MACnD,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,OAEnE,EAEAE,eAAAA,GACE,OAAO,IAAIF,IAAI,IAAIG,KAAKF,mBAAoBE,KAAKJ,iBACnD,GAGFK,QAAS,CACPC,WAAAA,CAAYC,GACVA,EAAOC,WAAWD,GAClB,MAAME,EAAI,CAAC,EACXA,EAAEC,EAAI,GAAKC,SAASJ,EAAK,MACzBE,EAAEG,EAAI,GAAKD,SAASJ,EAAK,GAAS,GAAJE,EAAEC,GAChCD,EAAEI,EAAI,GAAKF,SAASJ,GAAY,KAAJE,EAAEC,EAAa,GAAJD,EAAEG,IAEzC,IAAK,MAAME,IAAQ,CAAC,IAAI,KAClBH,SAASF,EAAEK,IAAS,KACtBL,EAAEK,GAAQ,IAAML,EAAEK,IAItB,MAAMC,EAAM,GAMZ,OALIJ,SAASF,EAAEC,IACbK,EAAIC,KAAKP,EAAEC,GAGbK,EAAIC,KAAKP,EAAEG,EAAGH,EAAEI,GACTE,EAAIE,KAAK,IAClB,EAEA,oBAAMC,CAAeC,EAAUC,EAAYC,GAAS,GAClD,IAAIC,EAAMH,EACNI,EAAY,KAEZJ,aAAoBK,QACtBF,EAAMH,EAASG,IACfC,EAAYJ,EAASI,WAErBJ,EAAW,CAACG,IAAKA,GAGnB,MAAMP,QAAYX,KAAKqB,QAAS,GAAEL,oBAA8B,CAC9DM,MAAOJ,EACPC,UAAWA,EACXF,SAAUA,IAGZ,MAAO,IAAIF,KAAaJ,EAC1B,EAEA,mBAAMY,CAAcC,EAASR,SACrBhB,KAAKqB,QAAS,GAAEL,mBAA6B,CAACS,SAAUD,GAChE,IC3EJ,MAAME,EAAc,EAEpB,O,+ECJOC,MAAM,mB,GACJA,MAAM,kB,GAGNA,MAAM,sB,uEAJbC,EAAAA,EAAAA,IAWM,MAXNC,EAWM,EAVJC,EAAAA,EAAAA,GAEM,MAFNC,EAEM,EADJC,EAAAA,EAAAA,IAAQC,EAAAC,OAAA,kBAAAC,GAAA,MAEVL,EAAAA,EAAAA,GAMM,MANNM,EAMM,EALJC,EAAAA,EAAAA,IAI8FC,EAAA,CAJnFC,OAAQC,EAAAD,OAASE,MAAOD,EAAAC,MAAQC,QAASF,EAAAE,QAAUC,OAAIC,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,OAAQD,IACvEE,QAAKH,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,QAASD,IAAUG,OAAIJ,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,SAAUG,WAAQL,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,aACtEI,OAAIN,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,SAAUK,OAAIP,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,OAAQD,IAAUO,YAAUR,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,aAAcD,IACpFQ,UAAOT,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,UAAWD,IAAUS,SAAMV,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,SAAUD,IAAUU,SAAMX,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,SAAUD,IAC9FW,SAAMZ,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,SAAUD,IAAUY,OAAIb,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,SAAUY,SAAMd,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,Y,sICP5EnB,MAAM,0B,yBAINA,MAAM,kB,GAMRA,MAAM,yB,GACJA,MAAM,W,GACJA,MAAM,W,UAEPG,EAAAA,EAAAA,GAAwC,KAArCH,MAAM,4BAA0B,W,GAAnCgC,G,UAGA7B,EAAAA,EAAAA,GAA+B,KAA5BH,MAAM,mBAAiB,W,GAA1BiC,G,UAGA9B,EAAAA,EAAAA,GAAuC,KAApCH,MAAM,2BAAyB,W,GAAlCkC,G,GAMHlC,MAAM,O,GAWNA,MAAM,O,GAKRA,MAAM,Y,GACJA,MAAM,wC,GAINA,MAAM,2C,SACJA,MAAM,c,SACJA,MAAM,iB,mBAINA,MAAM,mB,SACJA,MAAM,S,6EAMNA,MAAM,U,4BAOZA,MAAM,wC,GACJA,MAAM,e,UAEPG,EAAAA,EAAAA,GAAwC,KAArCH,MAAM,4BAA0B,W,GAAnCmC,G,UAIAhC,EAAAA,EAAAA,GAA+B,KAA5BH,MAAM,mBAAiB,W,GAA1BoC,G,UAGAjC,EAAAA,EAAAA,GAAuC,KAApCH,MAAM,2BAAyB,W,GAAlCqC,G,GAICrC,MAAM,O,GAKRA,MAAM,qC,eAMNA,MAAM,qC,mLA9FbG,EAAAA,EAAAA,GA0CM,OA1CDH,OAAKsC,EAAAA,EAAAA,IAAA,CAAC,oBAAmB,CAAAC,QAAmBC,EAAAC,a,CACoC,SAAlB5B,EAAAD,QAAQ8B,QAAK,WAA9EzC,EAAAA,EAAAA,IASM,O,MATDD,MAAM,kBAAmB2C,QAAK1B,EAAA,KAAAA,EAAA,IAAA2B,EAAAA,EAAAA,KAAA,IAAAC,IAAUC,EAAAC,cAAAD,EAAAC,gBAAAF,IAAY,e,CACbhC,EAAAC,OAAOkC,QAAK,WAAtD/C,EAAAA,EAAAA,IAEM,MAFNC,EAEM,EADJC,EAAAA,EAAAA,GAAyD,OAApDH,MAAM,QAASiD,IAAKpC,EAAAC,MAAMkC,MAAQE,IAAKrC,EAAAC,MAAMqC,O,0BAGpDlD,EAAAA,EAAAA,IAGM,MAHNQ,EAGM,EAFJN,EAAAA,EAAAA,GACiD,KAD9CH,OAAKsC,EAAAA,EAAAA,IAAA,CAAC,2BAA0B,CAAAc,QACG,SAAlBvC,EAAAD,QAAQ8B,U,+BAIhCvC,EAAAA,EAAAA,GAcM,MAdNkD,EAcM,EAbJlD,EAAAA,EAAAA,GAYM,MAZNmD,EAYM,EAXJnD,EAAAA,EAAAA,GAUM,MAVNoD,EAUM,CATiEf,EAAAgB,SAASC,WAAQ,WAAtFxD,EAAAA,EAAAA,IAES,U,MAFA0C,QAAK1B,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,aAAagC,MAAM,uB,oBAGJX,EAAAgB,SAASE,MAAyB,SAAjB7C,EAAAD,OAAO8B,QAAK,WAAlEzC,EAAAA,EAAAA,IAES,U,MAFA0C,QAAK1B,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,SAAyDgC,MAAM,iB,oBAGxBX,EAAAgB,SAASG,OAAI,WAA1E1D,EAAAA,EAAAA,IAES,U,MAFA0C,QAAK1B,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,SAASgC,MAAM,mB,2BAO3ChD,EAAAA,EAAAA,GASM,MATNyD,EASM,EARJlD,EAAAA,EAAAA,IAE8CmD,EAAA,CAF/BC,MAAOjD,EAAAD,OAAOmD,OAASC,MAAOnD,EAAAoD,YAAcrD,OAAQC,EAAAD,OAChEkB,OAAIb,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,SAAUY,SAAMd,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,WACpCM,YAAUR,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,aAAcD,K,oCAEnCR,EAAAA,EAAAA,IAGgDwD,EAAA,CAHhCtD,OAAQC,EAAAD,OAASG,QAASyB,EAAAgB,SACrC9B,UAAOT,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,WAAYN,EAAAD,OAAOuD,UAClCvC,SAAMX,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,UAAWN,EAAAD,OAAOwD,SAChCzC,SAAMV,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,UAAWN,EAAAD,OAAOyD,U,gCAGvClE,EAAAA,EAAAA,GAEM,MAFNmE,EAEM,EADJ5D,EAAAA,EAAAA,IAAsG6D,EAAA,CAAxFC,QAAShC,EAAAgC,QAAUC,SAAU3B,EAAA2B,SAAW7D,OAAQC,EAAAD,OAASY,OAAIP,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,OAAQD,K,+CAI/Ff,EAAAA,EAAAA,GA4DM,MA5DNuE,EA4DM,EA3DJvE,EAAAA,EAAAA,GAEM,MAFNwE,EAEM,EADJjE,EAAAA,EAAAA,IAAkFkE,EAAA,CAAhEhE,OAAQC,EAAAD,OAASI,OAAIC,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,SAAUC,QAAKH,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,W,sBAGxEhB,EAAAA,EAAAA,GAkBM,MAlBN0E,EAkBM,CAjB0BhE,EAAAC,OAA2B,SAAlBD,EAAAD,QAAQ8B,QAAK,WAApDzC,EAAAA,EAAAA,IAgBM,MAhBN6E,EAgBM,CAf6BjE,EAAAC,MAAMkC,QAAK,WAA5C/C,EAAAA,EAAAA,IAEM,MAFN8E,EAEM,EADJ5E,EAAAA,EAAAA,GAAsE,OAAjEH,MAAM,qBAAsBiD,IAAKpC,EAAAC,MAAMkC,MAAQE,IAAKrC,EAAAC,MAAMqC,O,8BAGjEhD,EAAAA,EAAAA,GAUM,MAVN6E,EAUM,CATsC,SAAjBnE,EAAAD,OAAO8B,OAAqC,UAAjB7B,EAAAD,OAAO8B,QAAK,WAAhEzC,EAAAA,EAAAA,IAKM,MALNgF,EAKM,CAHkFpE,EAAAC,MAAMoE,QAAK,WADjGjF,EAAAA,EAAAA,IACuG,K,MADnGkF,KAAM7E,EAAA8E,OAAOC,S,aAAUC,EAAAA,EAAAA,IAAQzE,EAAiDC,MAA3CqC,OAAOoC,OAAS1E,EAAAC,MAAMqC,MAAQ,cACnER,QAAK1B,EAAA,MAAAA,EAAA,KAAA2B,EAAAA,EAAAA,KAAA1B,GAAUZ,EAAAa,MAAM,SAAU,CAAXqE,OAAoB3E,EAAAC,MAAM0E,OAAMN,MAASrE,EAAAC,MAAMoE,SAAK,e,WACcrE,EAAAC,MAAMvB,MAAG,WAAnGU,EAAAA,EAAAA,IAAyG,K,MAArGkF,KAAMtE,EAAAC,MAAMvB,I,aAAK+F,EAAAA,EAAAA,IAAQzE,EAAiDC,MAA3CqC,OAAOoC,OAAS1E,EAAAC,MAAMqC,MAAQ,e,wBACjElD,EAAAA,EAAAA,IAA+E,Q,mBAAzEqF,EAAAA,EAAAA,IAAQzE,EAAkDC,MAA5CqC,OAAOoC,OAAS1E,EAAAC,MAAMqC,MAAQ,e,+BAE1BtC,EAAAC,MAAM0E,QAAQD,QAA4B,SAAjB1E,EAAAD,OAAO8B,OAAqC,UAAjB7B,EAAAD,OAAO8B,O,iBAAK,WAA1FzC,EAAAA,EAAAA,IAEM,MAFNwF,EAEM,EADJtF,EAAAA,EAAAA,GAA8G,KAA1GgF,KAAM7E,EAAA8E,OAAOC,S,aAAUC,EAAAA,EAAAA,IAAQzE,EAAaC,MAAP0E,QAAS7C,QAAK1B,EAAA,MAAAA,EAAA,KAAA2B,EAAAA,EAAAA,KAAA1B,GAAUZ,EAAAa,MAAM,SAAU,CAAXqE,OAAoB3E,EAAAC,MAAM0E,UAAM,e,qCAM9GrF,EAAAA,EAAAA,GAiBM,MAjBNuF,EAiBM,EAhBJvF,EAAAA,EAAAA,GAWM,MAXNwF,EAWM,CAViEnD,EAAAgB,SAASC,WAAQ,WAAtFxD,EAAAA,EAAAA,IAES,U,MAFA0C,QAAK1B,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,aAAagC,MAAM,uB,qBAGzCzC,EAAAA,EAAAA,IAAkFkE,EAAA,CAAhEhE,OAAQC,EAAAD,OAASI,OAAIC,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,SAAUC,QAAKH,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,W,mBACjCqB,EAAAgB,SAASE,MAAyB,SAAjB7C,EAAAD,OAAO8B,QAAK,WAAlEzC,EAAAA,EAAAA,IAES,U,MAFA0C,QAAK1B,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,SAAyDgC,MAAM,iB,oBAGxBX,EAAAgB,SAASG,OAAI,WAA1E1D,EAAAA,EAAAA,IAES,U,MAFA0C,QAAK1B,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,SAASgC,MAAM,mB,uBAKvChD,EAAAA,EAAAA,GAEM,MAFNyF,EAEM,EADJlF,EAAAA,EAAAA,IAAsG6D,EAAA,CAAxFC,QAAShC,EAAAgC,QAAUC,SAAU3B,EAAA2B,SAAW7D,OAAQC,EAAAD,OAASY,OAAIP,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,OAAQD,K,6CAI/Ff,EAAAA,EAAAA,GAIM,MAJN0F,EAIM,EAHJ1F,EAAAA,EAAAA,GAES,UAFAwC,QAAK1B,EAAA,MAAAA,EAAA,IAAAC,GAAEsB,EAAAC,UAAYD,EAAAC,UAAWU,MAAOX,EAAAC,SAAW,qBAAuB,uB,EAC9EtC,EAAAA,EAAAA,GAAqE,KAAlEH,OAAKsC,EAAAA,EAAAA,IAAA,CAAC,MAAK,gBAAwBE,EAAAC,SAAW,OAAS,U,iBAI9DtC,EAAAA,EAAAA,GASM,MATN2F,EASM,EARJpF,EAAAA,EAAAA,IAE8CmD,EAAA,CAF/BC,MAAOjD,EAAAD,OAAOmD,OAASC,MAAOnD,EAAAoD,YAAcrD,OAAQC,EAAAD,OAChEkB,OAAIb,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,SAAUY,SAAMd,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,WACpCM,YAAUR,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,aAAcD,K,oCAEnCR,EAAAA,EAAAA,IAGgDwD,EAAA,CAHhCtD,OAAQC,EAAAD,OAASG,QAASyB,EAAAgB,SACrC9B,UAAOT,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,WAAYN,EAAAD,OAAOuD,UAClCvC,SAAMX,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,UAAWN,EAAAD,OAAOwD,SAChCzC,SAAMV,EAAA,MAAAA,EAAA,IAAAC,GAAEZ,EAAAa,MAAM,UAAWN,EAAAD,OAAOyD,U,8HCtGpCrE,MAAM,4B,WAEPG,EAAAA,EAAAA,GAAmC,KAAhCH,MAAM,uBAAqB,W,IAA9BI,I,WAGAD,EAAAA,EAAAA,GAAiC,KAA9BH,MAAM,qBAAmB,W,IAA5BqD,I,WAGAlD,EAAAA,EAAAA,GAA+B,KAA5BH,MAAM,mBAAiB,W,IAA1BuD,I,2CARJtD,EAAAA,EAAAA,IAUM,MAVNC,GAUM,CATmGW,EAAAE,QAAQoD,UAAO,WAAtHlE,EAAAA,EAAAA,IAES,U,MAFA0C,QAAK1B,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,YAAanB,OAAKsC,EAAAA,EAAAA,IAAA,CAAAyD,QAAYlF,EAAAD,OAAOuD,UAAUhB,MAAM,uB,uBAGqBtC,EAAAE,QAAQqD,SAAM,WAA9GnE,EAAAA,EAAAA,IAES,U,MAFA0C,QAAK1B,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,WAAYnB,OAAKsC,EAAAA,EAAAA,IAAA,CAAAyD,QAAYlF,EAAAD,OAAOwD,SAASjB,MAAM,kB,uBAGsBtC,EAAAE,QAAQsD,SAAM,WAA7GpE,EAAAA,EAAAA,IAES,U,MAFA0C,QAAK1B,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,WAAYnB,OAAKsC,EAAAA,EAAAA,IAAA,CAAAyD,QAAYlF,EAAAD,OAAOyD,SAASlB,MAAM,iB,yBAO7E,QACE6C,MAAO,CAAC,UAAW,SAAU,UAC7BC,MAAO,CACLrF,OAAQ,CACNsF,KAAMzG,OACN0G,QAASA,KAAA,CAAS,IAGpBpF,QAAS,CACPmF,KAAMzG,OACN0G,QAASA,KAAA,CAAS,M,WClBxB,MAAMpG,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,6BCNOC,MAAM,+B,UACNA,MAAM,8B,2CAHXC,EAAAA,EAAAA,IAIS,UAJA0C,QAAK1B,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAuB,SAAjBN,EAAAD,OAAO8B,MAAmB,QAAU,SACjDS,MAAwB,SAAjBtC,EAAAD,OAAO8B,MAAmB,QAAU,Q,CACY,SAAjB7B,EAAAD,OAAO8B,QAAK,WAAzDzC,EAAAA,EAAAA,IAA0E,IAA1EG,OAA0E,WAC1EH,EAAAA,EAAAA,IAAiD,IAAjDQ,MAAiD,K,CAKrD,QACEuF,MAAO,CAAC,OAAQ,SAChBC,MAAO,CACLrF,OAAQ,CACNsF,KAAMzG,OACN0G,QAASA,KAAA,CAAS,MCPxB,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,UCROnG,MAAM,0B,IACJA,MAAM,wB,uBAINA,MAAM,6B,IAINA,MAAM,wB,yFATbC,EAAAA,EAAAA,IAaM,MAbNC,GAaM,EAZJC,EAAAA,EAAAA,GAGM,MAHNC,GAGM,EAFFD,EAAAA,EAAAA,GAC+H,QADzHH,MAAM,e,aACNsF,EAAAA,EAAAA,IAAmB,MAAXzE,EAAyG2D,SAApE,SAAjB3D,EAAAD,OAAO8B,OAAqC,UAAjB7B,EAAAD,OAAO8B,MAA4C,OAAvBpC,EAAA/B,YAAYsC,EAAA2D,W,cAEzGrE,EAAAA,EAAAA,GAGM,MAHNkD,GAGM,EAFJ3C,EAAAA,EAAAA,IACuD0F,EAAA,CAD9CtC,MAAOjD,EAAA2D,QAAUR,MAAK,GAAMnD,EAAA4D,UAAY4B,UAAWxF,EAAA4D,UAA6B,SAAjB5D,EAAAD,OAAO8B,MACtE4D,SAAMrF,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,OAAQD,EAAOqF,OAAOzC,S,wCAE/C3D,EAAAA,EAAAA,GAGM,MAHNmD,GAGM,EAFFnD,EAAAA,EAAAA,GAC2F,QADrFH,MAAM,a,aACNsF,EAAAA,EAAAA,IAAQzE,EAAqE4D,UAAxC,SAAjB5D,EAAAD,OAAO8B,MAAmBpC,EAAA/B,YAAYsC,EAAA4D,UAAY,S,8BASpF,IACE+B,WAAY,CAACC,OAAMA,GAAAA,GACnBT,MAAO,CAAC,QACRlI,OAAQ,CAAC4I,EAAAA,GAETT,MAAO,CACLzB,QAAS,CACP0B,KAAMS,QAGRlC,SAAU,CACRyB,KAAMS,QAIR/F,OAAQ,CACNsF,KAAMzG,OACN0G,QAASA,KAAA,CAAS,MC/BxB,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,U,UCROnG,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,UALNkG,SAAyB,MAAfxF,EAAAD,OAAOgG,KACjBzD,MAAOtC,EAAAD,OAAOgG,KAAO,QAAU,UAC/BjE,QAAK1B,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAMN,EAAAD,OAAOgG,KAAO,SAAW,U,CACE/F,EAAAD,OAAOgG,OAAI,WAApD3G,EAAAA,EAAAA,IAAwD,IAAxDoD,OAAwD,WACxDpD,EAAAA,EAAAA,IAAyC,IAAzCqD,MAAyC,SAI7CnD,EAAAA,EAAAA,GAGM,MAHNoD,GAGM,EAFJ7C,EAAAA,EAAAA,IAC6D0F,EAAA,CADpDtC,MAAOjD,EAAAD,OAAOmD,OAASC,MAAOnD,EAAAoD,YAAcoC,SAA2B,MAAjBxF,EAAAD,OAAOmD,OAC7DuC,SAAMrF,EAAA,KAAAA,EAAA,GAAAC,GAAEZ,EAAAa,MAAM,aAAcD,EAAOqF,OAAOzC,S,yCAQzD,QACE0C,WAAY,CAACC,OAAMA,GAAAA,GACnBT,MAAO,CAAC,aAAc,OAAQ,UAE9BC,MAAO,CAELhC,YAAa,CACXiC,KAAMW,MACNV,QAASA,IAAM,CAAC,EAAG,MAIrBvF,OAAQ,CACNsF,KAAMzG,OACN0G,QAASA,KAAA,CAAS,MC7BxB,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,IAAQ,CAAC,YAAY,qBAEzF,UR2GA,IACEK,WAAY,CAACM,cAAa,GAAEC,gBAAe,GAAEC,YAAW,GAAEC,aAAYA,IACtEnJ,OAAQ,CAACC,EAAAA,EAAO2I,EAAAA,GAChBV,MAAO,CACL,UACA,OACA,OACA,QACA,OACA,WACA,SACA,SACA,SACA,OACA,aACA,OACA,UAGFC,MAAO,CACLnF,MAAO,CACLoF,KAAMzG,QAGRmB,OAAQ,CACNsF,KAAMzG,OACN0G,QAASA,QAIXpF,QAAS,CACPmF,KAAMzG,OACN0G,QAASA,KACA,CACL1C,UAAU,EACVE,MAAM,EACND,MAAM,EACNS,SAAS,EACTC,QAAQ,EACRC,QAAQ,KAMdJ,YAAa,CACXiC,KAAMW,MACNV,QAASA,IAAM,CAAC,EAAG,OAIvBe,IAAAA,GACE,MAAMnG,EAAUtB,OAAO0H,KAAK9I,KAAK0C,UAAUwE,OAASlH,KAAK0C,QAAU,CACjE0C,UAAU,EACVE,MAAM,EACND,MAAM,EACNS,SAAS,EACTC,QAAQ,EACRC,QAAQ,GAGV,MAAO,CACL5B,UAAU,EACV2E,SAAU,EACV5C,QAASnG,KAAKuC,QAAQ4D,SAAWnG,KAAKuC,QAAQyG,SAC9C7D,SAAUzC,EAEd,EAEA/C,SAAU,CACRyG,QAAAA,GACE,OAAgC,MAAzBpG,KAAKuC,QAAQ6D,SAAmBpG,KAAKuC,OAAO6D,SAAWpG,KAAKyC,OAAO2D,QAC5E,GAGFnG,QAAS,CACPgJ,OAAAA,GACE,OAAQ,IAAIC,MAAQD,UAAY,GAClC,EAEAvE,YAAAA,GACM1E,KAAKyC,OAAO0E,QAAUnH,KAAKyC,OAAOoE,OACpC7G,KAAK8C,MAAM,SAAU,CAACqE,OAAQnH,KAAKyC,MAAM0E,OAAQN,MAAO7G,KAAKyC,MAAMoE,OACvE,GAGFsC,OAAAA,GACE,MAAMC,EAAOpJ,KACbA,KAAK+I,SAAW/I,KAAKiJ,UAErBjJ,KAAKqJ,QAAO,IAAMrJ,KAAKyC,QAAQA,IACxBA,GAAgC,SAAvB2G,EAAK7G,QAAQ8B,QACzB+E,EAAKL,SAAW/I,KAAKiJ,UAAS,IAGlCjJ,KAAKqJ,QAAO,IAAMrJ,KAAKuC,SAAQ,KAC7B6G,EAAKL,SAAW/I,KAAKiJ,SAAS,IAGhCK,aAAY,KACiB,SAAvBF,EAAK7G,QAAQ8B,QACf+E,EAAKjD,QAAWiD,EAAK7G,QAAQ4D,SAAWiD,EAAK7G,QAAQyG,UAAY,EACtC,SAAvBI,EAAK7G,QAAQ8B,QACf+E,EAAKjD,SAAWoD,KAAKC,MAAMxJ,KAAKiJ,UAAYG,EAAKL,WACrD,GACC,IACL,GSvNF,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,UVSA,IACEvJ,KAAM,OACN2I,WAAY,CAACsB,SAAQA,IACrB9B,MAAO,CACL,UACA,OACA,OACA,QACA,OACA,WACA,SACA,SACA,SACA,OACA,aACA,OACA,UAGFC,MAAO,CACL5G,WAAY,CACV6G,KAAM6B,OACNC,UAAU,GAGZpH,OAAQ,CACNsF,KAAMzG,OACN0G,QAASA,QAGXrF,MAAO,CACLoF,KAAMzG,QAGRsB,QAAS,CACPmF,KAAMzG,UW9CZ,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAASwI,GAAQ,CAAC,YAAY,qBAEzF,S,kGCRSjI,MAAM,kB,uCAMLA,MAAM,oB,sGANdC,EAAAA,EAAAA,IAqBQ,QArBRC,EAqBQ,CApB8DW,EAAAqH,YAAS,WAA7EjI,EAAAA,EAAAA,IAGO,Q,MAHDD,OAAKsC,EAAAA,EAAAA,IAAA,CAAC,eAAc,cAAwBzB,EAAAsH,c,CACjBtH,EAAAqH,YAAS,WAAxCjI,EAAAA,EAAAA,IAA8D,Q,MAAxDD,MAAM,a,aAA8BsF,EAAAA,EAAAA,IAAQzE,EAASmD,MAAH,K,2BACxBnD,EAAAqH,YAAS,WAAzCjI,EAAAA,EAAAA,IAA+D,Q,MAAzDD,MAAM,c,aAA+BsF,EAAAA,EAAAA,IAAQzE,EAASmD,MAAH,K,iDAG3D7D,EAAAA,EAAAA,GAcO,OAdPkD,EAcO,EAbLlD,EAAAA,EAAAA,GAU8C,SAVvCH,OAAKsC,EAAAA,EAAAA,IAAA,CAAC,SAAQ,cAESzB,EAAAsH,aADvBjC,KAAK,QAEJkC,IAAKvH,EAAAmD,MAAM,GACXqE,IAAKxH,EAAAmD,MAAM,GACXsE,KAAMzH,EAAAyH,KACNjC,SAAUxF,EAAAwF,SACVvC,MAAOjD,EAAAiD,MACRyE,IAAI,QACHC,QAAKvH,EAAA,KAAAA,EAAA,IAAA2B,EAAAA,EAAAA,KAAA1B,GAAOZ,EAAAa,MAAM,QAASD,IAAM,WACjCoF,SAAMrF,EAAA,KAAAA,EAAA,IAAA2B,EAAAA,EAAAA,KAAA1B,GAAOZ,EAAAa,MAAM,SAAUD,IAAM,Y,WAEjBL,EAAAsH,YAAS,WAAnClI,EAAAA,EAAAA,IAAuE,Q,MAAjED,MAAM,Q,aAAyBsF,EAAAA,EAAAA,IAAQzE,EAAMiD,OAACyE,IAAI,S,+BAM9D,OACEvC,MAAO,CAAC,QAAS,UACjBC,MAAO,CACLnC,MAAO,CACLoC,KAAMS,QAGRN,SAAU,CACRH,KAAMuC,QACNtC,SAAS,GAGXnC,MAAO,CACLkC,KAAMW,MACNV,QAASA,IAAM,CAAC,EAAG,MAGrBmC,KAAM,CACJpC,KAAMS,OACNR,QAAS,GAGXgC,UAAW,CACTjC,KAAMuC,QACNtC,SAAS,GAGX+B,UAAW,CACThC,KAAMuC,QACNtC,SAAS,K,UChDf,MAAMpG,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASkI,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/Media/Utils.vue","webpack://platypush/./src/components/Media/Utils.vue?af63","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/ProgressBar.vue","webpack://platypush/./src/components/Media/ProgressBar.vue?32c3","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/Slider.vue","webpack://platypush/./src/components/elements/Slider.vue?787f"],"sourcesContent":["\n","import script from \"./Utils.vue?vue&type=script&lang=js\"\nexport * from \"./Utils.vue?vue&type=script&lang=js\"\n\nconst __exports__ = script;\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 \"./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","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=34374f87&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=34374f87&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-34374f87\"]])\n\nexport default __exports__","import { render } from \"./View.vue?vue&type=template&id=7a861c3a&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=7a861c3a&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-7a861c3a\"]])\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":["name","mixins","Utils","computed","audioExtensions","Set","videoExtensions","mediaExtensions","this","methods","convertTime","time","parseFloat","t","h","parseInt","m","s","attr","ret","push","join","startStreaming","resource","pluginName","download","url","subtitles","Object","request","media","stopStreaming","mediaId","media_id","__exports__","class","_createElementBlock","_hoisted_1","_createElementVNode","_hoisted_2","_renderSlot","_ctx","$slots","undefined","_hoisted_3","_createVNode","_component_Controls","status","$props","track","buttons","onPlay","_cache","$event","$emit","onPause","onStop","onPrevious","onNext","onSeek","onSetVolume","onConsume","onRepeat","onRandom","onSearch","onMute","onUnmute","_hoisted_7","_hoisted_9","_hoisted_11","_hoisted_30","_hoisted_32","_hoisted_34","_normalizeClass","hidden","$data","expanded","state","onClick","_withModifiers","args","$options","onImageClick","image","src","alt","title","playing","_hoisted_4","_hoisted_5","_hoisted_6","buttons_","previous","stop","next","_hoisted_13","_component_VolumeSlider","value","volume","range","volumeRange","_component_ExtraControls","consume","random","repeat","_hoisted_14","_component_ProgressBar","elapsed","duration","_hoisted_15","_hoisted_16","_component_PlayPauseButton","_hoisted_17","_hoisted_18","_hoisted_19","_hoisted_21","_hoisted_22","album","href","$route","fullPath","_toDisplayString","length","artist","_hoisted_26","_hoisted_28","_hoisted_29","_hoisted_36","_hoisted_37","_hoisted_39","enabled","emits","props","type","default","_component_Slider","disabled","onChange","target","components","Slider","MediaUtils","Number","mute","Array","ExtraControls","PlayPauseButton","ProgressBar","VolumeSlider","data","keys","lastSync","position","getTime","Date","mounted","self","$watch","setInterval","Math","round","Controls","String","required","render","withRange","withLabel","min","max","step","ref","onInput","Boolean"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1449.7c3828fc.js.map b/platypush/backend/http/webapp/dist/static/js/1449.7c3828fc.js.map deleted file mode 100644 index 1dc0278a..00000000 --- a/platypush/backend/http/webapp/dist/static/js/1449.7c3828fc.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"static/js/1449.7c3828fc.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,IAA2FC,EAAA,CAA3E/G,MAAO8F,EAAA9F,MAAQgH,MAAK,CAAGC,WAAWP,EAAAQ,KAAMD,WAAWP,EAAAS,MAAQC,UAASrE,EAAA2B,K,0DAc5F,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,6CAcHA,MAAM,cAAcuC,IAAI,S,GAE1BvC,MAAM,QAAQuC,IAAI,S,4DAtB3BtC,EAAAA,EAAAA,IAyBQ,QAzBRI,EAyBQ,CAxB8DW,EAAAwB,YAAS,WAA7EvC,EAAAA,EAAAA,IAGO,Q,MAHDD,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,eAAc,cAAwBQ,EAAAyB,c,CACjBzB,EAAAwB,YAAS,WAAxCvC,EAAAA,EAAAA,IAA8D,Q,MAAxDD,MAAM,a,aAA8BY,EAAAA,EAAAA,IAAQI,EAASM,MAAH,K,2BACxBN,EAAAwB,YAAS,WAAzCvC,EAAAA,EAAAA,IAA+D,Q,MAAzDD,MAAM,c,aAA+BY,EAAAA,EAAAA,IAAQI,EAASM,MAAH,K,iDAG3DX,EAAAA,EAAAA,GAkBO,OAlBPG,EAkBO,EAjBLH,EAAAA,EAAAA,GAU+B,SAVxBX,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,SAAQ,cAESQ,EAAAyB,aADvBvJ,KAAK,QAEJsI,IAAKR,EAAAM,MAAM,GACXG,IAAKT,EAAAM,MAAM,GACXoB,KAAM1B,EAAA0B,KACNC,SAAU3B,EAAA2B,SACVrI,MAAO0G,EAAA1G,MACRiI,IAAI,QACHP,QAAK7B,EAAA,KAAAA,EAAA,IAAA8B,EAAAA,EAAAA,KAAA,IAAA1H,IAAO8C,EAAAuF,UAAAvF,EAAAuF,YAAArI,IAAQ,WACpBsI,SAAM1C,EAAA,KAAAA,EAAA,IAAA8B,EAAAA,EAAAA,KAAA,IAAA1H,IAAO8C,EAAAuF,UAAAvF,EAAAuF,YAAArI,IAAQ,Y,YAE7BoG,EAAAA,EAAAA,GAEM,OAFDX,OAAKQ,EAAAA,EAAAA,IAAA,CAAC,QAAO,cAAwBQ,EAAAyB,c,EACxC9B,EAAAA,EAAAA,GAA2C,MAA3CQ,EAA2C,eAE7CR,EAAAA,EAAAA,GAAqC,MAArCmC,EAAqC,UACX9B,EAAAyB,YAAS,WAAnCxC,EAAAA,EAAAA,IAAuE,Q,MAAjED,MAAM,Q,aAAyBY,EAAAA,EAAAA,IAAQI,EAAM1G,OAACiI,IAAI,S,+BAM9D,OACE5J,KAAM,SACNoK,MAAO,CAAC,QAAS,SAAU,UAAW,YAAa,aAAc,WAAY,QAAS,WACtF/J,MAAO,CACLsB,MAAO,CACLpB,KAAM0I,QAGRe,SAAU,CACRzJ,KAAM8J,QACN3E,SAAS,GAGXiD,MAAO,CACLpI,KAAMuF,MACNJ,QAASA,IAAM,CAAC,EAAG,MAGrBqE,KAAM,CACJxJ,KAAM0I,OACNvD,QAAS,GAGXoE,UAAW,CACTvJ,KAAM8J,QACN3E,SAAS,GAGXmE,UAAW,CACTtJ,KAAM8J,QACN3E,SAAS,IAIb9E,QAAS,CACPqJ,QAAAA,CAASlH,GACPiB,KAAKsG,OAAOvH,EAAMoG,OAAOxH,OACzBqC,KAAKuG,MAAMxH,EAAMxC,KAAM,IAClBwC,EACHoG,OAAQ,IACHpG,EAAMoG,OACTxH,MAAOqC,KAAKG,MAAMwE,MAAMhH,QAG9B,EAEA2I,MAAAA,CAAO3I,GACL,MAAM6I,EAAcxG,KAAKG,MAAMwE,MAAM8B,YAC/BC,GAAW/I,EAAQqC,KAAK2E,MAAM,KAAO3E,KAAK2E,MAAM,GAAK3E,KAAK2E,MAAM,IAChEgC,EAAaD,EAAUF,EACvBI,EAAQ5G,KAAKG,MAAMyG,MAEzBA,EAAM9C,MAAM+C,KAAUF,EAAaC,EAAMH,YAAc,EAAnC,KACpBzG,KAAKG,MAAMyG,MAAM9C,MAAMgD,UAAa,cAAaJ,YACjD1G,KAAKG,MAAM4G,MAAMjD,MAAMkD,MAAS,GAAEL,KACpC,GAGF1H,OAAAA,GACoB,MAAde,KAAKrC,OACPqC,KAAKsG,OAAOtG,KAAKrC,OACnBqC,KAAKiH,QAAO,IAAMjH,KAAKrC,QAAQuJ,GAAalH,KAAKsG,OAAOY,IAC1D,G,UCrFF,MAAMhD,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS7C,GAAQ,CAAC,YAAY,qBAEzF,O,6KCHM2C,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,CAAAmC,SAAoB3B,EAAA2B,YAAYzC,QAAKC,EAAA,KAAAA,EAAA,IAAA8B,EAAAA,EAAAA,KAAA,IAAA1H,IAAO8C,EAAA2E,SAAA3E,EAAA2E,WAAAzH,IAAO,Y,EAE1EoG,EAAAA,EAAAA,GAAwC,SAAjCzH,KAAK,WAAY4K,QAAS9C,EAAA1G,O,WACjCqG,EAAAA,EAAAA,GAQQ,cANNO,GAGAP,EAAAA,EAAAA,GAEO,OAFPoD,EAEO,EADLC,EAAAA,EAAAA,IAAQ5D,EAAA6D,OAAA,kBAAAtF,GAAA,U,CAOhB,OACEhG,KAAM,eACNoK,MAAO,CAAC,SACR/J,MAAO,CACLsB,MAAO,CACLpB,KAAM8J,QACN3E,SAAS,GAGXsE,SAAU,CACRzJ,KAAM8J,QACN3E,SAAS,IAIb9E,QAAS,CACPyI,OAAAA,CAAQtG,GACN,GAAIiB,KAAKgG,SACP,OAAO,EAEThG,KAAKuG,MAAM,QAASxH,EACtB,I,UC/BJ,MAAMmF,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS7C,GAAQ,CAAC,YAAY,qBAEzF,O,2FdROgC,MAAM,oB,GAEJA,MAAM,YAAYuC,IAAI,a,sEAF7BtC,EAAAA,EAAAA,IAGM,MAHNI,EAGM,CAFW6D,EAAA7K,UAAO,WAAtB8K,EAAAA,EAAAA,IAA0BC,EAAA,CAAAjF,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=772cf288&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=772cf288&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-772cf288\"]])\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=4b38623f&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=4b38623f&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-4b38623f\"]])\n\nexport default __exports__","\n\n\n\n\n","import { render } from \"./ToggleSwitch.vue?vue&type=template&id=a6396ae8&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=a6396ae8&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-a6396ae8\"]])\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","onMouseup","SliderElement","Number","required","target","_component_ToggleSwitch","onInput","_withModifiers","ToggleSwitch","Run","Sensor","Slider","Switch","ref","withRange","withLabel","step","disabled","onUpdate","onChange","_hoisted_7","emits","Boolean","update","$emit","sliderWidth","clientWidth","percent","innerWidth","thumb","left","transform","track","width","$watch","newValue","checked","_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/1449.7c3828fc.js b/platypush/backend/http/webapp/dist/static/js/1449.ac2d926f.js similarity index 54% rename from platypush/backend/http/webapp/dist/static/js/1449.7c3828fc.js rename to platypush/backend/http/webapp/dist/static/js/1449.ac2d926f.js index c821b201..f277957a 100644 --- a/platypush/backend/http/webapp/dist/static/js/1449.7c3828fc.js +++ b/platypush/backend/http/webapp/dist/static/js/1449.ac2d926f.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__(8525),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)}}},8525:function(e,t,n){n.d(t,{Z:function(){return z}});var s=n(6252),a=n(3577);const r={key:0,class:"col-1 icon-container"},i=["src","alt"],l=["textContent"];function o(e,t,n,o,c,h){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",r,[e.iconUrl?.length?((0,s.wg)(),(0,s.iD)("img",{key:0,class:"icon",src:e.iconUrl,alt:e.name},null,8,i)):((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),h={name:"Run",mixins:[c.Z]},u=n(3744);const _=(0,u.Z)(h,[["render",o],["__scopeId","data-v-7478b72d"]]);var d=_;const p={key:0,class:"col-1 icon-container"},v=["src","alt"],g=["textContent"],m={class:"col-3 value-container"},f={class:"value"},w=["textContent"];function b(e,t,n,r,i,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,v)):((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,g),(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,u.Z)(y,[["render",b],["__scopeId","data-v-53594122"]]);var k=C;const E={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,r,i,l){const o=(0,s.up)("SliderElement");return(0,s.wg)(),(0,s.iD)("div",E,[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)],onMouseup:l.run},null,8,["value","range","onMouseup"])])])])}var U=n(4358),M={name:"Slider",components:{SliderElement:U.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 O=(0,u.Z)(M,[["render",S],["__scopeId","data-v-772cf288"]]);var A=O,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,r,i,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 $=n(3405),H={name:"Switch",components:{ToggleSwitch:$.Z},mixins:[c.Z]};const K=(0,u.Z)(H,[["render",W],["__scopeId","data-v-97d3a936"]]);var j=K,z={Run:d,Sensor:k,Slider:A,Switch:j}},4358:function(e,t,n){n.d(t,{Z:function(){return f}});var s=n(6252),a=n(3577),r=n(9963);const i={class:"slider-wrapper"},l=["textContent"],o=["textContent"],c={class:"slider-container"},h=["min","max","step","disabled","value"],u={class:"track-inner",ref:"track"},_={class:"thumb",ref:"thumb"},d=["textContent"];function p(e,t,n,p,v,g){return(0,s.wg)(),(0,s.iD)("label",i,[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,r.iM)(((...e)=>g.onUpdate&&g.onUpdate(...e)),["stop"])),onChange:t[1]||(t[1]=(0,r.iM)(((...e)=>g.onUpdate&&g.onUpdate(...e)),["stop"]))},null,42,h),(0,s._)("div",{class:(0,a.C_)(["track",{"with-label":n.withLabel}])},[(0,s._)("div",u,null,512)],2),(0,s._)("div",_,null,512),n.withLabel?((0,s.wg)(),(0,s.iD)("span",{key:0,class:"label",textContent:(0,a.zw)(n.value),ref:"label"},null,8,d)):(0,s.kq)("",!0)])])}var v={name:"Slider",emits:["input","change","mouseup","mousedown","touchstart","touchend","keyup","keydown"],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}},methods:{onUpdate(e){this.update(e.target.value),this.$emit(e.type,{...e,target:{...e.target,value:this.$refs.range.value}})},update(e){const t=this.$refs.range.clientWidth,n=(e-this.range[0])/(this.range[1]-this.range[0]),s=n*t,a=this.$refs.thumb;a.style.left=s-a.clientWidth/2+"px",this.$refs.thumb.style.transform=`translate(-${n}%, -50%)`,this.$refs.track.style.width=`${s}px`}},mounted(){null!=this.value&&this.update(this.value),this.$watch((()=>this.value),(e=>this.update(e)))}},g=n(3744);const m=(0,g.Z)(v,[["render",p],["__scopeId","data-v-4b38623f"]]);var f=m},3405:function(e,t,n){n.d(t,{Z:function(){return p}});var s=n(6252),a=n(3577),r=n(9963);const i=e=>((0,s.dD)("data-v-a6396ae8"),e=e(),(0,s.Cn)(),e),l=["checked"],o=i((()=>(0,s._)("div",{class:"switch"},[(0,s._)("div",{class:"dot"})],-1))),c={class:"label"};function h(e,t,n,i,h,u){return(0,s.wg)(),(0,s.iD)("div",{class:(0,a.C_)(["power-switch",{disabled:n.disabled}]),onClick:t[0]||(t[0]=(0,r.iM)(((...e)=>u.onInput&&u.onInput(...e)),["stop"]))},[(0,s._)("input",{type:"checkbox",checked:n.value},null,8,l),(0,s._)("label",null,[o,(0,s._)("span",c,[(0,s.WI)(e.$slots,"default",{},void 0,!0)])])],2)}var u={name:"ToggleSwitch",emits:["input"],props:{value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{onInput(e){if(this.disabled)return!1;this.$emit("input",e)}}},_=n(3744);const d=(0,_.Z)(u,[["render",h],["__scopeId","data-v-a6396ae8"]]);var p=d},1449:function(e,t,n){n.r(t),n.d(t,{default:function(){return h}});var s=n(6252);const a={class:"component-widget"},r={class:"container",ref:"container"};function i(e,t,n,i,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",r,null,512)])}var l=n(3275),o=n(3744);const c=(0,o.Z)(l.Z,[["render",i],["__scopeId","data-v-450fcab1"]]);var h=c}}]); -//# sourceMappingURL=1449.7c3828fc.js.map \ No newline at end of file +"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.ac2d926f.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1449.ac2d926f.js.map b/platypush/backend/http/webapp/dist/static/js/1449.ac2d926f.js.map new file mode 100644 index 00000000..9e122a0a --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1449.ac2d926f.js.map @@ -0,0 +1 @@ +{"version":3,"file":"static/js/1449.ac2d926f.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/1512.11bbed76.js b/platypush/backend/http/webapp/dist/static/js/1512.11bbed76.js new file mode 100644 index 00000000..e5eaad29 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1512.11bbed76.js @@ -0,0 +1,2 @@ +"use strict";(self["webpackChunkplatypush"]=self["webpackChunkplatypush"]||[]).push([[1512,5324],{5324:function(a,t,e){e.r(t),e.d(t,{default:function(){return ha}});var s=e(6252),n=e(9963);const i={class:"camera"},r={class:"camera-container"},l={class:"frame-container",ref:"frameContainer"},o={key:0,class:"no-frame"},c=["src"],u={class:"controls"},h={class:"left"},p=["disabled"],d=(0,s._)("i",{class:"fa fa-play"},null,-1),m=[d],g=["disabled"],_=(0,s._)("i",{class:"fa fa-stop"},null,-1),f=[_],y=["disabled"],w=(0,s._)("i",{class:"fas fa-camera"},null,-1),C=[w],v={class:"right"},b=(0,s._)("i",{class:"fas fa-volume-mute"},null,-1),S=[b],k=(0,s._)("i",{class:"fas fa-volume-up"},null,-1),z=[k],x=(0,s._)("i",{class:"fas fa-cog"},null,-1),$=[x],F={class:"audio-container"},U={key:0,autoplay:"",preload:"none",ref:"player"},M=["src"],D={key:0,class:"url"},V={class:"row"},P=(0,s._)("span",{class:"name"},"Stream URL",-1),q=["value"],L={class:"params"},A={class:"row"},O=(0,s._)("span",{class:"name"},"Device",-1),W={class:"row"},j=(0,s._)("span",{class:"name"},"Width",-1),H={class:"row"},G=(0,s._)("span",{class:"name"},"Height",-1),I={class:"row"},R=(0,s._)("span",{class:"name"},"Horizontal Flip",-1),T={class:"row"},Z=(0,s._)("span",{class:"name"},"Vertical Flip",-1),Y={class:"row"},E=(0,s._)("span",{class:"name"},"Rotate",-1),X={class:"row"},B=(0,s._)("span",{class:"name"},"Scale-X",-1),J={class:"row"},K=(0,s._)("span",{class:"name"},"Scale-Y",-1),N={class:"row"},Q=(0,s._)("span",{class:"name"},"Frames per second",-1),aa={class:"row"},ta=(0,s._)("span",{class:"name"},"Grayscale",-1);function ea(a,t,e,d,_,w){const b=(0,s.up)("Slot"),k=(0,s.up)("Modal");return(0,s.wg)(),(0,s.iD)("div",i,[(0,s._)("div",r,[(0,s._)("div",l,[a.streaming||a.capturing||a.captured?(0,s.kq)("",!0):((0,s.wg)(),(0,s.iD)("div",o,"The camera is not active")),(0,s._)("img",{class:"frame",src:a.url,ref:"frame",alt:""},null,8,c)],512),(0,s._)("div",u,[(0,s._)("div",h,[a.streaming?((0,s.wg)(),(0,s.iD)("button",{key:1,type:"button",onClick:t[1]||(t[1]=(...t)=>a.stopStreaming&&a.stopStreaming(...t)),disabled:a.capturing,title:"Stop video"},f,8,g)):((0,s.wg)(),(0,s.iD)("button",{key:0,type:"button",onClick:t[0]||(t[0]=(...a)=>w.startStreaming&&w.startStreaming(...a)),disabled:a.capturing,title:"Start video"},m,8,p)),a.streaming?(0,s.kq)("",!0):((0,s.wg)(),(0,s.iD)("button",{key:2,type:"button",onClick:t[2]||(t[2]=(...a)=>w.capture&&w.capture(...a)),disabled:a.streaming||a.capturing,title:"Take a picture"},C,8,y))]),(0,s._)("div",v,[a.audioOn?((0,s.wg)(),(0,s.iD)("button",{key:1,type:"button",onClick:t[4]||(t[4]=(...t)=>a.stopAudio&&a.stopAudio(...t)),title:"Stop audio"},z)):((0,s.wg)(),(0,s.iD)("button",{key:0,type:"button",onClick:t[3]||(t[3]=(...t)=>a.startAudio&&a.startAudio(...t)),title:"Start audio"},S)),(0,s._)("button",{type:"button",onClick:t[5]||(t[5]=t=>a.$refs.paramsModal.show()),title:"Settings"},$)])])]),(0,s._)("div",F,[a.audioOn?((0,s.wg)(),(0,s.iD)("audio",U,[(0,s._)("source",{src:`/sound/stream.aac?t=${(new Date).getTime()}`},null,8,M),(0,s.Uk)(" Your browser does not support audio elements ")],512)):(0,s.kq)("",!0)]),a.url?.length?((0,s.wg)(),(0,s.iD)("div",D,[(0,s._)("label",V,[P,(0,s._)("input",{name:"url",type:"text",value:w.fullURL,disabled:"disabled"},null,8,q)])])):(0,s.kq)("",!0),(0,s.Wm)(k,{ref:"paramsModal",title:"Camera Parameters"},{default:(0,s.w5)((()=>[(0,s._)("div",L,[(0,s._)("label",A,[O,(0,s.wy)((0,s._)("input",{name:"device",type:"text","onUpdate:modelValue":t[6]||(t[6]=t=>a.attrs.device=t),onChange:t[7]||(t[7]=(...t)=>a.onDeviceChanged&&a.onDeviceChanged(...t))},null,544),[[n.nr,a.attrs.device]])]),(0,s._)("label",W,[j,(0,s.wy)((0,s._)("input",{name:"width",type:"text","onUpdate:modelValue":t[8]||(t[8]=t=>a.attrs.resolution[0]=t),onChange:t[9]||(t[9]=(...t)=>a.onSizeChanged&&a.onSizeChanged(...t))},null,544),[[n.nr,a.attrs.resolution[0]]])]),(0,s._)("label",H,[G,(0,s.wy)((0,s._)("input",{name:"height",type:"text","onUpdate:modelValue":t[10]||(t[10]=t=>a.attrs.resolution[1]=t),onChange:t[11]||(t[11]=(...t)=>a.onSizeChanged&&a.onSizeChanged(...t))},null,544),[[n.nr,a.attrs.resolution[1]]])]),(0,s._)("label",I,[R,(0,s.wy)((0,s._)("input",{name:"horizontal_flip",type:"checkbox","onUpdate:modelValue":t[12]||(t[12]=t=>a.attrs.horizontal_flip=t),onChange:t[13]||(t[13]=(...t)=>a.onFlipChanged&&a.onFlipChanged(...t))},null,544),[[n.e8,a.attrs.horizontal_flip]])]),(0,s._)("label",T,[Z,(0,s.wy)((0,s._)("input",{name:"vertical_flip",type:"checkbox","onUpdate:modelValue":t[14]||(t[14]=t=>a.attrs.vertical_flip=t),onChange:t[15]||(t[15]=(...t)=>a.onFlipChanged&&a.onFlipChanged(...t))},null,544),[[n.e8,a.attrs.vertical_flip]])]),(0,s._)("label",Y,[E,(0,s.wy)((0,s._)("input",{name:"rotate",type:"text","onUpdate:modelValue":t[16]||(t[16]=t=>a.attrs.rotate=t),onChange:t[17]||(t[17]=(...t)=>a.onSizeChanged&&a.onSizeChanged(...t))},null,544),[[n.nr,a.attrs.rotate]])]),(0,s._)("label",X,[B,(0,s.wy)((0,s._)("input",{name:"scale_x",type:"text","onUpdate:modelValue":t[18]||(t[18]=t=>a.attrs.scale_x=t),onChange:t[19]||(t[19]=(...t)=>a.onSizeChanged&&a.onSizeChanged(...t))},null,544),[[n.nr,a.attrs.scale_x]])]),(0,s._)("label",J,[K,(0,s.wy)((0,s._)("input",{name:"scale_y",type:"text","onUpdate:modelValue":t[20]||(t[20]=t=>a.attrs.scale_y=t),onChange:t[21]||(t[21]=(...t)=>a.onSizeChanged&&a.onSizeChanged(...t))},null,544),[[n.nr,a.attrs.scale_y]])]),(0,s._)("label",N,[Q,(0,s.wy)((0,s._)("input",{name:"fps",type:"text","onUpdate:modelValue":t[22]||(t[22]=t=>a.attrs.fps=t),onChange:t[23]||(t[23]=(...t)=>a.onFpsChanged&&a.onFpsChanged(...t))},null,544),[[n.nr,a.attrs.fps]])]),(0,s._)("label",aa,[ta,(0,s.wy)((0,s._)("input",{name:"grayscale",type:"checkbox","onUpdate:modelValue":t[24]||(t[24]=t=>a.attrs.grayscale=t),onChange:t[25]||(t[25]=(...t)=>a.onGrayscaleChanged&&a.onGrayscaleChanged(...t))},null,544),[[n.e8,a.attrs.grayscale]])]),(0,s.Wm)(b)])])),_:1},512)])}var sa=e(8637),na={name:"CameraMixin",mixins:[sa.Z],props:{cameraPlugin:{type:String,required:!0}},data(){return{streaming:!1,capturing:!1,captured:!1,audioOn:!1,url:null,attrs:{}}},computed:{params(){return{resolution:this.attrs.resolution,device:this.attrs.device?.length?this.attrs.device:null,horizontal_flip:parseInt(0+this.attrs.horizontal_flip),vertical_flip:parseInt(0+this.attrs.vertical_flip),rotate:parseFloat(this.attrs.rotate),scale_x:parseFloat(this.attrs.scale_x),scale_y:parseFloat(this.attrs.scale_y),fps:parseFloat(this.attrs.fps),grayscale:parseInt(0+this.attrs.grayscale)}}},methods:{getUrl(a,t){return"/camera/"+a+"/"+t+"?"+Object.entries(this.params).filter((a=>null!=a[1]&&(""+a[1]).length>0)).map((([a,t])=>a+"="+t)).join("&")},_startStreaming(a){this.streaming||(this.streaming=!0,this.capturing=!1,this.captured=!1,this.url=this.getUrl(a,"video."+this.attrs.stream_format))},stopStreaming(){this.streaming&&(this.streaming=!1,this.capturing=!1,this.url=null)},_capture(a){this.capturing||(this.streaming=!1,this.capturing=!0,this.captured=!0,this.url=this.getUrl(a,"photo.jpg")+"&t="+(new Date).getTime())},onFrameLoaded(){this.capturing&&(this.capturing=!1)},onDeviceChanged(){},onFlipChanged(){},onSizeChanged(){const a=a=>a*Math.PI/180,t=a(this.params.rotate);let e=Math.round(this.params.scale_x*Math.abs(this.params.resolution[0]*Math.cos(t)+this.params.resolution[1]*Math.sin(t))),s=Math.round(this.params.scale_y*Math.abs(this.params.resolution[0]*Math.sin(t)+this.params.resolution[1]*Math.cos(t)));e>window.innerWidth&&(s=Math.round(s*(window.innerWidth/e)),e=window.innerWidth),s>window.innerHeight&&(e=Math.round(e*(window.innerHeight/s)),s=window.innerHeight),this.$refs.frameContainer.style.width=`${e}px`,this.$refs.frameContainer.style.height=`${s}px`},onFpsChanged(){},onGrayscaleChanged(){},startAudio(){this.audioOn=!0},async stopAudio(){this.audioOn=!1,await this.request("sound.stop_recording")}},created(){const a=this.$root.config[`camera.${this.cameraPlugin}`]||{};this.attrs={resolution:a.resolution||[640,480],device:a.device,horizontal_flip:a.horizontal_flip||0,vertical_flip:a.vertical_flip||0,rotate:a.rotate||0,scale_x:a.scale_x||1,scale_y:a.scale_y||1,fps:a.fps||16,grayscale:a.grayscale||0,stream_format:a.stream_format||"mjpeg"}},mounted(){this.$refs.frame.addEventListener("load",this.onFrameLoaded),this.onSizeChanged(),this.$watch((()=>this.attrs.resolution),this.onSizeChanged),this.$watch((()=>this.attrs.horizontal_flip),this.onSizeChanged),this.$watch((()=>this.attrs.vertical_flip),this.onSizeChanged),this.$watch((()=>this.attrs.rotate),this.onSizeChanged),this.$watch((()=>this.attrs.scale_x),this.onSizeChanged),this.$watch((()=>this.attrs.scale_y),this.onSizeChanged)}};const ia=na;var ra=ia,la=e(3493),oa={name:"Camera",components:{Modal:la.Z},mixins:[ra],props:{cameraPlugin:{type:String,required:!0}},computed:{fullURL(){return`${window.location.protocol}//${window.location.host}${this.url}`}},methods:{startStreaming(){this._startStreaming(this.cameraPlugin)},capture(){this._capture(this.cameraPlugin)}}},ca=e(3744);const ua=(0,ca.Z)(oa,[["render",ea]]);var ha=ua},1512:function(a,t,e){e.r(t),e.d(t,{default:function(){return c}});var s=e(6252);function n(a,t,e,n,i,r){const l=(0,s.up)("Camera");return(0,s.wg)(),(0,s.j4)(l,{"camera-plugin":"pi.legacy"})}var i=e(5324),r={name:"CameraPiLegacy",components:{Camera:i["default"]}},l=e(3744);const o=(0,l.Z)(r,[["render",n]]);var c=o}}]); +//# sourceMappingURL=1512.11bbed76.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1512.11bbed76.js.map b/platypush/backend/http/webapp/dist/static/js/1512.11bbed76.js.map new file mode 100644 index 00000000..901ca35d --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1512.11bbed76.js.map @@ -0,0 +1 @@ +{"version":3,"file":"static/js/1512.11bbed76.js","mappings":"sMACOA,MAAM,U,GACJA,MAAM,oB,GACJA,MAAM,kBAAkBC,IAAI,kB,SAC1BD,MAAM,Y,aAIRA,MAAM,Y,GACJA,MAAM,Q,kBAEPE,EAAAA,EAAAA,GAAwB,KAArBF,MAAM,cAAY,S,GAArBG,G,kBAIAD,EAAAA,EAAAA,GAAwB,KAArBF,MAAM,cAAY,S,GAArBI,G,kBAKAF,EAAAA,EAAAA,GAA2B,KAAxBF,MAAM,iBAAe,S,GAAxBK,G,GAICL,MAAM,S,GAEPE,EAAAA,EAAAA,GAAgC,KAA7BF,MAAM,sBAAoB,S,GAA7BM,G,GAIAJ,EAAAA,EAAAA,GAA8B,KAA3BF,MAAM,oBAAkB,S,GAA3BO,G,GAIAL,EAAAA,EAAAA,GAAwB,KAArBF,MAAM,cAAY,S,GAArBQ,G,GAMHR,MAAM,mB,SACFS,SAAA,GAASC,QAAQ,OAAOT,IAAI,U,mBAMhCD,MAAM,O,GACFA,MAAM,O,GACXE,EAAAA,EAAAA,GAAoC,QAA9BF,MAAM,QAAO,cAAU,G,eAM1BA,MAAM,U,GACFA,MAAM,O,GACXE,EAAAA,EAAAA,GAAgC,QAA1BF,MAAM,QAAO,UAAM,G,GAIpBA,MAAM,O,GACXE,EAAAA,EAAAA,GAA+B,QAAzBF,MAAM,QAAO,SAAK,G,GAInBA,MAAM,O,GACXE,EAAAA,EAAAA,GAAgC,QAA1BF,MAAM,QAAO,UAAM,G,GAIpBA,MAAM,O,GACXE,EAAAA,EAAAA,GAAyC,QAAnCF,MAAM,QAAO,mBAAe,G,GAI7BA,MAAM,O,GACXE,EAAAA,EAAAA,GAAuC,QAAjCF,MAAM,QAAO,iBAAa,G,GAI3BA,MAAM,O,GACXE,EAAAA,EAAAA,GAAgC,QAA1BF,MAAM,QAAO,UAAM,G,GAIpBA,MAAM,O,GACXE,EAAAA,EAAAA,GAAiC,QAA3BF,MAAM,QAAO,WAAO,G,GAIrBA,MAAM,O,GACXE,EAAAA,EAAAA,GAAiC,QAA3BF,MAAM,QAAO,WAAO,G,GAIrBA,MAAM,O,GACXE,EAAAA,EAAAA,GAA2C,QAArCF,MAAM,QAAO,qBAAiB,G,IAI/BA,MAAM,O,IACXE,EAAAA,EAAAA,GAAmC,QAA7BF,MAAM,QAAO,aAAS,G,wFArGpCW,EAAAA,EAAAA,IA4GM,MA5GNC,EA4GM,EA3GJV,EAAAA,EAAAA,GAoCM,MApCNW,EAoCM,EAnCJX,EAAAA,EAAAA,GAGM,MAHNY,EAGM,CAFyBC,EAAAC,WAAcD,EAAAE,WAAcF,EAAAG,UAAkC,iBAA1B,WAAjEP,EAAAA,EAAAA,IAAiG,MAAjGQ,EAAmE,8BACnEjB,EAAAA,EAAAA,GAAiD,OAA5CF,MAAM,QAASoB,IAAKL,EAAAM,IAAKpB,IAAI,QAAQqB,IAAI,I,iBAGhDpB,EAAAA,EAAAA,GA6BM,MA7BNqB,EA6BM,EA5BJrB,EAAAA,EAAAA,GAaM,MAbNsB,EAaM,CAZ2FT,EAAAC,Y,WAI/FL,EAAAA,EAAAA,IAES,U,MAFDc,KAAK,SAAUC,QAAKC,EAAA,KAAAA,EAAA,OAAAC,IAAEb,EAAAc,eAAAd,EAAAc,iBAAAD,IAAgBE,SAAUf,EAAAE,UAAWc,MAAM,c,UAJ+B,WAAxGpB,EAAAA,EAAAA,IAES,U,MAFDc,KAAK,SAAUC,QAAKC,EAAA,KAAAA,EAAA,OAAAC,IAAEI,EAAAC,gBAAAD,EAAAC,kBAAAL,IAAiBE,SAAUf,EAAAE,UAAWc,MAAM,e,QAQOhB,EAAAC,W,iBAAS,WAA1FL,EAAAA,EAAAA,IAGS,U,MAHDc,KAAK,SAAUC,QAAKC,EAAA,KAAAA,EAAA,OAAAC,IAAEI,EAAAE,SAAAF,EAAAE,WAAAN,IAAUE,SAAUf,EAAAC,WAAaD,EAAAE,UACvDc,MAAM,kB,WAKhB7B,EAAAA,EAAAA,GAYM,MAZNiC,EAYM,CAXiEpB,EAAAqB,U,WAIrEzB,EAAAA,EAAAA,IAES,U,MAFDc,KAAK,SAAUC,QAAKC,EAAA,KAAAA,EAAA,OAAAC,IAAEb,EAAAsB,WAAAtB,EAAAsB,aAAAT,IAAWG,MAAM,c,MAJ6B,WAA5EpB,EAAAA,EAAAA,IAES,U,MAFDc,KAAK,SAAUC,QAAKC,EAAA,KAAAA,EAAA,OAAAC,IAAEb,EAAAuB,YAAAvB,EAAAuB,cAAAV,IAAYG,MAAM,e,KAQhD7B,EAAAA,EAAAA,GAES,UAFDuB,KAAK,SAAUC,QAAKC,EAAA,KAAAA,EAAA,GAAAY,GAAExB,EAAAyB,MAAMC,YAAYC,QAAQX,MAAM,Y,UAOpE7B,EAAAA,EAAAA,GAKM,MALNyC,EAKM,CAJ8C5B,EAAAqB,UAAO,WAAzDzB,EAAAA,EAAAA,IAGQ,QAHRiC,EAGQ,EAFN1C,EAAAA,EAAAA,GAA+D,UAAtDkB,IAAG,4BAA8ByB,MAAQC,a,mBAAa,mDAEjE,wBAGqB/B,EAAAM,KAAK0B,SAAM,WAAlCpC,EAAAA,EAAAA,IAKM,MALNqC,EAKM,EAJJ9C,EAAAA,EAAAA,GAGQ,QAHR+C,EAGQ,CAFNC,GACAhD,EAAAA,EAAAA,GAAoE,SAA7DiD,KAAK,MAAM1B,KAAK,OAAQ2B,MAAOpB,EAAAqB,QAASvB,SAAS,Y,gCAI5DwB,EAAAA,EAAAA,IAsDQC,EAAA,CAtDDtD,IAAI,cAAc8B,MAAM,qB,mBAC7B,IAoDM,EApDN7B,EAAAA,EAAAA,GAoDM,MApDNsD,EAoDM,EAnDJtD,EAAAA,EAAAA,GAGQ,QAHRuD,EAGQ,CAFNC,GAAgC,SAChCxD,EAAAA,EAAAA,GAAmF,SAA5EiD,KAAK,SAAS1B,KAAK,O,qCAAgBV,EAAA4C,MAAMC,OAAMrB,GAAGsB,SAAMlC,EAAA,KAAAA,EAAA,OAAAC,IAAEb,EAAA+C,iBAAA/C,EAAA+C,mBAAAlC,K,iBAAvBb,EAAA4C,MAAMC,aAGlD1D,EAAAA,EAAAA,GAGQ,QAHR6D,EAGQ,CAFNC,GAA+B,SAC/B9D,EAAAA,EAAAA,GAAuF,SAAhFiD,KAAK,QAAQ1B,KAAK,O,qCAAgBV,EAAA4C,MAAMM,WAAW,GAAD1B,GAAMsB,SAAMlC,EAAA,KAAAA,EAAA,OAAAC,IAAEb,EAAAmD,eAAAnD,EAAAmD,iBAAAtC,K,iBAA9Bb,EAAA4C,MAAMM,WAAW,SAG5D/D,EAAAA,EAAAA,GAGQ,QAHRiE,EAGQ,CAFNC,GAAgC,SAChClE,EAAAA,EAAAA,GAAwF,SAAjFiD,KAAK,SAAS1B,KAAK,O,uCAAgBV,EAAA4C,MAAMM,WAAW,GAAD1B,GAAMsB,SAAMlC,EAAA,MAAAA,EAAA,QAAAC,IAAEb,EAAAmD,eAAAnD,EAAAmD,iBAAAtC,K,iBAA9Bb,EAAA4C,MAAMM,WAAW,SAG7D/D,EAAAA,EAAAA,GAGQ,QAHRmE,EAGQ,CAFNC,GAAyC,SACzCpE,EAAAA,EAAAA,GAAuG,SAAhGiD,KAAK,kBAAkB1B,KAAK,W,uCAAoBV,EAAA4C,MAAMY,gBAAehC,GAAGsB,SAAMlC,EAAA,MAAAA,EAAA,QAAAC,IAAEb,EAAAyD,eAAAzD,EAAAyD,iBAAA5C,K,iBAAhCb,EAAA4C,MAAMY,sBAG/DrE,EAAAA,EAAAA,GAGQ,QAHRuE,EAGQ,CAFNC,GAAuC,SACvCxE,EAAAA,EAAAA,GAAmG,SAA5FiD,KAAK,gBAAgB1B,KAAK,W,uCAAoBV,EAAA4C,MAAMgB,cAAapC,GAAGsB,SAAMlC,EAAA,MAAAA,EAAA,QAAAC,IAAEb,EAAAyD,eAAAzD,EAAAyD,iBAAA5C,K,iBAA9Bb,EAAA4C,MAAMgB,oBAG7DzE,EAAAA,EAAAA,GAGQ,QAHR0E,EAGQ,CAFNC,GAAgC,SAChC3E,EAAAA,EAAAA,GAAiF,SAA1EiD,KAAK,SAAS1B,KAAK,O,uCAAgBV,EAAA4C,MAAMmB,OAAMvC,GAAGsB,SAAMlC,EAAA,MAAAA,EAAA,QAAAC,IAAEb,EAAAmD,eAAAnD,EAAAmD,iBAAAtC,K,iBAAvBb,EAAA4C,MAAMmB,aAGlD5E,EAAAA,EAAAA,GAGQ,QAHR6E,EAGQ,CAFNC,GAAiC,SACjC9E,EAAAA,EAAAA,GAAmF,SAA5EiD,KAAK,UAAU1B,KAAK,O,uCAAgBV,EAAA4C,MAAMsB,QAAO1C,GAAGsB,SAAMlC,EAAA,MAAAA,EAAA,QAAAC,IAAEb,EAAAmD,eAAAnD,EAAAmD,iBAAAtC,K,iBAAxBb,EAAA4C,MAAMsB,cAGnD/E,EAAAA,EAAAA,GAGQ,QAHRgF,EAGQ,CAFNC,GAAiC,SACjCjF,EAAAA,EAAAA,GAAmF,SAA5EiD,KAAK,UAAU1B,KAAK,O,uCAAgBV,EAAA4C,MAAMyB,QAAO7C,GAAGsB,SAAMlC,EAAA,MAAAA,EAAA,QAAAC,IAAEb,EAAAmD,eAAAnD,EAAAmD,iBAAAtC,K,iBAAxBb,EAAA4C,MAAMyB,cAGnDlF,EAAAA,EAAAA,GAGQ,QAHRmF,EAGQ,CAFNC,GAA2C,SAC3CpF,EAAAA,EAAAA,GAA0E,SAAnEiD,KAAK,MAAM1B,KAAK,O,uCAAgBV,EAAA4C,MAAM4B,IAAGhD,GAAGsB,SAAMlC,EAAA,MAAAA,EAAA,QAAAC,IAAEb,EAAAyE,cAAAzE,EAAAyE,gBAAA5D,K,iBAApBb,EAAA4C,MAAM4B,UAG/CrF,EAAAA,EAAAA,GAGQ,QAHRuF,GAGQ,CAFNC,IAAmC,SACnCxF,EAAAA,EAAAA,GAAgG,SAAzFiD,KAAK,YAAY1B,KAAK,W,uCAAoBV,EAAA4C,MAAMgC,UAASpD,GAAGsB,SAAMlC,EAAA,MAAAA,EAAA,QAAAC,IAAEb,EAAA6E,oBAAA7E,EAAA6E,sBAAAhE,K,iBAA1Bb,EAAA4C,MAAMgC,gBAGzDrC,EAAAA,EAAAA,IAAQuC,Q,2BCvGhB,IACE1C,KAAM,cACN2C,OAAQ,CAACC,GAAAA,GAETC,MAAO,CACLC,aAAc,CACZxE,KAAMyE,OACNC,UAAU,IAIdC,IAAAA,GACE,MAAO,CACLpF,WAAW,EACXC,WAAW,EACXC,UAAU,EACVkB,SAAS,EACTf,IAAK,KACLsC,MAAO,CAAC,EAEZ,EAEA0C,SAAU,CACRC,MAAAA,GACE,MAAO,CACLrC,WAAYsC,KAAK5C,MAAMM,WACvBL,OAAQ2C,KAAK5C,MAAMC,QAAQb,OAASwD,KAAK5C,MAAMC,OAAS,KACxDW,gBAAiBiC,SAAS,EAAID,KAAK5C,MAAMY,iBACzCI,cAAe6B,SAAS,EAAID,KAAK5C,MAAMgB,eACvCG,OAAQ2B,WAAWF,KAAK5C,MAAMmB,QAC9BG,QAASwB,WAAWF,KAAK5C,MAAMsB,SAC/BG,QAASqB,WAAWF,KAAK5C,MAAMyB,SAC/BG,IAAKkB,WAAWF,KAAK5C,MAAM4B,KAC3BI,UAAWa,SAAS,EAAID,KAAK5C,MAAMgC,WAEvC,GAGFe,QAAS,CACPC,MAAAA,CAAOC,EAAQC,GACb,MAAO,WAAaD,EAAS,IAAMC,EAAS,IACxCC,OAAOC,QAAQR,KAAKD,QAAQU,QAAQC,GAAsB,MAAZA,EAAM,KAAe,GAAKA,EAAM,IAAIlE,OAAS,IACtFmE,KAAI,EAAEC,EAAGC,KAAOD,EAAI,IAAMC,IAAGC,KAAK,IAC7C,EAEAC,eAAAA,CAAgBV,GACVL,KAAKvF,YAGTuF,KAAKvF,WAAY,EACjBuF,KAAKtF,WAAY,EACjBsF,KAAKrF,UAAW,EAChBqF,KAAKlF,IAAMkF,KAAKI,OAAOC,EAAQ,SAAWL,KAAK5C,MAAM4D,eACvD,EAEA1F,aAAAA,GACO0E,KAAKvF,YAGVuF,KAAKvF,WAAY,EACjBuF,KAAKtF,WAAY,EACjBsF,KAAKlF,IAAM,KACb,EAEAmG,QAAAA,CAASZ,GACHL,KAAKtF,YAGTsF,KAAKvF,WAAY,EACjBuF,KAAKtF,WAAY,EACjBsF,KAAKrF,UAAW,EAChBqF,KAAKlF,IAAMkF,KAAKI,OAAOC,EAAQ,aAAe,OAAS,IAAI/D,MAAQC,UACrE,EAEA2E,aAAAA,GACMlB,KAAKtF,YACPsF,KAAKtF,WAAY,EAErB,EAEA6C,eAAAA,GAAmB,EACnBU,aAAAA,GAAiB,EACjBN,aAAAA,GACE,MAAMwD,EAAYC,GAASA,EAAMC,KAAKC,GAAI,IACpCC,EAAMJ,EAASnB,KAAKD,OAAOxB,QACjC,IAAIiD,EAAQH,KAAKI,MAAMzB,KAAKD,OAAOrB,QAAU2C,KAAKK,IAAI1B,KAAKD,OAAOrC,WAAW,GAAK2D,KAAKM,IAAIJ,GAAOvB,KAAKD,OAAOrC,WAAW,GAAK2D,KAAKO,IAAIL,KACnIM,EAASR,KAAKI,MAAMzB,KAAKD,OAAOlB,QAAUwC,KAAKK,IAAI1B,KAAKD,OAAOrC,WAAW,GAAK2D,KAAKO,IAAIL,GAAOvB,KAAKD,OAAOrC,WAAW,GAAK2D,KAAKM,IAAIJ,KAEpIC,EAAQM,OAAOC,aACjBF,EAASR,KAAKI,MAAMI,GAAUC,OAAOC,WAAaP,IAClDA,EAAQM,OAAOC,YAGbF,EAASC,OAAOE,cAClBR,EAAQH,KAAKI,MAAMD,GAASM,OAAOE,YAAcH,IACjDA,EAASC,OAAOE,aAGlBhC,KAAK/D,MAAMgG,eAAeC,MAAMV,MAAS,GAAEA,MAC3CxB,KAAK/D,MAAMgG,eAAeC,MAAML,OAAU,GAAEA,KAC9C,EAEA5C,YAAAA,GAAgB,EAChBI,kBAAAA,GAAsB,EAEtBtD,UAAAA,GACEiE,KAAKnE,SAAU,CACjB,EAEA,eAAMC,GACJkE,KAAKnE,SAAU,QACTmE,KAAKmC,QAAQ,uBACrB,GAGFC,OAAAA,GACE,MAAMC,EAASrC,KAAKsC,MAAMD,OAAQ,UAASrC,KAAKN,iBAAmB,CAAC,EACpEM,KAAK5C,MAAQ,CACXM,WAAY2E,EAAO3E,YAAc,CAAC,IAAK,KACvCL,OAAQgF,EAAOhF,OACfW,gBAAiBqE,EAAOrE,iBAAmB,EAC3CI,cAAeiE,EAAOjE,eAAiB,EACvCG,OAAQ8D,EAAO9D,QAAU,EACzBG,QAAS2D,EAAO3D,SAAW,EAC3BG,QAASwD,EAAOxD,SAAW,EAC3BG,IAAKqD,EAAOrD,KAAO,GACnBI,UAAWiD,EAAOjD,WAAa,EAC/B4B,cAAeqB,EAAOrB,eAAiB,QAE3C,EAEAuB,OAAAA,GACEvC,KAAK/D,MAAMuG,MAAMC,iBAAiB,OAAQzC,KAAKkB,eAC/ClB,KAAKrC,gBACLqC,KAAK0C,QAAO,IAAM1C,KAAK5C,MAAMM,YAAYsC,KAAKrC,eAC9CqC,KAAK0C,QAAO,IAAM1C,KAAK5C,MAAMY,iBAAiBgC,KAAKrC,eACnDqC,KAAK0C,QAAO,IAAM1C,KAAK5C,MAAMgB,eAAe4B,KAAKrC,eACjDqC,KAAK0C,QAAO,IAAM1C,KAAK5C,MAAMmB,QAAQyB,KAAKrC,eAC1CqC,KAAK0C,QAAO,IAAM1C,KAAK5C,MAAMsB,SAASsB,KAAKrC,eAC3CqC,KAAK0C,QAAO,IAAM1C,KAAK5C,MAAMyB,SAASmB,KAAKrC,cAC7C,GC5IF,MAAMgF,GAAc,GAEpB,U,WF+GA,IACE/F,KAAM,SACNgG,WAAY,CAACC,MAAKA,GAAAA,GAClBtD,OAAQ,CAACuD,IACTrD,MAAO,CACLC,aAAc,CACZxE,KAAMyE,OACNC,UAAU,IAIdE,SAAU,CACRhD,OAAAA,GACE,MAAQ,GAAEgF,OAAOiB,SAASC,aAAalB,OAAOiB,SAASE,OAAOjD,KAAKlF,KACrE,GAGFqF,QAAS,CACPzE,cAAAA,GACEsE,KAAKe,gBAAgBf,KAAKN,aAC5B,EAEA/D,OAAAA,GACEqE,KAAKiB,SAASjB,KAAKN,aACrB,I,WGrIJ,MAAM,IAA2B,QAAgB,GAAQ,CAAC,CAAC,SAASwD,MAEpE,S,uJCREC,EAAAA,EAAAA,IAAoCC,EAAA,CAA5B,gBAAc,a,eAMxB,GACExG,KAAM,iBACNgG,WAAY,CAACS,OAAMA,EAAAA,a,UCJrB,MAAMV,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASO,KAEpE,O","sources":["webpack://platypush/./src/components/panels/Camera/Index.vue","webpack://platypush/./src/components/panels/Camera/Mixin.vue","webpack://platypush/./src/components/panels/Camera/Mixin.vue?be5e","webpack://platypush/./src/components/panels/Camera/Index.vue?8810","webpack://platypush/./src/components/panels/CameraPiLegacy/Index.vue","webpack://platypush/./src/components/panels/CameraPiLegacy/Index.vue?4f74"],"sourcesContent":["\n\n\n\n\n","\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__","import { render } from \"./Index.vue?vue&type=template&id=a4970096\"\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=a4970096&lang=scss\"\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 \"./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":["class","ref","_createElementVNode","_hoisted_9","_hoisted_12","_hoisted_15","_hoisted_18","_hoisted_20","_hoisted_22","autoplay","preload","_createElementBlock","_hoisted_1","_hoisted_2","_hoisted_3","_ctx","streaming","capturing","captured","_hoisted_4","src","url","alt","_hoisted_6","_hoisted_7","type","onClick","_cache","args","stopStreaming","disabled","title","$options","startStreaming","capture","_hoisted_17","audioOn","stopAudio","startAudio","$event","$refs","paramsModal","show","_hoisted_24","_hoisted_25","Date","getTime","length","_hoisted_27","_hoisted_28","_hoisted_29","name","value","fullURL","_createVNode","_component_Modal","_hoisted_31","_hoisted_32","_hoisted_33","attrs","device","onChange","onDeviceChanged","_hoisted_34","_hoisted_35","resolution","onSizeChanged","_hoisted_36","_hoisted_37","_hoisted_38","_hoisted_39","horizontal_flip","onFlipChanged","_hoisted_40","_hoisted_41","vertical_flip","_hoisted_42","_hoisted_43","rotate","_hoisted_44","_hoisted_45","scale_x","_hoisted_46","_hoisted_47","scale_y","_hoisted_48","_hoisted_49","fps","onFpsChanged","_hoisted_50","_hoisted_51","grayscale","onGrayscaleChanged","_component_Slot","mixins","Utils","props","cameraPlugin","String","required","data","computed","params","this","parseInt","parseFloat","methods","getUrl","plugin","action","Object","entries","filter","entry","map","k","v","join","_startStreaming","stream_format","_capture","onFrameLoaded","degToRad","deg","Math","PI","rot","width","round","abs","cos","sin","height","window","innerWidth","innerHeight","frameContainer","style","request","created","config","$root","mounted","frame","addEventListener","$watch","__exports__","components","Modal","CameraMixin","location","protocol","host","render","_createBlock","_component_Camera","Camera"],"sourceRoot":""} \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1706.5142eaa5.js b/platypush/backend/http/webapp/dist/static/js/1706.5142eaa5.js new file mode 100644 index 00000000..ead1360b --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1706.5142eaa5.js @@ -0,0 +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.5142eaa5.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1706.5142eaa5.js.map b/platypush/backend/http/webapp/dist/static/js/1706.5142eaa5.js.map new file mode 100644 index 00000000..891f6439 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1706.5142eaa5.js.map @@ -0,0 +1 @@ +{"version":3,"file":"static/js/1706.5142eaa5.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.4ba7d261.js b/platypush/backend/http/webapp/dist/static/js/1807.4ba7d261.js new file mode 100644 index 00000000..4773fd64 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1807.4ba7d261.js @@ -0,0 +1,2 @@ +"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(7658),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.4ba7d261.js.map \ No newline at end of file diff --git a/platypush/backend/http/webapp/dist/static/js/1807.4ba7d261.js.map b/platypush/backend/http/webapp/dist/static/js/1807.4ba7d261.js.map new file mode 100644 index 00000000..176b58a6 --- /dev/null +++ b/platypush/backend/http/webapp/dist/static/js/1807.4ba7d261.js.map @@ -0,0 +1 @@ +{"version":3,"file":"static/js/1807.4ba7d261.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,gJC3G1C1F,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":["