diff --git a/platypush/backend/http/app/routes/logo.py b/platypush/backend/http/app/routes/logo.py
new file mode 100644
index 000000000..42d91f18e
--- /dev/null
+++ b/platypush/backend/http/app/routes/logo.py
@@ -0,0 +1,185 @@
+from dataclasses import dataclass
+import math
+from typing import Tuple
+
+from flask import Blueprint, make_response, request
+
+
+logo = Blueprint('logo', __name__)
+
+# Declare routes list
+__routes__ = [
+ logo,
+]
+
+
+@dataclass
+class Gear:
+ """
+ A utility class used to model the gears in the application's logo.
+ """
+
+ center: Tuple[float, float]
+ outer_radius: float
+ inner_radius: float
+ color: str = "currentColor"
+ background: str = ""
+ num_spikes: int = 0
+ spike_max_base: float = 0
+ spike_min_base: float = 0
+ spike_height: float = 0
+ alpha_offset: float = 0
+
+ def to_svg(self) -> str:
+ """
+ Returns the SVG representation of a gear.
+ """
+
+ # Generate the basic circle
+ svg = f"""
+
+ """
+
+ # Generate the spikes
+ for i in range(self.num_spikes):
+ # Iterate for alpha -> [0, 2*pi]
+ alpha = (2 * math.pi * i) / self.num_spikes
+ # Calculate the base angle for the major base of the gear polygon
+ maj_delta_alpha = math.asin(self.spike_max_base / (2 * self.outer_radius))
+ # Calculate the points of the gear polygon's major base
+ maj_base = (
+ (
+ self.center[0]
+ + self.outer_radius
+ * math.cos(alpha + maj_delta_alpha + self.alpha_offset),
+ self.center[1]
+ + self.outer_radius
+ * math.sin(alpha + maj_delta_alpha + self.alpha_offset),
+ ),
+ (
+ self.center[0]
+ + self.outer_radius
+ * math.cos(alpha - maj_delta_alpha + self.alpha_offset),
+ self.center[1]
+ + self.outer_radius
+ * math.sin(alpha - maj_delta_alpha + self.alpha_offset),
+ ),
+ )
+
+ # Height of the gear relative to the circle's center
+ h = self.outer_radius * math.cos(maj_delta_alpha) + self.spike_height
+ # Calculate the base angle for the minor base of the gear polygon
+ min_delta_alpha = math.asin(self.spike_min_base / (2 * h))
+ # Calculate the points of the gear polygon's minor base
+ min_base = (
+ (
+ self.center[0]
+ + h * math.cos(alpha - min_delta_alpha + self.alpha_offset),
+ self.center[1]
+ + h * math.sin(alpha - min_delta_alpha + self.alpha_offset),
+ ),
+ (
+ self.center[0]
+ + h * math.cos(alpha + min_delta_alpha + self.alpha_offset),
+ self.center[1]
+ + h * math.sin(alpha + min_delta_alpha + self.alpha_offset),
+ ),
+ )
+
+ # Flatten the polygon's points
+ svg_points = " ".join(
+ [f"{point[0]},{point[1]}" for point in [*maj_base, *min_base]]
+ )
+
+ # Serialize the gear polygon to SVG
+ svg += f"""
+ """
+
+ return svg
+
+
+# Properties of the two gears on the logo
+gears = [
+ Gear(
+ center=(32.9, 34.5),
+ outer_radius=22.6,
+ inner_radius=12.4,
+ num_spikes=12,
+ spike_max_base=9,
+ spike_min_base=4.3,
+ spike_height=10.16,
+ ),
+ Gear(
+ center=(65.5, 70.5),
+ outer_radius=14.4,
+ inner_radius=8.5,
+ num_spikes=7,
+ spike_max_base=9,
+ spike_min_base=4.3,
+ spike_height=7.5,
+ alpha_offset=math.pi / 6.6,
+ ),
+]
+
+
+template_start = """
+"
+
+
+@logo.route('/logo.svg', methods=['GET'])
+def logo_path():
+ """
+ This path dynamically generates the logo image as a parametrizable vector SVG.
+
+ Parameters:
+
+ - ``size``: Size of the image in pixels (default: 256)
+ - ``bg``: Background color (default: "none")
+ - ``fg``: Foreground color (default: "currentColor")
+
+ """
+ size = request.args.get("size", 256)
+ bg = request.args.get("bg", "none")
+ fg = request.args.get("fg", "currentColor")
+ svg = template_start.format(
+ width=size,
+ height=size,
+ bg_color=bg,
+ )
+
+ for gear in gears:
+ gear.color = fg
+ gear.background = bg
+ svg += gear.to_svg()
+
+ # "Play" triangle on the logo
+ svg += """\n\t\t"""
+ svg += template_end
+
+ rs = make_response(svg)
+ rs.headers.update({"Content-Type": "image/svg+xml"})
+ return rs
+
+
+# vim:sw=4:ts=4:et:
diff --git a/platypush/backend/http/app/routes/pwa.py b/platypush/backend/http/app/routes/pwa.py
new file mode 100644
index 000000000..1462dc8e5
--- /dev/null
+++ b/platypush/backend/http/app/routes/pwa.py
@@ -0,0 +1,113 @@
+from flask import Blueprint, jsonify, send_from_directory
+
+from platypush.config import Config
+from platypush.backend.http.app import template_folder
+
+pwa = Blueprint('pwa', __name__, template_folder=template_folder)
+
+# Declare routes list
+__routes__ = [
+ pwa,
+]
+
+
+@pwa.route('/manifest.json', methods=['GET'])
+def manifest_json():
+ """Generated manifest file for the PWA"""
+ return jsonify(
+ {
+ "name": f'Platypush @ {Config.get("device_id")}',
+ "short_name": Config.get('device_id'),
+ "icons": [
+ {
+ "src": "/img/icons/favicon-16x16.png",
+ "sizes": "16x16",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/favicon-32x32.png",
+ "sizes": "32x32",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/apple-touch-icon-60x60.png",
+ "sizes": "60x60",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/apple-touch-icon-76x76.png",
+ "sizes": "76x76",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/apple-touch-icon-120x120.png",
+ "sizes": "120x120",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/msapplication-icon-144x144.png",
+ "sizes": "144x144",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/mstile-150x150.png",
+ "sizes": "150x150",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/apple-touch-icon-152x152.png",
+ "sizes": "152x152",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/apple-touch-icon-180x180.png",
+ "sizes": "180x180",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/android-chrome-maskable-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "purpose": "maskable",
+ },
+ {
+ "src": "/img/icons/logo-256x256.png",
+ "sizes": "256x256",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/android-chrome-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png",
+ },
+ {
+ "src": "/img/icons/android-chrome-maskable-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png",
+ "purpose": "maskable",
+ },
+ ],
+ "gcm_sender_id": "",
+ "gcm_user_visible_only": True,
+ "start_url": "/",
+ "permissions": ["gcm"],
+ "orientation": "portrait",
+ "display": "standalone",
+ "theme_color": "#000000",
+ "background_color": "#ffffff",
+ }
+ )
+
+
+@pwa.route('/service-worker.js', methods=['GET'])
+def service_worker_js():
+ """URL that serves the service worker for the PWA"""
+ return send_from_directory(template_folder, 'service-worker.js')
+
+
+# vim:sw=4:ts=4:et:
diff --git a/platypush/backend/http/webapp/dist/img/icons/android-chrome-192x192.png b/platypush/backend/http/webapp/dist/img/icons/android-chrome-192x192.png
new file mode 100644
index 000000000..d96f4e51b
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/android-chrome-192x192.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/android-chrome-512x512.png b/platypush/backend/http/webapp/dist/img/icons/android-chrome-512x512.png
new file mode 100644
index 000000000..7af8f6f0d
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/android-chrome-512x512.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/android-chrome-maskable-192x192.png b/platypush/backend/http/webapp/dist/img/icons/android-chrome-maskable-192x192.png
new file mode 100644
index 000000000..d96f4e51b
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/android-chrome-maskable-192x192.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/android-chrome-maskable-512x512.png b/platypush/backend/http/webapp/dist/img/icons/android-chrome-maskable-512x512.png
new file mode 100644
index 000000000..7af8f6f0d
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/android-chrome-maskable-512x512.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-120x120.png b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-120x120.png
new file mode 100644
index 000000000..466dea978
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-120x120.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-152x152.png b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-152x152.png
new file mode 100644
index 000000000..41f84cef6
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-152x152.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-180x180.png b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-180x180.png
new file mode 100644
index 000000000..572623cf2
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-180x180.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-60x60.png b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-60x60.png
new file mode 100644
index 000000000..c8382654c
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-60x60.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-76x76.png b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-76x76.png
new file mode 100644
index 000000000..82c76c710
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon-76x76.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon.png b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon.png
new file mode 100644
index 000000000..572623cf2
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/apple-touch-icon.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/favicon-16x16.png b/platypush/backend/http/webapp/dist/img/icons/favicon-16x16.png
new file mode 100644
index 000000000..32b6ef7a2
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/favicon-16x16.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/favicon-32x32.png b/platypush/backend/http/webapp/dist/img/icons/favicon-32x32.png
new file mode 100644
index 000000000..3db02a47a
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/favicon-32x32.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/favicon.svg b/platypush/backend/http/webapp/dist/img/icons/favicon.svg
new file mode 100644
index 000000000..a9b58c707
--- /dev/null
+++ b/platypush/backend/http/webapp/dist/img/icons/favicon.svg
@@ -0,0 +1,39 @@
+
diff --git a/platypush/backend/http/webapp/dist/img/icons/msapplication-icon-144x144.png b/platypush/backend/http/webapp/dist/img/icons/msapplication-icon-144x144.png
new file mode 100644
index 000000000..a26117b03
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/msapplication-icon-144x144.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/mstile-150x150.png b/platypush/backend/http/webapp/dist/img/icons/mstile-150x150.png
new file mode 100644
index 000000000..ffeeacbe2
Binary files /dev/null and b/platypush/backend/http/webapp/dist/img/icons/mstile-150x150.png differ
diff --git a/platypush/backend/http/webapp/dist/img/icons/safari-pinned-tab.svg b/platypush/backend/http/webapp/dist/img/icons/safari-pinned-tab.svg
new file mode 100644
index 000000000..49fa75f52
--- /dev/null
+++ b/platypush/backend/http/webapp/dist/img/icons/safari-pinned-tab.svg
@@ -0,0 +1,39 @@
+
diff --git a/platypush/backend/http/webapp/dist/index.html b/platypush/backend/http/webapp/dist/index.html
index 9379255e1..668c220cd 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/manifest.json b/platypush/backend/http/webapp/dist/manifest.json
new file mode 100644
index 000000000..aeabb529f
--- /dev/null
+++ b/platypush/backend/http/webapp/dist/manifest.json
@@ -0,0 +1 @@
+{"name":"Platypush","short_name":"Platypush","theme_color":"#ffffff","icons":[{"src":"./img/icons/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"./img/icons/android-chrome-512x512.png","sizes":"512x512","type":"image/png"},{"src":"./img/icons/android-chrome-maskable-192x192.png","sizes":"192x192","type":"image/png","purpose":"maskable"},{"src":"./img/icons/android-chrome-maskable-512x512.png","sizes":"512x512","type":"image/png","purpose":"maskable"}],"start_url":".","display":"standalone","background_color":"#000000"}
\ 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
new file mode 100644
index 000000000..5b14ce681
--- /dev/null
+++ b/platypush/backend/http/webapp/dist/service-worker.js
@@ -0,0 +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),a={module:{uri:e},exports:t,require:u};s[e]=Promise.all(n.map((i=>a[i]||u(i)))).then((i=>(r(...i),t)))}}define(["./workbox-79ffe3e0"],(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:"bd8c72bb0b31bd60e70a1a2658509849"},{url:"/manifest.json",revision:"8a45dcffc3380b17da6ea17291b43e00"},{url:"/static/css/1196.7b6fd66b.css",revision:null},{url:"/static/css/1300.96309a62.css",revision:null},{url:"/static/css/1767.3f0d1aca.css",revision:null},{url:"/static/css/1798.d0061372.css",revision:null},{url:"/static/css/1818.8baa291c.css",revision:null},{url:"/static/css/201.4502d090.css",revision:null},{url:"/static/css/2346.d171e8f5.css",revision:null},{url:"/static/css/2790.19201b3b.css",revision:null},{url:"/static/css/2806.4f590a38.css",revision:null},{url:"/static/css/2989.0f93a679.css",revision:null},{url:"/static/css/3194.3df38d58.css",revision:null},{url:"/static/css/3303.8fdecbd9.css",revision:null},{url:"/static/css/345.19cf9d0d.css",revision:null},{url:"/static/css/346.1706fbde.css",revision:null},{url:"/static/css/3490.a327ba57.css",revision:null},{url:"/static/css/3724.0fc70dd7.css",revision:null},{url:"/static/css/4021.fff19b0b.css",revision:null},{url:"/static/css/4196.ea56d2c9.css",revision:null},{url:"/static/css/4848.c9eab7f4.css",revision:null},{url:"/static/css/4981.94bc04e2.css",revision:null},{url:"/static/css/5193.37da0a16.css",revision:null},{url:"/static/css/5199.fe9cee1a.css",revision:null},{url:"/static/css/5207.2b89418c.css",revision:null},{url:"/static/css/5498.9a543237.css",revision:null},{url:"/static/css/5824.c1f06cf8.css",revision:null},{url:"/static/css/5924.99a5e5ce.css",revision:null},{url:"/static/css/6003.986b3ae1.css",revision:null},{url:"/static/css/6013.d0054b15.css",revision:null},{url:"/static/css/615.8b95243c.css",revision:null},{url:"/static/css/6164.72aca991.css",revision:null},{url:"/static/css/6358.ebcb5dfd.css",revision:null},{url:"/static/css/65.45022021.css",revision:null},{url:"/static/css/6739.11bad71d.css",revision:null},{url:"/static/css/675.4cafd794.css",revision:null},{url:"/static/css/6815.5eeaa8c8.css",revision:null},{url:"/static/css/6833.b5d8115c.css",revision:null},{url:"/static/css/6899.748a42fd.css",revision:null},{url:"/static/css/7141.8ae8ce03.css",revision:null},{url:"/static/css/7420.f8b46177.css",revision:null},{url:"/static/css/7503.42ed5848.css",revision:null},{url:"/static/css/7782.a9f0ac90.css",revision:null},{url:"/static/css/8135.59c68eb5.css",revision:null},{url:"/static/css/8444.f8d1e9c7.css",revision:null},{url:"/static/css/8589.e7924cac.css",revision:null},{url:"/static/css/906.cb3bce26.css",revision:null},{url:"/static/css/9276.d21e868a.css",revision:null},{url:"/static/css/9387.317149bb.css",revision:null},{url:"/static/css/9418.55ebc1ed.css",revision:null},{url:"/static/css/9450.ef02fb64.css",revision:null},{url:"/static/css/9539.17613a3b.css",revision:null},{url:"/static/css/9575.21327597.css",revision:null},{url:"/static/css/9978.b34577f7.css",revision:null},{url:"/static/css/app.36a25406.css",revision:null},{url:"/static/css/chunk-vendors.0fcd36f0.css",revision:null},{url:"/static/fonts/fa-brands-400.7fa789ab.ttf",revision:null},{url:"/static/fonts/fa-brands-400.859fc388.woff2",revision:null},{url:"/static/fonts/fa-regular-400.2ffd018f.woff2",revision:null},{url:"/static/fonts/fa-regular-400.da02cb7e.ttf",revision:null},{url:"/static/fonts/fa-solid-900.3a463ec3.ttf",revision:null},{url:"/static/fonts/fa-solid-900.40ddefd7.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/1196.f4c25ec1.js",revision:null},{url:"/static/js/1595.cf573de8.js",revision:null},{url:"/static/js/1767.25bd60ff.js",revision:null},{url:"/static/js/1798.2ea76630.js",revision:null},{url:"/static/js/1818.d8f79120.js",revision:null},{url:"/static/js/1938.1dc95872.js",revision:null},{url:"/static/js/201.b165d798.js",revision:null},{url:"/static/js/2346.9a487752.js",revision:null},{url:"/static/js/2362.620095dd.js",revision:null},{url:"/static/js/2466.633bb83f.js",revision:null},{url:"/static/js/2790.4b108fb8.js",revision:null},{url:"/static/js/2806.e32037e8.js",revision:null},{url:"/static/js/2820.07ee3664.js",revision:null},{url:"/static/js/3194.256c2da8.js",revision:null},{url:"/static/js/3249.a2010c2d.js",revision:null},{url:"/static/js/3303.028580a6.js",revision:null},{url:"/static/js/345.8d14f37b.js",revision:null},{url:"/static/js/346.647c3d99.js",revision:null},{url:"/static/js/3724.a557791e.js",revision:null},{url:"/static/js/4196.f85ff63e.js",revision:null},{url:"/static/js/4548.c7642733.js",revision:null},{url:"/static/js/4848.ca77e67b.js",revision:null},{url:"/static/js/5111.f606018d.js",revision:null},{url:"/static/js/5157.f2273a80.js",revision:null},{url:"/static/js/5193.1de6bb98.js",revision:null},{url:"/static/js/5199.03545ba6.js",revision:null},{url:"/static/js/5207.b6625280.js",revision:null},{url:"/static/js/5498.ddfaadb5.js",revision:null},{url:"/static/js/5528.10b051ba.js",revision:null},{url:"/static/js/5824.d14935bb.js",revision:null},{url:"/static/js/5895.bc039cca.js",revision:null},{url:"/static/js/5924.a2919fe4.js",revision:null},{url:"/static/js/6003.c76e25e0.js",revision:null},{url:"/static/js/6013.5c85c65a.js",revision:null},{url:"/static/js/6027.e3b113ee.js",revision:null},{url:"/static/js/615.25a0ebcb.js",revision:null},{url:"/static/js/6164.2c2c3fba.js",revision:null},{url:"/static/js/6358.46615b4c.js",revision:null},{url:"/static/js/65.a4e6662a.js",revision:null},{url:"/static/js/6509.9ca36429.js",revision:null},{url:"/static/js/6739.14f222c1.js",revision:null},{url:"/static/js/675.496d097f.js",revision:null},{url:"/static/js/6815.a11912ee.js",revision:null},{url:"/static/js/6833.65afb884.js",revision:null},{url:"/static/js/6899.8c784f84.js",revision:null},{url:"/static/js/699.b7975861.js",revision:null},{url:"/static/js/7141.e4e94ba3.js",revision:null},{url:"/static/js/7420.e53d9d48.js",revision:null},{url:"/static/js/7503.2c161f6d.js",revision:null},{url:"/static/js/767.32c26b46.js",revision:null},{url:"/static/js/8135.bb2ac7e3.js",revision:null},{url:"/static/js/8184.c4135de2.js",revision:null},{url:"/static/js/8444.d0d1fdb2.js",revision:null},{url:"/static/js/906.12e72134.js",revision:null},{url:"/static/js/9276.74343d50.js",revision:null},{url:"/static/js/9299.710819a1.js",revision:null},{url:"/static/js/9369.f7907b71.js",revision:null},{url:"/static/js/9387.194bcb15.js",revision:null},{url:"/static/js/9418.dfb3427c.js",revision:null},{url:"/static/js/9450.0b6d3902.js",revision:null},{url:"/static/js/9539.7a062356.js",revision:null},{url:"/static/js/9633.23b95cb0.js",revision:null},{url:"/static/js/9895.16e6387b.js",revision:null},{url:"/static/js/9978.f8ee0318.js",revision:null},{url:"/static/js/app.0b22e1b7.js",revision:null},{url:"/static/js/chunk-vendors.0f6060b6.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
new file mode 100644
index 000000000..6af0537f4
--- /dev/null
+++ b/platypush/backend/http/webapp/dist/service-worker.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"service-worker.js","sources":["../../../../../../../../tmp/dbe9b3c2fbf1b132bf3621ebf084531e/service-worker.js"],"sourcesContent":["import {setCacheNameDetails as workbox_core_setCacheNameDetails} from '/home/blacklight/git_tree/platypush/platypush/backend/http/webapp/node_modules/workbox-core/setCacheNameDetails.mjs';\nimport {precacheAndRoute as workbox_precaching_precacheAndRoute} from '/home/blacklight/git_tree/platypush/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\": \"bd8c72bb0b31bd60e70a1a2658509849\"\n },\n {\n \"url\": \"/manifest.json\",\n \"revision\": \"8a45dcffc3380b17da6ea17291b43e00\"\n },\n {\n \"url\": \"/static/css/1196.7b6fd66b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1300.96309a62.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1767.3f0d1aca.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1798.d0061372.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/1818.8baa291c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/201.4502d090.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2346.d171e8f5.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2790.19201b3b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2806.4f590a38.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/2989.0f93a679.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3194.3df38d58.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3303.8fdecbd9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/345.19cf9d0d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/346.1706fbde.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3490.a327ba57.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/3724.0fc70dd7.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4021.fff19b0b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4196.ea56d2c9.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4848.c9eab7f4.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/4981.94bc04e2.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5193.37da0a16.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5199.fe9cee1a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5207.2b89418c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5498.9a543237.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5824.c1f06cf8.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/5924.99a5e5ce.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6003.986b3ae1.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6013.d0054b15.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/615.8b95243c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6164.72aca991.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6358.ebcb5dfd.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/65.45022021.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6739.11bad71d.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/675.4cafd794.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6815.5eeaa8c8.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6833.b5d8115c.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/6899.748a42fd.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7141.8ae8ce03.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7420.f8b46177.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7503.42ed5848.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/7782.a9f0ac90.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8135.59c68eb5.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8444.f8d1e9c7.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/8589.e7924cac.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/906.cb3bce26.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9276.d21e868a.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9387.317149bb.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9418.55ebc1ed.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9450.ef02fb64.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9539.17613a3b.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9575.21327597.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/9978.b34577f7.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/app.36a25406.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/css/chunk-vendors.0fcd36f0.css\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-brands-400.7fa789ab.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-brands-400.859fc388.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-regular-400.2ffd018f.woff2\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-regular-400.da02cb7e.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-solid-900.3a463ec3.ttf\",\n \"revision\": null\n },\n {\n \"url\": \"/static/fonts/fa-solid-900.40ddefd7.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/1196.f4c25ec1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1595.cf573de8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1767.25bd60ff.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1798.2ea76630.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1818.d8f79120.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/1938.1dc95872.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/201.b165d798.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2346.9a487752.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2362.620095dd.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2466.633bb83f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2790.4b108fb8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2806.e32037e8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/2820.07ee3664.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3194.256c2da8.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3249.a2010c2d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3303.028580a6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/345.8d14f37b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/346.647c3d99.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/3724.a557791e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4196.f85ff63e.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4548.c7642733.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/4848.ca77e67b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5111.f606018d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5157.f2273a80.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5193.1de6bb98.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5199.03545ba6.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5207.b6625280.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5498.ddfaadb5.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5528.10b051ba.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5824.d14935bb.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5895.bc039cca.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/5924.a2919fe4.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6003.c76e25e0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6013.5c85c65a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6027.e3b113ee.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/615.25a0ebcb.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6164.2c2c3fba.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6358.46615b4c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/65.a4e6662a.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6509.9ca36429.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6739.14f222c1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/675.496d097f.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6815.a11912ee.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6833.65afb884.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/6899.8c784f84.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/699.b7975861.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7141.e4e94ba3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7420.e53d9d48.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/7503.2c161f6d.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/767.32c26b46.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8135.bb2ac7e3.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8184.c4135de2.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/8444.d0d1fdb2.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/906.12e72134.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9276.74343d50.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9299.710819a1.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9369.f7907b71.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9387.194bcb15.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9418.dfb3427c.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9450.0b6d3902.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9539.7a062356.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9633.23b95cb0.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9895.16e6387b.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/9978.f8ee0318.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/app.0b22e1b7.js\",\n \"revision\": null\n },\n {\n \"url\": \"/static/js/chunk-vendors.0f6060b6.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,aACN,IAWHC,EAAAA,iBAAoC,CAClC,CACEC,IAAO,qBACKC,SAAA,oCAEd,CACED,IAAO,qBACKC,SAAA,oCAEd,CACED,IAAO,sBACKC,SAAA,oCAEd,CACED,IAAO,kBACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,0CACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,qCACKC,SAAA,oCAEd,CACED,IAAO,yCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,0CACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,sCACKC,SAAA,oCAEd,CACED,IAAO,0CACKC,SAAA,oCAEd,CACED,IAAO,kBACKC,SAAA,oCAEd,CACED,IAAO,yBACKC,SAAA,oCAEd,CACED,IAAO,oBACKC,SAAA,oCAEd,CACED,IAAO,oBACKC,SAAA,oCAEd,CACED,IAAO,8BACKC,SAAA,oCAEd,CACED,IAAO,gBACKC,SAAA,oCAEd,CACED,IAAO,mBACKC,SAAA,oCAEd,CACED,IAAO,cACKC,SAAA,oCAEd,CACED,IAAO,iBACKC,SAAA,oCAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,+BACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,+BACKC,SAAA,MAEd,CACED,IAAO,+BACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,+BACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,+BACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,+BACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,+BACKC,SAAA,MAEd,CACED,IAAO,yCACKC,SAAA,MAEd,CACED,IAAO,2CACKC,SAAA,MAEd,CACED,IAAO,6CACKC,SAAA,MAEd,CACED,IAAO,8CACKC,SAAA,MAEd,CACED,IAAO,4CACKC,SAAA,MAEd,CACED,IAAO,0CACKC,SAAA,MAEd,CACED,IAAO,4CACKC,SAAA,MAEd,CACED,IAAO,iDACKC,SAAA,MAEd,CACED,IAAO,kDACKC,SAAA,MAEd,CACED,IAAO,2CACKC,SAAA,MAEd,CACED,IAAO,0CACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8CACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,iCACKC,SAAA,MAEd,CACED,IAAO,iCACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,kCACKC,SAAA,MAEd,CACED,IAAO,kCACKC,SAAA,MAEd,CACED,IAAO,kCACKC,SAAA,MAEd,CACED,IAAO,kCACKC,SAAA,MAEd,CACED,IAAO,kCACKC,SAAA,MAEd,CACED,IAAO,kCACKC,SAAA,MAEd,CACED,IAAO,kCACKC,SAAA,MAEd,CACED,IAAO,kCACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,oCACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,gCACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,6BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,6BACKC,SAAA,MAEd,CACED,IAAO,6BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,6BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,4BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,6BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,6BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,6BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,6BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,8BACKC,SAAA,MAEd,CACED,IAAO,6BACKC,SAAA,MAEd,CACED,IAAO,uCACKC,SAAA,OAEb,CAAA"}
\ No newline at end of file
diff --git a/platypush/backend/http/webapp/dist/static/css/app.7cb6eac2.css b/platypush/backend/http/webapp/dist/static/css/app.36a25406.css
similarity index 57%
rename from platypush/backend/http/webapp/dist/static/css/app.7cb6eac2.css
rename to platypush/backend/http/webapp/dist/static/css/app.36a25406.css
index 002897cd4..7a97fe2c6 100644
--- a/platypush/backend/http/webapp/dist/static/css/app.7cb6eac2.css
+++ b/platypush/backend/http/webapp/dist/static/css/app.36a25406.css
@@ -14,4 +14,4 @@
* Font Awesome Free 6.1.1 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 2022 Fonticons, Inc.
- */:host,:root{--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.859fc388.woff2) format("woff2"),url(/static/fonts/fa-brands-400.7fa789ab.ttf) format("truetype")}.fa-brands,.fab{font-family:Font Awesome\ 6 Brands;font-weight:400}.fa-42-group:before,.fa-innosoft:before{content:""}.fa-500px:before{content:""}.fa-accessible-icon:before{content:""}.fa-accusoft:before{content:""}.fa-adn:before{content:""}.fa-adversal:before{content:""}.fa-affiliatetheme:before{content:""}.fa-airbnb:before{content:""}.fa-algolia:before{content:""}.fa-alipay:before{content:""}.fa-amazon:before{content:""}.fa-amazon-pay:before{content:""}.fa-amilia:before{content:""}.fa-android:before{content:""}.fa-angellist:before{content:""}.fa-angrycreative:before{content:""}.fa-angular:before{content:""}.fa-app-store:before{content:""}.fa-app-store-ios:before{content:""}.fa-apper:before{content:""}.fa-apple:before{content:""}.fa-apple-pay:before{content:""}.fa-artstation:before{content:""}.fa-asymmetrik:before{content:""}.fa-atlassian:before{content:""}.fa-audible:before{content:""}.fa-autoprefixer:before{content:""}.fa-avianex:before{content:""}.fa-aviato:before{content:""}.fa-aws:before{content:""}.fa-bandcamp:before{content:""}.fa-battle-net:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-bilibili:before{content:""}.fa-bimobject:before{content:""}.fa-bitbucket:before{content:""}.fa-bitcoin:before{content:""}.fa-bity:before{content:""}.fa-black-tie:before{content:""}.fa-blackberry:before{content:""}.fa-blogger:before{content:""}.fa-blogger-b:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-bootstrap:before{content:""}.fa-bots:before{content:""}.fa-btc:before{content:""}.fa-buffer:before{content:""}.fa-buromobelexperte:before{content:""}.fa-buy-n-large:before{content:""}.fa-buysellads:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-cc-diners-club:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-cc-visa:before{content:""}.fa-centercode:before{content:""}.fa-centos:before{content:""}.fa-chrome:before{content:""}.fa-chromecast:before{content:""}.fa-cloudflare:before{content:""}.fa-cloudscale:before{content:""}.fa-cloudsmith:before{content:""}.fa-cloudversify:before{content:""}.fa-cmplid:before{content:""}.fa-codepen:before{content:""}.fa-codiepie:before{content:""}.fa-confluence:before{content:""}.fa-connectdevelop:before{content:""}.fa-contao:before{content:""}.fa-cotton-bureau:before{content:""}.fa-cpanel:before{content:""}.fa-creative-commons:before{content:""}.fa-creative-commons-by:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-creative-commons-share:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-critical-role:before{content:""}.fa-css3:before{content:""}.fa-css3-alt:before{content:""}.fa-cuttlefish:before{content:""}.fa-d-and-d:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-dailymotion:before{content:""}.fa-dashcube:before{content:""}.fa-deezer:before{content:""}.fa-delicious:before{content:""}.fa-deploydog:before{content:""}.fa-deskpro:before{content:""}.fa-dev:before{content:""}.fa-deviantart:before{content:""}.fa-dhl:before{content:""}.fa-diaspora:before{content:""}.fa-digg:before{content:""}.fa-digital-ocean:before{content:""}.fa-discord:before{content:""}.fa-discourse:before{content:""}.fa-dochub:before{content:""}.fa-docker:before{content:""}.fa-draft2digital:before{content:""}.fa-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-dropbox:before{content:""}.fa-drupal:before{content:""}.fa-dyalog:before{content:""}.fa-earlybirds:before{content:""}.fa-ebay:before{content:""}.fa-edge:before{content:""}.fa-edge-legacy:before{content:""}.fa-elementor:before{content:""}.fa-ello:before{content:""}.fa-ember:before{content:""}.fa-empire:before{content:""}.fa-envira:before{content:""}.fa-erlang:before{content:""}.fa-ethereum:before{content:""}.fa-etsy:before{content:""}.fa-evernote:before{content:""}.fa-expeditedssl:before{content:""}.fa-facebook:before{content:""}.fa-facebook-f:before{content:""}.fa-facebook-messenger:before{content:""}.fa-facebook-square:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-fedex:before{content:""}.fa-fedora:before{content:""}.fa-figma:before{content:""}.fa-firefox:before{content:""}.fa-firefox-browser:before{content:""}.fa-first-order:before{content:""}.fa-first-order-alt:before{content:""}.fa-firstdraft:before{content:""}.fa-flickr:before{content:""}.fa-flipboard:before{content:""}.fa-fly:before{content:""}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:""}.fa-fonticons:before{content:""}.fa-fonticons-fi:before{content:""}.fa-fort-awesome:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-forumbee:before{content:""}.fa-foursquare:before{content:""}.fa-free-code-camp:before{content:""}.fa-freebsd:before{content:""}.fa-fulcrum:before{content:""}.fa-galactic-republic:before{content:""}.fa-galactic-senate:before{content:""}.fa-get-pocket:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-git:before{content:""}.fa-git-alt:before{content:""}.fa-git-square:before{content:""}.fa-github:before{content:""}.fa-github-alt:before{content:""}.fa-github-square:before{content:""}.fa-gitkraken:before{content:""}.fa-gitlab:before{content:""}.fa-gitter:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-gofore:before{content:""}.fa-golang:before{content:""}.fa-goodreads:before{content:""}.fa-goodreads-g:before{content:""}.fa-google:before{content:""}.fa-google-drive:before{content:""}.fa-google-pay:before{content:""}.fa-google-play:before{content:""}.fa-google-plus:before{content:""}.fa-google-plus-g:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-wallet:before{content:""}.fa-gratipay:before{content:""}.fa-grav:before{content:""}.fa-gripfire:before{content:""}.fa-grunt:before{content:""}.fa-guilded:before{content:""}.fa-gulp:before{content:""}.fa-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-hackerrank:before{content:""}.fa-hashnode:before{content:""}.fa-hips:before{content:""}.fa-hire-a-helper:before{content:""}.fa-hive:before{content:""}.fa-hooli:before{content:""}.fa-hornbill:before{content:""}.fa-hotjar:before{content:""}.fa-houzz:before{content:""}.fa-html5:before{content:""}.fa-hubspot:before{content:""}.fa-ideal:before{content:""}.fa-imdb:before{content:""}.fa-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-instalod:before{content:""}.fa-intercom:before{content:""}.fa-internet-explorer:before{content:""}.fa-invision:before{content:""}.fa-ioxhost:before{content:""}.fa-itch-io:before{content:""}.fa-itunes:before{content:""}.fa-itunes-note:before{content:""}.fa-java:before{content:""}.fa-jedi-order:before{content:""}.fa-jenkins:before{content:""}.fa-jira:before{content:""}.fa-joget:before{content:""}.fa-joomla:before{content:""}.fa-js:before{content:""}.fa-js-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-kaggle:before{content:""}.fa-keybase:before{content:""}.fa-keycdn:before{content:""}.fa-kickstarter:before{content:""}.fa-kickstarter-k:before{content:""}.fa-korvue:before{content:""}.fa-laravel:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-leanpub:before{content:""}.fa-less:before{content:""}.fa-line:before{content:""}.fa-linkedin:before{content:""}.fa-linkedin-in:before{content:""}.fa-linode:before{content:""}.fa-linux:before{content:""}.fa-lyft:before{content:""}.fa-magento:before{content:""}.fa-mailchimp:before{content:""}.fa-mandalorian:before{content:""}.fa-markdown:before{content:""}.fa-mastodon:before{content:""}.fa-maxcdn:before{content:""}.fa-mdb:before{content:""}.fa-medapps:before{content:""}.fa-medium-m:before,.fa-medium:before{content:""}.fa-medrt:before{content:""}.fa-meetup:before{content:""}.fa-megaport:before{content:""}.fa-mendeley:before{content:""}.fa-microblog:before{content:""}.fa-microsoft:before{content:""}.fa-mix:before{content:""}.fa-mixcloud:before{content:""}.fa-mixer:before{content:""}.fa-mizuni:before{content:""}.fa-modx:before{content:""}.fa-monero:before{content:""}.fa-napster:before{content:""}.fa-neos:before{content:""}.fa-nfc-directional:before{content:""}.fa-nfc-symbol:before{content:""}.fa-nimblr:before{content:""}.fa-node:before{content:""}.fa-node-js:before{content:""}.fa-npm:before{content:""}.fa-ns8:before{content:""}.fa-nutritionix:before{content:""}.fa-octopus-deploy:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-old-republic:before{content:""}.fa-opencart:before{content:""}.fa-openid:before{content:""}.fa-opera:before{content:""}.fa-optin-monster:before{content:""}.fa-orcid:before{content:""}.fa-osi:before{content:""}.fa-padlet:before{content:""}.fa-page4:before{content:""}.fa-pagelines:before{content:""}.fa-palfed:before{content:""}.fa-patreon:before{content:""}.fa-paypal:before{content:""}.fa-perbyte:before{content:""}.fa-periscope:before{content:""}.fa-phabricator:before{content:""}.fa-phoenix-framework:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-php:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-square:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-p:before{content:""}.fa-pinterest-square:before{content:""}.fa-pix:before{content:""}.fa-playstation:before{content:""}.fa-product-hunt:before{content:""}.fa-pushed:before{content:""}.fa-python:before{content:""}.fa-qq:before{content:""}.fa-quinscape:before{content:""}.fa-quora:before{content:""}.fa-r-project:before{content:""}.fa-raspberry-pi:before{content:""}.fa-ravelry:before{content:""}.fa-react:before{content:""}.fa-reacteurope:before{content:""}.fa-readme:before{content:""}.fa-rebel:before{content:""}.fa-red-river:before{content:""}.fa-reddit:before{content:""}.fa-reddit-alien:before{content:""}.fa-reddit-square:before{content:""}.fa-redhat:before{content:""}.fa-renren:before{content:""}.fa-replyd:before{content:""}.fa-researchgate:before{content:""}.fa-resolving:before{content:""}.fa-rev:before{content:""}.fa-rocketchat:before{content:""}.fa-rockrms:before{content:""}.fa-rust:before{content:""}.fa-safari:before{content:""}.fa-salesforce:before{content:""}.fa-sass:before{content:""}.fa-schlix:before{content:""}.fa-screenpal:before{content:""}.fa-scribd:before{content:""}.fa-searchengin:before{content:""}.fa-sellcast:before{content:""}.fa-sellsy:before{content:""}.fa-servicestack:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-shopify:before{content:""}.fa-shopware:before{content:""}.fa-simplybuilt:before{content:""}.fa-sistrix:before{content:""}.fa-sith:before{content:""}.fa-sitrox:before{content:""}.fa-sketch:before{content:""}.fa-skyatlas:before{content:""}.fa-skype:before{content:""}.fa-slack-hash:before,.fa-slack:before{content:""}.fa-slideshare:before{content:""}.fa-snapchat-ghost:before,.fa-snapchat:before{content:""}.fa-snapchat-square:before{content:""}.fa-soundcloud:before{content:""}.fa-sourcetree:before{content:""}.fa-speakap:before{content:""}.fa-speaker-deck:before{content:""}.fa-spotify:before{content:""}.fa-square-font-awesome:before{content:""}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:""}.fa-squarespace:before{content:""}.fa-stack-exchange:before{content:""}.fa-stack-overflow:before{content:""}.fa-stackpath:before{content:""}.fa-staylinked:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-steam-symbol:before{content:""}.fa-sticker-mule:before{content:""}.fa-strava:before{content:""}.fa-stripe:before{content:""}.fa-stripe-s:before{content:""}.fa-studiovinari:before{content:""}.fa-stumbleupon:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-superpowers:before{content:""}.fa-supple:before{content:""}.fa-suse:before{content:""}.fa-swift:before{content:""}.fa-symfony:before{content:""}.fa-teamspeak:before{content:""}.fa-telegram-plane:before,.fa-telegram:before{content:""}.fa-tencent-weibo:before{content:""}.fa-the-red-yeti:before{content:""}.fa-themeco:before{content:""}.fa-themeisle:before{content:""}.fa-think-peaks:before{content:""}.fa-tiktok:before{content:""}.fa-trade-federation:before{content:""}.fa-trello:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-twitch:before{content:""}.fa-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-typo3:before{content:""}.fa-uber:before{content:""}.fa-ubuntu:before{content:""}.fa-uikit:before{content:""}.fa-umbraco:before{content:""}.fa-uncharted:before{content:""}.fa-uniregistry:before{content:""}.fa-unity:before{content:""}.fa-unsplash:before{content:""}.fa-untappd:before{content:""}.fa-ups:before{content:""}.fa-usb:before{content:""}.fa-usps:before{content:""}.fa-ussunnah:before{content:""}.fa-vaadin:before{content:""}.fa-viacoin:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-viber:before{content:""}.fa-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-vine:before{content:""}.fa-vk:before{content:""}.fa-vnv:before{content:""}.fa-vuejs:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-waze:before{content:""}.fa-weebly:before{content:""}.fa-weibo:before{content:""}.fa-weixin:before{content:""}.fa-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-whmcs:before{content:""}.fa-wikipedia-w:before{content:""}.fa-windows:before{content:""}.fa-wirsindhandwerk:before,.fa-wsh:before{content:""}.fa-wix:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-wodu:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-wordpress:before{content:""}.fa-wordpress-simple:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpexplorer:before{content:""}.fa-wpforms:before{content:""}.fa-wpressr:before{content:""}.fa-xbox:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-y-combinator:before{content:""}.fa-yahoo:before{content:""}.fa-yammer:before{content:""}.fa-yandex:before{content:""}.fa-yandex-international:before{content:""}.fa-yarn:before{content:""}.fa-yelp:before{content:""}.fa-yoast:before{content:""}.fa-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-zhihu: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}}.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]{cursor:pointer;text-decoration:none}[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}}.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]{cursor:pointer;text-decoration:none}[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}}.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]{cursor:pointer;text-decoration:none}[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}}.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]{cursor:pointer;text-decoration:none}[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-16cef6aa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-16cef6aa]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-16cef6aa]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-16cef6aa]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-16cef6aa]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-16cef6aa]:first-child{margin-left:26%!important}.col-offset-3[data-v-16cef6aa]:not(first-child){margin-left:30%!important}.col-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-16cef6aa]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-16cef6aa]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-16cef6aa]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-16cef6aa]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-16cef6aa]:first-child{margin-left:52%!important}.col-offset-6[data-v-16cef6aa]:not(first-child){margin-left:56%!important}.col-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-16cef6aa]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-16cef6aa]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-16cef6aa]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-16cef6aa]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-16cef6aa]:first-child{margin-left:78%!important}.col-offset-9[data-v-16cef6aa]:not(first-child){margin-left:82%!important}.col-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-16cef6aa]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-16cef6aa]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-16cef6aa]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-16cef6aa]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-1[data-v-16cef6aa]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-2[data-v-16cef6aa]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-3[data-v-16cef6aa]{margin-left:26%}.col-no-margin-s-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-4[data-v-16cef6aa]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-5[data-v-16cef6aa]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-6[data-v-16cef6aa]{margin-left:52%}.col-no-margin-s-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-7[data-v-16cef6aa]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-8[data-v-16cef6aa]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-9[data-v-16cef6aa]{margin-left:78%}.col-no-margin-s-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-10[data-v-16cef6aa]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-s-11[data-v-16cef6aa]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-s-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-16cef6aa]{display:none!important}.s-visible[data-v-16cef6aa]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-1[data-v-16cef6aa]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-2[data-v-16cef6aa]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-3[data-v-16cef6aa]{margin-left:26%}.col-no-margin-m-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-4[data-v-16cef6aa]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-5[data-v-16cef6aa]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-6[data-v-16cef6aa]{margin-left:52%}.col-no-margin-m-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-7[data-v-16cef6aa]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-8[data-v-16cef6aa]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-9[data-v-16cef6aa]{margin-left:78%}.col-no-margin-m-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-10[data-v-16cef6aa]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-m-11[data-v-16cef6aa]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-m-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-16cef6aa]{display:none!important}.m-visible[data-v-16cef6aa]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-1[data-v-16cef6aa]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-2[data-v-16cef6aa]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-3[data-v-16cef6aa]{margin-left:26%}.col-no-margin-l-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-4[data-v-16cef6aa]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-5[data-v-16cef6aa]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-6[data-v-16cef6aa]{margin-left:52%}.col-no-margin-l-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-7[data-v-16cef6aa]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-8[data-v-16cef6aa]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-9[data-v-16cef6aa]{margin-left:78%}.col-no-margin-l-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-10[data-v-16cef6aa]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-l-11[data-v-16cef6aa]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-l-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-16cef6aa]{display:none!important}.l-visible[data-v-16cef6aa]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-1[data-v-16cef6aa]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-2[data-v-16cef6aa]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-3[data-v-16cef6aa]{margin-left:26%}.col-no-margin-xl-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-4[data-v-16cef6aa]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-5[data-v-16cef6aa]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-6[data-v-16cef6aa]{margin-left:52%}.col-no-margin-xl-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-7[data-v-16cef6aa]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-8[data-v-16cef6aa]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-9[data-v-16cef6aa]{margin-left:78%}.col-no-margin-xl-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-10[data-v-16cef6aa]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xl-11[data-v-16cef6aa]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-16cef6aa]{display:none!important}.xl-visible[data-v-16cef6aa]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-1[data-v-16cef6aa]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-16cef6aa]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-2[data-v-16cef6aa]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-16cef6aa]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-3[data-v-16cef6aa]{margin-left:26%}.col-no-margin-xxl-3[data-v-16cef6aa]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-4[data-v-16cef6aa]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-16cef6aa]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-5[data-v-16cef6aa]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-16cef6aa]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-6[data-v-16cef6aa]{margin-left:52%}.col-no-margin-xxl-6[data-v-16cef6aa]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-7[data-v-16cef6aa]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-16cef6aa]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-8[data-v-16cef6aa]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-16cef6aa]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-9[data-v-16cef6aa]{margin-left:78%}.col-no-margin-xxl-9[data-v-16cef6aa]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-10[data-v-16cef6aa]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-16cef6aa]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-16cef6aa]:first-child{margin-left:0}.col-offset-xxl-11[data-v-16cef6aa]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-16cef6aa]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-16cef6aa]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-16cef6aa]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-16cef6aa]{display:none!important}.xxl-visible[data-v-16cef6aa]{display:block!important}}.vertical-center[data-v-16cef6aa]{display:flex;align-items:center}.horizontal-center[data-v-16cef6aa]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-16cef6aa]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-16cef6aa]{display:none!important}.no-content[data-v-16cef6aa]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-16cef6aa],.btn[data-v-16cef6aa],button[data-v-16cef6aa]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-16cef6aa],.btn-default[type=submit][data-v-16cef6aa],.btn.btn-primary[data-v-16cef6aa],.btn[type=submit][data-v-16cef6aa],button.btn-primary[data-v-16cef6aa],button[type=submit][data-v-16cef6aa]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-16cef6aa],.btn-default .icon[data-v-16cef6aa],button .icon[data-v-16cef6aa]{margin-right:.5em}input[type=password][data-v-16cef6aa],input[type=text][data-v-16cef6aa]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-16cef6aa]:focus,input[type=text][data-v-16cef6aa]:focus{border:1px solid #35b870}button[data-v-16cef6aa],input[data-v-16cef6aa]{outline:none}input[type=text][data-v-16cef6aa]:hover,textarea[data-v-16cef6aa]:hover{border:1px solid #9cdfb0}ul[data-v-16cef6aa]{margin:0;padding:0;list-style:none}a[data-v-16cef6aa]{cursor:pointer;text-decoration:none}[data-v-16cef6aa]::-webkit-scrollbar{width:.75em}[data-v-16cef6aa]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-16cef6aa]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-16cef6aa]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-16cef6aa]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-16cef6aa],input[type=password][data-v-16cef6aa],input[type=search][data-v-16cef6aa],input[type=text][data-v-16cef6aa]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-16cef6aa]:hover,input[type=password][data-v-16cef6aa]:hover,input[type=search][data-v-16cef6aa]:hover,input[type=text][data-v-16cef6aa]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-16cef6aa]:focus,input[type=password][data-v-16cef6aa]:focus,input[type=search][data-v-16cef6aa]:focus,input[type=text][data-v-16cef6aa]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-16cef6aa],input[type=password].with-icon[data-v-16cef6aa],input[type=search].with-icon[data-v-16cef6aa],input[type=text].with-icon[data-v-16cef6aa]{padding-left:.3em}input[type=search][data-v-16cef6aa],input[type=text][data-v-16cef6aa]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-16cef6aa]{animation-fill-mode:both;animation-name:fadeIn-16cef6aa;-webkit-animation-name:fadeIn-16cef6aa}.fade-in[data-v-16cef6aa],.fade-out[data-v-16cef6aa]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-16cef6aa]{animation-fill-mode:both;animation-name:fadeOut-16cef6aa;-webkit-animation-name:fadeOut-16cef6aa}@keyframes fadeIn-16cef6aa{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-16cef6aa{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-16cef6aa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-16cef6aa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-16cef6aa]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}body[data-v-16cef6aa]{width:100vw;height:100vh;margin:0}.login-container[data-v-16cef6aa]{height:100%;display:flex;align-items:center;justify-content:center;background:#e4eae8}.header[data-v-16cef6aa]{font-size:1.2em;margin-bottom:2em;display:flex;justify-content:center;align-items:center}.header .logo[data-v-16cef6aa]{width:3em;height:3em;display:inline-flex;background-image:url(/static/img/logo.5b906db6.png);background-size:cover}.header .text[data-v-16cef6aa]{font-family:Poppins,sans-serif;margin-left:.5em}form[data-v-16cef6aa]{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-16cef6aa]{margin:.5em 0}form input[type=password][data-v-16cef6aa],form input[type=text][data-v-16cef6aa]{width:100%}form input[type=password][data-v-16cef6aa],form input[type=submit][data-v-16cef6aa]{border-radius:1em}form input[type=password][data-v-16cef6aa]{padding:.25em .5em}form .checkbox[data-v-16cef6aa]{display:flex;font-size:.8em}form .buttons[data-v-16cef6aa]{text-align:center}form .buttons input[type=submit][data-v-16cef6aa]{padding:.5em .75em}a[data-v-16cef6aa]{color:#5f7869}.col-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d9ea25f0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d9ea25f0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d9ea25f0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d9ea25f0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d9ea25f0]:first-child{margin-left:26%!important}.col-offset-3[data-v-d9ea25f0]:not(first-child){margin-left:30%!important}.col-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d9ea25f0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d9ea25f0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d9ea25f0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d9ea25f0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d9ea25f0]:first-child{margin-left:52%!important}.col-offset-6[data-v-d9ea25f0]:not(first-child){margin-left:56%!important}.col-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d9ea25f0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d9ea25f0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d9ea25f0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d9ea25f0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d9ea25f0]:first-child{margin-left:78%!important}.col-offset-9[data-v-d9ea25f0]:not(first-child){margin-left:82%!important}.col-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d9ea25f0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d9ea25f0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d9ea25f0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d9ea25f0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-1[data-v-d9ea25f0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-2[data-v-d9ea25f0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-3[data-v-d9ea25f0]{margin-left:26%}.col-no-margin-s-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-4[data-v-d9ea25f0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-5[data-v-d9ea25f0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-6[data-v-d9ea25f0]{margin-left:52%}.col-no-margin-s-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-7[data-v-d9ea25f0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-8[data-v-d9ea25f0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-9[data-v-d9ea25f0]{margin-left:78%}.col-no-margin-s-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-10[data-v-d9ea25f0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-11[data-v-d9ea25f0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d9ea25f0]{display:none!important}.s-visible[data-v-d9ea25f0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-1[data-v-d9ea25f0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-2[data-v-d9ea25f0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-3[data-v-d9ea25f0]{margin-left:26%}.col-no-margin-m-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-4[data-v-d9ea25f0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-5[data-v-d9ea25f0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-6[data-v-d9ea25f0]{margin-left:52%}.col-no-margin-m-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-7[data-v-d9ea25f0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-8[data-v-d9ea25f0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-9[data-v-d9ea25f0]{margin-left:78%}.col-no-margin-m-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-10[data-v-d9ea25f0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-11[data-v-d9ea25f0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d9ea25f0]{display:none!important}.m-visible[data-v-d9ea25f0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-1[data-v-d9ea25f0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-2[data-v-d9ea25f0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-3[data-v-d9ea25f0]{margin-left:26%}.col-no-margin-l-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-4[data-v-d9ea25f0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-5[data-v-d9ea25f0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-6[data-v-d9ea25f0]{margin-left:52%}.col-no-margin-l-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-7[data-v-d9ea25f0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-8[data-v-d9ea25f0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-9[data-v-d9ea25f0]{margin-left:78%}.col-no-margin-l-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-10[data-v-d9ea25f0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-11[data-v-d9ea25f0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d9ea25f0]{display:none!important}.l-visible[data-v-d9ea25f0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-1[data-v-d9ea25f0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-2[data-v-d9ea25f0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-3[data-v-d9ea25f0]{margin-left:26%}.col-no-margin-xl-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-4[data-v-d9ea25f0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-5[data-v-d9ea25f0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-6[data-v-d9ea25f0]{margin-left:52%}.col-no-margin-xl-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-7[data-v-d9ea25f0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-8[data-v-d9ea25f0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-9[data-v-d9ea25f0]{margin-left:78%}.col-no-margin-xl-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-10[data-v-d9ea25f0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-11[data-v-d9ea25f0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d9ea25f0]{display:none!important}.xl-visible[data-v-d9ea25f0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d9ea25f0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d9ea25f0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d9ea25f0]{margin-left:26%}.col-no-margin-xxl-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d9ea25f0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d9ea25f0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d9ea25f0]{margin-left:52%}.col-no-margin-xxl-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d9ea25f0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d9ea25f0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d9ea25f0]{margin-left:78%}.col-no-margin-xxl-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d9ea25f0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d9ea25f0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d9ea25f0]{display:none!important}.xxl-visible[data-v-d9ea25f0]{display:block!important}}.vertical-center[data-v-d9ea25f0]{display:flex;align-items:center}.horizontal-center[data-v-d9ea25f0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-d9ea25f0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d9ea25f0]{display:none!important}.no-content[data-v-d9ea25f0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-d9ea25f0],.btn[data-v-d9ea25f0],button[data-v-d9ea25f0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d9ea25f0],.btn-default[type=submit][data-v-d9ea25f0],.btn.btn-primary[data-v-d9ea25f0],.btn[type=submit][data-v-d9ea25f0],button.btn-primary[data-v-d9ea25f0],button[type=submit][data-v-d9ea25f0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-d9ea25f0],.btn-default .icon[data-v-d9ea25f0],button .icon[data-v-d9ea25f0]{margin-right:.5em}input[type=password][data-v-d9ea25f0],input[type=text][data-v-d9ea25f0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d9ea25f0]:focus,input[type=text][data-v-d9ea25f0]:focus{border:1px solid #35b870}button[data-v-d9ea25f0],input[data-v-d9ea25f0]{outline:none}input[type=text][data-v-d9ea25f0]:hover,textarea[data-v-d9ea25f0]:hover{border:1px solid #9cdfb0}ul[data-v-d9ea25f0]{margin:0;padding:0;list-style:none}a[data-v-d9ea25f0]{cursor:pointer;text-decoration:none}[data-v-d9ea25f0]::-webkit-scrollbar{width:.75em}[data-v-d9ea25f0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d9ea25f0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-d9ea25f0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-d9ea25f0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-d9ea25f0],input[type=password][data-v-d9ea25f0],input[type=search][data-v-d9ea25f0],input[type=text][data-v-d9ea25f0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-d9ea25f0]:hover,input[type=password][data-v-d9ea25f0]:hover,input[type=search][data-v-d9ea25f0]:hover,input[type=text][data-v-d9ea25f0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-d9ea25f0]:focus,input[type=password][data-v-d9ea25f0]:focus,input[type=search][data-v-d9ea25f0]:focus,input[type=text][data-v-d9ea25f0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-d9ea25f0],input[type=password].with-icon[data-v-d9ea25f0],input[type=search].with-icon[data-v-d9ea25f0],input[type=text].with-icon[data-v-d9ea25f0]{padding-left:.3em}input[type=search][data-v-d9ea25f0],input[type=text][data-v-d9ea25f0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-d9ea25f0]{animation-fill-mode:both;animation-name:fadeIn-d9ea25f0;-webkit-animation-name:fadeIn-d9ea25f0}.fade-in[data-v-d9ea25f0],.fade-out[data-v-d9ea25f0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-d9ea25f0]{animation-fill-mode:both;animation-name:fadeOut-d9ea25f0;-webkit-animation-name:fadeOut-d9ea25f0}@keyframes fadeIn-d9ea25f0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d9ea25f0{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-d9ea25f0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d9ea25f0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d9ea25f0]: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-d9ea25f0]{width:100%;height:100vh;background:#4c4c4c;color:#fff;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5)}nav.collapsed[data-v-d9ea25f0]{box-shadow:1px 1px 1px 1px silver;margin-bottom:2px;z-index:1}nav[data-v-d9ea25f0]:not(.collapsed){position:absolute;top:0;left:0;z-index:5}}@media screen and (min-width:769px){nav[data-v-d9ea25f0]{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-d9ea25f0]{width:20em;min-width:20em}}nav li[data-v-d9ea25f0]{border-bottom:1px solid hsla(0,0%,100%,.15);cursor:pointer;list-style:none}nav li a[data-v-d9ea25f0]{display:block;color:#fff;padding:1em .5em}nav li a[data-v-d9ea25f0]:hover{color:#fff}nav li.selected[data-v-d9ea25f0]{background:rgba(80,120,110,.8);border:1px solid transparent}nav li[data-v-d9ea25f0]:hover{background:#5a8c78;border:1px solid transparent}nav li .name[data-v-d9ea25f0]{margin-left:.5em}nav li .icon[data-v-d9ea25f0]{margin-right:.5em}nav .toggler[data-v-d9ea25f0]{width:100%;height:2em;background:rgba(0,0,0,.25);display:flex;font-size:1.5em;cursor:pointer;padding:.4em;align-items:center;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5)}nav .hostname[data-v-d9ea25f0]{font-size:.7em;margin-top:-.2em}@media screen and (min-width:769px){nav .hostname[data-v-d9ea25f0]{margin-left:1em}}@media screen and (max-width:768px){nav .hostname[data-v-d9ea25f0]{text-align:right;margin-right:.25em;flex-grow:1}}nav .plugins[data-v-d9ea25f0]{height:calc(100% - 10.1em);overflow:auto}nav .footer[data-v-d9ea25f0]{height:7.1em;background:rgba(0,0,0,.25);box-shadow:1px -1px 1.5px 1px rgba(0,0,0,.5);padding:0;margin:0}nav .footer li[data-v-d9ea25f0]:last-child{border:0}nav ul li .icon[data-v-d9ea25f0]{margin-right:0}nav ul li .icon img[data-v-d9ea25f0]{width:1.25em;height:1.25em}nav.collapsed[data-v-d9ea25f0]{display:flex;flex-direction:column}@media screen and (min-width:769px){nav.collapsed[data-v-d9ea25f0]{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-d9ea25f0]{display:none}}@media screen and (max-width:768px){nav.collapsed[data-v-d9ea25f0]{height:auto}}nav.collapsed a[data-v-d9ea25f0]{color:#5e5e5e;padding:.25em 0}nav.collapsed a[data-v-d9ea25f0]:hover{color:#5e5e5e}nav.collapsed .toggler[data-v-d9ea25f0]{height:2em;text-align:center;box-shadow:none;background:none}@media screen and (max-width:768px){nav.collapsed .toggler[data-v-d9ea25f0]{background:#3c3c3c;color:#fff}}nav.collapsed .footer[data-v-d9ea25f0]{height:4em;background:none;padding:0;margin-bottom:.5em;box-shadow:none}@media screen and (max-width:768px){nav.collapsed .footer[data-v-d9ea25f0]{display:none}}nav.collapsed ul[data-v-d9ea25f0]{display:flex;flex-direction:column;justify-content:center;height:calc(100% - 6em);overflow:hidden}@media screen and (min-width:769px)and (max-width:1023px){nav.collapsed ul.plugins[data-v-d9ea25f0]{margin:2em 0}}nav.collapsed ul[data-v-d9ea25f0]:hover{overflow:auto}nav.collapsed ul li[data-v-d9ea25f0]{border:none;padding:0;text-align:center}nav.collapsed ul li.selected[data-v-d9ea25f0],nav.collapsed ul li[data-v-d9ea25f0]:hover{border-radius:1em;margin:0 .2em}nav.collapsed ul li.selected[data-v-d9ea25f0]{background:rgba(160,245,178,.95)}nav.collapsed ul li[data-v-d9ea25f0]:hover{background:rgba(160,245,178,.6)}nav.collapsed ul li .icon[data-v-d9ea25f0]{margin-right:0}@media screen and (max-width:768px){nav.collapsed ul li[data-v-d9ea25f0]{display:none}}.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}}.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]{cursor:pointer;text-decoration:none}[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-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}}.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]{cursor:pointer;text-decoration:none}[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-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-282d16b4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-282d16b4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-282d16b4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-282d16b4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-282d16b4]:first-child{margin-left:26%!important}.col-offset-3[data-v-282d16b4]:not(first-child){margin-left:30%!important}.col-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-282d16b4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-282d16b4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-282d16b4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-282d16b4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-282d16b4]:first-child{margin-left:52%!important}.col-offset-6[data-v-282d16b4]:not(first-child){margin-left:56%!important}.col-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-282d16b4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-282d16b4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-282d16b4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-282d16b4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-282d16b4]:first-child{margin-left:78%!important}.col-offset-9[data-v-282d16b4]:not(first-child){margin-left:82%!important}.col-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-282d16b4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-282d16b4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-282d16b4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-282d16b4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-1[data-v-282d16b4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-2[data-v-282d16b4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-3[data-v-282d16b4]{margin-left:26%}.col-no-margin-s-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-4[data-v-282d16b4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-5[data-v-282d16b4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-6[data-v-282d16b4]{margin-left:52%}.col-no-margin-s-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-7[data-v-282d16b4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-8[data-v-282d16b4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-9[data-v-282d16b4]{margin-left:78%}.col-no-margin-s-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-10[data-v-282d16b4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-11[data-v-282d16b4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-282d16b4]{display:none!important}.s-visible[data-v-282d16b4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-1[data-v-282d16b4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-2[data-v-282d16b4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-3[data-v-282d16b4]{margin-left:26%}.col-no-margin-m-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-4[data-v-282d16b4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-5[data-v-282d16b4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-6[data-v-282d16b4]{margin-left:52%}.col-no-margin-m-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-7[data-v-282d16b4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-8[data-v-282d16b4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-9[data-v-282d16b4]{margin-left:78%}.col-no-margin-m-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-10[data-v-282d16b4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-11[data-v-282d16b4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-282d16b4]{display:none!important}.m-visible[data-v-282d16b4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-1[data-v-282d16b4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-2[data-v-282d16b4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-3[data-v-282d16b4]{margin-left:26%}.col-no-margin-l-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-4[data-v-282d16b4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-5[data-v-282d16b4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-6[data-v-282d16b4]{margin-left:52%}.col-no-margin-l-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-7[data-v-282d16b4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-8[data-v-282d16b4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-9[data-v-282d16b4]{margin-left:78%}.col-no-margin-l-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-10[data-v-282d16b4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-11[data-v-282d16b4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-282d16b4]{display:none!important}.l-visible[data-v-282d16b4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-1[data-v-282d16b4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-2[data-v-282d16b4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-3[data-v-282d16b4]{margin-left:26%}.col-no-margin-xl-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-4[data-v-282d16b4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-5[data-v-282d16b4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-6[data-v-282d16b4]{margin-left:52%}.col-no-margin-xl-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-7[data-v-282d16b4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-8[data-v-282d16b4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-9[data-v-282d16b4]{margin-left:78%}.col-no-margin-xl-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-10[data-v-282d16b4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-11[data-v-282d16b4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-282d16b4]{display:none!important}.xl-visible[data-v-282d16b4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-282d16b4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-282d16b4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-282d16b4]{margin-left:26%}.col-no-margin-xxl-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-282d16b4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-282d16b4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-282d16b4]{margin-left:52%}.col-no-margin-xxl-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-282d16b4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-282d16b4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-282d16b4]{margin-left:78%}.col-no-margin-xxl-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-282d16b4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-282d16b4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-282d16b4]{display:none!important}.xxl-visible[data-v-282d16b4]{display:block!important}}.vertical-center[data-v-282d16b4]{display:flex;align-items:center}.horizontal-center[data-v-282d16b4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-282d16b4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-282d16b4]{display:none!important}.no-content[data-v-282d16b4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-282d16b4],.btn[data-v-282d16b4],button[data-v-282d16b4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-282d16b4],.btn-default[type=submit][data-v-282d16b4],.btn.btn-primary[data-v-282d16b4],.btn[type=submit][data-v-282d16b4],button.btn-primary[data-v-282d16b4],button[type=submit][data-v-282d16b4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-282d16b4],.btn-default .icon[data-v-282d16b4],button .icon[data-v-282d16b4]{margin-right:.5em}input[type=password][data-v-282d16b4],input[type=text][data-v-282d16b4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-282d16b4]:focus,input[type=text][data-v-282d16b4]:focus{border:1px solid #35b870}button[data-v-282d16b4],input[data-v-282d16b4]{outline:none}input[type=text][data-v-282d16b4]:hover,textarea[data-v-282d16b4]:hover{border:1px solid #9cdfb0}ul[data-v-282d16b4]{margin:0;padding:0;list-style:none}a[data-v-282d16b4]{cursor:pointer;text-decoration:none}[data-v-282d16b4]::-webkit-scrollbar{width:.75em}[data-v-282d16b4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-282d16b4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-282d16b4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-282d16b4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-282d16b4],input[type=password][data-v-282d16b4],input[type=search][data-v-282d16b4],input[type=text][data-v-282d16b4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-282d16b4]:hover,input[type=password][data-v-282d16b4]:hover,input[type=search][data-v-282d16b4]:hover,input[type=text][data-v-282d16b4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-282d16b4]:focus,input[type=password][data-v-282d16b4]:focus,input[type=search][data-v-282d16b4]:focus,input[type=text][data-v-282d16b4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-282d16b4],input[type=password].with-icon[data-v-282d16b4],input[type=search].with-icon[data-v-282d16b4],input[type=text].with-icon[data-v-282d16b4]{padding-left:.3em}input[type=search][data-v-282d16b4],input[type=text][data-v-282d16b4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-282d16b4]{animation-fill-mode:both;animation-name:fadeIn-282d16b4;-webkit-animation-name:fadeIn-282d16b4}.fade-in[data-v-282d16b4],.fade-out[data-v-282d16b4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-282d16b4]{animation-fill-mode:both;animation-name:fadeOut-282d16b4;-webkit-animation-name:fadeOut-282d16b4}@keyframes fadeIn-282d16b4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-282d16b4{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-282d16b4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-282d16b4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-282d16b4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-282d16b4]{display:flex;padding:.75em .5em;cursor:pointer;align-items:center;color:#23513a;border:0;box-shadow:none}.item[data-v-282d16b4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.selected[data-v-282d16b4]{font-weight:700}.item.disabled[data-v-282d16b4]{color:#999;cursor:auto}.item .text[data-v-282d16b4]{text-align:left;margin-left:.5em}.item .icon[data-v-282d16b4]{width:1.5em;display:inline-flex;align-items:center}.item[data-v-282d16b4] .icon-container{width:2em;display:inline-flex;align-items:center}.item[data-v-282d16b4] .icon-container .icon{margin:0 1.5em 0 .5em}.token-container{width:100%;display:flex;margin-top:.15em}.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{height:10em;margin-top:1em;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}}.settings-container .body{width:100%;height:100%;display:flex;justify-content:center}.settings-container .modal .body{height:auto}.settings-container form label{display:block;text-align:center}.settings-container .users-list{background:#fff;margin-top:.15em;height:-moz-max-content;height:max-content}.settings-container .users-list .user{display:flex;align-items:center;padding:.75em;box-shadow:0 3px 2px -1px silver}.settings-container .users-list .user:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.settings-container .users-list .user .actions{display:inline-flex;justify-content:right}.settings-container .users-list .user .actions button{width:-moz-min-content;width:min-content}@media screen and (max-width:1024px){.settings-container .users-list{width:100%}}@media screen and (min-width:1024px){.settings-container .users-list{min-width:400pt;max-width:600pt;margin-top:1em;border-radius:1em;box-shadow:0 3px 2px -1px silver}.settings-container .users-list .user{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}}.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{cursor:pointer;text-decoration:none}::-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-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-fbc09254]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-fbc09254]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-fbc09254]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-fbc09254]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-fbc09254]:first-child{margin-left:26%!important}.col-offset-3[data-v-fbc09254]:not(first-child){margin-left:30%!important}.col-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-fbc09254]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-fbc09254]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-fbc09254]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-fbc09254]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-fbc09254]:first-child{margin-left:52%!important}.col-offset-6[data-v-fbc09254]:not(first-child){margin-left:56%!important}.col-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-fbc09254]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-fbc09254]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-fbc09254]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-fbc09254]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-fbc09254]:first-child{margin-left:78%!important}.col-offset-9[data-v-fbc09254]:not(first-child){margin-left:82%!important}.col-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-fbc09254]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-fbc09254]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-fbc09254]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-fbc09254]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-1[data-v-fbc09254]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-2[data-v-fbc09254]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-3[data-v-fbc09254]{margin-left:26%}.col-no-margin-s-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-4[data-v-fbc09254]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-5[data-v-fbc09254]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-6[data-v-fbc09254]{margin-left:52%}.col-no-margin-s-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-7[data-v-fbc09254]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-8[data-v-fbc09254]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-9[data-v-fbc09254]{margin-left:78%}.col-no-margin-s-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-10[data-v-fbc09254]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-11[data-v-fbc09254]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-s-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-fbc09254]{display:none!important}.s-visible[data-v-fbc09254]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-1[data-v-fbc09254]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-2[data-v-fbc09254]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-3[data-v-fbc09254]{margin-left:26%}.col-no-margin-m-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-4[data-v-fbc09254]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-5[data-v-fbc09254]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-6[data-v-fbc09254]{margin-left:52%}.col-no-margin-m-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-7[data-v-fbc09254]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-8[data-v-fbc09254]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-9[data-v-fbc09254]{margin-left:78%}.col-no-margin-m-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-10[data-v-fbc09254]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-11[data-v-fbc09254]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-m-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-fbc09254]{display:none!important}.m-visible[data-v-fbc09254]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-1[data-v-fbc09254]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-2[data-v-fbc09254]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-3[data-v-fbc09254]{margin-left:26%}.col-no-margin-l-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-4[data-v-fbc09254]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-5[data-v-fbc09254]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-6[data-v-fbc09254]{margin-left:52%}.col-no-margin-l-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-7[data-v-fbc09254]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-8[data-v-fbc09254]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-9[data-v-fbc09254]{margin-left:78%}.col-no-margin-l-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-10[data-v-fbc09254]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-11[data-v-fbc09254]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-l-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-fbc09254]{display:none!important}.l-visible[data-v-fbc09254]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-1[data-v-fbc09254]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-2[data-v-fbc09254]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-3[data-v-fbc09254]{margin-left:26%}.col-no-margin-xl-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-4[data-v-fbc09254]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-5[data-v-fbc09254]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-6[data-v-fbc09254]{margin-left:52%}.col-no-margin-xl-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-7[data-v-fbc09254]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-8[data-v-fbc09254]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-9[data-v-fbc09254]{margin-left:78%}.col-no-margin-xl-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-10[data-v-fbc09254]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-11[data-v-fbc09254]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-fbc09254]{display:none!important}.xl-visible[data-v-fbc09254]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-1[data-v-fbc09254]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-2[data-v-fbc09254]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-3[data-v-fbc09254]{margin-left:26%}.col-no-margin-xxl-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-4[data-v-fbc09254]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-5[data-v-fbc09254]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-6[data-v-fbc09254]{margin-left:52%}.col-no-margin-xxl-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-7[data-v-fbc09254]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-8[data-v-fbc09254]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-9[data-v-fbc09254]{margin-left:78%}.col-no-margin-xxl-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-10[data-v-fbc09254]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-11[data-v-fbc09254]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-fbc09254]{display:none!important}.xxl-visible[data-v-fbc09254]{display:block!important}}.vertical-center[data-v-fbc09254]{display:flex;align-items:center}.horizontal-center[data-v-fbc09254]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-fbc09254]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-fbc09254]{display:none!important}.no-content[data-v-fbc09254]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-fbc09254],.btn[data-v-fbc09254],button[data-v-fbc09254]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-fbc09254],.btn-default[type=submit][data-v-fbc09254],.btn.btn-primary[data-v-fbc09254],.btn[type=submit][data-v-fbc09254],button.btn-primary[data-v-fbc09254],button[type=submit][data-v-fbc09254]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-fbc09254],.btn-default .icon[data-v-fbc09254],button .icon[data-v-fbc09254]{margin-right:.5em}input[type=password][data-v-fbc09254],input[type=text][data-v-fbc09254]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-fbc09254]:focus,input[type=text][data-v-fbc09254]:focus{border:1px solid #35b870}button[data-v-fbc09254],input[data-v-fbc09254]{outline:none}input[type=text][data-v-fbc09254]:hover,textarea[data-v-fbc09254]:hover{border:1px solid #9cdfb0}ul[data-v-fbc09254]{margin:0;padding:0;list-style:none}a[data-v-fbc09254]{cursor:pointer;text-decoration:none}[data-v-fbc09254]::-webkit-scrollbar{width:.75em}[data-v-fbc09254]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-fbc09254]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-fbc09254]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-fbc09254]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-fbc09254],input[type=password][data-v-fbc09254],input[type=search][data-v-fbc09254],input[type=text][data-v-fbc09254]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-fbc09254]:hover,input[type=password][data-v-fbc09254]:hover,input[type=search][data-v-fbc09254]:hover,input[type=text][data-v-fbc09254]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-fbc09254]:focus,input[type=password][data-v-fbc09254]:focus,input[type=search][data-v-fbc09254]:focus,input[type=text][data-v-fbc09254]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-fbc09254],input[type=password].with-icon[data-v-fbc09254],input[type=search].with-icon[data-v-fbc09254],input[type=text].with-icon[data-v-fbc09254]{padding-left:.3em}input[type=search][data-v-fbc09254],input[type=text][data-v-fbc09254]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-fbc09254]{animation-fill-mode:both;animation-name:fadeIn-fbc09254;-webkit-animation-name:fadeIn-fbc09254}.fade-in[data-v-fbc09254],.fade-out[data-v-fbc09254]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-fbc09254]{animation-fill-mode:both;animation-name:fadeOut-fbc09254;-webkit-animation-name:fadeOut-fbc09254}@keyframes fadeIn-fbc09254{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-fbc09254{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-fbc09254]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-fbc09254]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-fbc09254]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-fbc09254]{height:100%;display:flex}@media screen and (max-width:calc(769px - 1px)){main[data-v-fbc09254]{flex-direction:column}}main .canvas[data-v-fbc09254]{display:flex;flex-grow:100;background:#e0eae8;overflow:auto}main .canvas .panel[data-v-fbc09254]{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}}.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]{cursor:pointer;text-decoration:none}[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
+ */:host,:root{--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.859fc388.woff2) format("woff2"),url(/static/fonts/fa-brands-400.7fa789ab.ttf) format("truetype")}.fa-brands,.fab{font-family:Font Awesome\ 6 Brands;font-weight:400}.fa-42-group:before,.fa-innosoft:before{content:""}.fa-500px:before{content:""}.fa-accessible-icon:before{content:""}.fa-accusoft:before{content:""}.fa-adn:before{content:""}.fa-adversal:before{content:""}.fa-affiliatetheme:before{content:""}.fa-airbnb:before{content:""}.fa-algolia:before{content:""}.fa-alipay:before{content:""}.fa-amazon:before{content:""}.fa-amazon-pay:before{content:""}.fa-amilia:before{content:""}.fa-android:before{content:""}.fa-angellist:before{content:""}.fa-angrycreative:before{content:""}.fa-angular:before{content:""}.fa-app-store:before{content:""}.fa-app-store-ios:before{content:""}.fa-apper:before{content:""}.fa-apple:before{content:""}.fa-apple-pay:before{content:""}.fa-artstation:before{content:""}.fa-asymmetrik:before{content:""}.fa-atlassian:before{content:""}.fa-audible:before{content:""}.fa-autoprefixer:before{content:""}.fa-avianex:before{content:""}.fa-aviato:before{content:""}.fa-aws:before{content:""}.fa-bandcamp:before{content:""}.fa-battle-net:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-bilibili:before{content:""}.fa-bimobject:before{content:""}.fa-bitbucket:before{content:""}.fa-bitcoin:before{content:""}.fa-bity:before{content:""}.fa-black-tie:before{content:""}.fa-blackberry:before{content:""}.fa-blogger:before{content:""}.fa-blogger-b:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-bootstrap:before{content:""}.fa-bots:before{content:""}.fa-btc:before{content:""}.fa-buffer:before{content:""}.fa-buromobelexperte:before{content:""}.fa-buy-n-large:before{content:""}.fa-buysellads:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-cc-diners-club:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-cc-visa:before{content:""}.fa-centercode:before{content:""}.fa-centos:before{content:""}.fa-chrome:before{content:""}.fa-chromecast:before{content:""}.fa-cloudflare:before{content:""}.fa-cloudscale:before{content:""}.fa-cloudsmith:before{content:""}.fa-cloudversify:before{content:""}.fa-cmplid:before{content:""}.fa-codepen:before{content:""}.fa-codiepie:before{content:""}.fa-confluence:before{content:""}.fa-connectdevelop:before{content:""}.fa-contao:before{content:""}.fa-cotton-bureau:before{content:""}.fa-cpanel:before{content:""}.fa-creative-commons:before{content:""}.fa-creative-commons-by:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-creative-commons-share:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-critical-role:before{content:""}.fa-css3:before{content:""}.fa-css3-alt:before{content:""}.fa-cuttlefish:before{content:""}.fa-d-and-d:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-dailymotion:before{content:""}.fa-dashcube:before{content:""}.fa-deezer:before{content:""}.fa-delicious:before{content:""}.fa-deploydog:before{content:""}.fa-deskpro:before{content:""}.fa-dev:before{content:""}.fa-deviantart:before{content:""}.fa-dhl:before{content:""}.fa-diaspora:before{content:""}.fa-digg:before{content:""}.fa-digital-ocean:before{content:""}.fa-discord:before{content:""}.fa-discourse:before{content:""}.fa-dochub:before{content:""}.fa-docker:before{content:""}.fa-draft2digital:before{content:""}.fa-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-dropbox:before{content:""}.fa-drupal:before{content:""}.fa-dyalog:before{content:""}.fa-earlybirds:before{content:""}.fa-ebay:before{content:""}.fa-edge:before{content:""}.fa-edge-legacy:before{content:""}.fa-elementor:before{content:""}.fa-ello:before{content:""}.fa-ember:before{content:""}.fa-empire:before{content:""}.fa-envira:before{content:""}.fa-erlang:before{content:""}.fa-ethereum:before{content:""}.fa-etsy:before{content:""}.fa-evernote:before{content:""}.fa-expeditedssl:before{content:""}.fa-facebook:before{content:""}.fa-facebook-f:before{content:""}.fa-facebook-messenger:before{content:""}.fa-facebook-square:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-fedex:before{content:""}.fa-fedora:before{content:""}.fa-figma:before{content:""}.fa-firefox:before{content:""}.fa-firefox-browser:before{content:""}.fa-first-order:before{content:""}.fa-first-order-alt:before{content:""}.fa-firstdraft:before{content:""}.fa-flickr:before{content:""}.fa-flipboard:before{content:""}.fa-fly:before{content:""}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:""}.fa-fonticons:before{content:""}.fa-fonticons-fi:before{content:""}.fa-fort-awesome:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-forumbee:before{content:""}.fa-foursquare:before{content:""}.fa-free-code-camp:before{content:""}.fa-freebsd:before{content:""}.fa-fulcrum:before{content:""}.fa-galactic-republic:before{content:""}.fa-galactic-senate:before{content:""}.fa-get-pocket:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-git:before{content:""}.fa-git-alt:before{content:""}.fa-git-square:before{content:""}.fa-github:before{content:""}.fa-github-alt:before{content:""}.fa-github-square:before{content:""}.fa-gitkraken:before{content:""}.fa-gitlab:before{content:""}.fa-gitter:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-gofore:before{content:""}.fa-golang:before{content:""}.fa-goodreads:before{content:""}.fa-goodreads-g:before{content:""}.fa-google:before{content:""}.fa-google-drive:before{content:""}.fa-google-pay:before{content:""}.fa-google-play:before{content:""}.fa-google-plus:before{content:""}.fa-google-plus-g:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-wallet:before{content:""}.fa-gratipay:before{content:""}.fa-grav:before{content:""}.fa-gripfire:before{content:""}.fa-grunt:before{content:""}.fa-guilded:before{content:""}.fa-gulp:before{content:""}.fa-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-hackerrank:before{content:""}.fa-hashnode:before{content:""}.fa-hips:before{content:""}.fa-hire-a-helper:before{content:""}.fa-hive:before{content:""}.fa-hooli:before{content:""}.fa-hornbill:before{content:""}.fa-hotjar:before{content:""}.fa-houzz:before{content:""}.fa-html5:before{content:""}.fa-hubspot:before{content:""}.fa-ideal:before{content:""}.fa-imdb:before{content:""}.fa-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-instalod:before{content:""}.fa-intercom:before{content:""}.fa-internet-explorer:before{content:""}.fa-invision:before{content:""}.fa-ioxhost:before{content:""}.fa-itch-io:before{content:""}.fa-itunes:before{content:""}.fa-itunes-note:before{content:""}.fa-java:before{content:""}.fa-jedi-order:before{content:""}.fa-jenkins:before{content:""}.fa-jira:before{content:""}.fa-joget:before{content:""}.fa-joomla:before{content:""}.fa-js:before{content:""}.fa-js-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-kaggle:before{content:""}.fa-keybase:before{content:""}.fa-keycdn:before{content:""}.fa-kickstarter:before{content:""}.fa-kickstarter-k:before{content:""}.fa-korvue:before{content:""}.fa-laravel:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-leanpub:before{content:""}.fa-less:before{content:""}.fa-line:before{content:""}.fa-linkedin:before{content:""}.fa-linkedin-in:before{content:""}.fa-linode:before{content:""}.fa-linux:before{content:""}.fa-lyft:before{content:""}.fa-magento:before{content:""}.fa-mailchimp:before{content:""}.fa-mandalorian:before{content:""}.fa-markdown:before{content:""}.fa-mastodon:before{content:""}.fa-maxcdn:before{content:""}.fa-mdb:before{content:""}.fa-medapps:before{content:""}.fa-medium-m:before,.fa-medium:before{content:""}.fa-medrt:before{content:""}.fa-meetup:before{content:""}.fa-megaport:before{content:""}.fa-mendeley:before{content:""}.fa-microblog:before{content:""}.fa-microsoft:before{content:""}.fa-mix:before{content:""}.fa-mixcloud:before{content:""}.fa-mixer:before{content:""}.fa-mizuni:before{content:""}.fa-modx:before{content:""}.fa-monero:before{content:""}.fa-napster:before{content:""}.fa-neos:before{content:""}.fa-nfc-directional:before{content:""}.fa-nfc-symbol:before{content:""}.fa-nimblr:before{content:""}.fa-node:before{content:""}.fa-node-js:before{content:""}.fa-npm:before{content:""}.fa-ns8:before{content:""}.fa-nutritionix:before{content:""}.fa-octopus-deploy:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-old-republic:before{content:""}.fa-opencart:before{content:""}.fa-openid:before{content:""}.fa-opera:before{content:""}.fa-optin-monster:before{content:""}.fa-orcid:before{content:""}.fa-osi:before{content:""}.fa-padlet:before{content:""}.fa-page4:before{content:""}.fa-pagelines:before{content:""}.fa-palfed:before{content:""}.fa-patreon:before{content:""}.fa-paypal:before{content:""}.fa-perbyte:before{content:""}.fa-periscope:before{content:""}.fa-phabricator:before{content:""}.fa-phoenix-framework:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-php:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-square:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-p:before{content:""}.fa-pinterest-square:before{content:""}.fa-pix:before{content:""}.fa-playstation:before{content:""}.fa-product-hunt:before{content:""}.fa-pushed:before{content:""}.fa-python:before{content:""}.fa-qq:before{content:""}.fa-quinscape:before{content:""}.fa-quora:before{content:""}.fa-r-project:before{content:""}.fa-raspberry-pi:before{content:""}.fa-ravelry:before{content:""}.fa-react:before{content:""}.fa-reacteurope:before{content:""}.fa-readme:before{content:""}.fa-rebel:before{content:""}.fa-red-river:before{content:""}.fa-reddit:before{content:""}.fa-reddit-alien:before{content:""}.fa-reddit-square:before{content:""}.fa-redhat:before{content:""}.fa-renren:before{content:""}.fa-replyd:before{content:""}.fa-researchgate:before{content:""}.fa-resolving:before{content:""}.fa-rev:before{content:""}.fa-rocketchat:before{content:""}.fa-rockrms:before{content:""}.fa-rust:before{content:""}.fa-safari:before{content:""}.fa-salesforce:before{content:""}.fa-sass:before{content:""}.fa-schlix:before{content:""}.fa-screenpal:before{content:""}.fa-scribd:before{content:""}.fa-searchengin:before{content:""}.fa-sellcast:before{content:""}.fa-sellsy:before{content:""}.fa-servicestack:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-shopify:before{content:""}.fa-shopware:before{content:""}.fa-simplybuilt:before{content:""}.fa-sistrix:before{content:""}.fa-sith:before{content:""}.fa-sitrox:before{content:""}.fa-sketch:before{content:""}.fa-skyatlas:before{content:""}.fa-skype:before{content:""}.fa-slack-hash:before,.fa-slack:before{content:""}.fa-slideshare:before{content:""}.fa-snapchat-ghost:before,.fa-snapchat:before{content:""}.fa-snapchat-square:before{content:""}.fa-soundcloud:before{content:""}.fa-sourcetree:before{content:""}.fa-speakap:before{content:""}.fa-speaker-deck:before{content:""}.fa-spotify:before{content:""}.fa-square-font-awesome:before{content:""}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:""}.fa-squarespace:before{content:""}.fa-stack-exchange:before{content:""}.fa-stack-overflow:before{content:""}.fa-stackpath:before{content:""}.fa-staylinked:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-steam-symbol:before{content:""}.fa-sticker-mule:before{content:""}.fa-strava:before{content:""}.fa-stripe:before{content:""}.fa-stripe-s:before{content:""}.fa-studiovinari:before{content:""}.fa-stumbleupon:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-superpowers:before{content:""}.fa-supple:before{content:""}.fa-suse:before{content:""}.fa-swift:before{content:""}.fa-symfony:before{content:""}.fa-teamspeak:before{content:""}.fa-telegram-plane:before,.fa-telegram:before{content:""}.fa-tencent-weibo:before{content:""}.fa-the-red-yeti:before{content:""}.fa-themeco:before{content:""}.fa-themeisle:before{content:""}.fa-think-peaks:before{content:""}.fa-tiktok:before{content:""}.fa-trade-federation:before{content:""}.fa-trello:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-twitch:before{content:""}.fa-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-typo3:before{content:""}.fa-uber:before{content:""}.fa-ubuntu:before{content:""}.fa-uikit:before{content:""}.fa-umbraco:before{content:""}.fa-uncharted:before{content:""}.fa-uniregistry:before{content:""}.fa-unity:before{content:""}.fa-unsplash:before{content:""}.fa-untappd:before{content:""}.fa-ups:before{content:""}.fa-usb:before{content:""}.fa-usps:before{content:""}.fa-ussunnah:before{content:""}.fa-vaadin:before{content:""}.fa-viacoin:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-viber:before{content:""}.fa-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-vine:before{content:""}.fa-vk:before{content:""}.fa-vnv:before{content:""}.fa-vuejs:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-waze:before{content:""}.fa-weebly:before{content:""}.fa-weibo:before{content:""}.fa-weixin:before{content:""}.fa-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-whmcs:before{content:""}.fa-wikipedia-w:before{content:""}.fa-windows:before{content:""}.fa-wirsindhandwerk:before,.fa-wsh:before{content:""}.fa-wix:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-wodu:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-wordpress:before{content:""}.fa-wordpress-simple:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpexplorer:before{content:""}.fa-wpforms:before{content:""}.fa-wpressr:before{content:""}.fa-xbox:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-y-combinator:before{content:""}.fa-yahoo:before{content:""}.fa-yammer:before{content:""}.fa-yandex:before{content:""}.fa-yandex-international:before{content:""}.fa-yarn:before{content:""}.fa-yelp:before{content:""}.fa-yoast:before{content:""}.fa-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-zhihu: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}}.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]{cursor:pointer;text-decoration:none}[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}}.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]{cursor:pointer;text-decoration:none}[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}}.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]{cursor:pointer;text-decoration:none}[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}}.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]{cursor:pointer;text-decoration:none}[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}}.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]{cursor:pointer;text-decoration:none}[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-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-d9ea25f0]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-d9ea25f0]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-d9ea25f0]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-d9ea25f0]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-d9ea25f0]:first-child{margin-left:26%!important}.col-offset-3[data-v-d9ea25f0]:not(first-child){margin-left:30%!important}.col-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-d9ea25f0]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-d9ea25f0]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-d9ea25f0]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-d9ea25f0]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-d9ea25f0]:first-child{margin-left:52%!important}.col-offset-6[data-v-d9ea25f0]:not(first-child){margin-left:56%!important}.col-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-d9ea25f0]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-d9ea25f0]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-d9ea25f0]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-d9ea25f0]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-d9ea25f0]:first-child{margin-left:78%!important}.col-offset-9[data-v-d9ea25f0]:not(first-child){margin-left:82%!important}.col-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-d9ea25f0]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-d9ea25f0]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-d9ea25f0]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-d9ea25f0]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-1[data-v-d9ea25f0]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-2[data-v-d9ea25f0]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-3[data-v-d9ea25f0]{margin-left:26%}.col-no-margin-s-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-4[data-v-d9ea25f0]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-5[data-v-d9ea25f0]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-6[data-v-d9ea25f0]{margin-left:52%}.col-no-margin-s-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-7[data-v-d9ea25f0]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-8[data-v-d9ea25f0]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-9[data-v-d9ea25f0]{margin-left:78%}.col-no-margin-s-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-10[data-v-d9ea25f0]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-s-11[data-v-d9ea25f0]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-s-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-d9ea25f0]{display:none!important}.s-visible[data-v-d9ea25f0]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-1[data-v-d9ea25f0]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-2[data-v-d9ea25f0]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-3[data-v-d9ea25f0]{margin-left:26%}.col-no-margin-m-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-4[data-v-d9ea25f0]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-5[data-v-d9ea25f0]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-6[data-v-d9ea25f0]{margin-left:52%}.col-no-margin-m-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-7[data-v-d9ea25f0]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-8[data-v-d9ea25f0]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-9[data-v-d9ea25f0]{margin-left:78%}.col-no-margin-m-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-10[data-v-d9ea25f0]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-m-11[data-v-d9ea25f0]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-m-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-d9ea25f0]{display:none!important}.m-visible[data-v-d9ea25f0]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-1[data-v-d9ea25f0]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-2[data-v-d9ea25f0]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-3[data-v-d9ea25f0]{margin-left:26%}.col-no-margin-l-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-4[data-v-d9ea25f0]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-5[data-v-d9ea25f0]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-6[data-v-d9ea25f0]{margin-left:52%}.col-no-margin-l-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-7[data-v-d9ea25f0]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-8[data-v-d9ea25f0]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-9[data-v-d9ea25f0]{margin-left:78%}.col-no-margin-l-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-10[data-v-d9ea25f0]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-l-11[data-v-d9ea25f0]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-l-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-d9ea25f0]{display:none!important}.l-visible[data-v-d9ea25f0]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-1[data-v-d9ea25f0]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-2[data-v-d9ea25f0]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-3[data-v-d9ea25f0]{margin-left:26%}.col-no-margin-xl-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-4[data-v-d9ea25f0]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-5[data-v-d9ea25f0]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-6[data-v-d9ea25f0]{margin-left:52%}.col-no-margin-xl-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-7[data-v-d9ea25f0]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-8[data-v-d9ea25f0]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-9[data-v-d9ea25f0]{margin-left:78%}.col-no-margin-xl-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-10[data-v-d9ea25f0]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xl-11[data-v-d9ea25f0]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-d9ea25f0]{display:none!important}.xl-visible[data-v-d9ea25f0]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-1[data-v-d9ea25f0]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-2[data-v-d9ea25f0]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-3[data-v-d9ea25f0]{margin-left:26%}.col-no-margin-xxl-3[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-4[data-v-d9ea25f0]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-5[data-v-d9ea25f0]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-6[data-v-d9ea25f0]{margin-left:52%}.col-no-margin-xxl-6[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-7[data-v-d9ea25f0]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-8[data-v-d9ea25f0]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-9[data-v-d9ea25f0]{margin-left:78%}.col-no-margin-xxl-9[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-10[data-v-d9ea25f0]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-d9ea25f0]:first-child{margin-left:0}.col-offset-xxl-11[data-v-d9ea25f0]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-d9ea25f0]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-d9ea25f0]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-d9ea25f0]{display:none!important}.xxl-visible[data-v-d9ea25f0]{display:block!important}}.vertical-center[data-v-d9ea25f0]{display:flex;align-items:center}.horizontal-center[data-v-d9ea25f0]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-d9ea25f0]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-d9ea25f0]{display:none!important}.no-content[data-v-d9ea25f0]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-d9ea25f0],.btn[data-v-d9ea25f0],button[data-v-d9ea25f0]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-d9ea25f0],.btn-default[type=submit][data-v-d9ea25f0],.btn.btn-primary[data-v-d9ea25f0],.btn[type=submit][data-v-d9ea25f0],button.btn-primary[data-v-d9ea25f0],button[type=submit][data-v-d9ea25f0]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-d9ea25f0],.btn-default .icon[data-v-d9ea25f0],button .icon[data-v-d9ea25f0]{margin-right:.5em}input[type=password][data-v-d9ea25f0],input[type=text][data-v-d9ea25f0]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-d9ea25f0]:focus,input[type=text][data-v-d9ea25f0]:focus{border:1px solid #35b870}button[data-v-d9ea25f0],input[data-v-d9ea25f0]{outline:none}input[type=text][data-v-d9ea25f0]:hover,textarea[data-v-d9ea25f0]:hover{border:1px solid #9cdfb0}ul[data-v-d9ea25f0]{margin:0;padding:0;list-style:none}a[data-v-d9ea25f0]{cursor:pointer;text-decoration:none}[data-v-d9ea25f0]::-webkit-scrollbar{width:.75em}[data-v-d9ea25f0]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-d9ea25f0]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-d9ea25f0]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-d9ea25f0]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-d9ea25f0],input[type=password][data-v-d9ea25f0],input[type=search][data-v-d9ea25f0],input[type=text][data-v-d9ea25f0]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-d9ea25f0]:hover,input[type=password][data-v-d9ea25f0]:hover,input[type=search][data-v-d9ea25f0]:hover,input[type=text][data-v-d9ea25f0]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-d9ea25f0]:focus,input[type=password][data-v-d9ea25f0]:focus,input[type=search][data-v-d9ea25f0]:focus,input[type=text][data-v-d9ea25f0]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-d9ea25f0],input[type=password].with-icon[data-v-d9ea25f0],input[type=search].with-icon[data-v-d9ea25f0],input[type=text].with-icon[data-v-d9ea25f0]{padding-left:.3em}input[type=search][data-v-d9ea25f0],input[type=text][data-v-d9ea25f0]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-d9ea25f0]{animation-fill-mode:both;animation-name:fadeIn-d9ea25f0;-webkit-animation-name:fadeIn-d9ea25f0}.fade-in[data-v-d9ea25f0],.fade-out[data-v-d9ea25f0]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-d9ea25f0]{animation-fill-mode:both;animation-name:fadeOut-d9ea25f0;-webkit-animation-name:fadeOut-d9ea25f0}@keyframes fadeIn-d9ea25f0{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-d9ea25f0{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-d9ea25f0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-d9ea25f0]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-d9ea25f0]: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-d9ea25f0]{width:100%;height:100vh;background:#4c4c4c;color:#fff;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5)}nav.collapsed[data-v-d9ea25f0]{box-shadow:1px 1px 1px 1px silver;margin-bottom:2px;z-index:1}nav[data-v-d9ea25f0]:not(.collapsed){position:absolute;top:0;left:0;z-index:5}}@media screen and (min-width:769px){nav[data-v-d9ea25f0]{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-d9ea25f0]{width:20em;min-width:20em}}nav li[data-v-d9ea25f0]{border-bottom:1px solid hsla(0,0%,100%,.15);cursor:pointer;list-style:none}nav li a[data-v-d9ea25f0]{display:block;color:#fff;padding:1em .5em}nav li a[data-v-d9ea25f0]:hover{color:#fff}nav li.selected[data-v-d9ea25f0]{background:rgba(80,120,110,.8);border:1px solid transparent}nav li[data-v-d9ea25f0]:hover{background:#5a8c78;border:1px solid transparent}nav li .name[data-v-d9ea25f0]{margin-left:.5em}nav li .icon[data-v-d9ea25f0]{margin-right:.5em}nav .toggler[data-v-d9ea25f0]{width:100%;height:2em;background:rgba(0,0,0,.25);display:flex;font-size:1.5em;cursor:pointer;padding:.4em;align-items:center;box-shadow:1px 1px 1.5px 1px rgba(0,0,0,.5)}nav .hostname[data-v-d9ea25f0]{font-size:.7em;margin-top:-.2em}@media screen and (min-width:769px){nav .hostname[data-v-d9ea25f0]{margin-left:1em}}@media screen and (max-width:768px){nav .hostname[data-v-d9ea25f0]{text-align:right;margin-right:.25em;flex-grow:1}}nav .plugins[data-v-d9ea25f0]{height:calc(100% - 10.1em);overflow:auto}nav .footer[data-v-d9ea25f0]{height:7.1em;background:rgba(0,0,0,.25);box-shadow:1px -1px 1.5px 1px rgba(0,0,0,.5);padding:0;margin:0}nav .footer li[data-v-d9ea25f0]:last-child{border:0}nav ul li .icon[data-v-d9ea25f0]{margin-right:0}nav ul li .icon img[data-v-d9ea25f0]{width:1.25em;height:1.25em}nav.collapsed[data-v-d9ea25f0]{display:flex;flex-direction:column}@media screen and (min-width:769px){nav.collapsed[data-v-d9ea25f0]{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-d9ea25f0]{display:none}}@media screen and (max-width:768px){nav.collapsed[data-v-d9ea25f0]{height:auto}}nav.collapsed a[data-v-d9ea25f0]{color:#5e5e5e;padding:.25em 0}nav.collapsed a[data-v-d9ea25f0]:hover{color:#5e5e5e}nav.collapsed .toggler[data-v-d9ea25f0]{height:2em;text-align:center;box-shadow:none;background:none}@media screen and (max-width:768px){nav.collapsed .toggler[data-v-d9ea25f0]{background:#3c3c3c;color:#fff}}nav.collapsed .footer[data-v-d9ea25f0]{height:4em;background:none;padding:0;margin-bottom:.5em;box-shadow:none}@media screen and (max-width:768px){nav.collapsed .footer[data-v-d9ea25f0]{display:none}}nav.collapsed ul[data-v-d9ea25f0]{display:flex;flex-direction:column;justify-content:center;height:calc(100% - 6em);overflow:hidden}@media screen and (min-width:769px)and (max-width:1023px){nav.collapsed ul.plugins[data-v-d9ea25f0]{margin:2em 0}}nav.collapsed ul[data-v-d9ea25f0]:hover{overflow:auto}nav.collapsed ul li[data-v-d9ea25f0]{border:none;padding:0;text-align:center}nav.collapsed ul li.selected[data-v-d9ea25f0],nav.collapsed ul li[data-v-d9ea25f0]:hover{border-radius:1em;margin:0 .2em}nav.collapsed ul li.selected[data-v-d9ea25f0]{background:rgba(160,245,178,.95)}nav.collapsed ul li[data-v-d9ea25f0]:hover{background:rgba(160,245,178,.6)}nav.collapsed ul li .icon[data-v-d9ea25f0]{margin-right:0}@media screen and (max-width:768px){nav.collapsed ul li[data-v-d9ea25f0]{display:none}}.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}}.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]{cursor:pointer;text-decoration:none}[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-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}}.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]{cursor:pointer;text-decoration:none}[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-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-282d16b4]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-282d16b4]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-282d16b4]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-282d16b4]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-282d16b4]:first-child{margin-left:26%!important}.col-offset-3[data-v-282d16b4]:not(first-child){margin-left:30%!important}.col-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-282d16b4]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-282d16b4]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-282d16b4]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-282d16b4]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-282d16b4]:first-child{margin-left:52%!important}.col-offset-6[data-v-282d16b4]:not(first-child){margin-left:56%!important}.col-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-282d16b4]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-282d16b4]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-282d16b4]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-282d16b4]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-282d16b4]:first-child{margin-left:78%!important}.col-offset-9[data-v-282d16b4]:not(first-child){margin-left:82%!important}.col-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-282d16b4]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-282d16b4]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-282d16b4]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-282d16b4]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-1[data-v-282d16b4]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-2[data-v-282d16b4]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-3[data-v-282d16b4]{margin-left:26%}.col-no-margin-s-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-4[data-v-282d16b4]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-5[data-v-282d16b4]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-6[data-v-282d16b4]{margin-left:52%}.col-no-margin-s-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-7[data-v-282d16b4]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-8[data-v-282d16b4]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-9[data-v-282d16b4]{margin-left:78%}.col-no-margin-s-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-10[data-v-282d16b4]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-282d16b4]:first-child{margin-left:0}.col-offset-s-11[data-v-282d16b4]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-s-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-282d16b4]{display:none!important}.s-visible[data-v-282d16b4]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-1[data-v-282d16b4]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-2[data-v-282d16b4]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-3[data-v-282d16b4]{margin-left:26%}.col-no-margin-m-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-4[data-v-282d16b4]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-5[data-v-282d16b4]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-6[data-v-282d16b4]{margin-left:52%}.col-no-margin-m-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-7[data-v-282d16b4]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-8[data-v-282d16b4]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-9[data-v-282d16b4]{margin-left:78%}.col-no-margin-m-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-10[data-v-282d16b4]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-282d16b4]:first-child{margin-left:0}.col-offset-m-11[data-v-282d16b4]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-m-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-282d16b4]{display:none!important}.m-visible[data-v-282d16b4]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-1[data-v-282d16b4]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-2[data-v-282d16b4]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-3[data-v-282d16b4]{margin-left:26%}.col-no-margin-l-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-4[data-v-282d16b4]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-5[data-v-282d16b4]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-6[data-v-282d16b4]{margin-left:52%}.col-no-margin-l-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-7[data-v-282d16b4]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-8[data-v-282d16b4]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-9[data-v-282d16b4]{margin-left:78%}.col-no-margin-l-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-10[data-v-282d16b4]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-282d16b4]:first-child{margin-left:0}.col-offset-l-11[data-v-282d16b4]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-l-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-282d16b4]{display:none!important}.l-visible[data-v-282d16b4]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-1[data-v-282d16b4]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-2[data-v-282d16b4]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-3[data-v-282d16b4]{margin-left:26%}.col-no-margin-xl-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-4[data-v-282d16b4]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-5[data-v-282d16b4]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-6[data-v-282d16b4]{margin-left:52%}.col-no-margin-xl-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-7[data-v-282d16b4]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-8[data-v-282d16b4]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-9[data-v-282d16b4]{margin-left:78%}.col-no-margin-xl-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-10[data-v-282d16b4]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xl-11[data-v-282d16b4]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-282d16b4]{display:none!important}.xl-visible[data-v-282d16b4]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-1[data-v-282d16b4]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-282d16b4]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-2[data-v-282d16b4]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-282d16b4]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-3[data-v-282d16b4]{margin-left:26%}.col-no-margin-xxl-3[data-v-282d16b4]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-4[data-v-282d16b4]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-282d16b4]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-5[data-v-282d16b4]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-282d16b4]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-6[data-v-282d16b4]{margin-left:52%}.col-no-margin-xxl-6[data-v-282d16b4]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-7[data-v-282d16b4]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-282d16b4]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-8[data-v-282d16b4]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-282d16b4]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-9[data-v-282d16b4]{margin-left:78%}.col-no-margin-xxl-9[data-v-282d16b4]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-10[data-v-282d16b4]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-282d16b4]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-282d16b4]:first-child{margin-left:0}.col-offset-xxl-11[data-v-282d16b4]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-282d16b4]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-282d16b4]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-282d16b4]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-282d16b4]{display:none!important}.xxl-visible[data-v-282d16b4]{display:block!important}}.vertical-center[data-v-282d16b4]{display:flex;align-items:center}.horizontal-center[data-v-282d16b4]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-282d16b4]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-282d16b4]{display:none!important}.no-content[data-v-282d16b4]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-282d16b4],.btn[data-v-282d16b4],button[data-v-282d16b4]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-282d16b4],.btn-default[type=submit][data-v-282d16b4],.btn.btn-primary[data-v-282d16b4],.btn[type=submit][data-v-282d16b4],button.btn-primary[data-v-282d16b4],button[type=submit][data-v-282d16b4]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-282d16b4],.btn-default .icon[data-v-282d16b4],button .icon[data-v-282d16b4]{margin-right:.5em}input[type=password][data-v-282d16b4],input[type=text][data-v-282d16b4]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-282d16b4]:focus,input[type=text][data-v-282d16b4]:focus{border:1px solid #35b870}button[data-v-282d16b4],input[data-v-282d16b4]{outline:none}input[type=text][data-v-282d16b4]:hover,textarea[data-v-282d16b4]:hover{border:1px solid #9cdfb0}ul[data-v-282d16b4]{margin:0;padding:0;list-style:none}a[data-v-282d16b4]{cursor:pointer;text-decoration:none}[data-v-282d16b4]::-webkit-scrollbar{width:.75em}[data-v-282d16b4]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-282d16b4]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-282d16b4]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-282d16b4]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-282d16b4],input[type=password][data-v-282d16b4],input[type=search][data-v-282d16b4],input[type=text][data-v-282d16b4]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-282d16b4]:hover,input[type=password][data-v-282d16b4]:hover,input[type=search][data-v-282d16b4]:hover,input[type=text][data-v-282d16b4]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-282d16b4]:focus,input[type=password][data-v-282d16b4]:focus,input[type=search][data-v-282d16b4]:focus,input[type=text][data-v-282d16b4]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-282d16b4],input[type=password].with-icon[data-v-282d16b4],input[type=search].with-icon[data-v-282d16b4],input[type=text].with-icon[data-v-282d16b4]{padding-left:.3em}input[type=search][data-v-282d16b4],input[type=text][data-v-282d16b4]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-282d16b4]{animation-fill-mode:both;animation-name:fadeIn-282d16b4;-webkit-animation-name:fadeIn-282d16b4}.fade-in[data-v-282d16b4],.fade-out[data-v-282d16b4]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-282d16b4]{animation-fill-mode:both;animation-name:fadeOut-282d16b4;-webkit-animation-name:fadeOut-282d16b4}@keyframes fadeIn-282d16b4{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-282d16b4{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-282d16b4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-282d16b4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-282d16b4]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}.item[data-v-282d16b4]{display:flex;padding:.75em .5em;cursor:pointer;align-items:center;color:#23513a;border:0;box-shadow:none}.item[data-v-282d16b4]:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.item.selected[data-v-282d16b4]{font-weight:700}.item.disabled[data-v-282d16b4]{color:#999;cursor:auto}.item .text[data-v-282d16b4]{text-align:left;margin-left:.5em}.item .icon[data-v-282d16b4]{width:1.5em;display:inline-flex;align-items:center}.item[data-v-282d16b4] .icon-container{width:2em;display:inline-flex;align-items:center}.item[data-v-282d16b4] .icon-container .icon{margin:0 1.5em 0 .5em}.token-container{width:100%;display:flex;margin-top:.15em}.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{height:10em;margin-top:1em;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}}.settings-container .body{width:100%;height:100%;display:flex;justify-content:center}.settings-container .modal .body{height:auto}.settings-container form label{display:block;text-align:center}.settings-container .users-list{background:#fff;margin-top:.15em;height:-moz-max-content;height:max-content}.settings-container .users-list .user{display:flex;align-items:center;padding:.75em;box-shadow:0 3px 2px -1px silver}.settings-container .users-list .user:hover{background:linear-gradient(90deg,#bef6da,#e5fbf0)}.settings-container .users-list .user .actions{display:inline-flex;justify-content:right}.settings-container .users-list .user .actions button{width:-moz-min-content;width:min-content}@media screen and (max-width:1024px){.settings-container .users-list{width:100%}}@media screen and (min-width:1024px){.settings-container .users-list{min-width:400pt;max-width:600pt;margin-top:1em;border-radius:1em;box-shadow:0 3px 2px -1px silver}.settings-container .users-list .user{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}}.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{cursor:pointer;text-decoration:none}::-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-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-1[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%;margin:0}.col-offset-1[data-v-fbc09254]:first-child{margin-left:8.6666666667%!important}.col-offset-1[data-v-fbc09254]:not(first-child){margin-left:12.6666666667%!important}.col-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-2[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%;margin:0}.col-offset-2[data-v-fbc09254]:first-child{margin-left:17.3333333333%!important}.col-offset-2[data-v-fbc09254]:not(first-child){margin-left:21.3333333333%!important}.col-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-3[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%;margin:0}.col-offset-3[data-v-fbc09254]:first-child{margin-left:26%!important}.col-offset-3[data-v-fbc09254]:not(first-child){margin-left:30%!important}.col-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-4[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%;margin:0}.col-offset-4[data-v-fbc09254]:first-child{margin-left:34.6666666667%!important}.col-offset-4[data-v-fbc09254]:not(first-child){margin-left:38.6666666667%!important}.col-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-5[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%;margin:0}.col-offset-5[data-v-fbc09254]:first-child{margin-left:43.3333333334%!important}.col-offset-5[data-v-fbc09254]:not(first-child){margin-left:47.3333333334%!important}.col-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-6[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%;margin:0}.col-offset-6[data-v-fbc09254]:first-child{margin-left:52%!important}.col-offset-6[data-v-fbc09254]:not(first-child){margin-left:56%!important}.col-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-7[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%;margin:0}.col-offset-7[data-v-fbc09254]:first-child{margin-left:60.6666666667%!important}.col-offset-7[data-v-fbc09254]:not(first-child){margin-left:64.6666666667%!important}.col-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-8[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%;margin:0}.col-offset-8[data-v-fbc09254]:first-child{margin-left:69.3333333334%!important}.col-offset-8[data-v-fbc09254]:not(first-child){margin-left:73.3333333334%!important}.col-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-9[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%;margin:0}.col-offset-9[data-v-fbc09254]:first-child{margin-left:78%!important}.col-offset-9[data-v-fbc09254]:not(first-child){margin-left:82%!important}.col-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-10[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%;margin:0}.col-offset-10[data-v-fbc09254]:first-child{margin-left:86.6666666667%!important}.col-offset-10[data-v-fbc09254]:not(first-child){margin-left:90.6666666667%!important}.col-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-11[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%;margin:0}.col-offset-11[data-v-fbc09254]:first-child{margin-left:95.3333333334%!important}.col-offset-11[data-v-fbc09254]:not(first-child){margin-left:99.3333333334%!important}.col-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin:0}@media screen and (max-width:calc(769px - 1px)){.col-s-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-s-1[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-1[data-v-fbc09254]{margin-left:8.6666666667%}.col-no-margin-s-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%}.col-s-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-s-2[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-2[data-v-fbc09254]{margin-left:17.3333333333%}.col-no-margin-s-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%}.col-s-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-s-3[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-3[data-v-fbc09254]{margin-left:26%}.col-no-margin-s-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%}.col-s-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-s-4[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-4[data-v-fbc09254]{margin-left:34.6666666667%}.col-no-margin-s-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%}.col-s-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-s-5[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-5[data-v-fbc09254]{margin-left:43.3333333334%}.col-no-margin-s-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%}.col-s-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-s-6[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-6[data-v-fbc09254]{margin-left:52%}.col-no-margin-s-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%}.col-s-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-s-7[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-7[data-v-fbc09254]{margin-left:60.6666666667%}.col-no-margin-s-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%}.col-s-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-s-8[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-8[data-v-fbc09254]{margin-left:69.3333333334%}.col-no-margin-s-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%}.col-s-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-s-9[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-9[data-v-fbc09254]{margin-left:78%}.col-no-margin-s-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%}.col-s-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-s-10[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-10[data-v-fbc09254]{margin-left:86.6666666667%}.col-no-margin-s-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%}.col-s-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-s-11[data-v-fbc09254]:first-child{margin-left:0}.col-offset-s-11[data-v-fbc09254]{margin-left:95.3333333334%}.col-no-margin-s-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%}.col-s-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-s-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-s-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%}.s-hidden[data-v-fbc09254]{display:none!important}.s-visible[data-v-fbc09254]{display:block!important}}@media screen and (min-width:769px){.col-m-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-m-1[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-1[data-v-fbc09254]{margin-left:8.6666666667%}.col-no-margin-m-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%}.col-m-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-m-2[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-2[data-v-fbc09254]{margin-left:17.3333333333%}.col-no-margin-m-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%}.col-m-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-m-3[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-3[data-v-fbc09254]{margin-left:26%}.col-no-margin-m-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%}.col-m-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-m-4[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-4[data-v-fbc09254]{margin-left:34.6666666667%}.col-no-margin-m-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%}.col-m-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-m-5[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-5[data-v-fbc09254]{margin-left:43.3333333334%}.col-no-margin-m-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%}.col-m-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-m-6[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-6[data-v-fbc09254]{margin-left:52%}.col-no-margin-m-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%}.col-m-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-m-7[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-7[data-v-fbc09254]{margin-left:60.6666666667%}.col-no-margin-m-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%}.col-m-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-m-8[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-8[data-v-fbc09254]{margin-left:69.3333333334%}.col-no-margin-m-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%}.col-m-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-m-9[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-9[data-v-fbc09254]{margin-left:78%}.col-no-margin-m-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%}.col-m-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-m-10[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-10[data-v-fbc09254]{margin-left:86.6666666667%}.col-no-margin-m-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%}.col-m-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-m-11[data-v-fbc09254]:first-child{margin-left:0}.col-offset-m-11[data-v-fbc09254]{margin-left:95.3333333334%}.col-no-margin-m-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%}.col-m-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-m-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-m-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%}.m-hidden[data-v-fbc09254]{display:none!important}.m-visible[data-v-fbc09254]{display:block!important}}@media screen and (min-width:1024px){.col-l-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-l-1[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-1[data-v-fbc09254]{margin-left:8.6666666667%}.col-no-margin-l-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%}.col-l-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-l-2[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-2[data-v-fbc09254]{margin-left:17.3333333333%}.col-no-margin-l-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%}.col-l-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-l-3[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-3[data-v-fbc09254]{margin-left:26%}.col-no-margin-l-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%}.col-l-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-l-4[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-4[data-v-fbc09254]{margin-left:34.6666666667%}.col-no-margin-l-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%}.col-l-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-l-5[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-5[data-v-fbc09254]{margin-left:43.3333333334%}.col-no-margin-l-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%}.col-l-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-l-6[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-6[data-v-fbc09254]{margin-left:52%}.col-no-margin-l-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%}.col-l-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-l-7[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-7[data-v-fbc09254]{margin-left:60.6666666667%}.col-no-margin-l-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%}.col-l-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-l-8[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-8[data-v-fbc09254]{margin-left:69.3333333334%}.col-no-margin-l-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%}.col-l-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-l-9[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-9[data-v-fbc09254]{margin-left:78%}.col-no-margin-l-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%}.col-l-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-l-10[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-10[data-v-fbc09254]{margin-left:86.6666666667%}.col-no-margin-l-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%}.col-l-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-l-11[data-v-fbc09254]:first-child{margin-left:0}.col-offset-l-11[data-v-fbc09254]{margin-left:95.3333333334%}.col-no-margin-l-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%}.col-l-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-l-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-l-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%}.l-hidden[data-v-fbc09254]{display:none!important}.l-visible[data-v-fbc09254]{display:block!important}}@media screen and (min-width:1216px){.col-xl-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xl-1[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-1[data-v-fbc09254]{margin-left:8.6666666667%}.col-no-margin-xl-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xl-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xl-2[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-2[data-v-fbc09254]{margin-left:17.3333333333%}.col-no-margin-xl-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xl-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xl-3[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-3[data-v-fbc09254]{margin-left:26%}.col-no-margin-xl-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%}.col-xl-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xl-4[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-4[data-v-fbc09254]{margin-left:34.6666666667%}.col-no-margin-xl-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xl-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xl-5[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-5[data-v-fbc09254]{margin-left:43.3333333334%}.col-no-margin-xl-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xl-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xl-6[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-6[data-v-fbc09254]{margin-left:52%}.col-no-margin-xl-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%}.col-xl-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xl-7[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-7[data-v-fbc09254]{margin-left:60.6666666667%}.col-no-margin-xl-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xl-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xl-8[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-8[data-v-fbc09254]{margin-left:69.3333333334%}.col-no-margin-xl-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xl-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xl-9[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-9[data-v-fbc09254]{margin-left:78%}.col-no-margin-xl-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%}.col-xl-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xl-10[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-10[data-v-fbc09254]{margin-left:86.6666666667%}.col-no-margin-xl-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xl-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xl-11[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xl-11[data-v-fbc09254]{margin-left:95.3333333334%}.col-no-margin-xl-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xl-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xl-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-xl-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%}.xl-hidden[data-v-fbc09254]{display:none!important}.xl-visible[data-v-fbc09254]{display:block!important}}@media screen and (min-width:1408px){.col-xxl-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:4.6666666667%;margin-left:4%}.col-xxl-1[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-1[data-v-fbc09254]{margin-left:8.6666666667%}.col-no-margin-xxl-1[data-v-fbc09254]{float:left;box-sizing:border-box;width:8.3333333333%}.col-xxl-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:13.3333333333%;margin-left:4%}.col-xxl-2[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-2[data-v-fbc09254]{margin-left:17.3333333333%}.col-no-margin-xxl-2[data-v-fbc09254]{float:left;box-sizing:border-box;width:16.6666666667%}.col-xxl-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:22%;margin-left:4%}.col-xxl-3[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-3[data-v-fbc09254]{margin-left:26%}.col-no-margin-xxl-3[data-v-fbc09254]{float:left;box-sizing:border-box;width:25%}.col-xxl-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:30.6666666667%;margin-left:4%}.col-xxl-4[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-4[data-v-fbc09254]{margin-left:34.6666666667%}.col-no-margin-xxl-4[data-v-fbc09254]{float:left;box-sizing:border-box;width:33.3333333333%}.col-xxl-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:39.3333333334%;margin-left:4%}.col-xxl-5[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-5[data-v-fbc09254]{margin-left:43.3333333334%}.col-no-margin-xxl-5[data-v-fbc09254]{float:left;box-sizing:border-box;width:41.6666666667%}.col-xxl-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:48%;margin-left:4%}.col-xxl-6[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-6[data-v-fbc09254]{margin-left:52%}.col-no-margin-xxl-6[data-v-fbc09254]{float:left;box-sizing:border-box;width:50%}.col-xxl-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:56.6666666667%;margin-left:4%}.col-xxl-7[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-7[data-v-fbc09254]{margin-left:60.6666666667%}.col-no-margin-xxl-7[data-v-fbc09254]{float:left;box-sizing:border-box;width:58.3333333333%}.col-xxl-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:65.3333333334%;margin-left:4%}.col-xxl-8[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-8[data-v-fbc09254]{margin-left:69.3333333334%}.col-no-margin-xxl-8[data-v-fbc09254]{float:left;box-sizing:border-box;width:66.6666666667%}.col-xxl-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:74%;margin-left:4%}.col-xxl-9[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-9[data-v-fbc09254]{margin-left:78%}.col-no-margin-xxl-9[data-v-fbc09254]{float:left;box-sizing:border-box;width:75%}.col-xxl-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:82.6666666667%;margin-left:4%}.col-xxl-10[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-10[data-v-fbc09254]{margin-left:86.6666666667%}.col-no-margin-xxl-10[data-v-fbc09254]{float:left;box-sizing:border-box;width:83.3333333333%}.col-xxl-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.3333333334%;margin-left:4%}.col-xxl-11[data-v-fbc09254]:first-child{margin-left:0}.col-offset-xxl-11[data-v-fbc09254]{margin-left:95.3333333334%}.col-no-margin-xxl-11[data-v-fbc09254]{float:left;box-sizing:border-box;width:91.6666666667%}.col-xxl-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%;margin-left:0}.col-xxl-12[data-v-fbc09254]:first-child{margin-left:0}.col-no-margin-xxl-12[data-v-fbc09254]{float:left;box-sizing:border-box;width:100%}.xxl-hidden[data-v-fbc09254]{display:none!important}.xxl-visible[data-v-fbc09254]{display:block!important}}.vertical-center[data-v-fbc09254]{display:flex;align-items:center}.horizontal-center[data-v-fbc09254]{display:flex;justify-content:center;margin-left:auto;margin-right:auto}.pull-right[data-v-fbc09254]{display:inline-flex;text-align:right;justify-content:right;flex-grow:1}.hidden[data-v-fbc09254]{display:none!important}.no-content[data-v-fbc09254]{display:flex;font-size:1.5em;align-items:center;justify-content:center}.btn-default[data-v-fbc09254],.btn[data-v-fbc09254],button[data-v-fbc09254]{border:1px solid #ccc;cursor:pointer;padding:.5em 1em;letter-spacing:.05em}.btn-default.btn-primary[data-v-fbc09254],.btn-default[type=submit][data-v-fbc09254],.btn.btn-primary[data-v-fbc09254],.btn[type=submit][data-v-fbc09254],button.btn-primary[data-v-fbc09254],button[type=submit][data-v-fbc09254]{background:linear-gradient(90deg,#c8ffd0,#d8efe8);color:#32b646;border:1px solid #98cfa0}.btn .icon[data-v-fbc09254],.btn-default .icon[data-v-fbc09254],button .icon[data-v-fbc09254]{margin-right:.5em}input[type=password][data-v-fbc09254],input[type=text][data-v-fbc09254]{border:1px solid #ccc;border-radius:1em;padding:.5em}input[type=password][data-v-fbc09254]:focus,input[type=text][data-v-fbc09254]:focus{border:1px solid #35b870}button[data-v-fbc09254],input[data-v-fbc09254]{outline:none}input[type=text][data-v-fbc09254]:hover,textarea[data-v-fbc09254]:hover{border:1px solid #9cdfb0}ul[data-v-fbc09254]{margin:0;padding:0;list-style:none}a[data-v-fbc09254]{cursor:pointer;text-decoration:none}[data-v-fbc09254]::-webkit-scrollbar{width:.75em}[data-v-fbc09254]::-webkit-scrollbar-track{background:#e4e4e4;box-shadow:inset 1px 0 3px 0 #a5a2a2}[data-v-fbc09254]::-webkit-scrollbar-thumb{background:#a5a2a2;border-radius:1em;cursor:pointer}body[data-v-fbc09254]{scrollbar-width:thin;scrollbar-color:#a5a2a2 #e4e4e4}.input-icon[data-v-fbc09254]{position:absolute;min-width:.3em;padding:.1em;color:#888}input[type=number][data-v-fbc09254],input[type=password][data-v-fbc09254],input[type=search][data-v-fbc09254],input[type=text][data-v-fbc09254]{border:1px solid #ddd;border-radius:.5em;padding:.25em}input[type=number][data-v-fbc09254]:hover,input[type=password][data-v-fbc09254]:hover,input[type=search][data-v-fbc09254]:hover,input[type=text][data-v-fbc09254]:hover{border:1px solid rgba(159,180,152,.83)}input[type=number][data-v-fbc09254]:focus,input[type=password][data-v-fbc09254]:focus,input[type=search][data-v-fbc09254]:focus,input[type=text][data-v-fbc09254]:focus{border:1px solid rgba(127,216,95,.83)}input[type=number].with-icon[data-v-fbc09254],input[type=password].with-icon[data-v-fbc09254],input[type=search].with-icon[data-v-fbc09254],input[type=text].with-icon[data-v-fbc09254]{padding-left:.3em}input[type=search][data-v-fbc09254],input[type=text][data-v-fbc09254]{border-radius:1em;padding:.25em .5em}.fade-in[data-v-fbc09254]{animation-fill-mode:both;animation-name:fadeIn-fbc09254;-webkit-animation-name:fadeIn-fbc09254}.fade-in[data-v-fbc09254],.fade-out[data-v-fbc09254]{animation-duration:.5s;-webkit-animation-duration:.5s}.fade-out[data-v-fbc09254]{animation-fill-mode:both;animation-name:fadeOut-fbc09254;-webkit-animation-name:fadeOut-fbc09254}@keyframes fadeIn-fbc09254{0%{opacity:0}to{opacity:1}}@keyframes fadeOut-fbc09254{0%{opacity:1}to{opacity:0;display:none}}.fa.fa-kodi[data-v-fbc09254]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/kodi.d18f8d23.svg)}.fa.fa-plex[data-v-fbc09254]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/plex.7a4e22a6.svg)}.fa.fa-jellyfin[data-v-fbc09254]:before{content:" ";background-size:1em 1em;width:1em;height:1em;display:inline-block;background:url(/static/img/jellyfin.7b53a541.svg)}main[data-v-fbc09254]{height:100%;display:flex}@media screen and (max-width:calc(769px - 1px)){main[data-v-fbc09254]{flex-direction:column}}main .canvas[data-v-fbc09254]{display:flex;flex-grow:100;background:#e0eae8;overflow:auto}main .canvas .panel[data-v-fbc09254]{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}}.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]{cursor:pointer;text-decoration:none}[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/img/logo.5b906db6.png b/platypush/backend/http/webapp/dist/static/img/logo.5b906db6.png
deleted file mode 100644
index e4da43088..000000000
Binary files a/platypush/backend/http/webapp/dist/static/img/logo.5b906db6.png and /dev/null differ
diff --git a/platypush/backend/http/webapp/dist/static/js/app-legacy.1178b8ae.js b/platypush/backend/http/webapp/dist/static/js/app-legacy.1178b8ae.js
new file mode 100644
index 000000000..bc04fef41
--- /dev/null
+++ b/platypush/backend/http/webapp/dist/static/js/app-legacy.1178b8ae.js
@@ -0,0 +1,2 @@
+(function(){var e={5250:function(e,t,n){"use strict";n.d(t,{$:function(){return i}});var s=n(9652),i=(0,s.Z)();i.publishEntity=function(e){i.emit("entity-update",e)},i.onEntity=function(e){i.on("entity-update",e)},i.publishNotification=function(e){i.emit("notification-create",e)},i.onNotification=function(e){i.on("notification-create",e)}},448:function(e,t,n){"use strict";n(6992),n(8674),n(9601),n(7727);var s=n(9963),i=n(6252);function r(e,t,n,s,r,a){var o=(0,i.up)("Events"),c=(0,i.up)("Notifications"),l=(0,i.up)("VoiceAssistant"),u=(0,i.up)("Pushbullet"),d=(0,i.up)("Ntfy"),f=(0,i.up)("router-view");return(0,i.wg)(),(0,i.iD)(i.HY,null,[a.hasWebsocket?((0,i.wg)(),(0,i.j4)(o,{key:0,ref:"events"},null,512)):(0,i.kq)("",!0),(0,i.Wm)(c,{ref:"notifications"},null,512),a.hasAssistant?((0,i.wg)(),(0,i.j4)(l,{key:1,ref:"voice-assistant"},null,512)):(0,i.kq)("",!0),a.hasPushbullet?((0,i.wg)(),(0,i.j4)(u,{key:2,ref:"pushbullet"},null,512)):(0,i.kq)("",!0),a.hasNtfy?((0,i.wg)(),(0,i.j4)(d,{key:3,ref:"ntfy"},null,512)):(0,i.kq)("",!0),(0,i.Wm)(f)],64)}var a=n(8534),o=(n(5666),n(9254),{class:"notifications"});function c(e,t,n,s,r,a){var c=(0,i.up)("Notification");return(0,i.wg)(),(0,i.iD)("div",o,[((0,i.wg)(!0),(0,i.iD)(i.HY,null,(0,i.Ko)(e.notifications,(function(e,t,n){return(0,i.wg)(),(0,i.j4)(c,{key:n,id:t,text:e.text,html:e.html,title:e.title,link:e.link,image:e.image,warning:e.warning,error:e.error,onClicked:a.destroy},null,8,["id","text","html","title","link","image","warning","error","onClicked"])})),128))])}n(9653);var l=n(3577),u=["textContent"],d={class:"body"},f={key:0,class:"image col-3"},p={class:"row"},h=["src"],m={key:3,class:"fa fa-exclamation"},g={key:4,class:"fa fa-times"},v=["textContent"],b=["innerHTML"],w=["textContent"],y=["innerHTML"];function k(e,t,n,s,r,a){return(0,i.wg)(),(0,i.iD)("div",{class:(0,l.C_)(["notification fade-in",{warning:n.warning,error:n.error}]),onClick:t[0]||(t[0]=function(){return a.clicked&&a.clicked.apply(a,arguments)})},[n.title?((0,i.wg)(),(0,i.iD)("div",{key:0,class:"title",textContent:(0,l.zw)(n.title)},null,8,u)):(0,i.kq)("",!0),(0,i._)("div",d,[n.image||n.warning||n.error?((0,i.wg)(),(0,i.iD)("div",f,[(0,i._)("div",p,[n.image&&n.image.src?((0,i.wg)(),(0,i.iD)("img",{key:0,src:n.image.src,alt:""},null,8,h)):n.image&&n.image.icon?((0,i.wg)(),(0,i.iD)("i",{key:1,class:(0,l.C_)(["fa","fa-"+n.image.icon]),style:(0,l.j5)(n.image.color?"--color: "+n.image.color:"")},null,6)):n.image&&n.image.iconClass?((0,i.wg)(),(0,i.iD)("i",{key:2,class:(0,l.C_)(n.image.iconClass),style:(0,l.j5)(n.image.color?"--color: "+n.image.color:"")},null,6)):n.warning?((0,i.wg)(),(0,i.iD)("i",m)):n.error?((0,i.wg)(),(0,i.iD)("i",g)):(0,i.kq)("",!0)])])):(0,i.kq)("",!0),n.text&&n.image?((0,i.wg)(),(0,i.iD)("div",{key:1,class:"text col-9",textContent:(0,l.zw)(n.text)},null,8,v)):(0,i.kq)("",!0),n.html&&n.image?((0,i.wg)(),(0,i.iD)("div",{key:2,class:"text col-9",innerHTML:n.html},null,8,b)):(0,i.kq)("",!0),n.text&&!n.image?((0,i.wg)(),(0,i.iD)("div",{key:3,class:"text row horizontal-center",textContent:(0,l.zw)(n.text)},null,8,w)):(0,i.kq)("",!0),n.html&&!n.image?((0,i.wg)(),(0,i.iD)("div",{key:4,class:"text row horizontal-center",innerHTML:n.html},null,8,y)):(0,i.kq)("",!0)])],2)}var x={name:"Notification",props:["id","text","html","title","image","link","error","warning"],methods:{clicked:function(){this.link&&window.open(this.link,"_blank"),this.$emit("clicked",this.id)}}},_=n(3744);const C=(0,_.Z)(x,[["render",k],["__scopeId","data-v-7646705e"]]);var D=C,I={name:"Notifications",components:{Notification:D},props:{duration:{type:Number,default:1e4}},data:function(){return{index:0,notifications:{},timeouts:{}}},methods:{create:function(e){var t=this.index++;this.notifications[t]=e,null==e.duration&&(e.duration=this.duration);var n=e.duration?parseInt(e.duration):0;n&&(this.timeouts[t]=setTimeout(this.destroy.bind(null,t),n))},destroy:function(e){delete this.notifications[e],delete this.timeouts[e]}}};const T=(0,_.Z)(I,[["render",c],["__scopeId","data-v-6dc8bebc"]]);var Z=T,S=n(6813);function U(e,t,n,s,r,a){return(0,i.wg)(),(0,i.iD)("div")}var M=n(6347),R=n(9584),N=(n(2479),n(2222),n(7941),n(5250)),P={name:"Events",data:function(){return{ws:null,initialized:!1,pending:!1,opened:!1,timeout:null,reconnectMsecs:1e3,minReconnectMsecs:1e3,maxReconnectMsecs:3e4,handlers:{},handlerNameToEventTypes:{}}},methods:{onWebsocketTimeout:function(){console.log("Websocket reconnection timed out, retrying"),this.reconnectMsecs=Math.min(2*this.reconnectMsecs,this.maxReconnectMsecs),this.pending=!1,this.ws&&this.ws.close(),this.onClose()},onMessage:function(e){var t=[];if(e=e.data,"string"===typeof e)try{e=JSON.parse(e)}catch(r){console.warn("Received invalid non-JSON event"),console.warn(e)}if(console.debug(e),"event"===e.type){null in this.handlers&&t.push(this.handlers[null]),e.args.type in this.handlers&&t.push.apply(t,(0,R.Z)(Object.values(this.handlers[e.args.type])));for(var n=0,s=t;n