diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..06866cc --- /dev/null +++ b/.babelrc @@ -0,0 +1,3 @@ +{ + "presets": ["minify"] +} diff --git a/README.md b/README.md index 5f85e80..e6b925f 100644 --- a/README.md +++ b/README.md @@ -14,25 +14,37 @@ You can find a running demo [here](http://www.timo-ernst.net/misc/f7-plugin-welc ### 1. Add dependency +#### With module bundler (Webpack, Vite...) + ```shell $ yarn add f7-welcomescreen ``` -### 2. Import - In your main js file do: ``` import F7WelcomescreenPlugin from 'f7-welcomescreen'; ``` -Make sure you have css bundling in webpack enabled and import these stylesheets from your main css file: +In your stylesheet do: ``` @import '~framework7/framework7-bundle.min.css'; @import '~f7-welcomescreen/dist/main.css'; ``` +#### Alternative: Without bundler (direct linking) + +1. Copy files `f7-welcomescreen.min.js` and `f7-welcomescreen.min.css` from `dist` into your project folder. +2. Reference the files in HTML like this: + +``` +
+ + ')[0].trim();\n } else {\n scriptContent = 'return () => {return $render}';\n }\n\n if (!scriptContent || !scriptContent.trim()) scriptContent = 'return () => {return $render}'; // Parse Template\n\n if (template) {\n scriptContent = scriptContent.replace('$render', \"function ($$ctx) {\\n var $ = $$ctx.$$;\\n var $h = $$ctx.$h;\\n var $root = $$ctx.$root;\\n var $f7 = $$ctx.$f7;\\n var $f7route = $$ctx.$f7route;\\n var $f7router = $$ctx.$f7router;\\n var $theme = $$ctx.$theme;\\n var $update = $$ctx.$update;\\n var $store = $$ctx.$store;\\n\\n return $h`\" + template + \"`\\n }\\n \").replace(/export default/g, 'return');\n } // Execute Script\n\n\n scriptContent = \"window.\" + callbackCreateName + \" = function () {\" + scriptContent + \"}\"; // Insert Script El\n\n var scriptEl = document.createElement('script');\n scriptEl.innerHTML = scriptContent;\n $('head').append(scriptEl);\n var component = window[callbackCreateName](); // Remove Script El\n\n $(scriptEl).remove();\n window[callbackCreateName] = null;\n delete window[callbackCreateName]; // Assign Style\n\n if (style) {\n component.style = style;\n } // Component ID\n\n\n component.id = componentId;\n return component;\n}\n\nexport default parseComponent;","import History from '../../shared/history';\nexport default {\n name: 'history',\n static: {\n history: History\n },\n on: {\n init: function init() {\n History.init(this);\n }\n }\n};","import { getWindow } from 'ssr-window';\nimport { extend } from '../../shared/utils';\nvar SW = {\n registrations: [],\n register: function register(path, scope) {\n var app = this;\n var window = getWindow();\n\n if (!('serviceWorker' in window.navigator) || !app.serviceWorker.container) {\n return new Promise(function (resolve, reject) {\n reject(new Error('Service worker is not supported'));\n });\n }\n\n return new Promise(function (resolve, reject) {\n app.serviceWorker.container.register(path, scope ? {\n scope: scope\n } : {}).then(function (reg) {\n SW.registrations.push(reg);\n app.emit('serviceWorkerRegisterSuccess', reg);\n resolve(reg);\n }).catch(function (error) {\n app.emit('serviceWorkerRegisterError', error);\n reject(error);\n });\n });\n },\n unregister: function unregister(registration) {\n var app = this;\n var window = getWindow();\n\n if (!('serviceWorker' in window.navigator) || !app.serviceWorker.container) {\n return new Promise(function (resolve, reject) {\n reject(new Error('Service worker is not supported'));\n });\n }\n\n var registrations;\n if (!registration) registrations = SW.registrations;else if (Array.isArray(registration)) registrations = registration;else registrations = [registration];\n return Promise.all(registrations.map(function (reg) {\n return new Promise(function (resolve, reject) {\n reg.unregister().then(function () {\n if (SW.registrations.indexOf(reg) >= 0) {\n SW.registrations.splice(SW.registrations.indexOf(reg), 1);\n }\n\n app.emit('serviceWorkerUnregisterSuccess', reg);\n resolve();\n }).catch(function (error) {\n app.emit('serviceWorkerUnregisterError', reg, error);\n reject(error);\n });\n });\n }));\n }\n};\nexport default {\n name: 'sw',\n params: {\n serviceWorker: {\n path: undefined,\n scope: undefined\n }\n },\n create: function create() {\n var app = this;\n var window = getWindow();\n extend(app, {\n serviceWorker: {\n container: 'serviceWorker' in window.navigator ? window.navigator.serviceWorker : undefined,\n registrations: SW.registrations,\n register: SW.register.bind(app),\n unregister: SW.unregister.bind(app)\n }\n });\n },\n on: {\n init: function init() {\n var window = getWindow();\n if (!('serviceWorker' in window.navigator)) return;\n var app = this;\n if (app.device.cordova || window.Capacitor && window.Capacitor.isNative) return;\n if (!app.serviceWorker.container) return;\n var paths = app.params.serviceWorker.path;\n var scope = app.params.serviceWorker.scope;\n if (!paths || Array.isArray(paths) && !paths.length) return;\n var toRegister = Array.isArray(paths) ? paths : [paths];\n toRegister.forEach(function (path) {\n app.serviceWorker.register(path, scope);\n });\n }\n }\n};","function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\n/* eslint-disable no-underscore-dangle */\nimport { extend } from '../../shared/utils';\n\nfunction createStore(storeParams) {\n if (storeParams === void 0) {\n storeParams = {};\n }\n\n var store = {\n __store: true\n };\n\n var originalState = _extends({}, storeParams.state || {});\n\n var actions = _extends({}, storeParams.actions || {});\n\n var getters = _extends({}, storeParams.getters || {});\n\n var state = extend({}, originalState);\n var propsQueue = [];\n var gettersDependencies = {};\n var gettersCallbacks = {};\n Object.keys(getters).forEach(function (getterKey) {\n gettersDependencies[getterKey] = [];\n gettersCallbacks[getterKey] = [];\n });\n\n var getGetterValue = function getGetterValue(getterKey) {\n return getters[getterKey]({\n state: store.state\n });\n };\n\n var addGetterDependencies = function addGetterDependencies(getterKey, deps) {\n if (!gettersDependencies[getterKey]) gettersDependencies[getterKey] = [];\n deps.forEach(function (dep) {\n if (gettersDependencies[getterKey].indexOf(dep) < 0) {\n gettersDependencies[getterKey].push(dep);\n }\n });\n };\n\n var addGetterCallback = function addGetterCallback(getterKey, callback) {\n if (!gettersCallbacks[getterKey]) gettersCallbacks[getterKey] = [];\n gettersCallbacks[getterKey].push(callback);\n };\n\n var runGetterCallbacks = function runGetterCallbacks(stateKey) {\n var keys = Object.keys(gettersDependencies).filter(function (getterKey) {\n return gettersDependencies[getterKey].indexOf(stateKey) >= 0;\n });\n keys.forEach(function (getterKey) {\n if (!gettersCallbacks[getterKey] || !gettersCallbacks[getterKey].length) return;\n gettersCallbacks[getterKey].forEach(function (callback) {\n callback(getGetterValue(getterKey));\n });\n });\n };\n\n var removeGetterCallback = function removeGetterCallback(callback) {\n Object.keys(gettersCallbacks).forEach(function (stateKey) {\n var callbacks = gettersCallbacks[stateKey];\n\n if (callbacks.indexOf(callback) >= 0) {\n callbacks.splice(callbacks.indexOf(callback), 1);\n }\n });\n }; // eslint-disable-next-line\n\n\n store.__removeCallback = function (callback) {\n removeGetterCallback(callback);\n };\n\n var getterValue = function getterValue(getterKey, addCallback) {\n if (addCallback === void 0) {\n addCallback = true;\n }\n\n if (getterKey === 'constructor') return undefined;\n propsQueue = [];\n var value = getGetterValue(getterKey);\n addGetterDependencies(getterKey, propsQueue);\n\n var onUpdated = function onUpdated(callback) {\n addGetterCallback(getterKey, callback);\n };\n\n var obj = {\n value: value,\n onUpdated: onUpdated\n };\n\n if (!addCallback) {\n return obj;\n }\n\n var callback = function callback(v) {\n obj.value = v;\n };\n\n obj.__callback = callback;\n addGetterCallback(getterKey, callback); // eslint-disable-next-line\n\n return obj;\n };\n\n store.state = new Proxy(state, {\n set: function set(target, prop, value) {\n target[prop] = value;\n runGetterCallbacks(prop);\n return true;\n },\n get: function get(target, prop) {\n propsQueue.push(prop);\n return target[prop];\n }\n });\n store.getters = new Proxy(getters, {\n set: function set() {\n return false;\n },\n get: function get(target, prop) {\n if (!target[prop]) {\n return undefined;\n }\n\n return getterValue(prop, true);\n }\n });\n store._gettersPlain = new Proxy(getters, {\n set: function set() {\n return false;\n },\n get: function get(target, prop) {\n if (!target[prop]) {\n return undefined;\n }\n\n return getterValue(prop, false);\n }\n });\n\n store.dispatch = function (actionName, data) {\n return new Promise(function (resolve, reject) {\n if (!actions[actionName]) {\n reject();\n throw new Error(\"Framework7: Store action \\\"\" + actionName + \"\\\" is not found\");\n }\n\n var result = actions[actionName]({\n state: store.state,\n dispatch: store.dispatch\n }, data);\n resolve(result);\n });\n };\n\n return store;\n}\n\nexport default createStore;","import createStore from './create-store';\nexport { createStore };\nexport default {\n name: 'store',\n static: {\n createStore: createStore\n },\n proto: {\n createStore: createStore\n }\n};","import { getWindow } from 'ssr-window';\nimport $ from '../../shared/dom7';\nimport { bindMethods } from '../../shared/utils';\nimport { getDevice } from '../../shared/get-device';\n\nvar isCapacitor = function isCapacitor() {\n var window = getWindow();\n return window.Capacitor && window.Capacitor.isNative && window.Capacitor.Plugins && window.Capacitor.Plugins.StatusBar;\n};\n\nvar Statusbar = {\n hide: function hide() {\n var window = getWindow();\n var device = getDevice();\n\n if (device.cordova && window.StatusBar) {\n window.StatusBar.hide();\n }\n\n if (isCapacitor()) {\n window.Capacitor.Plugins.StatusBar.hide();\n }\n },\n show: function show() {\n var window = getWindow();\n var device = getDevice();\n\n if (device.cordova && window.StatusBar) {\n window.StatusBar.show();\n }\n\n if (isCapacitor()) {\n window.Capacitor.Plugins.StatusBar.show();\n }\n },\n onClick: function onClick() {\n var app = this;\n var pageContent;\n\n if ($('.popup.modal-in').length > 0) {\n // Check for opened popup\n pageContent = $('.popup.modal-in').find('.page:not(.page-previous):not(.page-next):not(.cached)').find('.page-content');\n } else if ($('.panel.panel-in').length > 0) {\n // Check for opened panel\n pageContent = $('.panel.panel-in').find('.page:not(.page-previous):not(.page-next):not(.cached)').find('.page-content');\n } else if ($('.views > .view.tab-active').length > 0) {\n // View in tab bar app layout\n pageContent = $('.views > .view.tab-active').find('.page:not(.page-previous):not(.page-next):not(.cached)').find('.page-content');\n } else if ($('.views').length > 0) {\n pageContent = $('.views').find('.page:not(.page-previous):not(.page-next):not(.cached)').find('.page-content');\n } else {\n pageContent = app.$el.children('.view').find('.page:not(.page-previous):not(.page-next):not(.cached)').find('.page-content');\n }\n\n if (pageContent && pageContent.length > 0) {\n // Check for tab\n if (pageContent.hasClass('tab')) {\n pageContent = pageContent.parent('.tabs').children('.page-content.tab-active');\n }\n\n if (pageContent.length > 0) pageContent.scrollTop(0, 300);\n }\n },\n setTextColor: function setTextColor(color) {\n var window = getWindow();\n var device = getDevice();\n\n if (device.cordova && window.StatusBar) {\n if (color === 'white') {\n window.StatusBar.styleLightContent();\n } else {\n window.StatusBar.styleDefault();\n }\n }\n\n if (isCapacitor()) {\n if (color === 'white') {\n window.Capacitor.Plugins.StatusBar.setStyle({\n style: 'DARK'\n });\n } else {\n window.Capacitor.Plugins.StatusBar.setStyle({\n style: 'LIGHT'\n });\n }\n }\n },\n setBackgroundColor: function setBackgroundColor(color) {\n var window = getWindow();\n var device = getDevice();\n\n if (device.cordova && window.StatusBar) {\n window.StatusBar.backgroundColorByHexString(color);\n }\n\n if (isCapacitor()) {\n window.Capacitor.Plugins.StatusBar.setBackgroundColor({\n color: color\n });\n }\n },\n isVisible: function isVisible() {\n var window = getWindow();\n var device = getDevice();\n return new Promise(function (resolve) {\n if (device.cordova && window.StatusBar) {\n resolve(window.StatusBar.isVisible);\n }\n\n if (isCapacitor()) {\n window.Capacitor.Plugins.StatusBar.getInfo().then(function (info) {\n resolve(info.visible);\n });\n }\n\n resolve(false);\n });\n },\n overlaysWebView: function overlaysWebView(overlays) {\n if (overlays === void 0) {\n overlays = true;\n }\n\n var window = getWindow();\n var device = getDevice();\n\n if (device.cordova && window.StatusBar) {\n window.StatusBar.overlaysWebView(overlays);\n }\n\n if (isCapacitor()) {\n window.Capacitor.Plugins.StatusBar.setOverlaysWebView({\n overlay: overlays\n });\n }\n },\n init: function init() {\n var app = this;\n var window = getWindow();\n var device = getDevice();\n var params = app.params.statusbar;\n if (!params.enabled) return;\n var isCordova = device.cordova && window.StatusBar;\n var isCap = isCapacitor();\n\n if (isCordova || isCap) {\n if (params.scrollTopOnClick) {\n $(window).on('statusTap', Statusbar.onClick.bind(app));\n }\n\n if (device.ios) {\n if (params.iosOverlaysWebView) {\n Statusbar.overlaysWebView(true);\n } else {\n Statusbar.overlaysWebView(false);\n }\n\n if (params.iosTextColor === 'white') {\n Statusbar.setTextColor('white');\n } else {\n Statusbar.setTextColor('black');\n }\n }\n\n if (device.android) {\n if (params.androidOverlaysWebView) {\n Statusbar.overlaysWebView(true);\n } else {\n Statusbar.overlaysWebView(false);\n }\n\n if (params.androidTextColor === 'white') {\n Statusbar.setTextColor('white');\n } else {\n Statusbar.setTextColor('black');\n }\n }\n }\n\n if (params.iosBackgroundColor && device.ios) {\n Statusbar.setBackgroundColor(params.iosBackgroundColor);\n }\n\n if (params.androidBackgroundColor && device.android) {\n Statusbar.setBackgroundColor(params.androidBackgroundColor);\n }\n }\n};\nexport default {\n name: 'statusbar',\n params: {\n statusbar: {\n enabled: true,\n scrollTopOnClick: true,\n iosOverlaysWebView: true,\n iosTextColor: 'black',\n iosBackgroundColor: null,\n androidOverlaysWebView: false,\n androidTextColor: 'black',\n androidBackgroundColor: null\n }\n },\n create: function create() {\n var app = this;\n bindMethods(app, {\n statusbar: Statusbar\n });\n },\n on: {\n init: function init() {\n var app = this;\n Statusbar.init.call(app);\n }\n }\n};","import $ from '../../shared/dom7';\nimport { extend } from '../../shared/utils';\nimport View from './view-class';\n\nfunction getCurrentView(app) {\n var $popoverView = $('.popover.modal-in .view');\n var $popupView = $('.popup.modal-in .view');\n var $panelView = $('.panel.panel-in .view');\n var $viewsEl = $('.views');\n if ($viewsEl.length === 0) $viewsEl = app.$el; // Find active view as tab\n\n var $viewEl = $viewsEl.children('.view');\n\n if ($viewEl.length === 0) {\n $viewEl = $viewsEl.children('.tabs').children('.view');\n } // Propably in tabs or split view\n\n\n if ($viewEl.length > 1) {\n if ($viewEl.hasClass('tab')) {\n // Tabs\n $viewEl = $viewsEl.children('.view.tab-active');\n\n if ($viewEl.length === 0) {\n $viewEl = $viewsEl.children('.tabs').children('.view.tab-active');\n }\n } else {// Split View, leave appView intact\n }\n }\n\n if ($popoverView.length > 0 && $popoverView[0].f7View) return $popoverView[0].f7View;\n if ($popupView.length > 0 && $popupView[0].f7View) return $popupView[0].f7View;\n if ($panelView.length > 0 && $panelView[0].f7View) return $panelView[0].f7View;\n\n if ($viewEl.length > 0) {\n if ($viewEl.length === 1 && $viewEl[0].f7View) return $viewEl[0].f7View;\n\n if ($viewEl.length > 1) {\n return app.views.main;\n }\n }\n\n return undefined;\n}\n\nexport default {\n name: 'view',\n params: {\n view: {\n init: true,\n name: undefined,\n main: false,\n router: true,\n linksView: null,\n stackPages: false,\n xhrCache: true,\n xhrCacheIgnore: [],\n xhrCacheIgnoreGetParameters: false,\n xhrCacheDuration: 1000 * 60 * 10,\n // Ten minutes\n componentCache: true,\n preloadPreviousPage: true,\n allowDuplicateUrls: false,\n reloadPages: false,\n reloadDetail: false,\n masterDetailBreakpoint: 0,\n masterDetailResizable: false,\n removeElements: true,\n removeElementsWithTimeout: false,\n removeElementsTimeout: 0,\n restoreScrollTopOnBack: true,\n unloadTabContent: true,\n passRouteQueryToRequest: true,\n passRouteParamsToRequest: false,\n loadInitialPage: true,\n // Swipe Back\n iosSwipeBack: true,\n iosSwipeBackAnimateShadow: true,\n iosSwipeBackAnimateOpacity: true,\n iosSwipeBackActiveArea: 30,\n iosSwipeBackThreshold: 0,\n mdSwipeBack: false,\n mdSwipeBackAnimateShadow: true,\n mdSwipeBackAnimateOpacity: false,\n mdSwipeBackActiveArea: 30,\n mdSwipeBackThreshold: 0,\n auroraSwipeBack: false,\n auroraSwipeBackAnimateShadow: false,\n auroraSwipeBackAnimateOpacity: true,\n auroraSwipeBackActiveArea: 30,\n auroraSwipeBackThreshold: 0,\n // Push State\n browserHistory: false,\n browserHistoryRoot: undefined,\n browserHistoryAnimate: true,\n browserHistoryAnimateOnLoad: false,\n browserHistorySeparator: '#!',\n browserHistoryOnLoad: true,\n browserHistoryInitialMatch: false,\n browserHistoryStoreHistory: true,\n // Animate Pages\n animate: true,\n // iOS Dynamic Navbar\n iosDynamicNavbar: true,\n // Animate iOS Navbar Back Icon\n iosAnimateNavbarBackIcon: true,\n // Delays\n iosPageLoadDelay: 0,\n mdPageLoadDelay: 0,\n auroraPageLoadDelay: 0,\n // Routes hooks\n routesBeforeEnter: null,\n routesBeforeLeave: null\n }\n },\n static: {\n View: View\n },\n create: function create() {\n var app = this;\n extend(app, {\n views: extend([], {\n create: function create(el, params) {\n return new View(app, el, params);\n },\n get: function get(viewEl) {\n var $viewEl = $(viewEl);\n if ($viewEl.length && $viewEl[0].f7View) return $viewEl[0].f7View;\n return undefined;\n }\n })\n });\n Object.defineProperty(app.views, 'current', {\n enumerable: true,\n configurable: true,\n get: function get() {\n return getCurrentView(app);\n }\n }); // Alias\n\n app.view = app.views;\n },\n on: {\n init: function init() {\n var app = this;\n $('.view-init').each(function (viewEl) {\n if (viewEl.f7View) return;\n var viewParams = $(viewEl).dataset();\n app.views.create(viewEl, viewParams);\n });\n },\n 'modalOpen panelOpen': function onOpen(instance) {\n var app = this;\n instance.$el.find('.view-init').each(function (viewEl) {\n if (viewEl.f7View) return;\n var viewParams = $(viewEl).dataset();\n app.views.create(viewEl, viewParams);\n });\n },\n 'modalBeforeDestroy panelBeforeDestroy': function onClose(instance) {\n if (!instance || !instance.$el) return;\n instance.$el.find('.view-init').each(function (viewEl) {\n var view = viewEl.f7View;\n if (!view) return;\n view.destroy();\n });\n }\n },\n vnode: {\n 'view-init': {\n insert: function insert(vnode) {\n var app = this;\n var viewEl = vnode.elm;\n if (viewEl.f7View) return;\n var viewParams = $(viewEl).dataset();\n app.views.create(viewEl, viewParams);\n },\n destroy: function destroy(vnode) {\n var viewEl = vnode.elm;\n var view = viewEl.f7View;\n if (!view) return;\n view.destroy();\n }\n }\n }\n};","import $ from '../../shared/dom7';\nimport { bindMethods } from '../../shared/utils';\nimport { getSupport } from '../../shared/get-support';\nvar Navbar = {\n size: function size(el) {\n var app = this;\n var $el = $(el);\n\n if ($el.hasClass('navbars')) {\n $el = $el.children('.navbar').each(function (navbarEl) {\n app.navbar.size(navbarEl);\n });\n return;\n }\n\n var $innerEl = $el.children('.navbar-inner');\n if (!$innerEl.length) return;\n var needCenterTitle = $innerEl.hasClass('navbar-inner-centered-title') || app.params.navbar[app.theme + \"CenterTitle\"];\n var needLeftTitle = app.theme === 'ios' && !app.params.navbar[app.theme + \"CenterTitle\"];\n if (!needCenterTitle && !needLeftTitle) return;\n\n if ($el.hasClass('stacked') || $el.parents('.stacked').length > 0 || $el.parents('.tab:not(.tab-active)').length > 0 || $el.parents('.popup:not(.modal-in)').length > 0) {\n return;\n }\n\n if (app.theme !== 'ios' && app.params.navbar[app.theme + \"CenterTitle\"]) {\n $innerEl.addClass('navbar-inner-centered-title');\n }\n\n if (app.theme === 'ios' && !app.params.navbar.iosCenterTitle) {\n $innerEl.addClass('navbar-inner-left-title');\n }\n\n var $viewEl = $el.parents('.view').eq(0);\n var left = app.rtl ? $innerEl.children('.right') : $innerEl.children('.left');\n var right = app.rtl ? $innerEl.children('.left') : $innerEl.children('.right');\n var title = $innerEl.children('.title');\n var subnavbar = $innerEl.children('.subnavbar');\n var noLeft = left.length === 0;\n var noRight = right.length === 0;\n var leftWidth = noLeft ? 0 : left.outerWidth(true);\n var rightWidth = noRight ? 0 : right.outerWidth(true);\n var titleWidth = title.outerWidth(true);\n var navbarStyles = $innerEl.styles();\n var navbarWidth = $innerEl[0].offsetWidth;\n var navbarInnerWidth = navbarWidth - parseInt(navbarStyles.paddingLeft, 10) - parseInt(navbarStyles.paddingRight, 10);\n var isPrevious = $el.hasClass('navbar-previous');\n var sliding = $innerEl.hasClass('sliding');\n var router;\n var dynamicNavbar;\n\n if ($viewEl.length > 0 && $viewEl[0].f7View) {\n router = $viewEl[0].f7View.router;\n dynamicNavbar = router && router.dynamicNavbar;\n }\n\n var currLeft;\n var diff;\n\n if (noRight) {\n currLeft = navbarInnerWidth - titleWidth;\n }\n\n if (noLeft) {\n currLeft = 0;\n }\n\n if (!noLeft && !noRight) {\n currLeft = (navbarInnerWidth - rightWidth - titleWidth + leftWidth) / 2;\n }\n\n var requiredLeft = (navbarInnerWidth - titleWidth) / 2;\n\n if (navbarInnerWidth - leftWidth - rightWidth > titleWidth) {\n if (requiredLeft < leftWidth) {\n requiredLeft = leftWidth;\n }\n\n if (requiredLeft + titleWidth > navbarInnerWidth - rightWidth) {\n requiredLeft = navbarInnerWidth - rightWidth - titleWidth;\n }\n\n diff = requiredLeft - currLeft;\n } else {\n diff = 0;\n } // RTL inverter\n\n\n var inverter = app.rtl ? -1 : 1;\n\n if (dynamicNavbar && app.theme === 'ios') {\n if (title.hasClass('sliding') || title.length > 0 && sliding) {\n var titleLeftOffset = -(currLeft + diff) * inverter;\n var titleRightOffset = (navbarInnerWidth - currLeft - diff - titleWidth) * inverter;\n\n if (isPrevious) {\n if (router && router.params.iosAnimateNavbarBackIcon) {\n var activeNavbarBackLink = $el.parent().find('.navbar-current').children('.left.sliding').find('.back .icon ~ span');\n\n if (activeNavbarBackLink.length > 0) {\n titleLeftOffset += activeNavbarBackLink[0].offsetLeft;\n }\n }\n }\n\n title[0].f7NavbarLeftOffset = titleLeftOffset;\n title[0].f7NavbarRightOffset = titleRightOffset;\n }\n\n if (!noLeft && (left.hasClass('sliding') || sliding)) {\n if (app.rtl) {\n left[0].f7NavbarLeftOffset = -(navbarInnerWidth - left[0].offsetWidth) / 2 * inverter;\n left[0].f7NavbarRightOffset = leftWidth * inverter;\n } else {\n left[0].f7NavbarLeftOffset = -leftWidth;\n left[0].f7NavbarRightOffset = (navbarInnerWidth - left[0].offsetWidth) / 2;\n\n if (router && router.params.iosAnimateNavbarBackIcon && left.find('.back .icon').length > 0) {\n if (left.find('.back .icon ~ span').length) {\n var leftOffset = left[0].f7NavbarLeftOffset;\n var rightOffset = left[0].f7NavbarRightOffset;\n left[0].f7NavbarLeftOffset = 0;\n left[0].f7NavbarRightOffset = 0;\n left.find('.back .icon ~ span')[0].f7NavbarLeftOffset = leftOffset;\n left.find('.back .icon ~ span')[0].f7NavbarRightOffset = rightOffset - left.find('.back .icon')[0].offsetWidth;\n }\n }\n }\n }\n\n if (!noRight && (right.hasClass('sliding') || sliding)) {\n if (app.rtl) {\n right[0].f7NavbarLeftOffset = -rightWidth * inverter;\n right[0].f7NavbarRightOffset = (navbarInnerWidth - right[0].offsetWidth) / 2 * inverter;\n } else {\n right[0].f7NavbarLeftOffset = -(navbarInnerWidth - right[0].offsetWidth) / 2;\n right[0].f7NavbarRightOffset = rightWidth;\n }\n }\n\n if (subnavbar.length && (subnavbar.hasClass('sliding') || sliding)) {\n subnavbar[0].f7NavbarLeftOffset = app.rtl ? subnavbar[0].offsetWidth : -subnavbar[0].offsetWidth;\n subnavbar[0].f7NavbarRightOffset = -subnavbar[0].f7NavbarLeftOffset;\n }\n } // Center title\n\n\n if (needCenterTitle) {\n var titleLeft = diff;\n if (app.rtl && noLeft && noRight && title.length > 0) titleLeft = -titleLeft;\n title.css({\n left: titleLeft + \"px\"\n });\n }\n },\n hide: function hide(el, animate, hideStatusbar, hideOnlyCurrent) {\n if (animate === void 0) {\n animate = true;\n }\n\n if (hideStatusbar === void 0) {\n hideStatusbar = false;\n }\n\n if (hideOnlyCurrent === void 0) {\n hideOnlyCurrent = false;\n }\n\n var app = this;\n var $el = $(el);\n var isDynamic = $el.hasClass('navbar') && $el.parent('.navbars').length && !hideOnlyCurrent;\n if (isDynamic) $el = $el.parents('.navbars');\n if (!$el.length) return;\n if ($el.hasClass('navbar-hidden')) return;\n var className = \"navbar-hidden\" + (animate ? ' navbar-transitioning' : '');\n var currentIsLarge = isDynamic ? $el.find('.navbar-current .title-large').length : $el.find('.title-large').length;\n\n if (currentIsLarge) {\n className += ' navbar-large-hidden';\n }\n\n if (hideStatusbar) {\n className += ' navbar-hidden-statusbar';\n }\n\n $el.transitionEnd(function () {\n $el.removeClass('navbar-transitioning');\n });\n $el.addClass(className);\n\n if (isDynamic) {\n $el.children('.navbar').each(function (subEl) {\n $(subEl).trigger('navbar:hide');\n app.emit('navbarHide', subEl);\n });\n } else {\n $el.trigger('navbar:hide');\n app.emit('navbarHide', $el[0]);\n }\n },\n show: function show(el, animate, hideOnlyCurrent) {\n if (el === void 0) {\n el = '.navbar-hidden';\n }\n\n if (animate === void 0) {\n animate = true;\n }\n\n if (hideOnlyCurrent === void 0) {\n hideOnlyCurrent = false;\n }\n\n var app = this;\n var $el = $(el);\n var isDynamic = $el.hasClass('navbar') && $el.parent('.navbars').length && !hideOnlyCurrent;\n if (isDynamic) $el = $el.parents('.navbars');\n if (!$el.length) return;\n if (!$el.hasClass('navbar-hidden')) return;\n\n if (animate) {\n $el.addClass('navbar-transitioning');\n $el.transitionEnd(function () {\n $el.removeClass('navbar-transitioning');\n });\n }\n\n $el.removeClass('navbar-hidden navbar-large-hidden navbar-hidden-statusbar');\n\n if (isDynamic) {\n $el.children('.navbar').each(function (subEl) {\n $(subEl).trigger('navbar:show');\n app.emit('navbarShow', subEl);\n });\n } else {\n $el.trigger('navbar:show');\n app.emit('navbarShow', $el[0]);\n }\n },\n getElByPage: function getElByPage(page) {\n var $pageEl;\n var $navbarEl;\n var pageData;\n\n if (page.$navbarEl || page.$el) {\n pageData = page;\n $pageEl = page.$el;\n } else {\n $pageEl = $(page);\n if ($pageEl.length > 0) pageData = $pageEl[0].f7Page;\n }\n\n if (pageData && pageData.$navbarEl && pageData.$navbarEl.length > 0) {\n $navbarEl = pageData.$navbarEl;\n } else if ($pageEl) {\n $navbarEl = $pageEl.children('.navbar');\n }\n\n if (!$navbarEl || $navbarEl && $navbarEl.length === 0) return undefined;\n return $navbarEl[0];\n },\n getPageByEl: function getPageByEl(navbarEl) {\n var $navbarEl = $(navbarEl);\n\n if ($navbarEl.parents('.page').length) {\n return $navbarEl.parents('.page')[0];\n }\n\n var pageEl;\n $navbarEl.parents('.view').find('.page').each(function (el) {\n if (el && el.f7Page && el.f7Page.navbarEl && $navbarEl[0] === el.f7Page.navbarEl) {\n pageEl = el;\n }\n });\n return pageEl;\n },\n collapseLargeTitle: function collapseLargeTitle(navbarEl) {\n var app = this;\n var $navbarEl = $(navbarEl);\n\n if ($navbarEl.hasClass('navbars')) {\n $navbarEl = $navbarEl.find('.navbar');\n\n if ($navbarEl.length > 1) {\n $navbarEl = $(navbarEl).find('.navbar-large.navbar-current');\n }\n\n if ($navbarEl.length > 1 || !$navbarEl.length) {\n return;\n }\n }\n\n var $pageEl = $(app.navbar.getPageByEl($navbarEl));\n $navbarEl.addClass('navbar-large-collapsed');\n $pageEl.eq(0).addClass('page-with-navbar-large-collapsed').trigger('page:navbarlargecollapsed');\n app.emit('pageNavbarLargeCollapsed', $pageEl[0]);\n $navbarEl.trigger('navbar:collapse');\n app.emit('navbarCollapse', $navbarEl[0]);\n },\n expandLargeTitle: function expandLargeTitle(navbarEl) {\n var app = this;\n var $navbarEl = $(navbarEl);\n\n if ($navbarEl.hasClass('navbars')) {\n $navbarEl = $navbarEl.find('.navbar-large');\n\n if ($navbarEl.length > 1) {\n $navbarEl = $(navbarEl).find('.navbar-large.navbar-current');\n }\n\n if ($navbarEl.length > 1 || !$navbarEl.length) {\n return;\n }\n }\n\n var $pageEl = $(app.navbar.getPageByEl($navbarEl));\n $navbarEl.removeClass('navbar-large-collapsed');\n $pageEl.eq(0).removeClass('page-with-navbar-large-collapsed').trigger('page:navbarlargeexpanded');\n app.emit('pageNavbarLargeExpanded', $pageEl[0]);\n $navbarEl.trigger('navbar:expand');\n app.emit('navbarExpand', $navbarEl[0]);\n },\n toggleLargeTitle: function toggleLargeTitle(navbarEl) {\n var app = this;\n var $navbarEl = $(navbarEl);\n\n if ($navbarEl.hasClass('navbars')) {\n $navbarEl = $navbarEl.find('.navbar-large');\n\n if ($navbarEl.length > 1) {\n $navbarEl = $(navbarEl).find('.navbar-large.navbar-current');\n }\n\n if ($navbarEl.length > 1 || !$navbarEl.length) {\n return;\n }\n }\n\n if ($navbarEl.hasClass('navbar-large-collapsed')) {\n app.navbar.expandLargeTitle($navbarEl);\n } else {\n app.navbar.collapseLargeTitle($navbarEl);\n }\n },\n initNavbarOnScroll: function initNavbarOnScroll(pageEl, navbarEl, needHide, needCollapse, needTransparent) {\n var app = this;\n var support = getSupport();\n var $pageEl = $(pageEl);\n var $navbarEl = $(navbarEl);\n var $titleLargeEl = $navbarEl.find('.title-large');\n var isLarge = $titleLargeEl.length || $navbarEl.hasClass('.navbar-large');\n var navbarHideHeight = 44;\n var snapPageScrollToLargeTitle = app.params.navbar.snapPageScrollToLargeTitle;\n var snapPageScrollToTransparentNavbar = app.params.navbar.snapPageScrollToTransparentNavbar;\n var previousScrollTop;\n var currentScrollTop;\n var scrollHeight;\n var offsetHeight;\n var reachEnd;\n var action;\n var navbarHidden;\n var navbarCollapsed;\n var navbarTitleLargeHeight;\n var navbarOffsetHeight;\n\n if (needCollapse || needHide && isLarge) {\n navbarTitleLargeHeight = $navbarEl.css('--f7-navbar-large-title-height');\n\n if (navbarTitleLargeHeight && navbarTitleLargeHeight.indexOf('px') >= 0) {\n navbarTitleLargeHeight = parseInt(navbarTitleLargeHeight, 10);\n\n if (Number.isNaN(navbarTitleLargeHeight) && $titleLargeEl.length) {\n navbarTitleLargeHeight = $titleLargeEl[0].offsetHeight;\n } else if (Number.isNaN(navbarTitleLargeHeight)) {\n if (app.theme === 'ios') navbarTitleLargeHeight = 52;else if (app.theme === 'md') navbarTitleLargeHeight = 48;else if (app.theme === 'aurora') navbarTitleLargeHeight = 38;\n }\n } else if ($titleLargeEl.length) {\n navbarTitleLargeHeight = $titleLargeEl[0].offsetHeight;\n } else {\n // eslint-disable-next-line\n if (app.theme === 'ios') navbarTitleLargeHeight = 52;else if (app.theme === 'md') navbarTitleLargeHeight = 48;else if (app.theme === 'aurora') navbarTitleLargeHeight = 38;\n }\n }\n\n if (needHide && isLarge) {\n navbarHideHeight += navbarTitleLargeHeight;\n }\n\n var scrollChanged;\n var scrollContent;\n var scrollTimeoutId;\n var touchEndTimeoutId;\n var touchSnapTimeout = 70;\n var desktopSnapTimeout = 300;\n\n function calcScrollableDistance() {\n $pageEl.find('.page-content').each(function (pageContentEl) {\n pageContentEl.f7ScrollableDistance = pageContentEl.scrollHeight - pageContentEl.offsetHeight;\n });\n }\n\n function snapLargeNavbar() {\n var inSearchbarExpanded = $navbarEl.hasClass('with-searchbar-expandable-enabled');\n if (inSearchbarExpanded) return;\n if (!scrollContent || currentScrollTop < 0) return;\n\n if (currentScrollTop >= navbarTitleLargeHeight / 2 && currentScrollTop < navbarTitleLargeHeight) {\n $(scrollContent).scrollTop(navbarTitleLargeHeight, 100);\n } else if (currentScrollTop < navbarTitleLargeHeight) {\n $(scrollContent).scrollTop(0, 200);\n }\n }\n\n function snapTransparentNavbar() {\n var inSearchbarExpanded = $navbarEl.hasClass('with-searchbar-expandable-enabled');\n if (inSearchbarExpanded) return;\n if (!scrollContent || currentScrollTop < 0) return;\n\n if (currentScrollTop >= navbarOffsetHeight / 2 && currentScrollTop < navbarOffsetHeight) {\n $(scrollContent).scrollTop(navbarOffsetHeight, 100);\n } else if (currentScrollTop < navbarOffsetHeight) {\n $(scrollContent).scrollTop(0, 200);\n }\n }\n\n function handleNavbarTransparent() {\n var isHidden = $navbarEl.hasClass('navbar-hidden') || $navbarEl.parent('.navbars').hasClass('navbar-hidden');\n var inSearchbarExpanded = $navbarEl.hasClass('with-searchbar-expandable-enabled');\n if (inSearchbarExpanded || isHidden) return;\n\n if (!navbarOffsetHeight) {\n navbarOffsetHeight = navbarEl.offsetHeight;\n }\n\n var opacity = currentScrollTop / navbarOffsetHeight;\n var notTransparent = $navbarEl.hasClass('navbar-transparent-visible');\n opacity = Math.max(Math.min(opacity, 1), 0);\n\n if (notTransparent && opacity === 1 || !notTransparent && opacity === 0) {\n $navbarEl.find('.navbar-bg, .title').css('opacity', '');\n return;\n }\n\n if (notTransparent && opacity === 0) {\n $navbarEl.trigger('navbar:transparenthide');\n app.emit('navbarTransparentHide', $navbarEl[0]);\n $navbarEl.removeClass('navbar-transparent-visible');\n $navbarEl.find('.navbar-bg, .title').css('opacity', '');\n return;\n }\n\n if (!notTransparent && opacity === 1) {\n $navbarEl.trigger('navbar:transparentshow');\n app.emit('navbarTransparentShow', $navbarEl[0]);\n $navbarEl.addClass('navbar-transparent-visible');\n $navbarEl.find('.navbar-bg, .title').css('opacity', '');\n return;\n }\n\n $navbarEl.find('.navbar-bg, .title').css('opacity', opacity);\n\n if (snapPageScrollToTransparentNavbar) {\n if (!support.touch) {\n clearTimeout(scrollTimeoutId);\n scrollTimeoutId = setTimeout(function () {\n snapTransparentNavbar();\n }, desktopSnapTimeout);\n } else if (touchEndTimeoutId) {\n clearTimeout(touchEndTimeoutId);\n touchEndTimeoutId = null;\n touchEndTimeoutId = setTimeout(function () {\n snapTransparentNavbar();\n clearTimeout(touchEndTimeoutId);\n touchEndTimeoutId = null;\n }, touchSnapTimeout);\n }\n }\n }\n\n var previousCollapseProgress = null;\n var collapseProgress = null;\n\n function handleLargeNavbarCollapse(pageContentEl) {\n var isHidden = $navbarEl.hasClass('navbar-hidden') || $navbarEl.parent('.navbars').hasClass('navbar-hidden');\n if (isHidden) return;\n var isLargeTransparent = $navbarEl.hasClass('navbar-large-transparent') || $navbarEl.hasClass('navbar-large') && $navbarEl.hasClass('navbar-transparent');\n previousCollapseProgress = collapseProgress;\n var scrollableDistance = Math.min(navbarTitleLargeHeight, pageContentEl.f7ScrollableDistance || navbarTitleLargeHeight);\n collapseProgress = Math.min(Math.max(currentScrollTop / scrollableDistance, 0), 1);\n var previousCollapseWasInMiddle = previousCollapseProgress > 0 && previousCollapseProgress < 1;\n var inSearchbarExpanded = $navbarEl.hasClass('with-searchbar-expandable-enabled');\n if (inSearchbarExpanded) return;\n navbarCollapsed = $navbarEl.hasClass('navbar-large-collapsed');\n\n if (collapseProgress === 0 && navbarCollapsed) {\n app.navbar.expandLargeTitle($navbarEl[0]);\n } else if (collapseProgress === 1 && !navbarCollapsed) {\n app.navbar.collapseLargeTitle($navbarEl[0]);\n }\n\n if (collapseProgress === 0 && navbarCollapsed || collapseProgress === 0 && previousCollapseWasInMiddle || collapseProgress === 1 && !navbarCollapsed || collapseProgress === 1 && previousCollapseWasInMiddle) {\n if (app.theme === 'md') {\n $navbarEl.find('.navbar-inner').css('overflow', '');\n }\n\n $navbarEl.find('.title').css('opacity', '');\n $navbarEl.find('.title-large-text, .subnavbar').css('transform', '');\n\n if (isLargeTransparent) {\n $navbarEl.find('.navbar-bg').css('opacity', '');\n } else {\n $navbarEl.find('.navbar-bg').css('transform', '');\n }\n } else if (collapseProgress > 0 && collapseProgress < 1) {\n if (app.theme === 'md') {\n $navbarEl.find('.navbar-inner').css('overflow', 'visible');\n }\n\n $navbarEl.find('.title').css('opacity', collapseProgress);\n $navbarEl.find('.title-large-text, .subnavbar').css('transform', \"translate3d(0px, \" + -1 * collapseProgress * navbarTitleLargeHeight + \"px, 0)\");\n\n if (isLargeTransparent) {\n $navbarEl.find('.navbar-bg').css('opacity', collapseProgress);\n } else {\n $navbarEl.find('.navbar-bg').css('transform', \"translate3d(0px, \" + -1 * collapseProgress * navbarTitleLargeHeight + \"px, 0)\");\n }\n }\n\n if (snapPageScrollToLargeTitle) {\n if (!support.touch) {\n clearTimeout(scrollTimeoutId);\n scrollTimeoutId = setTimeout(function () {\n snapLargeNavbar();\n }, desktopSnapTimeout);\n } else if (touchEndTimeoutId) {\n clearTimeout(touchEndTimeoutId);\n touchEndTimeoutId = null;\n touchEndTimeoutId = setTimeout(function () {\n snapLargeNavbar();\n clearTimeout(touchEndTimeoutId);\n touchEndTimeoutId = null;\n }, touchSnapTimeout);\n }\n }\n }\n\n function handleTitleHideShow() {\n if ($pageEl.hasClass('page-with-card-opened')) return;\n scrollHeight = scrollContent.scrollHeight;\n offsetHeight = scrollContent.offsetHeight;\n reachEnd = currentScrollTop + offsetHeight >= scrollHeight;\n navbarHidden = $navbarEl.hasClass('navbar-hidden') || $navbarEl.parent('.navbars').hasClass('navbar-hidden');\n\n if (reachEnd) {\n if (app.params.navbar.showOnPageScrollEnd) {\n action = 'show';\n }\n } else if (previousScrollTop > currentScrollTop) {\n if (app.params.navbar.showOnPageScrollTop || currentScrollTop <= navbarHideHeight) {\n action = 'show';\n } else {\n action = 'hide';\n }\n } else if (currentScrollTop > navbarHideHeight) {\n action = 'hide';\n } else {\n action = 'show';\n }\n\n if (action === 'show' && navbarHidden) {\n app.navbar.show($navbarEl, true, true);\n navbarHidden = false;\n } else if (action === 'hide' && !navbarHidden) {\n app.navbar.hide($navbarEl, true, false, true);\n navbarHidden = true;\n }\n\n previousScrollTop = currentScrollTop;\n }\n\n function handleScroll(e) {\n scrollContent = this;\n\n if (e && e.target && e.target !== scrollContent) {\n return;\n }\n\n currentScrollTop = scrollContent.scrollTop;\n scrollChanged = currentScrollTop;\n\n if (needCollapse) {\n handleLargeNavbarCollapse(scrollContent);\n } else if (needTransparent) {\n handleNavbarTransparent();\n }\n\n if ($pageEl.hasClass('page-previous')) return;\n\n if (needHide) {\n handleTitleHideShow();\n }\n }\n\n function handeTouchStart() {\n scrollChanged = false;\n }\n\n function handleTouchEnd() {\n clearTimeout(touchEndTimeoutId);\n touchEndTimeoutId = null;\n touchEndTimeoutId = setTimeout(function () {\n if (scrollChanged !== false) {\n if (needTransparent && !needCollapse) {\n snapTransparentNavbar();\n } else {\n snapLargeNavbar();\n }\n\n clearTimeout(touchEndTimeoutId);\n touchEndTimeoutId = null;\n }\n }, touchSnapTimeout);\n }\n\n $pageEl.on('scroll', '.page-content', handleScroll, true);\n\n if (support.touch && (needCollapse && snapPageScrollToLargeTitle || needTransparent && snapPageScrollToTransparentNavbar)) {\n app.on('touchstart:passive', handeTouchStart);\n app.on('touchend:passive', handleTouchEnd);\n }\n\n calcScrollableDistance();\n\n if (needCollapse || needTransparent) {\n $pageEl.find('.page-content').each(function (pageContentEl) {\n if (pageContentEl.scrollTop > 0) handleScroll.call(pageContentEl);\n });\n }\n\n app.on('resize', calcScrollableDistance);\n\n $pageEl[0].f7DetachNavbarScrollHandlers = function f7DetachNavbarScrollHandlers() {\n app.off('resize', calcScrollableDistance);\n delete $pageEl[0].f7DetachNavbarScrollHandlers;\n $pageEl.off('scroll', '.page-content', handleScroll, true);\n\n if (support.touch && (needCollapse && snapPageScrollToLargeTitle || needTransparent && snapPageScrollToTransparentNavbar)) {\n app.off('touchstart:passive', handeTouchStart);\n app.off('touchend:passive', handleTouchEnd);\n }\n };\n }\n};\nexport default {\n name: 'navbar',\n create: function create() {\n var app = this;\n bindMethods(app, {\n navbar: Navbar\n });\n },\n params: {\n navbar: {\n scrollTopOnTitleClick: true,\n iosCenterTitle: true,\n mdCenterTitle: false,\n auroraCenterTitle: true,\n hideOnPageScroll: false,\n showOnPageScrollEnd: true,\n showOnPageScrollTop: true,\n collapseLargeTitleOnScroll: true,\n snapPageScrollToLargeTitle: true,\n snapPageScrollToTransparentNavbar: true\n }\n },\n on: {\n 'panelBreakpoint panelCollapsedBreakpoint panelResize viewResize resize viewMasterDetailBreakpoint': function onPanelResize() {\n var app = this;\n $('.navbar').each(function (navbarEl) {\n app.navbar.size(navbarEl);\n });\n },\n pageBeforeRemove: function pageBeforeRemove(page) {\n if (page.$el[0].f7DetachNavbarScrollHandlers) {\n page.$el[0].f7DetachNavbarScrollHandlers();\n }\n },\n pageBeforeIn: function pageBeforeIn(page) {\n var app = this;\n if (app.theme !== 'ios') return;\n var $navbarsEl;\n var view = page.$el.parents('.view')[0].f7View;\n var navbarEl = app.navbar.getElByPage(page);\n\n if (!navbarEl) {\n $navbarsEl = page.$el.parents('.view').children('.navbars');\n } else {\n $navbarsEl = $(navbarEl).parents('.navbars');\n }\n\n if (page.$el.hasClass('no-navbar') || view.router.dynamicNavbar && !navbarEl) {\n var animate = !!(page.pageFrom && page.router.history.length > 0);\n app.navbar.hide($navbarsEl, animate);\n } else {\n app.navbar.show($navbarsEl);\n }\n },\n pageReinit: function pageReinit(page) {\n var app = this;\n var $navbarEl = $(app.navbar.getElByPage(page));\n if (!$navbarEl || $navbarEl.length === 0) return;\n app.navbar.size($navbarEl);\n },\n pageInit: function pageInit(page) {\n var app = this;\n var $navbarEl = $(app.navbar.getElByPage(page));\n if (!$navbarEl || $navbarEl.length === 0) return; // Size\n\n app.navbar.size($navbarEl); // Need Collapse On Scroll\n\n var needCollapseOnScrollHandler;\n\n if ($navbarEl.find('.title-large').length > 0) {\n $navbarEl.addClass('navbar-large');\n }\n\n if ($navbarEl.hasClass('navbar-large')) {\n if (app.params.navbar.collapseLargeTitleOnScroll) needCollapseOnScrollHandler = true;\n page.$el.addClass('page-with-navbar-large');\n } // Need transparent on scroll\n\n\n var needTransparentOnScroll;\n\n if (!needCollapseOnScrollHandler && $navbarEl.hasClass('navbar-transparent')) {\n needTransparentOnScroll = true;\n } // Need Hide On Scroll\n\n\n var needHideOnScrollHandler;\n\n if (app.params.navbar.hideOnPageScroll || page.$el.find('.hide-navbar-on-scroll').length || page.$el.hasClass('hide-navbar-on-scroll') || page.$el.find('.hide-bars-on-scroll').length || page.$el.hasClass('hide-bars-on-scroll')) {\n if (page.$el.find('.keep-navbar-on-scroll').length || page.$el.hasClass('keep-navbar-on-scroll') || page.$el.find('.keep-bars-on-scroll').length || page.$el.hasClass('keep-bars-on-scroll')) {\n needHideOnScrollHandler = false;\n } else {\n needHideOnScrollHandler = true;\n }\n }\n\n if (needCollapseOnScrollHandler || needHideOnScrollHandler || needTransparentOnScroll) {\n app.navbar.initNavbarOnScroll(page.el, $navbarEl[0], needHideOnScrollHandler, needCollapseOnScrollHandler, needTransparentOnScroll);\n }\n },\n 'panelOpen panelSwipeOpen modalOpen': function onPanelModalOpen(instance) {\n var app = this;\n instance.$el.find('.navbar:not(.navbar-previous):not(.stacked)').each(function (navbarEl) {\n app.navbar.size(navbarEl);\n });\n },\n tabShow: function tabShow(tabEl) {\n var app = this;\n $(tabEl).find('.navbar:not(.navbar-previous):not(.stacked)').each(function (navbarEl) {\n app.navbar.size(navbarEl);\n });\n }\n },\n clicks: {\n '.navbar .title': function onTitleClick($clickedEl, clickedData, e) {\n var app = this;\n if (!app.params.navbar.scrollTopOnTitleClick) return;\n\n if ($(e.target).closest('a, button').length > 0) {\n return;\n }\n\n var $pageContentEl; // Find active page\n\n var $navbarEl = $clickedEl.parents('.navbar');\n var $navbarsEl = $navbarEl.parents('.navbars'); // Static Layout\n\n $pageContentEl = $navbarEl.parents('.page-content');\n\n if ($pageContentEl.length === 0) {\n // Fixed Layout\n if ($navbarEl.parents('.page').length > 0) {\n $pageContentEl = $navbarEl.parents('.page').find('.page-content');\n } // Through Layout iOS\n\n\n if ($pageContentEl.length === 0 && $navbarsEl.length) {\n if ($navbarsEl.nextAll('.page-current:not(.stacked)').length > 0) {\n $pageContentEl = $navbarsEl.nextAll('.page-current:not(.stacked)').find('.page-content');\n }\n } // Through Layout\n\n\n if ($pageContentEl.length === 0) {\n if ($navbarEl.nextAll('.page-current:not(.stacked)').length > 0) {\n $pageContentEl = $navbarEl.nextAll('.page-current:not(.stacked)').find('.page-content');\n }\n }\n }\n\n if ($pageContentEl && $pageContentEl.length > 0) {\n // Check for tab\n if ($pageContentEl.hasClass('tab')) {\n $pageContentEl = $pageContentEl.parent('.tabs').children('.page-content.tab-active');\n }\n\n if ($pageContentEl.length > 0) $pageContentEl.scrollTop(0, 300);\n }\n }\n },\n vnode: {\n navbar: {\n postpatch: function postpatch(vnode) {\n var app = this;\n app.navbar.size(vnode.elm);\n }\n }\n }\n};","import $ from '../../shared/dom7';\nimport { nextFrame, bindMethods } from '../../shared/utils';\nvar Toolbar = {\n setHighlight: function setHighlight(tabbarEl) {\n var app = this;\n if (app.theme === 'ios') return;\n var $tabbarEl = $(tabbarEl);\n if ($tabbarEl.length === 0 || !($tabbarEl.hasClass('tabbar') || $tabbarEl.hasClass('tabbar-labels'))) return;\n var $highlightEl = $tabbarEl.find('.tab-link-highlight');\n var tabLinksCount = $tabbarEl.find('.tab-link').length;\n\n if (tabLinksCount === 0) {\n $highlightEl.remove();\n return;\n }\n\n if ($highlightEl.length === 0) {\n $tabbarEl.children('.toolbar-inner').append('');\n $highlightEl = $tabbarEl.find('.tab-link-highlight');\n } else if ($highlightEl.next().length) {\n $tabbarEl.children('.toolbar-inner').append($highlightEl);\n }\n\n var $activeLink = $tabbarEl.find('.tab-link-active');\n var highlightWidth;\n var highlightTranslate;\n\n if ($tabbarEl.hasClass('tabbar-scrollable') && $activeLink && $activeLink[0]) {\n highlightWidth = $activeLink[0].offsetWidth + \"px\";\n highlightTranslate = $activeLink[0].offsetLeft + \"px\";\n } else {\n var activeIndex = $activeLink.index();\n highlightWidth = 100 / tabLinksCount + \"%\";\n highlightTranslate = (app.rtl ? -activeIndex : activeIndex) * 100 + \"%\";\n }\n\n nextFrame(function () {\n $highlightEl.css('width', highlightWidth).transform(\"translate3d(\" + highlightTranslate + \",0,0)\");\n });\n },\n init: function init(tabbarEl) {\n var app = this;\n app.toolbar.setHighlight(tabbarEl);\n },\n hide: function hide(el, animate) {\n if (animate === void 0) {\n animate = true;\n }\n\n var app = this;\n var $el = $(el);\n if ($el.hasClass('toolbar-hidden')) return;\n var className = \"toolbar-hidden\" + (animate ? ' toolbar-transitioning' : '');\n $el.transitionEnd(function () {\n $el.removeClass('toolbar-transitioning');\n });\n $el.addClass(className);\n $el.trigger('toolbar:hide');\n app.emit('toolbarHide', $el[0]);\n },\n show: function show(el, animate) {\n if (animate === void 0) {\n animate = true;\n }\n\n var app = this;\n var $el = $(el);\n if (!$el.hasClass('toolbar-hidden')) return;\n\n if (animate) {\n $el.addClass('toolbar-transitioning');\n $el.transitionEnd(function () {\n $el.removeClass('toolbar-transitioning');\n });\n }\n\n $el.removeClass('toolbar-hidden');\n $el.trigger('toolbar:show');\n app.emit('toolbarShow', $el[0]);\n },\n initToolbarOnScroll: function initToolbarOnScroll(pageEl) {\n var app = this;\n var $pageEl = $(pageEl);\n var $toolbarEl = $pageEl.parents('.view').children('.toolbar');\n\n if ($toolbarEl.length === 0) {\n $toolbarEl = $pageEl.find('.toolbar');\n }\n\n if ($toolbarEl.length === 0) {\n $toolbarEl = $pageEl.parents('.views').children('.tabbar, .tabbar-labels');\n }\n\n if ($toolbarEl.length === 0) {\n return;\n }\n\n var previousScrollTop;\n var currentScrollTop;\n var scrollHeight;\n var offsetHeight;\n var reachEnd;\n var action;\n var toolbarHidden;\n\n function handleScroll(e) {\n if ($pageEl.hasClass('page-with-card-opened')) return;\n if ($pageEl.hasClass('page-previous')) return;\n var scrollContent = this;\n\n if (e && e.target && e.target !== scrollContent) {\n return;\n }\n\n currentScrollTop = scrollContent.scrollTop;\n scrollHeight = scrollContent.scrollHeight;\n offsetHeight = scrollContent.offsetHeight;\n reachEnd = currentScrollTop + offsetHeight >= scrollHeight;\n toolbarHidden = $toolbarEl.hasClass('toolbar-hidden');\n\n if (reachEnd) {\n if (app.params.toolbar.showOnPageScrollEnd) {\n action = 'show';\n }\n } else if (previousScrollTop > currentScrollTop) {\n if (app.params.toolbar.showOnPageScrollTop || currentScrollTop <= 44) {\n action = 'show';\n } else {\n action = 'hide';\n }\n } else if (currentScrollTop > 44) {\n action = 'hide';\n } else {\n action = 'show';\n }\n\n if (action === 'show' && toolbarHidden) {\n app.toolbar.show($toolbarEl);\n toolbarHidden = false;\n } else if (action === 'hide' && !toolbarHidden) {\n app.toolbar.hide($toolbarEl);\n toolbarHidden = true;\n }\n\n previousScrollTop = currentScrollTop;\n }\n\n $pageEl.on('scroll', '.page-content', handleScroll, true);\n $pageEl[0].f7ScrollToolbarHandler = handleScroll;\n }\n};\nexport default {\n name: 'toolbar',\n create: function create() {\n var app = this;\n bindMethods(app, {\n toolbar: Toolbar\n });\n },\n params: {\n toolbar: {\n hideOnPageScroll: false,\n showOnPageScrollEnd: true,\n showOnPageScrollTop: true\n }\n },\n on: {\n pageBeforeRemove: function pageBeforeRemove(page) {\n if (page.$el[0].f7ScrollToolbarHandler) {\n page.$el.off('scroll', '.page-content', page.$el[0].f7ScrollToolbarHandler, true);\n }\n },\n pageBeforeIn: function pageBeforeIn(page) {\n var app = this;\n var $toolbarEl = page.$el.parents('.view').children('.toolbar');\n\n if ($toolbarEl.length === 0) {\n $toolbarEl = page.$el.parents('.views').children('.tabbar, .tabbar-labels');\n }\n\n if ($toolbarEl.length === 0) {\n $toolbarEl = page.$el.find('.toolbar');\n }\n\n if ($toolbarEl.length === 0) {\n return;\n }\n\n if (page.$el.hasClass('no-toolbar')) {\n app.toolbar.hide($toolbarEl);\n } else {\n app.toolbar.show($toolbarEl);\n }\n },\n pageInit: function pageInit(page) {\n var app = this;\n page.$el.find('.tabbar, .tabbar-labels').each(function (tabbarEl) {\n app.toolbar.init(tabbarEl);\n });\n\n if (app.params.toolbar.hideOnPageScroll || page.$el.find('.hide-toolbar-on-scroll').length || page.$el.hasClass('hide-toolbar-on-scroll') || page.$el.find('.hide-bars-on-scroll').length || page.$el.hasClass('hide-bars-on-scroll')) {\n if (page.$el.find('.keep-toolbar-on-scroll').length || page.$el.hasClass('keep-toolbar-on-scroll') || page.$el.find('.keep-bars-on-scroll').length || page.$el.hasClass('keep-bars-on-scroll')) {\n return;\n }\n\n app.toolbar.initToolbarOnScroll(page.el);\n }\n },\n init: function init() {\n var app = this;\n app.$el.find('.tabbar, .tabbar-labels').each(function (tabbarEl) {\n app.toolbar.init(tabbarEl);\n });\n }\n },\n vnode: {\n tabbar: {\n insert: function insert(vnode) {\n var app = this;\n app.toolbar.init(vnode.elm);\n }\n }\n }\n};","import $ from '../../shared/dom7';\nexport default {\n name: 'subnavbar',\n on: {\n pageInit: function pageInit(page) {\n if (page.$navbarEl && page.$navbarEl.length && page.$navbarEl.find('.subnavbar').length) {\n page.$el.addClass('page-with-subnavbar');\n }\n\n var $innerSubnavbars = page.$el.find('.subnavbar').filter(function (subnavbarEl) {\n return $(subnavbarEl).parents('.page')[0] === page.$el[0];\n });\n\n if ($innerSubnavbars.length) {\n page.$el.addClass('page-with-subnavbar');\n }\n }\n }\n};","import $ from '../../shared/dom7';\n\nvar TouchRipple = /*#__PURE__*/function () {\n function TouchRipple(app, $el, x, y) {\n var ripple = this;\n if (!$el) return undefined;\n\n var _$el$0$getBoundingCli = $el[0].getBoundingClientRect(),\n left = _$el$0$getBoundingCli.left,\n top = _$el$0$getBoundingCli.top,\n width = _$el$0$getBoundingCli.width,\n height = _$el$0$getBoundingCli.height;\n\n var center = {\n x: x - left,\n y: y - top\n };\n var diameter = Math.max(Math.pow(Math.pow(height, 2) + Math.pow(width, 2), 0.5), 48);\n var isInset = false;\n var insetElements = app.params.touch.touchRippleInsetElements || '';\n\n if (insetElements && $el.is(insetElements)) {\n isInset = true;\n }\n\n if (isInset) {\n diameter = Math.max(Math.min(width, height), 48);\n }\n\n if (!isInset && $el.css('overflow') === 'hidden') {\n var distanceFromCenter = Math.pow(Math.pow(center.x - width / 2, 2) + Math.pow(center.y - height / 2, 2), 0.5);\n var scale = (diameter / 2 + distanceFromCenter) / (diameter / 2);\n ripple.rippleTransform = \"translate3d(0px, 0px, 0) scale(\" + scale + \")\";\n } else {\n // prettier-ignore\n ripple.rippleTransform = \"translate3d(\" + (-center.x + width / 2) + \"px, \" + (-center.y + height / 2) + \"px, 0) scale(1)\";\n }\n\n if (isInset) {\n $el.addClass('ripple-inset');\n }\n\n ripple.$rippleWaveEl = $(\"\");\n $el.prepend(ripple.$rippleWaveEl);\n ripple.$rippleWaveEl.animationEnd(function () {\n if (!ripple.$rippleWaveEl) return;\n if (ripple.$rippleWaveEl.hasClass('ripple-wave-out')) return;\n ripple.$rippleWaveEl.addClass('ripple-wave-in');\n\n if (ripple.shouldBeRemoved) {\n ripple.out();\n }\n });\n return ripple;\n }\n\n var _proto = TouchRipple.prototype;\n\n _proto.destroy = function destroy() {\n var ripple = this;\n\n if (ripple.$rippleWaveEl) {\n ripple.$rippleWaveEl.remove();\n }\n\n Object.keys(ripple).forEach(function (key) {\n ripple[key] = null;\n delete ripple[key];\n });\n ripple = null;\n };\n\n _proto.out = function out() {\n var ripple = this;\n var $rippleWaveEl = this.$rippleWaveEl;\n clearTimeout(ripple.removeTimeout);\n $rippleWaveEl.addClass('ripple-wave-out');\n ripple.removeTimeout = setTimeout(function () {\n ripple.destroy();\n }, 300);\n $rippleWaveEl.animationEnd(function () {\n clearTimeout(ripple.removeTimeout);\n ripple.destroy();\n });\n };\n\n _proto.remove = function remove() {\n var ripple = this;\n if (ripple.shouldBeRemoved) return;\n ripple.removeTimeout = setTimeout(function () {\n ripple.destroy();\n }, 400);\n ripple.shouldBeRemoved = true;\n\n if (ripple.$rippleWaveEl.hasClass('ripple-wave-in')) {\n ripple.out();\n }\n };\n\n return TouchRipple;\n}();\n\nexport { TouchRipple as default };","function _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _construct = Reflect.construct; } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nimport TouchRipple from './touch-ripple-class';\nexport default {\n name: 'touch-ripple',\n static: {\n TouchRipple: TouchRipple\n },\n create: function create() {\n var app = this;\n app.touchRipple = {\n create: function create() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return _construct(TouchRipple, args);\n }\n };\n }\n};","function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nimport { getDocument } from 'ssr-window';\nimport $ from '../../shared/dom7';\nimport { extend, deleteProps } from '../../shared/utils';\nimport Framework7Class from '../../shared/class';\nvar openedModals = [];\nvar dialogsQueue = [];\n\nfunction clearDialogsQueue() {\n if (dialogsQueue.length === 0) return;\n var dialog = dialogsQueue.shift();\n dialog.open();\n}\n\nvar Modal = /*#__PURE__*/function (_Framework7Class) {\n _inheritsLoose(Modal, _Framework7Class);\n\n function Modal(app, params) {\n var _this;\n\n _this = _Framework7Class.call(this, params, [app]) || this;\n\n var modal = _assertThisInitialized(_this);\n\n var defaults = {}; // Extend defaults with modules params\n\n modal.useModulesParams(defaults);\n modal.params = extend(defaults, params);\n modal.opened = false;\n var $containerEl = modal.params.containerEl ? $(modal.params.containerEl).eq(0) : app.$el;\n if (!$containerEl.length) $containerEl = app.$el;\n modal.$containerEl = $containerEl;\n modal.containerEl = $containerEl[0]; // Install Modules\n\n modal.useModules();\n return _assertThisInitialized(_this) || _assertThisInitialized(_this);\n }\n\n var _proto = Modal.prototype;\n\n _proto.onOpen = function onOpen() {\n var modal = this;\n modal.opened = true;\n openedModals.push(modal);\n $('html').addClass(\"with-modal-\" + modal.type.toLowerCase());\n modal.$el.trigger(\"modal:open \" + modal.type.toLowerCase() + \":open\");\n modal.emit(\"local::open modalOpen \" + modal.type + \"Open\", modal);\n };\n\n _proto.onOpened = function onOpened() {\n var modal = this;\n modal.$el.trigger(\"modal:opened \" + modal.type.toLowerCase() + \":opened\");\n modal.emit(\"local::opened modalOpened \" + modal.type + \"Opened\", modal);\n };\n\n _proto.onClose = function onClose() {\n var modal = this;\n modal.opened = false;\n if (!modal.type || !modal.$el) return;\n openedModals.splice(openedModals.indexOf(modal), 1);\n $('html').removeClass(\"with-modal-\" + modal.type.toLowerCase());\n modal.$el.trigger(\"modal:close \" + modal.type.toLowerCase() + \":close\");\n modal.emit(\"local::close modalClose \" + modal.type + \"Close\", modal);\n };\n\n _proto.onClosed = function onClosed() {\n var modal = this;\n if (!modal.type || !modal.$el) return;\n modal.$el.removeClass('modal-out');\n modal.$el.hide();\n modal.$el.trigger(\"modal:closed \" + modal.type.toLowerCase() + \":closed\");\n modal.emit(\"local::closed modalClosed \" + modal.type + \"Closed\", modal);\n };\n\n _proto.open = function open(animateModal) {\n var modal = this;\n var document = getDocument();\n var app = modal.app;\n var $el = modal.$el;\n var $backdropEl = modal.$backdropEl;\n var type = modal.type;\n var animate = true;\n if (typeof animateModal !== 'undefined') animate = animateModal;else if (typeof modal.params.animate !== 'undefined') {\n animate = modal.params.animate;\n }\n\n if (!$el || $el.hasClass('modal-in')) {\n if (animateModal === false && $el[0] && type !== 'dialog') {\n $el[0].style.display = 'block';\n }\n\n return modal;\n }\n\n if (type === 'dialog' && app.params.modal.queueDialogs) {\n var pushToQueue;\n\n if ($('.dialog.modal-in').length > 0) {\n pushToQueue = true;\n } else if (openedModals.length > 0) {\n openedModals.forEach(function (openedModal) {\n if (openedModal.type === 'dialog') pushToQueue = true;\n });\n }\n\n if (pushToQueue) {\n dialogsQueue.push(modal);\n return modal;\n }\n }\n\n var $modalParentEl = $el.parent();\n var wasInDom = $el.parents(document).length > 0;\n\n if (!$modalParentEl.is(modal.$containerEl)) {\n modal.$containerEl.append($el);\n modal.once(type + \"Closed\", function () {\n if (wasInDom) {\n $modalParentEl.append($el);\n } else {\n $el.remove();\n }\n });\n } // Show Modal\n\n\n $el.show();\n /* eslint no-underscore-dangle: [\"error\", { \"allow\": [\"_clientLeft\"] }] */\n\n modal._clientLeft = $el[0].clientLeft; // Modal\n\n function transitionEnd() {\n if ($el.hasClass('modal-out')) {\n modal.onClosed();\n } else if ($el.hasClass('modal-in')) {\n modal.onOpened();\n }\n }\n\n if (animate) {\n if ($backdropEl) {\n $backdropEl.removeClass('not-animated');\n $backdropEl.addClass('backdrop-in');\n }\n\n $el.animationEnd(function () {\n transitionEnd();\n });\n $el.transitionEnd(function () {\n transitionEnd();\n });\n $el.removeClass('modal-out not-animated').addClass('modal-in');\n modal.onOpen();\n } else {\n if ($backdropEl) {\n $backdropEl.addClass('backdrop-in not-animated');\n }\n\n $el.removeClass('modal-out').addClass('modal-in not-animated');\n modal.onOpen();\n modal.onOpened();\n }\n\n return modal;\n };\n\n _proto.close = function close(animateModal) {\n var modal = this;\n var $el = modal.$el;\n var $backdropEl = modal.$backdropEl;\n var animate = true;\n if (typeof animateModal !== 'undefined') animate = animateModal;else if (typeof modal.params.animate !== 'undefined') {\n animate = modal.params.animate;\n }\n\n if (!$el || !$el.hasClass('modal-in')) {\n if (dialogsQueue.indexOf(modal) >= 0) {\n dialogsQueue.splice(dialogsQueue.indexOf(modal), 1);\n }\n\n return modal;\n } // backdrop\n\n\n if ($backdropEl) {\n var needToHideBackdrop = true;\n\n if (modal.type === 'popup') {\n modal.$el.prevAll('.popup.modal-in').add(modal.$el.nextAll('.popup.modal-in')).each(function (popupEl) {\n var popupInstance = popupEl.f7Modal;\n if (!popupInstance) return;\n\n if (popupInstance.params.closeByBackdropClick && popupInstance.params.backdrop && popupInstance.backdropEl === modal.backdropEl) {\n needToHideBackdrop = false;\n }\n });\n }\n\n if (needToHideBackdrop) {\n $backdropEl[animate ? 'removeClass' : 'addClass']('not-animated');\n $backdropEl.removeClass('backdrop-in');\n }\n } // Modal\n\n\n $el[animate ? 'removeClass' : 'addClass']('not-animated');\n\n function transitionEnd() {\n if ($el.hasClass('modal-out')) {\n modal.onClosed();\n } else if ($el.hasClass('modal-in')) {\n modal.onOpened();\n }\n }\n\n if (animate) {\n $el.animationEnd(function () {\n transitionEnd();\n });\n $el.transitionEnd(function () {\n transitionEnd();\n });\n $el.removeClass('modal-in').addClass('modal-out'); // Emit close\n\n modal.onClose();\n } else {\n $el.addClass('not-animated').removeClass('modal-in').addClass('modal-out'); // Emit close\n\n modal.onClose();\n modal.onClosed();\n }\n\n if (modal.type === 'dialog') {\n clearDialogsQueue();\n }\n\n return modal;\n };\n\n _proto.destroy = function destroy() {\n var modal = this;\n if (modal.destroyed) return;\n modal.emit(\"local::beforeDestroy modalBeforeDestroy \" + modal.type + \"BeforeDestroy\", modal);\n\n if (modal.$el) {\n modal.$el.trigger(\"modal:beforedestroy \" + modal.type.toLowerCase() + \":beforedestroy\");\n\n if (modal.$el.length && modal.$el[0].f7Modal) {\n delete modal.$el[0].f7Modal;\n }\n }\n\n deleteProps(modal);\n modal.destroyed = true;\n };\n\n return Modal;\n}(Framework7Class);\n\nexport default Modal;","function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nimport $ from '../../shared/dom7';\nimport { extend } from '../../shared/utils';\nimport Modal from './modal-class';\n\nvar CustomModal = /*#__PURE__*/function (_Modal) {\n _inheritsLoose(CustomModal, _Modal);\n\n function CustomModal(app, params) {\n var _this;\n\n var extendedParams = extend({\n backdrop: true,\n closeByBackdropClick: true,\n on: {}\n }, params); // Extends with open/close Modal methods;\n\n _this = _Modal.call(this, app, extendedParams) || this;\n\n var customModal = _assertThisInitialized(_this);\n\n customModal.params = extendedParams; // Find Element\n\n var $el;\n\n if (!customModal.params.el) {\n $el = $(customModal.params.content);\n } else {\n $el = $(customModal.params.el);\n }\n\n if ($el && $el.length > 0 && $el[0].f7Modal) {\n return $el[0].f7Modal || _assertThisInitialized(_this);\n }\n\n if ($el.length === 0) {\n return customModal.destroy() || _assertThisInitialized(_this);\n }\n\n var $backdropEl;\n\n if (customModal.params.backdrop) {\n $backdropEl = app.$el.children('.custom-modal-backdrop');\n\n if ($backdropEl.length === 0) {\n $backdropEl = $('');\n app.$el.append($backdropEl);\n }\n }\n\n function handleClick(e) {\n if (!customModal || customModal.destroyed) return;\n\n if ($backdropEl && e.target === $backdropEl[0]) {\n customModal.close();\n }\n }\n\n customModal.on('customModalOpened', function () {\n if (customModal.params.closeByBackdropClick && customModal.params.backdrop) {\n app.on('click', handleClick);\n }\n });\n customModal.on('customModalClose', function () {\n if (customModal.params.closeByBackdropClick && customModal.params.backdrop) {\n app.off('click', handleClick);\n }\n });\n extend(customModal, {\n app: app,\n $el: $el,\n el: $el[0],\n $backdropEl: $backdropEl,\n backdropEl: $backdropEl && $backdropEl[0],\n type: 'customModal'\n });\n $el[0].f7Modal = customModal;\n return customModal || _assertThisInitialized(_this);\n }\n\n return CustomModal;\n}(Modal);\n\nexport default CustomModal;","import Modal from './modal-class';\nimport CustomModal from './custom-modal-class';\nexport default {\n name: 'modal',\n static: {\n Modal: Modal,\n CustomModal: CustomModal\n },\n create: function create() {\n var app = this;\n app.customModal = {\n create: function create(params) {\n return new CustomModal(app, params);\n }\n };\n },\n params: {\n modal: {\n queueDialogs: true\n }\n }\n};","/**\n * Framework7 6.2.0\n * Full featured mobile HTML framework for building iOS & Android apps\n * https://framework7.io/\n *\n * Copyright 2014-2021 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: August 2, 2021\n */\n\nimport $ from './shared/dom7';\nimport Framework7 from './components/app/app-class';\nimport request from './shared/request';\nimport * as utils from './shared/utils';\nimport { getSupport } from './shared/get-support';\nimport { getDevice } from './shared/get-device';\nimport DeviceModule from './modules/device/device';\nimport SupportModule from './modules/support/support';\nimport UtilsModule from './modules/utils/utils';\nimport ResizeModule from './modules/resize/resize';\nimport RequestModule from './modules/request/request';\nimport TouchModule from './modules/touch/touch';\nimport ClicksModule from './modules/clicks/clicks';\nimport RouterModule from './modules/router/router';\nimport RouterComponentLoaderModule from './modules/router/component-loader';\nimport ComponentModule, { Component, $jsx } from './modules/component/component';\nimport HistoryModule from './modules/history/history';\nimport ServiceWorkerModule from './modules/service-worker/service-worker';\nimport StoreModule, { createStore } from './modules/store/store';\nimport Statusbar from './components/statusbar/statusbar';\nimport View from './components/view/view';\nimport Navbar from './components/navbar/navbar';\nimport Toolbar from './components/toolbar/toolbar';\nimport Subnavbar from './components/subnavbar/subnavbar';\nimport TouchRipple from './components/touch-ripple/touch-ripple';\nimport Modal from './components/modal/modal';\nimport Router from './modules/router/router-class';\nRouter.use([RouterComponentLoaderModule]);\nFramework7.use([DeviceModule, SupportModule, UtilsModule, ResizeModule, RequestModule, TouchModule, ClicksModule, RouterModule, HistoryModule, ComponentModule, ServiceWorkerModule, StoreModule, Statusbar, View, Navbar, Toolbar, Subnavbar, TouchRipple, Modal]);\nexport { Component, $jsx, $ as Dom7, request, utils, getDevice, getSupport, createStore };\nexport default Framework7;\n","import Framework7, { Dom7 } from 'framework7';\nimport F7WelcomescreenPlugin from 'f7-welcomescreen';\nimport './main.css';\n\ndocument.addEventListener('DOMContentLoaded', function (event) {\n var options = {\n bgcolor: '#0da6ec',\n fontcolor: '#fff',\n\n // Parallax example – Remove comments to test it out:\n\n // parallax: true|false,\n // parallaxBackgroundImage: 'http://lorempixel.com/900/600/nightlife/2/', // parallax default background image\n // parallaxBackground: '-23%', // parallax default background effect\n /* parallaxSlideElements: {\n title: -100, \n subtitle: -300, \n text: -500\n }, */\n\n onOpened: function () {\n console.log('welcome screen opened');\n },\n onClosed: function () {\n console.log('welcome screen closed');\n },\n };\n\n var welcomescreen_slides = [\n {\n id: 'slide0',\n title: 'Slide 1',\n picture: '1){var I=void 0,$=void 0,N=void 0;if(\"row\"===r.slidesPerColumnFill&&r.slidesPerGroup>1){var D=Math.floor(z/(r.slidesPerGroup*r.slidesPerColumn)),B=z-r.slidesPerColumn*r.slidesPerGroup*D,G=0===D?r.slidesPerGroup:Math.min(Math.ceil((p-D*P*r.slidesPerGroup)/P),r.slidesPerGroup);I=($=B-(N=Math.floor(B/G))*G+D*r.slidesPerGroup)+N*y/P,A.css({\"-webkit-box-ordinal-group\":I,\"-moz-box-ordinal-group\":I,\"-ms-flex-order\":I,\"-webkit-order\":I,order:I})}else\"column\"===r.slidesPerColumnFill?(N=z-($=Math.floor(z/P))*P,($>L||$===L&&N===P-1)&&(N+=1)>=P&&(N=0,$+=1)):$=z-(N=Math.floor(z/O))*O;A.css(t(\"margin-top\"),0!==N?r.spaceBetween&&r.spaceBetween+\"px\":\"\")}if(\"none\"!==A.css(\"display\")){if(\"auto\"===r.slidesPerView){var j=getComputedStyle(A[0]),H=A[0].style.transform,F=A[0].style.webkitTransform;if(H&&(A[0].style.transform=\"none\"),F&&(A[0].style.webkitTransform=\"none\"),r.roundLengths)E=e.isHorizontal()?A.outerWidth(!0):A.outerHeight(!0);else{var V=i(j,\"width\"),R=i(j,\"padding-left\"),W=i(j,\"padding-right\"),q=i(j,\"margin-left\"),X=i(j,\"margin-right\"),Y=j.getPropertyValue(\"box-sizing\");if(Y&&\"border-box\"===Y)E=V+q+X;else{var U=A[0],J=U.clientWidth;E=V+R+W+q+X+(U.offsetWidth-J)}}H&&(A[0].style.transform=H),F&&(A[0].style.webkitTransform=F),r.roundLengths&&(E=Math.floor(E))}else E=(n-(r.slidesPerView-1)*T)/r.slidesPerView,r.roundLengths&&(E=Math.floor(E)),c[z]&&(c[z].style[t(\"width\")]=E+\"px\");c[z]&&(c[z].swiperSlideSize=E),h.push(E),r.centeredSlides?(x=x+E/2+b/2+T,0===b&&0!==z&&(x=x-n/2-T),0===z&&(x=x-n/2-T),Math.abs(x)<.001&&(x=0),r.roundLengths&&(x=Math.floor(x)),S%r.slidesPerGroup==0&&u.push(x),f.push(x)):(r.roundLengths&&(x=Math.floor(x)),(S-Math.min(e.params.slidesPerGroupSkip,S))%e.params.slidesPerGroup==0&&u.push(x),f.push(x),x=x+E+T),e.virtualSize+=E+T,b=E,S+=1}}if(e.virtualSize=Math.max(e.virtualSize,n)+m,a&&o&&(\"slide\"===r.effect||\"coverflow\"===r.effect)&&s.css({width:e.virtualSize+r.spaceBetween+\"px\"}),r.setWrapperSize&&s.css(((M={})[t(\"width\")]=e.virtualSize+r.spaceBetween+\"px\",M)),r.slidesPerColumn>1&&(e.virtualSize=(E+r.spaceBetween)*y,e.virtualSize=Math.ceil(e.virtualSize/r.slidesPerColumn)-r.spaceBetween,s.css(((k={})[t(\"width\")]=e.virtualSize+r.spaceBetween+\"px\",k)),r.centeredSlides)){_=[];for(var K=0;K=s[p]&&r=s[p]&&(c=p);a.normalizeSlideIndex&&(c<0||void 0===c)&&(c=0)}if(n.indexOf(r)>=0)t=n.indexOf(r);else{var u=Math.min(a.slidesPerGroupSkip,c);t=u+Math.floor((c-u)/a.slidesPerGroup)}if(t>=n.length&&(t=n.length-1),c!==o){var f=parseInt(i.slides.eq(c).attr(\"data-swiper-slide-index\")||c,10);C(i,{snapIndex:t,realIndex:f,previousIndex:o,activeIndex:c}),i.emit(\"activeIndexChange\"),i.emit(\"snapIndexChange\"),l!==f&&i.emit(\"realIndexChange\"),(i.initialized||i.params.runCallbacksOnInit)&&i.emit(\"slideChange\")}else t!==d&&(i.snapIndex=t,i.emit(\"snapIndexChange\"))},updateClickedSlide:function(e){var t,i=this,r=i.params,s=T(e.target).closest(\".\"+r.slideClass)[0],n=!1;if(s)for(var a=0;a=d.length&&(g=d.length-1),(u||l.initialSlide||0)===(p||0)&&i&&a.emit(\"beforeSlideChangeStart\");var w,T=-d[g];if(a.updateProgress(T),l.normalizeSlideIndex)for(var x=0;x=r.length-s&&(t=-r.length+i+s,t+=s,e.slideTo(t,0,!1,!0)&&0!==d&&e.setTranslate((l?-e.translate:e.translate)-d)),e.allowSlidePrev=n,e.allowSlideNext=a,e.emit(\"loopFix\")},loopDestroy:function(){var e=this,t=e.$wrapperEl,i=e.params,r=e.slides;t.children(\".\"+i.slideClass+\".\"+i.slideDuplicateClass+\",.\"+i.slideClass+\".\"+i.slideBlankClass).remove(),r.removeAttr(\"data-swiper-slide-index\")}},grabCursor:{setGrabCursor:function(e){var t=this;if(!(t.support.touch||!t.params.simulateTouch||t.params.watchOverflow&&t.isLocked||t.params.cssMode)){var i=t.el;i.style.cursor=\"move\",i.style.cursor=e?\"-webkit-grabbing\":\"-webkit-grab\",i.style.cursor=e?\"-moz-grabbin\":\"-moz-grab\",i.style.cursor=e?\"grabbing\":\"grab\"}},unsetGrabCursor:function(){var e=this;e.support.touch||e.params.watchOverflow&&e.isLocked||e.params.cssMode||(e.el.style.cursor=\"\")}},manipulation:{appendSlide:function(e){var t=this,i=t.$wrapperEl,r=t.params;if(r.loop&&t.loopDestroy(),\"object\"==typeof e&&\"length\"in e)for(var s=0;s
Swipe to continue →',\n },\n {\n id: 'slide1',\n title: 'Slide 2',\n picture: '
Swipe to continue →',\n },\n {\n id: 'slide2',\n title: 'Slide 3',\n picture: '
Swipe to continue →',\n },\n {\n id: 'slide3',\n // title: 'NO TITLE',\n picture: '
End Tutorial',\n },\n ];\n\n // Tell F7 to use the plugin\n Framework7.use(F7WelcomescreenPlugin);\n\n // Initialize Framework7 + plugin\n var app = new Framework7({\n root: '#app',\n name: 'welcomescreen-demo',\n id: 'de.timoernst.f7.welcomescreen',\n welcomescreen: {\n slides: welcomescreen_slides,\n options: options,\n },\n });\n\n var mainView = app.views.create('.view-main');\n\n Dom7(document).on('click', '.tutorial-close-btn', function () {\n app.welcomescreen.close();\n });\n\n Dom7('.tutorial-open-btn').click(function () {\n app.welcomescreen.open();\n });\n\n Dom7(document).on('click', '.tutorial-next-link', function (e) {\n app.welcomescreen.next();\n });\n\n Dom7(document).on('click', '.tutorial-previous-slide', function (e) {\n app.welcomescreen.previous();\n });\n});\n"],"names":["__webpack_modules__","__unused_webpack_module","__webpack_exports__","t7ctx","d","Z","__WEBPACK_DEFAULT_EXPORT__","window","g","Template7Context","Template7Utils","quoteSingleRexExp","RegExp","quoteDoubleRexExp","isFunction","e","escape","replace","helperToSlices","t","i","r","trim","split","s","n","a","o","length","l","push","indexOf","match","c","p","u","f","stringToBlocks","type","content","contextName","Array","isArray","helperName","inverseContent","hash","parseJsVariable","reduce","JSON","stringify","forEach","constructor","Object","join","parseJsParents","getCompileVar","Number","isFinite","getCompiledArguments","test","Template7Helpers","_partial","this","Template7Class","partials","template","compiled","compile","keys","data","root","Error","if","call","fn","inverse","unless","each","reverse","first","last","index","key","with","delimiter","delimeter","js","expression","options","func","execute","Template7","global","parents","eval","js_if","condition","js_compare","Template7Options","Template7Partials","depth","blocks","ctx","getCompileFn","getCompileInverse","resultString","registerHelper","helpers","unregisterHelper","registerPartial","unregisterPartial","__webpack_module_cache__","exports","defineProperty","enumerable","get","globalThis","Function","prototype","hasOwnProperty","Symbol","toStringTag","value","default","J","body","addEventListener","removeEventListener","activeElement","blur","nodeName","querySelector","querySelectorAll","getElementById","createEvent","initEvent","createElement","children","childNodes","style","setAttribute","getElementsByTagName","createElementNS","importNode","location","host","hostname","href","origin","pathname","protocol","search","document","navigator","userAgent","history","replaceState","pushState","go","back","CustomEvent","getComputedStyle","getPropertyValue","Image","Date","screen","setTimeout","clearTimeout","matchMedia","requestAnimationFrame","cancelAnimationFrame","setPrototypeOf","getPrototypeOf","__proto__","Reflect","construct","sham","Proxy","toString","apply","bind","arguments","Map","TypeError","has","set","create","writable","configurable","ReferenceError","concat","h","filter","v","innerHTML","nodeType","m","trigger","on","w","addClass","map","classList","add","removeClass","remove","hasClass","contains","toggleClass","toggle","attr","getAttribute","removeAttr","removeAttribute","transform","transition","transitionDuration","target","dom7EventData","unshift","is","dom7LiveListeners","listener","proxyListener","dom7Listeners","off","dom7proxy","splice","detail","bubbles","cancelable","dispatchEvent","transitionEnd","outerWidth","styles","offsetWidth","parseFloat","outerHeight","offsetHeight","offset","getBoundingClientRect","clientTop","clientLeft","scrollY","scrollTop","scrollX","scrollLeft","top","left","css","html","text","textContent","matches","webkitMatchesSelector","msMatchesSelector","previousSibling","eq","append","firstChild","appendChild","prepend","insertBefore","next","nextElementSibling","nextAll","prev","previousElementSibling","prevAll","parent","parentNode","closest","find","removeChild","T","x","b","now","S","slice","y","HTMLElement","C","getOwnPropertyDescriptor","__swiper__","E","_","M","k","touch","DocumentTouch","pointerEvents","PointerEvent","maxTouchPoints","observer","passiveListener","gestures","P","platform","ios","android","width","height","os","O","isEdge","isSafari","toLowerCase","isWebView","L","name","resize","createObserver","destroyed","initialized","ResizeObserver","contentBoxSize","contentRect","el","inlineSize","blockSize","resizeHandler","observe","removeObserver","unobserve","emit","orientationChangeHandler","init","params","resizeObserver","destroy","z","assign","A","attach","MutationObserver","WebkitMutationObserver","attributes","childList","characterData","observers","support","observeParents","$el","observeSlideChildren","$wrapperEl","disconnect","I","$","touchEventsData","touches","enabled","animating","preventInteractionOnTransition","originalEvent","touchEventsTarget","wrapperEl","isTouchEvent","which","button","isTouched","isMoved","noSwipingClass","shadowRoot","path","noSwipingSelector","noSwiping","assignedSlot","getRootNode","allowClick","swipeHandler","currentX","targetTouches","pageX","currentY","pageY","edgeSwipeDetection","iOSEdgeSwipeDetection","edgeSwipeThreshold","iOSEdgeSwipeThreshold","innerWidth","preventDefault","allowTouchCallbacks","isScrolling","startMoving","startX","startY","touchStartTime","updateSize","swipeDirection","threshold","allowThresholdMove","focusableElements","allowTouchMove","touchStartPreventDefault","touchStartForcePreventDefault","isContentEditable","N","rtlTranslate","changedTouches","preventedByNestedSwiper","touchReleaseOnEdges","loop","isVertical","translate","maxTranslate","minTranslate","Math","sqrt","pow","isHorizontal","atan2","abs","PI","touchAngle","cssMode","touchMoveStopPropagation","nested","stopPropagation","loopFix","startTranslate","getTranslate","setTransition","allowMomentumBounce","grabCursor","allowSlideNext","allowSlidePrev","setGrabCursor","diff","touchRatio","currentTranslate","resistanceRatio","resistance","followFinger","freeMode","watchSlidesProgress","watchSlidesVisibility","updateActiveIndex","updateSlidesClasses","velocities","position","time","updateProgress","setTranslate","D","slidesGrid","snapGrid","updateClickedSlide","lastClickTime","slideTo","activeIndex","slides","freeModeMomentum","pop","velocity","freeModeMinimumVelocity","freeModeMomentumVelocityRatio","freeModeMomentumRatio","freeModeMomentumBounceRatio","freeModeMomentumBounce","centeredSlides","freeModeSticky","once","slidesSizesGrid","speed","slideToClosest","transitionStart","longSwipesMs","slidesPerGroupSkip","slidesPerGroup","longSwipes","longSwipesRatio","shortSwipes","navigation","nextEl","prevEl","B","breakpoints","setBreakpoint","updateSlides","slidesPerView","isEnd","isBeginning","autoplay","running","paused","run","watchOverflow","checkOverflow","G","preventClicks","preventClicksPropagation","stopImmediatePropagation","j","previousTranslate","scrollWidth","progress","H","F","V","direction","initialSlide","updateOnWindowResize","createElements","url","autoHeight","setWrapperSize","virtualTranslate","effect","breakpointsBase","spaceBetween","slidesPerColumn","slidesPerColumnFill","centeredSlidesBounds","slidesOffsetBefore","slidesOffsetAfter","normalizeSlideIndex","centerInsufficientSlides","roundLengths","simulateTouch","uniqueNavElements","slideToClickedSlide","preloadImages","updateOnImagesReady","loopAdditionalSlides","loopedSlides","loopFillGroupWithBlank","loopPreventsSlide","passiveListeners","containerModifierClass","slideClass","slideBlankClass","slideActiveClass","slideDuplicateActiveClass","slideVisibleClass","slideDuplicateClass","slideNextClass","slideDuplicateNextClass","slidePrevClass","slideDuplicatePrevClass","wrapperClass","runCallbacksOnInit","_emitClasses","W","modular","useParams","modules","useModules","eventsEmitter","eventsListeners","__emitterProxy","onAny","eventsAnyListeners","offAny","events","context","update","clientWidth","clientHeight","parseInt","isNaN","size","marginRight","wrongRTL","virtual","virtualSize","marginLeft","marginBottom","marginTop","floor","ceil","max","min","order","webkitTransform","R","q","X","Y","U","swiperSlideSize","K","Q","ee","te","ie","re","se","ne","ae","updateSlidesOffset","updateAutoHeight","visibleSlides","swiperSlideOffset","offsetLeft","offsetTop","updateSlidesProgress","visibleSlidesIndexes","realIndex","emitSlidesClasses","snapIndex","previousIndex","clickedSlide","clickedIndex","currentStyle","WebKitCSSMatrix","MozTransform","OTransform","MsTransform","msTransform","m41","m42","translateTo","scrollTo","behavior","onTranslateToWrapperTransitionEnd","slide","onSlideToWrapperTransitionEnd","slideToLoop","slideNext","_clientLeft","slidePrev","slideReset","slidesPerViewDynamic","loopCreate","cloneNode","loopDestroy","isLocked","cursor","unsetGrabCursor","manipulation","appendSlide","prependSlide","addSlide","removeSlide","removeAllSlides","attachEvents","touchEvents","device","onTouchStart","onTouchMove","onTouchEnd","onScroll","onClick","start","move","end","passive","capture","cancel","detachEvents","getBreakpoint","currentBreakpoint","originalParams","emitContainerClasses","changeDirection","disable","enable","innerHeight","substr","point","sort","classes","addClasses","classNames","rtl","autoheight","multirow","removeClasses","images","loadImage","complete","onload","onerror","sizes","srcset","src","imagesLoaded","imagesToLoad","currentSrc","browser","auto","passedParams","touchEventsTouch","touchEventsDesktop","clickTimeout","setProgress","className","getSlideClasses","slideEl","mount","mounted","swiper","dir","extendDefaults","installModule","use","Welcomescreen","closeButton","closeButtonText","cssClass","pagination","open","parallax","parallaxSpeed","parallaxBackgroundImage","parallaxBackground","parallaxSlideElements","title","subtitle","Dom7","bgcolor","color","fontcolor","f7Welcomescreen","onOpened","close","onClosed","previous","welcomescreen","__webpack_require__","moduleId","cachedModule","undefined","module","getter","__esModule","definition","obj","prop","isObject","extend","ssrDocument","getDocument","doc","ssrWindow","callback","id","getWindow","win","uniqueNum","uniqueNumber","mask","random","deviceCalculated","mdPreloaderContent","iosPreloaderContent","auroraPreloaderContent","eventNameToColonCase","eventName","hasColon","char","deleteProps","object","frameId","nextTick","delay","nextFrame","parseUrlQuery","param","query","urlToParse","paramsPart","decodeURIComponent","axis","matrix","curTransform","transformMatrix","curStyle","serializeObject","newParents","resultArray","varName","parentParts","encodeURIComponent","varValue","toPush","String","merge","_len","args","_key","to","from","nextSource","keysArray","nextIndex","len","nextKey","desc","deep","_len2","_key2","colorHexToRgb","hex","result","exec","colorRgbToHex","colorRgbToHsl","colorHslToRgb","rgb1","hp","round","colorHsbToHsl","HSL","HSB","colorHslToHsb","colorThemeCSSProperties","rgb","_len3","_key3","hsl","hslShade","hslTint","shade","tint","bindMethods","instance","subKey","flattenArray","arr","_len4","_key4","arg","getSupport","supportsPassive","opts","intersectionObserver","calcSupport","getDevice","overrides","reset","_temp","ua","androidChrome","desktop","iphone","ipod","ipad","edge","firefox","macos","windows","cordova","phonegap","electron","capacitor","Capacitor","nwjs","screenWidth","screenHeight","nw","process","versions","osVersion","webView","standalone","webview","pixelRatio","devicePixelRatio","prefersColorScheme","theme","calcDevice","EventsClass","eventsParents","_proto","handler","priority","self","method","event","onceHandler","f7proxy","eventHandler","local","eventsArray","localEvents","parentEvents","handlers","eventsParent","_defineProperties","props","descriptor","_setPrototypeOf","_EventsClass","subClass","superClass","Framework7Class","_this","_assertThisInitialized","Constructor","staticProps","useModuleParams","instanceParams","paramKey","useModulesParams","moduleName","useModule","moduleParams","modulePropName","moduleProp","moduleEventName","vnode","vnodeHooks","vnodeId","hookName","modulesParams","Class","proto","static","install","components","_getPrototypeOf","_isNativeReflectConstruct","_construct","Parent","_wrapNativeSuper","_cache","Wrapper","_Array","items","arrayFlat","res","arrayFilter","selector","toCreate","tempParent","qsa","uniqueArray","arrayUnique","_el$classList","_el$classList2","attrs","attrName","propName","dom7ElementDataStorage","removeData","dataset","string","dataKey","_attr","group","toUpperCase","val","multiple","values","selectedOptions","_i","_el","selected","duration","_len5","_key5","eventType","targetSelector","handleLiveEvent","eventData","_parents","handleEvent","_event","_len6","_key6","dom","_len7","_key7","_len8","eventArgs","_key8","_len9","_key9","evt","dataIndex","fireCallBack","animationEnd","includeMargins","_styles","_styles2","box","hide","display","show","_prop","compareWith","child","returnIndex","newChild","tempDiv","appendTo","prependTo","before","insertAfter","after","nextSibling","nextEls","_next","prevEls","_prev","siblings","_parent","foundElements","found","detach","_len10","els","_key10","toAdd","empty","easing","currentTop","currentLeft","maxTop","maxLeft","newTop","newLeft","animateTop","animateLeft","scrollHeight","startTime","render","getTime","done","easeProgress","cos","animate","initialProps","initialParams","animateInstance","elements","que","easingProgress","stop","dom7AnimateInstance","shift","initialFullValue","initialValue","unit","finalValue","finalFullValue","container","currentValue","elementsDone","propsDone","began","begin","element","_el$prop","noTrigger","shortcut","click","focusin","focusout","keyup","keydown","keypress","change","mousedown","mousemove","mouseup","mouseenter","mouseleave","mouseout","mouseover","touchstart","touchend","touchmove","methodName","Boolean","valueOf","ConstructorMethods","parameters","_parameters","defaultSelector","domProp","app","addMethods","methods","_extends","source","fetchedModules","Framework7","_Framework7Class","defaults","version","language","routes","lazyModulesPath","initOnDeviceReady","autoDarkTheme","iosTranslucentBars","iosTranslucentModals","component","componentUrl","online","onLine","store","f7","initStore","protoProps","rootEl","$rootEl","DARK","LIGHT","mq","dark","light","colorSchemeListener","_ref","media","darkTheme","__store","createStore","enableAutoDarkTheme","addListener","disableAutoDarkTheme","removeListener","initAppComponent","router","componentLoader","componentOptions","$elComponent","f7Component","loadModule","loadModules","getVnodeHooks","hook","ModalMethods","targetEl","$targetPage","modalEl","$modalEl","f7Modal","$parentEl","$targetEl","moduleToLoad","Promise","resolve","reject","modulePath","moduleObj","moduleFunc","matchNamePattern","_module","scriptLoad","resolveScript","rejectScript","request","scriptContent","callbackLoadName","scriptEl","xhr","status","styleLoad","resolveStyle","styleContent","styleEl","all","then","catch","err","metaStatusbar","utils","getSize","orientationchange","globals","jsonpRequests","RequestResponse","RequestError","_Error","requestOptions","globalsNoCallbacks","callbackName","async","cache","user","password","headers","xhrFields","statusCode","processData","dataType","contentType","timeout","abortController","canceled","message","fireCallback","stringData","paramsPrefix","abortTimeout","callbackSplit","requestUrl","addVars","script","XMLHttpRequest","aborted","onAbort","abort","requestParameters","postData","ArrayBuffer","Blob","Document","FormData","boundary","setRequestHeader","newData","Accept","headerName","crossDomain","$2","responseData","parseError","parse","responseText","responseType","response","statusText","ontimeout","send","globalCallbackValue","optionCallbackValue","requestShortcut","success","error","post","json","getJSON","postJSON","contoller","setup","touchClicksDistanceThreshold","disableContextMenu","tapHold","tapHoldDelay","tapHoldPreventClicks","activeState","activeStateElements","activeStateOnMouseMove","mdTouchRipple","iosTouchRipple","auroraTouchRipple","touchRippleElements","touchRippleInsetElements","touchStartX","touchStartY","targetElement","tapHoldFired","tapHoldTimeout","preventClick","activableElement","activeTimeout","rippleWave","rippleTarget","rippleTimeout","useRipple","findActivableElement","activable","preventPropagation","newActivable","isInsideScrollableView","addActive","removeActive","createRipple","touchRipple","removeRipple","rippleTouchStart","rippleElements","rippleParent","findRippleElement","rippleTouchMove","rippleTouchEnd","handleMouseUp","isSegmentedStrong","segmentedStrongEl","touchMoveActivableIos","isTouchMoveActivable","touchmoveActivableEl","emitAppTouchEvent","appTouchStartActive","appTouchMoveActive","appTouchEndActive","appTouchStartPassive","appTouchMovePassive","appTouchEndPassive","passiveListenerCapture","activeListener","activeListenerCapture","isOverswipe","isSegmented","localPreventClick","distance","shouldRemoveActive","touchCurrentX","touchCurrentY","buttonEl","elementFromPoint","clientX","clientY","_elementFromPoint","$activableEl","isNative","str","tokens","count","pattern","code","charCodeAt","lexer","_a","prefixes","defaultPattern","escapeString","tryConsume","mustConsume","nextType","consumeText","prefix","suffix","modifier","name_1","pattern_1","flags","sensitive","pathToRegexp","groupsRegex","execResult","regexpToRegexp","paths","parts","arrayToRegexp","strict","_b","_c","_d","encode","endsWith","route","tokens_1","token","mod","endToken","isEndDelimited","tokensToRegexp","stringToRegexp","History","queue","clearQueue","currentQueue","routerQueue","clearRouterQueue","stateUrl","action","browserHistoryAnimate","browserHistory","navigate","handle","blockPopstate","state","previousState","allowChange","views","view","viewState","allowPageChange","initViewState","viewId","_extend","newState","_extend2","_extend3","readyState","redirect","initial","redirectUrl","redirectOptions","processQueue","routeQueue","_reject","processRouteQueue","enterNextRoute","routesBeforeEnter","beforeEnter","routesBeforeLeave","beforeLeave","appRouterCheck","asyncComponent","resolvePromise","componentPromise","_default","asyncComponentResult","forward","forwardOptions","masterPageEl","otherDetailPageEl","modalType","reloadCurrent","reloadPages","reloadPrevious","reloadAll","clearPreviousHistory","reloadDetail","masterDetailEnabled","masterDetailBreakpoint","isMaster","master","detailsInBetweenRemoved","currentRouteIsModal","currentRoute","modal","modalLoadProp","modalToClose","modalInstance","previousUrl","previousRoute","findMatchingRoute","modalRemove","$oldPage","$navbarsEl","$newNavbarEl","$oldNavbarEl","dynamicNavbar","$viewEl","$newPage","reload","removeThemeElements","f7Page","$navbarEl","keepAlive","keepAliveData","pageEl","$navbarsInView","isDetail","isDetailRoot","$pagesInView","pageInView","navbarInView","newPagePosition","role","detailRoot","navbar","getElByPage","navbarEl","removedPageEls","removedNavbarEls","_i2","oldNavbarEl","stackPages","pageCallback","removePage","removeNavbar","browserHistoryRoot","browserHistorySeparator","currentPageEl","currentNavbarEl","saveHistory","newPageInDom","componentEl","f7PageMounted","initialPages","$oldPageEl","$oldNavbarElEl","tab","tabLoad","checkMasterDetailBreakpoint","setPagePosition","setNavbarPosition","afterAnimation","keepOldPage","preloadPreviousPage","setPositionClasses","f7PageTransition","load","loadParams","loadOptions","ignorePageChange","pageName","parentPath","sameParams","paramName","allowDuplicateUrls","parseRouteUrl","getPageEl","pageComponentLoader","routerEl","newOptions","xhrAbortController","xhrRequest","pageContent","backward","backwardOptions","masterPageRemoved","backIndex","initialPreload","preload","currentIsMaster","masterRoute","force","pageToRemove","$navbarToRemove","$pageToRemove","insertPage","$previousPages","_browserHistoryRoot","loadBack","backParams","backOptions","Router","isAppRouter","routerId","scrollHistory","iosDynamicNavbar","initialNavbars","newRoute","tempDom","navbarsEl","animatableNavElements","toLarge","fromLarge","newNavEls","oldNavEls","animateIcon","iosAnimateNavbarBackIcon","animatableNavEl","$navbarInner","isIconLabel","isSliding","isSubnavbar","needsOpacityTransition","$iconEl","leftOffset","f7NavbarLeftOffset","rightOffset","f7NavbarRightOffset","navEl","$navEl","navEls","otherEls","otherNavEl","iconTextEl","$newPageEl","animateCustom","routerCustomTransitionClass","toDifferent","oldIsLarge","newIsLarge","routerTransitionClass","animateNavbars","setProperty","removeModal","removeEl","removeTabContent","tabEl","tabChild","removeElements","removeElementsWithTimeout","removeElementsTimeout","findElement","stringSelector","notStacked","$container","viewMainClass","flattenRoutes","flattenedRoutes","hasTabRoutes","tabs","mergedPathsRoutes","tabRoute","tRoute","_mergedPathsRoutes","detailRoutes","detailRoute","dRoute","masterRoutePath","_mergedPathsRoutes2","childRoute","cRoute","generateUrl","findRouteByKey","constructRouteUrl","toUrl","reFlags","validate","optional","repeat","segment","typeOfMessage","tokensToFunction","findTabRouteUrl","foundTabRouteUrl","$tabEl","tabId","matchingRoute","_router$parseRouteUrl","matched","pathsToMatch","alias","aliasPath","pathToMatch","keyObj","paramValue","replaceRequestUrlParams","compiledUrl","regExp","removeFromXhrCache","xhrCache","ignoreCache","hasQuery","passRouteQueryToRequest","passRouteParamsToRequest","xhrCacheIgnoreGetParameters","xhrCacheIgnore","cachedUrl","xhrCacheDuration","beforeSend","ariaHidden","toRemove","getPageData","pageFromEl","pageFrom","$pageEl","currentPage","fromPage","$pageFromEl","page","restoreScrollTopOnBack","camelName","colonName","swipeBack","_ref2","_ref2$on","_ref2$once","$pageContent","pageContentEl","f7PageInitialized","_$pageContent","f7RouteEventsAttached","f7RouteEventsOn","f7RouteEventsOnce","browserHistoryStoreHistory","localStorage","restoreHistory","clearHistory","updateCurrentUrl","newUrl","_router$parseRouteUrl2","getInitialUrl","initialUrl","historyRestored","URL","documentUrl","_router$params","browserHistoryOnLoad","console","warn","_router$getInitialUrl","iosSwipeBack","mdSwipeBack","auroraSwipeBack","viewContainerWidth","touchesDiff","$pageShadowEl","$pageOpacityEl","animatableNavEls","touchesStart","$currentPageEl","$previousPageEl","allowViewTouchMove","$currentNavbarEl","$previousNavbarEl","paramsSwipeBackAnimateShadow","paramsSwipeBackAnimateOpacity","paramsSwipeBackActiveArea","paramsSwipeBackThreshold","transformOrigin","transformOriginTitleLarge","setAnimatableNavElements","reflow","classNameSet","styleProp","handleTouchStart","swipeBackEnabled","swipeout","handleTouchMove","f7PreventSwipeBack","preventSwipeBack","activeNavBackIconText","previousNavBackIconText","inverter","currentNavIsTransparent","currentNavIsLarge","currentNavIsCollapsed","currentNavIsLargeTransparent","previousNavIsTransparent","previousNavIsLarge","previousNavIsCollapsed","previousNavIsLargeTransparent","$currentNavElements","$previousNavElements","isLeft","isTitle","isBg","overflow","subNavEl","opacity","transformTarget","textEl","activeNavTranslate","previousNavTranslate","sheet","f7PreventSwipePanel","preventSwipePanelBySwipeBack","percentage","callbackData","previousPageEl","previousNavbarEl","currentPageTranslate","previousPageTranslate","swipeBackActive","handleTouchEnd","$pages","timeDiff","pageChanged","_router$params2","browserHistoryAnimateOnLoad","browserHistoryInitialMatch","initUrl","loadInitialPage","modalOpen","pageAfterIn","hasTabRoute","initOptions","routerProp","navigateParams","navigateOptions","createRoute","navigateUrl","currentPath","viewName","anotherViewName","anotherView","openIn","ignoreOpenIn","popup","loginScreen","clickedEl","popover","side","panel","routerLoaded","asyncResolve","resolveParams","resolveOptions","resolvedAsModal","modalRoute","modalLoad","asyncReject","pageLoadProp","_load","preloadMaster","masterLoaded","refreshPage","parentPageEl","$parentPageEl","hasContentLoadProp","tabShowResult","$newTabEl","$oldTabEl","animated","onTabsChanged","tabParentPageData","f7RouterTabLoaded","loadTab","loadTabParams","loadTabOptions","contentEl","tabEventTarget","unloadTabContent","tabRemove","onTabLoaded","tabComponentLoader","tabContent","tabLoadProp","_loadTab","hasTabComponentChild","foundLoadProp","isPanel","modalOrPanel","modalParams","routeCallback","panelOpen","modalClose","panelClose","modalClosed","panelClosed","onModalLoaded","hasEl","closeOnSwipeBack","closeByRouter","modalComponent","loadModal","loadModalParams","loadModalOptions","modalComponentLoader","modalContent","_loadModal","_navigateOptions","prevOpenedModals","forceOtherUrl","isBrokenBrowserHistory","needHistoryBack","currentRouteWithoutBrowserHistory","skipMaster","$previousPage","$previousMaster","expectedPreviousPageUrl","expectedPreviousPageRoute","previousPageRoute","backForceLoaded","_loadBack","clearPreviousPages","templates","View","viewParams","routesAdd","main","f7View","viewProp","wasMasterDetail","isMasterDetail","initMasterDetail","masterDetailResizable","resizableInitialized","resizable","resizableWidth","$htmlEl","$resizeHandlerEl","minWidth","maxWidth","handleResize","transformCSSWidth","newV","$pageMasterEl","newWidth","viewEl","clicks","externalLinks","$clickedEl","$clickedLinkEl","isLink","InAppBrowser","Plugins","Browser","moduleClicks","preventF7Router","clickSelector","matchingClickedElement","clickedLinkData","current","linksView","f7RouteProps","cachedComponent","componentFunction","componentRoot","componentContext","f7route","f7router","componentProps","routeProps","createdComponent","componentCache","cached","loadedComponent","parsedComponent","_temp2","_temp3","_ref3","ignoreChildren","sel","elm","array","primitive","addNS","ns","childData","SELF_CLOSING","PROPS_ATTRS","BOOLEAN_PROPS","getTagName","treeNode","word","propsFromAttrs","isCustomComponent","treeNodeType","getChildren","nodes","childNode","treeNodeToVNode","isRoot","isTreeNode","slotName","slotNodes","childTreeNode","childSlotName","slot","subTreeNode","getSlots","tagName","attrValue","prevent","eventNamePart","eventNameIndex","fired","getEventHandler","hooks","insert","postpatch","isFakeElement","_readOnlyError","isCustom","__component__","createCustomComponent","destroyCustomComponent","oldVnode","newProps","updateCustomComponent","class","vn","getHooks","prepatch","getData","vdom","tree","namespaceURI","qualifiedName","createTextNode","createComment","newNode","referenceNode","node","setTextContent","getTextContent","isElement","isText","isComment","isUndef","isDef","emptyNode","sameVnode","vnode1","vnode2","createKeyToOldIdx","beginIdx","endIdx","ch","updateAttrs","oldAttrs","cur","setAttributeNS","updateProps","oldProps","raf","setNextFrame","updateStyle","oldStyle","oldHasDel","removeProperty","delayed","name2","invokeHandler","updateEvents","oldOn","oldListener","oldElm","domApi","cbs","api","createRmCb","childElm","listeners","parent_1","createElm","insertedVnodeQueue","hashIdx","dotIdx","dot","tag","addVnodes","parentElm","vnodes","startIdx","invokeDestroyHook","removeVnodes","i_1","rm","patchVnode","oldCh","newCh","oldKeyToIdx","idxInOld","elmToMove","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","updateChildren","pre","isVnode","emptyNodeAt","amount","applied","ev","Component","md","aurora","__updateQueue","__eventHandlers","__onceEventHandlers","__onBeforeMount","__onMounted","__onBeforeUpdate","__onUpdated","__onBeforeUnmount","__onUnmounted","componentResult","getComponentContext","renderFunction","getComponentStore","_this2","_this$f7$store","_gettersPlain","$store","dispatch","getters","onUpdated","includeHooks","_this3","$f7route","$f7router","$h","$id","$f7","$f7ready","f7ready","$theme","$tick","tick","$update","$emit","$on","$once","$onBeforeMount","$onMounted","$onBeforeUpdate","$onUpdated","$onBeforeUnmount","$onUnmounted","_ref4","_ref5","startUpdateQueue","_this4","__requestAnimationFrameId","__updateIsPending","newVNode","resolvers","resolver","_this5","_this6","__destroyed","setState","_this7","mountMethod","registerComponent","unregisterComponent","componentString","componentId","callbackCreateName","item","scripts","SW","registrations","register","scope","serviceWorker","reg","unregister","registration","storeParams","originalState","actions","propsQueue","gettersDependencies","gettersCallbacks","getterKey","getGetterValue","addGetterCallback","__removeCallback","stateKey","callbacks","removeGetterCallback","getterValue","addCallback","deps","dep","addGetterDependencies","__callback","actionName","isCapacitor","StatusBar","Statusbar","setTextColor","styleLightContent","styleDefault","setStyle","setBackgroundColor","backgroundColorByHexString","isVisible","getInfo","info","visible","overlaysWebView","overlays","setOverlaysWebView","overlay","statusbar","isCordova","isCap","scrollTopOnClick","iosOverlaysWebView","iosTextColor","androidOverlaysWebView","androidTextColor","iosBackgroundColor","androidBackgroundColor","iosSwipeBackAnimateShadow","iosSwipeBackAnimateOpacity","iosSwipeBackActiveArea","iosSwipeBackThreshold","mdSwipeBackAnimateShadow","mdSwipeBackAnimateOpacity","mdSwipeBackActiveArea","mdSwipeBackThreshold","auroraSwipeBackAnimateShadow","auroraSwipeBackAnimateOpacity","auroraSwipeBackActiveArea","auroraSwipeBackThreshold","iosPageLoadDelay","mdPageLoadDelay","auroraPageLoadDelay","$popoverView","$popupView","$panelView","$viewsEl","getCurrentView","Navbar","$innerEl","needCenterTitle","needLeftTitle","iosCenterTitle","currLeft","right","subnavbar","noLeft","noRight","leftWidth","rightWidth","titleWidth","navbarStyles","navbarInnerWidth","paddingLeft","paddingRight","isPrevious","sliding","requiredLeft","titleLeftOffset","titleRightOffset","activeNavbarBackLink","titleLeft","hideStatusbar","hideOnlyCurrent","isDynamic","subEl","pageData","getPageByEl","collapseLargeTitle","expandLargeTitle","toggleLargeTitle","initNavbarOnScroll","needHide","needCollapse","needTransparent","previousScrollTop","currentScrollTop","reachEnd","navbarHidden","navbarCollapsed","navbarTitleLargeHeight","navbarOffsetHeight","scrollChanged","scrollContent","scrollTimeoutId","touchEndTimeoutId","$titleLargeEl","isLarge","navbarHideHeight","snapPageScrollToLargeTitle","snapPageScrollToTransparentNavbar","calcScrollableDistance","f7ScrollableDistance","snapLargeNavbar","snapTransparentNavbar","previousCollapseProgress","collapseProgress","handleScroll","isLargeTransparent","scrollableDistance","previousCollapseWasInMiddle","handleLargeNavbarCollapse","isHidden","notTransparent","handleNavbarTransparent","showOnPageScrollEnd","showOnPageScrollTop","handeTouchStart","f7DetachNavbarScrollHandlers","scrollTopOnTitleClick","mdCenterTitle","auroraCenterTitle","hideOnPageScroll","collapseLargeTitleOnScroll","pageBeforeRemove","pageBeforeIn","pageReinit","pageInit","needCollapseOnScrollHandler","needTransparentOnScroll","needHideOnScrollHandler","tabShow","clickedData","$pageContentEl","Toolbar","setHighlight","tabbarEl","$tabbarEl","$highlightEl","tabLinksCount","highlightWidth","highlightTranslate","$activeLink","toolbar","initToolbarOnScroll","toolbarHidden","$toolbarEl","f7ScrollToolbarHandler","tabbar","subnavbarEl","TouchRipple","ripple","_$el$0$getBoundingCli","center","diameter","isInset","insetElements","rippleTransform","scale","$rippleWaveEl","shouldBeRemoved","out","removeTimeout","openedModals","dialogsQueue","Modal","opened","$containerEl","containerEl","onOpen","onClose","animateModal","pushToQueue","$backdropEl","queueDialogs","openedModal","$modalParentEl","wasInDom","needToHideBackdrop","popupEl","popupInstance","closeByBackdropClick","backdrop","backdropEl","_Modal","CustomModal","extendedParams","customModal","handleClick","log","F7WelcomescreenPlugin","picture"],"sourceRoot":""}
\ No newline at end of file
diff --git a/demo/build/main.css.map b/demo/build/main.css.map
index 059e2c0..83926da 100644
--- a/demo/build/main.css.map
+++ b/demo/build/main.css.map
@@ -1 +1 @@
-{"version":3,"file":"main.css","mappings":"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","sources":["webpack://f7-welcomescreen-demo/./node_modules/framework7/framework7-bundle.min.css","webpack://f7-welcomescreen-demo/../dist/main.css","webpack://f7-welcomescreen-demo/./src/main.css"],"sourcesContent":["/**\n * Framework7 6.2.0\n * Full featured mobile HTML framework for building iOS & Android apps\n * https://framework7.io/\n *\n * Copyright 2014-2021 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: August 2, 2021\n */\n\n:root{--f7-theme-color:#007aff;--f7-theme-color-rgb:0,122,255;--f7-theme-color-shade:#0066d6;--f7-theme-color-tint:#298fff;--f7-safe-area-left:0px;--f7-safe-area-right:0px;--f7-safe-area-top:0px;--f7-safe-area-bottom:0px;--f7-safe-area-outer-left:0px;--f7-safe-area-outer-right:0px;--f7-device-pixel-ratio:1}@supports (left:env(safe-area-inset-left)){:root{--f7-safe-area-top:env(safe-area-inset-top);--f7-safe-area-bottom:env(safe-area-inset-bottom)}:root .ios-edges,:root .ios-left-edge,:root .panel-left,:root .popup,:root .safe-area-left,:root .safe-areas,:root .sheet-modal{--f7-safe-area-left:env(safe-area-inset-left);--f7-safe-area-outer-left:env(safe-area-inset-left)}:root .ios-edges,:root .ios-right-edge,:root .panel-right,:root .popup,:root .safe-area-right,:root .safe-areas,:root .sheet-modal{--f7-safe-area-right:env(safe-area-inset-right);--f7-safe-area-outer-right:env(safe-area-inset-right)}:root .no-ios-edges,:root .no-ios-left-edge,:root .no-safe-area-left,:root .no-safe-areas{--f7-safe-area-left:0px;--f7-safe-area-outer-left:0px}:root .no-ios-edges,:root .no-ios-right-edge,:root .no-safe-area-right,:root .no-safe-areas{--f7-safe-area-right:0px;--f7-safe-area-outer-right:0px}}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx){:root{--f7-device-pixel-ratio:2}}@media (-webkit-min-device-pixel-ratio:3),(min-resolution:3dppx){:root{--f7-device-pixel-ratio:3}}:root{--f7-font-size:14px;--f7-bars-bg-image:none;--f7-bars-translucent-opacity:0.8;--f7-bars-translucent-blur:20px;--f7-bars-shadow-bottom-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);--f7-bars-shadow-top-image:linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);--f7-bars-text-color:#000;--f7-bars-bg-color:#f7f7f8;--f7-bars-bg-color-rgb:247,247,248}:root .theme-dark,:root.theme-dark{--f7-bars-text-color:#fff}.ios{--f7-font-family:-apple-system,SF Pro Text,SF UI Text,system-ui,Helvetica Neue,Helvetica,Arial,sans-serif;--f7-line-height:1.4;--f7-text-color:#000;--f7-bars-border-color:rgba(0, 0, 0, 0.25)}.ios .theme-dark,.ios.theme-dark{--f7-text-color:#fff;--f7-bars-bg-color:#121212;--f7-bars-bg-color-rgb:22,22,22;--f7-bars-border-color:rgba(255, 255, 255, 0.16)}.md{--f7-font-family:Roboto,system-ui,Noto,Helvetica,Arial,sans-serif;--f7-line-height:1.5;--f7-bars-border-color:transparent;--f7-text-color:#212121}.md .theme-dark,.md.theme-dark{--f7-text-color:rgba(255, 255, 255, 0.87);--f7-bars-bg-color:#202020}.aurora{--f7-font-family:-apple-system,system-ui,Helvetica,Arial,sans-serif;--f7-line-height:1.5;--f7-text-color:#000;--f7-bars-border-color:rgba(0, 0, 0, 0.2)}.aurora .theme-dark,.aurora.theme-dark{--f7-text-color:#fff;--f7-bars-bg-color:#202020;--f7-bars-border-color:rgba(255, 255, 255, 0.1)}.text-color-primary{--f7-theme-color-text-color:var(--f7-theme-color)}.bg-color-primary{--f7-theme-color-bg-color:var(--f7-theme-color)}.border-color-primary{--f7-theme-color-border-color:var(--f7-theme-color)}.ripple-color-primary{--f7-theme-color-ripple-color:rgba(var(--f7-theme-color-rgb), 0.3)}:root{--f7-color-red:#ff3b30;--f7-color-red-rgb:255,59,48;--f7-color-red-shade:#ff1407;--f7-color-red-tint:#ff6259;--f7-color-green:#4cd964;--f7-color-green-rgb:76,217,100;--f7-color-green-shade:#2cd048;--f7-color-green-tint:#6ee081;--f7-color-blue:#2196f3;--f7-color-blue-rgb:33,150,243;--f7-color-blue-shade:#0c82df;--f7-color-blue-tint:#48a8f5;--f7-color-pink:#ff2d55;--f7-color-pink-rgb:255,45,85;--f7-color-pink-shade:#ff0434;--f7-color-pink-tint:#ff5676;--f7-color-yellow:#ffcc00;--f7-color-yellow-rgb:255,204,0;--f7-color-yellow-shade:#d6ab00;--f7-color-yellow-tint:#ffd429;--f7-color-orange:#ff9500;--f7-color-orange-rgb:255,149,0;--f7-color-orange-shade:#d67d00;--f7-color-orange-tint:#ffa629;--f7-color-purple:#9c27b0;--f7-color-purple-rgb:156,39,176;--f7-color-purple-shade:#7e208f;--f7-color-purple-tint:#b92fd1;--f7-color-deeppurple:#673ab7;--f7-color-deeppurple-rgb:103,58,183;--f7-color-deeppurple-shade:#563098;--f7-color-deeppurple-tint:#7c52c8;--f7-color-lightblue:#5ac8fa;--f7-color-lightblue-rgb:90,200,250;--f7-color-lightblue-shade:#32bbf9;--f7-color-lightblue-tint:#82d5fb;--f7-color-teal:#009688;--f7-color-teal-rgb:0,150,136;--f7-color-teal-shade:#006d63;--f7-color-teal-tint:#00bfad;--f7-color-lime:#cddc39;--f7-color-lime-rgb:205,220,57;--f7-color-lime-shade:#bac923;--f7-color-lime-tint:#d6e25c;--f7-color-deeporange:#ff6b22;--f7-color-deeporange-rgb:255,107,34;--f7-color-deeporange-shade:#f85200;--f7-color-deeporange-tint:#ff864b;--f7-color-gray:#8e8e93;--f7-color-gray-rgb:142,142,147;--f7-color-gray-shade:#79797f;--f7-color-gray-tint:#a3a3a7;--f7-color-white:#ffffff;--f7-color-white-rgb:255,255,255;--f7-color-white-shade:#ebebeb;--f7-color-white-tint:#ffffff;--f7-color-black:#000000;--f7-color-black-rgb:0,0,0;--f7-color-black-shade:#000000;--f7-color-black-tint:#141414}.color-theme-red{--f7-theme-color:#ff3b30;--f7-theme-color-rgb:255,59,48;--f7-theme-color-shade:#ff1407;--f7-theme-color-tint:#ff6259}.color-theme-green{--f7-theme-color:#4cd964;--f7-theme-color-rgb:76,217,100;--f7-theme-color-shade:#2cd048;--f7-theme-color-tint:#6ee081}.color-theme-blue{--f7-theme-color:#2196f3;--f7-theme-color-rgb:33,150,243;--f7-theme-color-shade:#0c82df;--f7-theme-color-tint:#48a8f5}.color-theme-pink{--f7-theme-color:#ff2d55;--f7-theme-color-rgb:255,45,85;--f7-theme-color-shade:#ff0434;--f7-theme-color-tint:#ff5676}.color-theme-yellow{--f7-theme-color:#ffcc00;--f7-theme-color-rgb:255,204,0;--f7-theme-color-shade:#d6ab00;--f7-theme-color-tint:#ffd429}.color-theme-orange{--f7-theme-color:#ff9500;--f7-theme-color-rgb:255,149,0;--f7-theme-color-shade:#d67d00;--f7-theme-color-tint:#ffa629}.color-theme-purple{--f7-theme-color:#9c27b0;--f7-theme-color-rgb:156,39,176;--f7-theme-color-shade:#7e208f;--f7-theme-color-tint:#b92fd1}.color-theme-deeppurple{--f7-theme-color:#673ab7;--f7-theme-color-rgb:103,58,183;--f7-theme-color-shade:#563098;--f7-theme-color-tint:#7c52c8}.color-theme-lightblue{--f7-theme-color:#5ac8fa;--f7-theme-color-rgb:90,200,250;--f7-theme-color-shade:#32bbf9;--f7-theme-color-tint:#82d5fb}.color-theme-teal{--f7-theme-color:#009688;--f7-theme-color-rgb:0,150,136;--f7-theme-color-shade:#006d63;--f7-theme-color-tint:#00bfad}.color-theme-lime{--f7-theme-color:#cddc39;--f7-theme-color-rgb:205,220,57;--f7-theme-color-shade:#bac923;--f7-theme-color-tint:#d6e25c}.color-theme-deeporange{--f7-theme-color:#ff6b22;--f7-theme-color-rgb:255,107,34;--f7-theme-color-shade:#f85200;--f7-theme-color-tint:#ff864b}.color-theme-gray{--f7-theme-color:#8e8e93;--f7-theme-color-rgb:142,142,147;--f7-theme-color-shade:#79797f;--f7-theme-color-tint:#a3a3a7}.color-theme-white{--f7-theme-color:#ffffff;--f7-theme-color-rgb:255,255,255;--f7-theme-color-shade:#ebebeb;--f7-theme-color-tint:#ffffff}.color-theme-black{--f7-theme-color:#000000;--f7-theme-color-rgb:0,0,0;--f7-theme-color-shade:#000000;--f7-theme-color-tint:#141414}.color-red{--f7-theme-color:#ff3b30;--f7-theme-color-rgb:255,59,48;--f7-theme-color-shade:#ff1407;--f7-theme-color-tint:#ff6259}.text-color-red{--f7-theme-color-text-color:#ff3b30}.bg-color-red{--f7-theme-color-bg-color:#ff3b30}.border-color-red{--f7-theme-color-border-color:#ff3b30}.ripple-color-red,.ripple-red{--f7-theme-color-ripple-color:rgba(255, 59, 48, 0.3)}.color-green{--f7-theme-color:#4cd964;--f7-theme-color-rgb:76,217,100;--f7-theme-color-shade:#2cd048;--f7-theme-color-tint:#6ee081}.text-color-green{--f7-theme-color-text-color:#4cd964}.bg-color-green{--f7-theme-color-bg-color:#4cd964}.border-color-green{--f7-theme-color-border-color:#4cd964}.ripple-color-green,.ripple-green{--f7-theme-color-ripple-color:rgba(76, 217, 100, 0.3)}.color-blue{--f7-theme-color:#2196f3;--f7-theme-color-rgb:33,150,243;--f7-theme-color-shade:#0c82df;--f7-theme-color-tint:#48a8f5}.text-color-blue{--f7-theme-color-text-color:#2196f3}.bg-color-blue{--f7-theme-color-bg-color:#2196f3}.border-color-blue{--f7-theme-color-border-color:#2196f3}.ripple-blue,.ripple-color-blue{--f7-theme-color-ripple-color:rgba(33, 150, 243, 0.3)}.color-pink{--f7-theme-color:#ff2d55;--f7-theme-color-rgb:255,45,85;--f7-theme-color-shade:#ff0434;--f7-theme-color-tint:#ff5676}.text-color-pink{--f7-theme-color-text-color:#ff2d55}.bg-color-pink{--f7-theme-color-bg-color:#ff2d55}.border-color-pink{--f7-theme-color-border-color:#ff2d55}.ripple-color-pink,.ripple-pink{--f7-theme-color-ripple-color:rgba(255, 45, 85, 0.3)}.color-yellow{--f7-theme-color:#ffcc00;--f7-theme-color-rgb:255,204,0;--f7-theme-color-shade:#d6ab00;--f7-theme-color-tint:#ffd429}.text-color-yellow{--f7-theme-color-text-color:#ffcc00}.bg-color-yellow{--f7-theme-color-bg-color:#ffcc00}.border-color-yellow{--f7-theme-color-border-color:#ffcc00}.ripple-color-yellow,.ripple-yellow{--f7-theme-color-ripple-color:rgba(255, 204, 0, 0.3)}.color-orange{--f7-theme-color:#ff9500;--f7-theme-color-rgb:255,149,0;--f7-theme-color-shade:#d67d00;--f7-theme-color-tint:#ffa629}.text-color-orange{--f7-theme-color-text-color:#ff9500}.bg-color-orange{--f7-theme-color-bg-color:#ff9500}.border-color-orange{--f7-theme-color-border-color:#ff9500}.ripple-color-orange,.ripple-orange{--f7-theme-color-ripple-color:rgba(255, 149, 0, 0.3)}.color-purple{--f7-theme-color:#9c27b0;--f7-theme-color-rgb:156,39,176;--f7-theme-color-shade:#7e208f;--f7-theme-color-tint:#b92fd1}.text-color-purple{--f7-theme-color-text-color:#9c27b0}.bg-color-purple{--f7-theme-color-bg-color:#9c27b0}.border-color-purple{--f7-theme-color-border-color:#9c27b0}.ripple-color-purple,.ripple-purple{--f7-theme-color-ripple-color:rgba(156, 39, 176, 0.3)}.color-deeppurple{--f7-theme-color:#673ab7;--f7-theme-color-rgb:103,58,183;--f7-theme-color-shade:#563098;--f7-theme-color-tint:#7c52c8}.text-color-deeppurple{--f7-theme-color-text-color:#673ab7}.bg-color-deeppurple{--f7-theme-color-bg-color:#673ab7}.border-color-deeppurple{--f7-theme-color-border-color:#673ab7}.ripple-color-deeppurple,.ripple-deeppurple{--f7-theme-color-ripple-color:rgba(103, 58, 183, 0.3)}.color-lightblue{--f7-theme-color:#5ac8fa;--f7-theme-color-rgb:90,200,250;--f7-theme-color-shade:#32bbf9;--f7-theme-color-tint:#82d5fb}.text-color-lightblue{--f7-theme-color-text-color:#5ac8fa}.bg-color-lightblue{--f7-theme-color-bg-color:#5ac8fa}.border-color-lightblue{--f7-theme-color-border-color:#5ac8fa}.ripple-color-lightblue,.ripple-lightblue{--f7-theme-color-ripple-color:rgba(90, 200, 250, 0.3)}.color-teal{--f7-theme-color:#009688;--f7-theme-color-rgb:0,150,136;--f7-theme-color-shade:#006d63;--f7-theme-color-tint:#00bfad}.text-color-teal{--f7-theme-color-text-color:#009688}.bg-color-teal{--f7-theme-color-bg-color:#009688}.border-color-teal{--f7-theme-color-border-color:#009688}.ripple-color-teal,.ripple-teal{--f7-theme-color-ripple-color:rgba(0, 150, 136, 0.3)}.color-lime{--f7-theme-color:#cddc39;--f7-theme-color-rgb:205,220,57;--f7-theme-color-shade:#bac923;--f7-theme-color-tint:#d6e25c}.text-color-lime{--f7-theme-color-text-color:#cddc39}.bg-color-lime{--f7-theme-color-bg-color:#cddc39}.border-color-lime{--f7-theme-color-border-color:#cddc39}.ripple-color-lime,.ripple-lime{--f7-theme-color-ripple-color:rgba(205, 220, 57, 0.3)}.color-deeporange{--f7-theme-color:#ff6b22;--f7-theme-color-rgb:255,107,34;--f7-theme-color-shade:#f85200;--f7-theme-color-tint:#ff864b}.text-color-deeporange{--f7-theme-color-text-color:#ff6b22}.bg-color-deeporange{--f7-theme-color-bg-color:#ff6b22}.border-color-deeporange{--f7-theme-color-border-color:#ff6b22}.ripple-color-deeporange,.ripple-deeporange{--f7-theme-color-ripple-color:rgba(255, 107, 34, 0.3)}.color-gray{--f7-theme-color:#8e8e93;--f7-theme-color-rgb:142,142,147;--f7-theme-color-shade:#79797f;--f7-theme-color-tint:#a3a3a7}.text-color-gray{--f7-theme-color-text-color:#8e8e93}.bg-color-gray{--f7-theme-color-bg-color:#8e8e93}.border-color-gray{--f7-theme-color-border-color:#8e8e93}.ripple-color-gray,.ripple-gray{--f7-theme-color-ripple-color:rgba(142, 142, 147, 0.3)}.color-white{--f7-theme-color:#ffffff;--f7-theme-color-rgb:255,255,255;--f7-theme-color-shade:#ebebeb;--f7-theme-color-tint:#ffffff}.text-color-white{--f7-theme-color-text-color:#ffffff}.bg-color-white{--f7-theme-color-bg-color:#ffffff}.border-color-white{--f7-theme-color-border-color:#ffffff}.ripple-color-white,.ripple-white{--f7-theme-color-ripple-color:rgba(255, 255, 255, 0.3)}.color-black{--f7-theme-color:#000000;--f7-theme-color-rgb:0,0,0;--f7-theme-color-shade:#000000;--f7-theme-color-tint:#141414}.text-color-black{--f7-theme-color-text-color:#000000}.bg-color-black{--f7-theme-color-bg-color:#000000}.border-color-black{--f7-theme-color-border-color:#000000}.ripple-black,.ripple-color-black{--f7-theme-color-ripple-color:rgba(0, 0, 0, 0.3)}@font-face{font-family:framework7-core-icons;src:url('data:application/font-woff;charset=utf-8;base64, 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') format('woff');font-weight:400;font-style:normal}.framework7-root,body,html{position:relative;height:100%;width:100%;overflow-x:hidden}body{margin:0;padding:0;width:100%;background:#fff;overflow:hidden;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;font-family:var(--f7-font-family);font-size:var(--f7-font-size);line-height:var(--f7-line-height);color:var(--f7-text-color)}.theme-dark body,body.theme-dark{background:#000}.theme-dark{color:var(--f7-text-color)}.framework7-root{overflow:hidden;box-sizing:border-box}.framework7-initializing *,.framework7-initializing :after,.framework7-initializing :before{transition-duration:0s!important}.device-android,.device-ios{cursor:pointer}.device-ios{touch-action:manipulation}@media (width:1024px) and (height:691px) and (orientation:landscape){.framework7-root,body,html{height:671px}}@media (width:1024px) and (height:692px) and (orientation:landscape){.framework7-root,body,html{height:672px}}*{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}a,input,select,textarea{outline:0}a{cursor:pointer;text-decoration:none;color:var(--f7-theme-color)}.item-link,.link{cursor:pointer}p{margin:1em 0}.disabled{opacity:.55!important;pointer-events:none!important}html.device-full-viewport,html.device-full-viewport body{height:100vh}.ios .aurora-only,.ios .if-aurora,.ios .if-md,.ios .if-not-ios,.ios .md-only,.ios .not-ios{display:none!important}@media (width:1024px) and (height:691px) and (orientation:landscape){.ios,.ios .framework7-root,.ios body{height:671px}}@media (width:1024px) and (height:692px) and (orientation:landscape){.ios,.ios .framework7-root,.ios body{height:672px}}.md .aurora-only,.md .if-aurora,.md .if-ios,.md .if-not-md,.md .ios-only,.md .not-md{display:none!important}.aurora .if-ios,.aurora .if-md,.aurora .if-not-aurora,.aurora .ios-only,.aurora .md-only,.aurora .not-aurora{display:none!important}.view,.views{position:relative;height:100%;z-index:5000;overflow:hidden;box-sizing:border-box}.framework7-root>.view,.framework7-root>.views{height:calc(100% - var(--f7-appbar-app-offset,0px))}.view-resize-handler{width:6px;height:100%;position:absolute;left:var(--f7-page-master-width);margin-left:-3px;top:0;cursor:col-resize;z-index:1000;display:none}.view-master-detail .view-resize-handler{display:block}:root{--f7-page-master-width:320px;--f7-page-master-border-color:rgba(0, 0, 0, 0.1);--f7-page-master-border-width:1px;--f7-page-swipeback-transition-duration:300ms;--f7-page-parallax-transition-duration:500ms;--f7-page-cover-transition-duration:450ms;--f7-page-dive-transition-duration:500ms;--f7-page-fade-transition-duration:500ms;--f7-page-flip-transition-duration:700ms;--f7-page-push-transition-duration:500ms;--f7-page-title-line-height:1.2;--f7-page-title-text-color:inherit;--f7-page-title-padding-left:16px;--f7-page-title-padding-right:16px}.ios{--f7-page-transition-duration:400ms;--f7-page-title-font-size:34px;--f7-page-title-font-weight:700;--f7-page-title-letter-spacing:-0.03em;--f7-page-title-padding-vertical:6px;--f7-page-bg-color:#efeff4}.ios .theme-dark,.ios.theme-dark{--f7-page-bg-color:#000}.md{--f7-page-transition-duration:250ms;--f7-page-title-font-size:34px;--f7-page-title-font-weight:500;--f7-page-title-letter-spacing:0;--f7-page-title-padding-vertical:8px;--f7-page-bg-color:#fff}.md .theme-dark,.md.theme-dark{--f7-page-bg-color:#121212}.aurora{--f7-page-transition-duration:250ms;--f7-page-title-font-size:28px;--f7-page-title-font-weight:bold;--f7-page-title-letter-spacing:0;--f7-page-title-padding-vertical:7px;--f7-page-bg-color:#f3f4f6}.aurora .theme-dark,.aurora.theme-dark{--f7-page-bg-color:#121212}.theme-dark{--f7-page-master-border-color:rgba(255, 255, 255, 0.2)}.pages{position:relative;width:100%;height:100%;overflow:hidden}.page{box-sizing:border-box;position:absolute;left:0;top:0;width:100%;height:100%;transform:none;background-color:var(--f7-page-bg-color);z-index:1}.page.stacked{display:none}.page-with-navbar-large-collapsed{--f7-navbar-large-collapse-progress:1}.page-previous{pointer-events:none}.page-content{overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box;height:100%;position:relative;z-index:1;padding-top:calc(var(--f7-page-navbar-offset,0px) + var(--f7-page-toolbar-top-offset,0px) + var(--f7-page-subnavbar-offset,0px) + var(--f7-page-searchbar-offset,0px) + var(--f7-page-content-extra-padding-top,0px));padding-bottom:calc(var(--f7-page-toolbar-bottom-offset,0px) + var(--f7-safe-area-bottom) + var(--f7-page-content-extra-padding-bottom,0px))}.page-transitioning,.page-transitioning .page-opacity-effect,.page-transitioning .page-shadow-effect{transition-duration:var(--f7-page-transition-duration)}.page-transitioning-swipeback,.page-transitioning-swipeback .page-opacity-effect,.page-transitioning-swipeback .page-shadow-effect{transition-duration:var(--f7-page-swipeback-transition-duration)}.router-transition-backward .page-current,.router-transition-backward .page-next,.router-transition-backward .page-previous:not(.stacked),.router-transition-forward .page-current,.router-transition-forward .page-next,.router-transition-forward .page-previous:not(.stacked){pointer-events:none}.page-shadow-effect{position:absolute;top:0;width:16px;bottom:0;z-index:-1;content:'';opacity:0;right:100%;background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,.01) 50%,rgba(0,0,0,.2) 100%)}.page-opacity-effect{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;bottom:0;content:'';opacity:0;z-index:10000}.ios .page-previous{transform:translate3d(-20%,0,0)}.ios .page-next{transform:translate3d(100%,0,0)}.ios .page-previous .page-opacity-effect{opacity:1}.ios .page-previous:after{opacity:1}.ios .page-current .page-shadow-effect{opacity:1}.ios .router-transition-forward .page-next{animation:ios-page-next-to-current var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .page-next:before{position:absolute;top:0;width:16px;bottom:0;z-index:-1;content:'';opacity:0;right:100%;background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,.01) 50%,rgba(0,0,0,.2) 100%);animation:ios-page-element-fade-in var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .page-current{animation:ios-page-current-to-previous var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .page-current:after{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;bottom:0;content:'';opacity:0;z-index:10000;animation:ios-page-element-fade-in var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .page-previous{animation:ios-page-previous-to-current var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .page-previous:after{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;bottom:0;content:'';opacity:0;z-index:10000;animation:ios-page-element-fade-out var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .page-current{animation:ios-page-current-to-next var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .page-current:before{position:absolute;top:0;width:16px;bottom:0;z-index:-1;content:'';opacity:0;right:100%;background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,.01) 50%,rgba(0,0,0,.2) 100%);animation:ios-page-element-fade-out var(--f7-page-transition-duration) forwards}@keyframes ios-page-next-to-current{from{transform:translate3d(100%,0,0)}to{transform:translate3d(0%,0,0)}}@keyframes ios-page-previous-to-current{from{transform:translate3d(-20%,0,0)}to{transform:translate3d(0%,0,0)}}@keyframes ios-page-current-to-previous{from{transform:translate3d(0,0,0)}to{transform:translate3d(-20%,0,0)}}@keyframes ios-page-current-to-next{from{transform:translate3d(0,0,0)}to{transform:translate3d(100%,0,0)}}@keyframes ios-page-element-fade-in{from{opacity:0}to{opacity:1}}@keyframes ios-page-element-fade-out{from{opacity:1}to{opacity:0}}.md .page-next{opacity:0;pointer-events:none;transform:translate3d(0,56px,0)}.md .page-next.page-next-on-right{transform:translate3d(100%,0,0)}.md .router-transition-forward .page-next{animation:md-page-next-to-current var(--f7-page-transition-duration) forwards}.md .router-transition-forward .page-current{animation:none}.md .router-transition-backward .page-current{animation:md-page-current-to-next var(--f7-page-transition-duration) forwards}.md .router-transition-backward .page-previous{animation:none}@keyframes md-page-next-to-current{from{transform:translate3d(0,56px,0);opacity:0}to{transform:translate3d(0,0px,0);opacity:1}}@keyframes md-page-current-to-next{from{transform:translate3d(0,0,0);opacity:1}to{transform:translate3d(0,56px,0);opacity:0}}.aurora .page-next{opacity:0;pointer-events:none;transform:translate3d(0,0px,0)}.aurora .page-next.page-next-on-right{transform:translate3d(100%,0,0)}.aurora .router-transition-forward .page-next{animation:aurora-page-next-to-current var(--f7-page-transition-duration) forwards}.aurora .router-transition-forward .page-current{animation:none}.aurora .router-transition-backward .page-current{animation:aurora-page-current-to-next var(--f7-page-transition-duration) forwards}.aurora .router-transition-backward .page-previous{animation:none}@keyframes aurora-page-next-to-current{from{opacity:0}to{opacity:1}}@keyframes aurora-page-current-to-next{from{opacity:1}to{opacity:0}}.view:not(.view-master-detail) .page-master-stacked{display:none}.view:not(.view-master-detail) .navbar-master-stacked{display:none}.view-master-detail .navbar-master,.view-master-detail .page-master{width:var(--f7-page-master-width);--f7-safe-area-right:0px;--f7-safe-area-outer-right:0px;border-right:var(--f7-page-master-border-width) solid var(--f7-page-master-border-color)}.view-master-detail .navbar-master-detail,.view-master-detail .page-master-detail{width:calc(100% - var(--f7-page-master-width));--f7-safe-area-left:0px;--f7-safe-area-outer-left:0px;left:var(--f7-page-master-width)}.view-master-detail .page-master-detail>.navbar-master-detail{left:0;right:0;width:100%}.view-master-detail .page-master{z-index:2;transform:none;pointer-events:auto}.view-master-detail .page-master:after,.view-master-detail .page-master:before{display:none}.view-master-detail.router-transition .page-master{animation:none}.aurora .router-transition-custom .page-next,.aurora .router-transition-custom .page-previous,.ios .router-transition-custom .page-next,.ios .router-transition-custom .page-previous,.md .router-transition-custom .page-next,.md .router-transition-custom .page-previous{opacity:1;transform:none}.aurora .router-transition-custom.view-master-detail .page-master,.ios .router-transition-custom.view-master-detail .page-master,.md .router-transition-custom.view-master-detail .page-master{animation:none}.page-title{position:relative;z-index:10;text-overflow:ellipsis;white-space:nowrap;color:var(--f7-page-title-text-color);letter-spacing:var(--f7-page-title-letter-spacing);font-size:var(--f7-page-title-font-size);font-weight:var(--f7-page-title-font-weight);line-height:var(--f7-page-title-line-height);padding-left:calc(var(--f7-page-title-padding-left) + var(--f7-safe-area-left));padding-right:calc(var(--f7-page-title-padding-right) + var(--f7-safe-area-right));padding-top:var(--f7-page-title-padding-vertical);padding-bottom:var(--f7-page-title-padding-vertical);box-sizing:border-box;overflow:hidden;width:100%}.router-transition-f7-circle-backward:after,.router-transition-f7-circle-forward:after{content:'';position:absolute;left:50%;top:50%;width:100vmax;height:100vmax;margin-left:-50vmax;margin-top:-50vmax;background:var(--f7-page-bg-color);z-index:100}.router-transition-f7-circle-forward:after{transform:scale(0);border-radius:50%;animation:f7-circle-circle-in .4s forwards}.router-transition-f7-circle-forward .page-next{opacity:0!important;transform:scale(.9)!important;animation:f7-circle-next-to-current .3s forwards;animation-delay:.3s;z-index:150}.router-transition-f7-circle-backward:after{animation:f7-circle-circle-out .3s forwards;animation-delay:350ms}.router-transition-f7-circle-backward .page-current{animation:f7-circle-current-to-next .7s forwards;z-index:150}@keyframes f7-circle-circle-in{from{transform:scale(0);border-radius:50%}50%{border-radius:50%}to{transform:scale(1);border-radius:0%}}@keyframes f7-circle-circle-out{from{transform:scale(1);border-radius:0%}50%{border-radius:50%}to{transform:scale(0);border-radius:50%}}@keyframes f7-circle-next-to-current{from{transform:scale(.9);opacity:0}40%{transform:scale(1.035);opacity:1}to{transform:scale(1);opacity:1}}@keyframes f7-circle-current-to-next{from{transform:scale(1);opacity:1}34%{transform:scale(1.035);opacity:1}57%{transform:scale(.9);opacity:0}to{transform:scale(.9);opacity:0}}.router-transition-f7-cover-v-backward,.router-transition-f7-cover-v-forward{background:#000;perspective:1200px}.router-transition-f7-cover-v-forward .page-next{animation:f7-cover-v-next-to-current var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-v-forward .page-current{animation:f7-cover-v-current-to-prev var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-v-backward .page-current{animation:f7-cover-v-current-to-next var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-v-backward .page-previous{animation:f7-cover-v-prev-to-current var(--f7-page-cover-transition-duration) forwards}@keyframes f7-cover-v-next-to-current{from{transform:translateY(100%)}to{transform:translateY(0%)}}@keyframes f7-cover-v-current-to-next{from{transform:translateY(0%)}to{transform:translateY(100%)}}@keyframes f7-cover-v-current-to-prev{from{transform:translateZ(0);opacity:1}to{transform:translateZ(-300px);opacity:.5}}@keyframes f7-cover-v-prev-to-current{from{transform:translateZ(-300px);opacity:.5}to{transform:translateZ(0);opacity:1}}.router-transition-f7-cover-backward,.router-transition-f7-cover-forward{background:#000;perspective:1200px}.router-transition-f7-cover-forward .page-next{animation:f7-cover-next-to-current var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-forward .page-current{animation:f7-cover-current-to-prev var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-backward .page-current{animation:f7-cover-current-to-next var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-backward .page-previous{animation:f7-cover-prev-to-current var(--f7-page-cover-transition-duration) forwards}@keyframes f7-cover-next-to-current{from{transform:translateX(100%)}to{transform:translateX(0%)}}@keyframes f7-cover-current-to-next{from{transform:translateX(0%)}to{transform:translateX(100%)}}@keyframes f7-cover-current-to-prev{from{transform:translateZ(0);opacity:1}to{transform:translateZ(-300px);opacity:.5}}@keyframes f7-cover-prev-to-current{from{transform:translateZ(-300px);opacity:.5}to{transform:translateZ(0);opacity:1}}.router-transition-f7-dive-backward,.router-transition-f7-dive-forward{background:var(--f7-page-bg-color);perspective:1200px}.router-transition-f7-dive-forward .page-next{animation:f7-dive-next-to-current var(--f7-page-dive-transition-duration) forwards}.router-transition-f7-dive-forward .page-current{animation:f7-dive-current-to-prev var(--f7-page-dive-transition-duration) forwards}.router-transition-f7-dive-backward .page-current{animation:f7-dive-current-to-next var(--f7-page-dive-transition-duration) forwards}.router-transition-f7-dive-backward .page-previous{animation:f7-dive-prev-to-current var(--f7-page-dive-transition-duration) forwards}@keyframes f7-dive-next-to-current{from{opacity:0;transform:translateZ(-150px)}50%{opacity:0}to{opacity:1;transform:translateZ(0px)}}@keyframes f7-dive-current-to-next{from{opacity:1;transform:translateZ(0px)}50%{opacity:0}to{opacity:0;transform:translateZ(-150px)}}@keyframes f7-dive-current-to-prev{from{transform:translateZ(0px);opacity:1}50%{opacity:0}to{opacity:0;transform:translateZ(150px)}}@keyframes f7-dive-prev-to-current{from{opacity:0;transform:translateZ(150px)}50%{opacity:0}to{opacity:1;transform:translateZ(0px)}}.router-transition-f7-fade-backward,.router-transition-f7-fade-forward{background:var(--f7-page-bg-color)}.router-transition-f7-fade-forward .page-next{opacity:0!important;animation:f7-fade-in var(--f7-page-fade-transition-duration) forwards}.router-transition-f7-fade-forward .page-current{animation:f7-fade-out var(--f7-page-fade-transition-duration) forwards}.router-transition-f7-fade-backward .page-current{animation:f7-fade-out var(--f7-page-fade-transition-duration) forwards}.router-transition-f7-fade-backward .page-previous{animation:f7-fade-in var(--f7-page-fade-transition-duration) forwards}@keyframes f7-fade-in{from{opacity:0}50%{opacity:0}to{opacity:1}}@keyframes f7-fade-out{from{opacity:1}50%{opacity:0}to{opacity:0}}.router-transition-f7-flip-backward,.router-transition-f7-flip-forward{background:#000;perspective:1200px}.router-transition-f7-flip-backward .page,.router-transition-f7-flip-forward .page{-webkit-backface-visibility:hidden;backface-visibility:hidden}.router-transition-f7-flip-forward .page-next{animation:f7-flip-next-to-current var(--f7-page-flip-transition-duration) forwards}.router-transition-f7-flip-forward .page-current{animation:f7-flip-current-to-prev var(--f7-page-flip-transition-duration) forwards}.router-transition-f7-flip-backward .page-current{animation:f7-flip-current-to-next var(--f7-page-flip-transition-duration) forwards}.router-transition-f7-flip-backward .page-previous{animation:f7-flip-prev-to-current var(--f7-page-flip-transition-duration) forwards}@keyframes f7-flip-next-to-current{from{border-radius:30px;transform:translateZ(-100vmax) rotateY(180deg)}to{border-radius:0;transform:translateZ(0px) rotateY(0deg)}}@keyframes f7-flip-current-to-next{from{border-radius:0px;transform:translateZ(0px) rotateY(0deg)}to{border-radius:30px;transform:translateZ(-100vmax) rotateY(180deg)}}@keyframes f7-flip-current-to-prev{from{border-radius:0px;transform:translateZ(0px) rotateY(0deg)}to{border-radius:30px;transform:translateZ(-100vmax) rotateY(-180deg)}}@keyframes f7-flip-prev-to-current{from{border-radius:30px;transform:translateZ(-100vmax) rotateY(-180deg)}to{border-radius:0px;transform:translateZ(0px) rotateY(0deg)}}.router-transition-f7-parallax-forward .page-next{animation:f7-parallax-next-to-current var(--f7-page-parallax-transition-duration) forwards}.router-transition-f7-parallax-forward .page-current{animation:f7-parallax-current-to-prev var(--f7-page-parallax-transition-duration) forwards}.router-transition-f7-parallax-backward .page-current{animation:f7-parallax-current-to-next var(--f7-page-parallax-transition-duration) forwards}.router-transition-f7-parallax-backward .page-previous{animation:f7-parallax-prev-to-current var(--f7-page-parallax-transition-duration) forwards}@keyframes f7-parallax-next-to-current{from{transform:translateX(100%)}to{transform:translateX(0%)}}@keyframes f7-parallax-current-to-next{from{transform:translateX(0%)}to{transform:translateX(100%)}}@keyframes f7-parallax-current-to-prev{from{transform:translateX(0%)}to{transform:translateX(-20%)}}@keyframes f7-parallax-prev-to-current{from{transform:translateX(-20%)}to{transform:translateX(0%)}}.router-transition-f7-push-forward .page-next{animation:f7-push-next-to-current var(--f7-page-push-transition-duration) forwards}.router-transition-f7-push-forward .page-current{animation:f7-push-current-to-prev var(--f7-page-push-transition-duration) forwards}.router-transition-f7-push-backward .page-current{animation:f7-push-current-to-next var(--f7-page-push-transition-duration) forwards}.router-transition-f7-push-backward .page-previous{animation:f7-push-prev-to-current var(--f7-page-push-transition-duration) forwards}@keyframes f7-push-next-to-current{from{transform:translateX(100%)}to{transform:translateX(0%)}}@keyframes f7-push-current-to-next{from{transform:translateX(0%)}to{transform:translateX(100%)}}@keyframes f7-push-current-to-prev{from{transform:translateX(0%)}to{transform:translateX(-100%)}}@keyframes f7-push-prev-to-current{from{transform:translateX(-100%)}to{transform:translateX(0%)}}:root{--f7-link-highlight-black:rgba(0, 0, 0, 0.1);--f7-link-highlight-white:rgba(255, 255, 255, 0.15);--f7-link-highlight-color:rgba(var(--f7-theme-color-rgb), 0.15)}.ios{--f7-link-pressed-opacity:0.3}.aurora{--f7-link-pressed-opacity:0.3;--f7-link-hover-opacity:0.65}.link,.tab-link{display:inline-flex;align-items:center;align-content:center;justify-content:center;position:relative;box-sizing:border-box;z-index:1;--f7-touch-ripple-color:var(--f7-link-touch-ripple-color, rgba(var(--f7-theme-color-rgb), 0.25))}.link i+i,.link i+span,.link span+i,.link span+span{margin-left:4px}.ios .link{transition:opacity .3s}.ios .link.active-state{opacity:var(--f7-link-pressed-opacity);transition-duration:0s}.aurora .link{transition:opacity .3s}.aurora .link.active-state{opacity:var(--f7-link-pressed-opacity);transition-duration:0s}.aurora.device-desktop .link:not(.active-state):not(.no-hover):hover{opacity:var(--f7-link-hover-opacity);transition-duration:0s}:root{--f7-navbar-hide-show-transition-duration:400ms;--f7-navbar-title-line-height:1.2;--f7-navbar-title-font-size:inherit;--f7-navbar-subtitle-text-align:inherit;--f7-navbar-large-title-line-height:1.2;--f7-navbar-large-title-text-color:inherit;--f7-navbar-large-title-padding-left:16px;--f7-navbar-large-title-padding-right:16px}.ios{--f7-navbar-height:44px;--f7-navbar-tablet-height:44px;--f7-navbar-font-size:17px;--f7-navbar-inner-padding-left:8px;--f7-navbar-inner-padding-right:8px;--f7-navbar-title-font-weight:600;--f7-navbar-title-margin-left:0;--f7-navbar-title-margin-right:0;--f7-navbar-title-text-align:center;--f7-navbar-subtitle-font-size:10px;--f7-navbar-subtitle-line-height:1;--f7-navbar-shadow-image:none;--f7-navbar-large-title-height:52px;--f7-navbar-large-title-font-size:34px;--f7-navbar-large-title-font-weight:700;--f7-navbar-large-title-letter-spacing:-0.03em;--f7-navbar-large-title-padding-vertical:6px;--f7-navbar-subtitle-text-color:rgba(0, 0, 0, 0.55)}.ios .theme-dark,.ios.theme-dark{--f7-navbar-subtitle-text-color:rgba(255, 255, 255, 0.55)}.md{--f7-navbar-height:56px;--f7-navbar-tablet-height:64px;--f7-navbar-font-size:20px;--f7-navbar-inner-padding-left:4px;--f7-navbar-inner-padding-right:4px;--f7-navbar-title-font-weight:500;--f7-navbar-title-margin-left:20px;--f7-navbar-title-margin-right:16px;--f7-navbar-title-text-align:left;--f7-navbar-subtitle-font-size:14px;--f7-navbar-subtitle-line-height:1.2;--f7-navbar-shadow-image:var(--f7-bars-shadow-bottom-image);--f7-navbar-large-title-font-size:34px;--f7-navbar-large-title-height:56px;--f7-navbar-large-title-font-weight:500;--f7-navbar-large-title-letter-spacing:0;--f7-navbar-large-title-padding-vertical:8px;--f7-navbar-link-height:48px;--f7-navbar-link-line-height:48px;--f7-navbar-subtitle-text-color:rgba(0, 0, 0, 0.85)}.md .theme-dark,.md.theme-dark{--f7-navbar-subtitle-text-color:rgba(255, 255, 255, 0.85)}.aurora{--f7-navbar-height:56px;--f7-navbar-tablet-height:56px;--f7-navbar-font-size:18px;--f7-navbar-inner-padding-left:16px;--f7-navbar-inner-padding-right:16px;--f7-navbar-title-font-weight:bold;--f7-navbar-title-margin-left:0;--f7-navbar-title-margin-right:0;--f7-navbar-title-text-align:center;--f7-navbar-subtitle-font-size:14px;--f7-navbar-subtitle-line-height:1;--f7-navbar-shadow-image:none;--f7-navbar-large-title-height:48px;--f7-navbar-large-title-font-size:28px;--f7-navbar-large-title-font-weight:bold;--f7-navbar-large-title-letter-spacing:0;--f7-navbar-large-title-padding-vertical:7px;--f7-navbar-link-height:auto;--f7-navbar-link-line-height:inherit;--f7-navbar-subtitle-text-color:rgba(0, 0, 0, 0.6)}.aurora .theme-dark,.aurora.theme-dark{--f7-navbar-subtitle-text-color:rgba(255, 255, 255, 0.5)}.navbar,.navbars{z-index:500;left:0;top:0;width:100%}.navbars{position:absolute}.navbars .navbar{z-index:auto}.navbars .navbar-transitioning{z-index:500}.navbar{--f7-navbar-large-collapse-progress:0;position:relative;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box;margin:0;height:calc(var(--f7-navbar-height) + var(--f7-safe-area-top));color:var(--f7-navbar-text-color,var(--f7-bars-text-color));font-size:var(--f7-navbar-font-size)}.navbar.stacked{display:none}.navbar b{font-weight:500}.navbar a{color:var(--f7-navbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.navbar a.link{display:flex;justify-content:flex-start;line-height:var(--f7-navbar-link-line-height, var(--f7-navbar-height));height:var(--f7-navbar-link-height,var(--f7-navbar-height))}.navbar .left,.navbar .right,.navbar .title{position:relative;z-index:10}.navbar .title{position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;flex-shrink:10;font-weight:var(--f7-navbar-title-font-weight);display:inline-block;line-height:var(--f7-navbar-title-line-height);text-align:var(--f7-navbar-title-text-align);font-size:var(--f7-navbar-title-font-size);margin-left:var(--f7-navbar-title-margin-left);margin-right:var(--f7-navbar-title-margin-left)}.navbar .subtitle{display:block;color:var(--f7-navbar-subtitle-text-color);font-weight:400;font-size:var(--f7-navbar-subtitle-font-size);line-height:var(--f7-navbar-subtitle-line-height);text-align:var(--f7-navbar-subtitle-text-align)}.navbar .left,.navbar .right{flex-shrink:0;display:flex;justify-content:flex-start;align-items:center}.navbar .right:first-child{position:absolute;height:100%}.navbar .no-border .navbar-bg:after,.navbar .no-hairline .navbar-bg:after,.navbar.no-border .navbar-bg:after,.navbar.no-hairline .navbar-bg:after{display:none!important}.navbar .no-border .title-large:after,.navbar .no-hairline .title-large:after,.navbar.no-border .title-large:after,.navbar.no-hairline .title-large:after{display:none!important}.navbar .no-shadow .navbar-bg:before,.navbar.no-shadow .navbar-bg:before{display:none!important}.navbar-hidden .navbar .navbar-bg:before,.navbar.navbar-hidden .navbar-bg:before{opacity:0!important}.navbar-bg{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:0;background:var(--f7-navbar-bg-color);background-image:var(--f7-navbar-bg-image,var(--f7-bars-bg-image));background-color:var(--f7-navbar-bg-color,var(--f7-bars-bg-color));transition-property:transform}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .navbar-bg{background-color:rgba(var(--f7-navbar-bg-color-rgb,var(--f7-bars-bg-color-rgb)),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.navbar-bg:after,.navbar-bg:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}.navbar-bg:after{content:'';position:absolute;background-color:var(--f7-navbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.navbar-bg:before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-navbar-shadow-image)}.navbar-bg:after{z-index:1}@media (min-width:768px) and (min-height:600px){:root{--f7-navbar-height:var(--f7-navbar-tablet-height)}}.navbar-transitioning,.navbar-transitioning .left,.navbar-transitioning .navbar-bg,.navbar-transitioning .navbar-bg:before,.navbar-transitioning .right,.navbar-transitioning .subnavbar,.navbar-transitioning .title,.navbar-transitioning .title-large-text{transition-duration:var(--f7-navbar-hide-show-transition-duration)}.navbar-page-transitioning{transition-duration:var(--f7-page-swipeback-transition-duration)!important}.navbar-page-transitioning .navbar-bg,.navbar-page-transitioning .title-large-text{transition-duration:var(--f7-page-swipeback-transition-duration)!important}.navbar-hidden{transform:translate3d(0,calc(-1 * var(--f7-navbar-height)),0)}.navbar-hidden .navbar-inner{pointer-events:none}.navbar-hidden .navbar-inner>.left,.navbar-hidden .navbar-inner>.right,.navbar-hidden .navbar-inner>.title{opacity:0!important}.navbar-hidden .subnavbar{pointer-events:auto}.navbar-hidden-statusbar{transform:translate3d(0,calc(-1 * var(--f7-navbar-height) - var(--f7-safe-area-top)),0)}.navbar-large-hidden .navbar-large{--f7-navbar-large-collapse-progress:1}.navbar-inner{position:absolute;left:0;bottom:0;width:100%;height:100%;display:flex;align-items:center;box-sizing:border-box;padding:var(--f7-safe-area-top) calc(var(--f7-navbar-inner-padding-right) + var(--f7-safe-area-right)) 0 calc(var(--f7-navbar-inner-padding-left) + var(--f7-safe-area-left));transform:translate3d(0,0,0);z-index:10}.navbars>.navbar,.page>.navbar,.view>.navbar,.views>.navbar{position:absolute}.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible):not(.with-searchbar-expandable-enabled) .navbar-bg,.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible):not(.with-searchbar-expandable-enabled) .title{opacity:0}.navbar-large .navbar-bg{height:calc(100% + var(--f7-navbar-large-title-height));transform:translate3d(0px,calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)),0)}.navbar-large-transparent .navbar-bg,.navbar-large.navbar-transparent .navbar-bg{opacity:var(--f7-navbar-large-collapse-progress);height:100%;transform:none}.ios .router-navbar-transition-from-large .navbar-bg,.ios .router-navbar-transition-to-large .navbar-bg,.navbar-bg.ios-swipeback-navbar-bg-large,.navbar-large-transparent .navbar-bg.ios-swipeback-navbar-bg-large,.navbar-large.navbar-transparent .navbar-bg.ios-swipeback-navbar-bg-large{height:calc(100% + var(--f7-navbar-large-title-height));transform:translate3d(0px,calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)),0)}.ios .navbar:not(.navbar-large) .navbar-bg{--f7-navbar-large-collapse-progress:1}.navbar-large .title{opacity:var(--f7-navbar-large-collapse-progress)}.navbar-large-collapsed{--f7-navbar-large-collapse-progress:1}.navbar-large-collapsed .title-large{pointer-events:none}.navbar .title-large{box-sizing:border-box;position:absolute;left:0;right:0;top:100%;display:flex;align-items:flex-end;white-space:nowrap;overflow:hidden;height:var(--f7-navbar-large-title-height);z-index:5}.navbar .title-large-text{text-overflow:ellipsis;white-space:nowrap;color:var(--f7-navbar-large-title-text-color);letter-spacing:var(--f7-navbar-large-title-letter-spacing);font-size:var(--f7-navbar-large-title-font-size);font-weight:var(--f7-navbar-large-title-font-weight);line-height:var(--f7-navbar-large-title-line-height);padding-left:calc(var(--f7-navbar-large-title-padding-left) + var(--f7-safe-area-left));padding-right:calc(var(--f7-navbar-large-title-padding-right) + var(--f7-safe-area-right));padding-top:var(--f7-navbar-large-title-padding-vertical);padding-bottom:var(--f7-navbar-large-title-padding-vertical);box-sizing:border-box;overflow:hidden;width:100%;transform:translate3d(0px,calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)),0);transform-origin:calc(var(--f7-navbar-large-title-padding-left) + var(--f7-safe-area-left)) center}.navbar-no-title-large-transition .title-large-text{transition-duration:0s}.navbars~*,.navbar~*{--f7-page-navbar-offset:calc(var(--f7-navbar-height) + var(--f7-safe-area-top))}.navbars~* .page-with-navbar-large,.navbars~.page-with-navbar-large,.navbar~* .page-with-navbar-large,.navbar~.page-with-navbar-large,.page-with-navbar-large .navbar~*{--f7-page-navbar-offset:calc(var(--f7-navbar-height) + var(--f7-navbar-large-title-height) + var(--f7-safe-area-top))}.page.no-navbar,.page.no-navbar .navbar~*{--f7-page-navbar-offset:var(--f7-safe-area-top)}.ios{--f7-navbarLeftTextOffset:calc(4px + 12px + var(--f7-navbar-inner-padding-left));--f7-navbarTitleLargeOffset:var(--f7-navbar-large-title-padding-left);--f7-navbar-large-transparent-bg-center:translateX(0);--f7-navbar-large-bg-center-top:translateX(0) translateY(calc(-1 * var(--f7-navbar-large-title-height)));--f7-navbar-large-bg-center-bottom:translateX(0) translateY(0);--f7-navbar-large-transparent-bg-left:translateX(-100%);--f7-navbar-large-bg-left-top:translateX(-100%) translateY(calc(-1 * var(--f7-navbar-large-title-height)));--f7-navbar-large-bg-left-bottom:translateX(-100%) translateY(0);--f7-navbar-large-bg-right-top:translateX(100%) translateY(calc(-1 * var(--f7-navbar-large-title-height)));--f7-navbar-large-bg-right-bottom:translateX(100%) translateY(0)}.ios .navbar a.icon-only{width:44px;margin:0;justify-content:center}.ios .navbar .left a+a,.ios .navbar .right a+a{margin-left:16px}.ios .navbar b{font-weight:600}.ios .navbar .left{margin-right:10px}.ios .navbar .right{margin-left:10px}.ios .navbar .right:first-child{right:calc(8px + var(--f7-safe-area-right))}.ios .navbar-inner{justify-content:space-between}.ios .navbar-inner-left-title{justify-content:flex-start}.ios .navbar-inner-left-title .right{margin-left:auto}.ios .navbar-inner-left-title .title{text-align:left;margin-right:10px}.ios .navbar-next .fading,.ios .navbar-next .left,.ios .navbar-next .right,.ios .navbar-next .subnavbar,.ios .navbar-next .title,.ios .view-master-detail .navbar-previous:not(.navbar-master) .fading,.ios .view-master-detail .navbar-previous:not(.navbar-master) .left,.ios .view-master-detail .navbar-previous:not(.navbar-master) .right,.ios .view-master-detail .navbar-previous:not(.navbar-master) .subnavbar,.ios .view-master-detail .navbar-previous:not(.navbar-master) .title,.ios .view:not(.view-master-detail) .navbar-previous .fading,.ios .view:not(.view-master-detail) .navbar-previous .left,.ios .view:not(.view-master-detail) .navbar-previous .right,.ios .view:not(.view-master-detail) .navbar-previous .subnavbar,.ios .view:not(.view-master-detail) .navbar-previous .title{opacity:0}.ios .view-master-detail .navbar-previous:not(.navbar-master),.ios .view:not(.view-master-detail) .navbar-previous{pointer-events:none}.ios .view-master-detail .navbar-previous:not(.navbar-master) .title-large,.ios .view:not(.view-master-detail) .navbar-previous .title-large{opacity:0;transition-duration:0s}.ios .view-master-detail .navbar-previous:not(.navbar-master) .title-large .title-large-text,.ios .view:not(.view-master-detail) .navbar-previous .title-large .title-large-text{transform:scale(.5);transition-duration:0s}.ios .view-master-detail .navbar-previous:not(.navbar-master) .sliding .subnavbar,.ios .view-master-detail .navbar-previous:not(.navbar-master) .subnavbar.sliding,.ios .view:not(.view-master-detail) .navbar-previous .sliding .subnavbar,.ios .view:not(.view-master-detail) .navbar-previous .subnavbar.sliding{opacity:1;transform:translate3d(-100%,0,0)}.ios .view-master-detail .navbar-previous:not(.navbar-master) .navbar-bg,.ios .view:not(.view-master-detail) .navbar-previous .navbar-bg{transform:translateX(-100%)}.ios .navbar-next{pointer-events:none}.ios .navbar-next .navbar-bg{transform:translateX(100%)}.ios .navbar-next .title-large .title-large-text{transition-duration:0s;transform:translateX(100%) translateY(calc(-1 * var(--f7-navbar-large-title-height)))}.ios .navbar-next .sliding .subnavbar,.ios .navbar-next .subnavbar.sliding{opacity:1;transform:translate3d(100%,0,0)}.ios .router-transition .navbar,.ios .router-transition .navbar-bg{transition-duration:var(--f7-page-transition-duration)}.ios .router-transition .navbar-bg{animation-duration:var(--f7-page-transition-duration);animation-fill-mode:forwards}.ios .router-transition .title-large,.ios .router-transition .title-large-text{transition-duration:0s}.ios .router-transition .navbar-current .left,.ios .router-transition .navbar-current .right,.ios .router-transition .navbar-current .subnavbar,.ios .router-transition .navbar-current .title{animation:ios-navbar-element-fade-out var(--f7-page-transition-duration) forwards}.ios .router-transition .navbar-current .sliding .left,.ios .router-transition .navbar-current .sliding .left .icon+span,.ios .router-transition .navbar-current .sliding .right,.ios .router-transition .navbar-current .sliding .title,.ios .router-transition .navbar-current .sliding.left,.ios .router-transition .navbar-current .sliding.left .icon+span,.ios .router-transition .navbar-current .sliding.right,.ios .router-transition .navbar-current .sliding.title{transition-duration:var(--f7-page-transition-duration);opacity:0!important;animation:none}.ios .router-transition .navbar-current .sliding .subnavbar,.ios .router-transition .navbar-current .sliding.subnavbar{transition-duration:var(--f7-page-transition-duration);animation:none;opacity:1}.ios .router-transition-backward .navbar-previous .left,.ios .router-transition-backward .navbar-previous .right,.ios .router-transition-backward .navbar-previous .subnavbar,.ios .router-transition-backward .navbar-previous .title,.ios .router-transition-forward .navbar-next .left,.ios .router-transition-forward .navbar-next .right,.ios .router-transition-forward .navbar-next .subnavbar,.ios .router-transition-forward .navbar-next .title{animation:ios-navbar-element-fade-in var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .navbar-previous .sliding .left,.ios .router-transition-backward .navbar-previous .sliding .left .icon+span,.ios .router-transition-backward .navbar-previous .sliding .right,.ios .router-transition-backward .navbar-previous .sliding .subnavbar,.ios .router-transition-backward .navbar-previous .sliding .title,.ios .router-transition-backward .navbar-previous .sliding.left,.ios .router-transition-backward .navbar-previous .sliding.left .icon+span,.ios .router-transition-backward .navbar-previous .sliding.right,.ios .router-transition-backward .navbar-previous .sliding.title,.ios .router-transition-forward .navbar-next .sliding .left,.ios .router-transition-forward .navbar-next .sliding .left .icon+span,.ios .router-transition-forward .navbar-next .sliding .right,.ios .router-transition-forward .navbar-next .sliding .subnavbar,.ios .router-transition-forward .navbar-next .sliding .title,.ios .router-transition-forward .navbar-next .sliding.left,.ios .router-transition-forward .navbar-next .sliding.left .icon+span,.ios .router-transition-forward .navbar-next .sliding.right,.ios .router-transition-forward .navbar-next .sliding.title{transition-duration:var(--f7-page-transition-duration);animation:none;transform:translate3d(0,0,0)!important;opacity:1!important}.ios .router-transition-backward .navbar-previous.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .title,.ios .router-transition-forward .navbar-next.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .title{animation:none}.ios .router-transition-backward .navbar-previous.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding .title,.ios .router-transition-backward .navbar-previous.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding.title,.ios .router-transition-forward .navbar-next.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding .title,.ios .router-transition-forward .navbar-next.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding.title{opacity:0!important}.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .left,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .right,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .subnavbar,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .title,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .left,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .right,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .subnavbar,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .title{animation:none}.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large,.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .title-large{overflow:visible}.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text,.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-up var(--f7-page-transition-duration) forwards,ios-navbar-large-title-text-fade-out var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .navbar-next.router-navbar-transition-from-large .left .back span{animation:ios-navbar-back-text-next-to-current var(--f7-page-transition-duration) forwards;transition:none;transform-origin:left center}.ios .router-transition-forward .navbar-next.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large{overflow:visible}.ios .router-transition-forward .navbar-next.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-left var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .navbar-next.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-left var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .navbar-current.navbar-large:not(.navbar-large-collapsed) .title,.ios .router-transition-forward .navbar-next.navbar-large:not(.navbar-large-collapsed) .title{animation:none;opacity:0!important;transition-duration:0}.ios .router-transition-backward .navbar-current.router-navbar-transition-to-large .left .back span{animation:ios-navbar-back-text-current-to-previous var(--f7-page-transition-duration) forwards;transition:none;transform-origin:left center}.ios .router-transition-backward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large{overflow:visible}.ios .router-transition-backward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-right var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-right var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .navbar-current.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large{opacity:0}.ios .router-transition-backward .navbar-previous.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large,.ios .router-transition-backward .navbar-previous.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large{overflow:visible;opacity:1}.ios .router-transition-backward .navbar-previous.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text,.ios .router-transition-backward .navbar-previous.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-down var(--f7-page-transition-duration) forwards,ios-navbar-large-title-text-fade-in var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .navbar-current.navbar-large:not(.navbar-large-collapsed) .title,.ios .router-transition-backward .navbar-previous.navbar-large:not(.navbar-large-collapsed) .title{animation:none;opacity:0!important;transition-duration:0}.ios .router-transition-forward .navbar-current .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-lb}.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-lb}.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-lt}.ios .router-transition-forward .navbar-current:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-ct-to-lb}.ios .router-transition-forward .navbar-current.navbar-large-collapsed:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-bg-from-ct-to-lt}.ios .router-transition-forward .navbar-current.navbar-large-collapsed.navbar-large-transparent:not(.router-navbar-transition-to-large) .navbar-bg,.ios .router-transition-forward .navbar-current.navbar-large-collapsed.navbar-large.navbar-transparent:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-transparent-bg-from-c-to-l}.ios .router-transition-forward .navbar-next .navbar-bg{animation-name:ios-navbar-bg-from-rb-to-cb}.ios .router-transition-forward .navbar-next.router-navbar-transition-from-large.router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-rb-to-cb}.ios .router-transition-forward .navbar-next.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-bg-from-rb-to-ct}.ios .router-transition-forward .navbar-next:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-rt-to-cb}.ios .router-transition-backward .navbar-current .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-rb}.ios .router-transition-backward .navbar-current:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-ct-to-rb}.ios .router-transition-backward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-rt}.ios .router-transition-backward .navbar-current.navbar-large-collapsed .navbar-bg{animation-name:ios-navbar-bg-from-ct-to-rt}.ios .router-transition-backward .navbar-current.navbar-large-collapsed.navbar-large-transparent .navbar-bg,.ios .router-transition-backward .navbar-current.navbar-large-collapsed.navbar-large.navbar-transparent .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-rb}.ios .router-transition-backward .navbar-current.navbar-large-collapsed.router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-ct-to-rb}.ios .router-transition-backward .navbar-previous .navbar-bg{animation-name:ios-navbar-bg-from-lb-to-cb}.ios .router-transition-backward .navbar-previous:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-lt-to-cb}.ios .router-transition-backward .navbar-previous.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-bg-from-lb-to-ct}.ios .router-transition-backward .navbar-previous.navbar-large-collapsed .navbar-bg{animation-name:ios-navbar-bg-from-lt-to-ct}.ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large-transparent .navbar-bg,.ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large.navbar-transparent .navbar-bg{animation-name:ios-navbar-transparent-bg-from-l-to-c}.ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large-transparent.router-navbar-transition-from-large .navbar-bg,.ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large.navbar-transparent.router-navbar-transition-from-large .navbar-bg{animation-name:ios-navbar-bg-from-lb-to-ct}.view-master-detail .navbars{z-index:auto}.view-master-detail .page-master{z-index:525}.view-master-detail .navbar-master .navbar-bg,.view-master-detail .navbar-master .navbar-inner{z-index:550}.view-master-detail .navbar-master-detail .navbar-bg,.view-master-detail .navbar-master-detail .navbar-inner{z-index:500}.view-master-detail .navbar-master.navbar-previous{pointer-events:auto}.view-master-detail .navbar-master.navbar-previous .left,.view-master-detail .navbar-master.navbar-previous .right,.view-master-detail .navbar-master.navbar-previous .subnavbar,.view-master-detail .navbar-master.navbar-previous:not(.navbar-large) .title{opacity:1}.view-master-detail.router-transition .navbar-master .fading,.view-master-detail.router-transition .navbar-master .left,.view-master-detail.router-transition .navbar-master .left .icon+span,.view-master-detail.router-transition .navbar-master .right,.view-master-detail.router-transition .navbar-master .subnavbar,.view-master-detail.router-transition .navbar-master:not(.navbar-large) .title{opacity:1!important;transition-duration:0s;transform:none!important;animation:none!important}.view-master-detail.router-transition .navbar-master .navbar-bg{transition-duration:0s;animation:none!important}.view-master-detail.router-transition .navbar-master.navbar-large .title{opacity:calc(-1 + 2 * var(--f7-navbar-large-collapse-progress))!important;transition-duration:0s;transform:none!important;animation:none!important}.view-master-detail.router-transition .navbar-master.navbar-large .title-large,.view-master-detail.router-transition .navbar-master.navbar-large .title-large-text{transition-duration:0s;animation:none!important}.view-master-detail.router-transition .navbar-master.navbar-large-transparent .navbar-bg,.view-master-detail.router-transition .navbar-master.navbar-large.navbar-transparent .navbar-bg{height:100%!important;opacity:var(--f7-navbar-large-collapse-progress)!important}@keyframes ios-navbar-element-fade-in{0%{opacity:0}25%{opacity:0}to{opacity:1}}@keyframes ios-navbar-element-fade-out{from{opacity:1}75%{opacity:0}to{opacity:0}}@keyframes ios-navbar-large-title-text-slide-up{0%{transform:translateX(0px) translateY(0%) scale(1)}100%{transform:translateX(calc(var(--f7-navbarLeftTextOffset) - var(--f7-navbarTitleLargeOffset))) translateY(calc(-1 * var(--f7-navbar-large-title-height) + var(--f7-navbar-large-title-padding-vertical))) scale(.5)}}@keyframes ios-navbar-large-title-text-slide-down{0%{transform:translateX(calc(var(--f7-navbarLeftTextOffset) - var(--f7-navbarTitleLargeOffset))) translateY(calc(-1 * var(--f7-navbar-large-title-height) + var(--f7-navbar-large-title-padding-vertical)/ 2)) scale(.5)}100%{transform:translateX(0px) translateY(0%) scale(1)}}@keyframes ios-navbar-large-title-text-slide-left{0%{transform:translateX(100%)}100%{transform:translateX(0%)}}@keyframes ios-navbar-large-title-text-slide-right{0%{transform:translateX(0%)}100%{transform:translateX(100%)}}@keyframes ios-navbar-large-title-text-fade-out{0%{opacity:1}80%{opacity:0}100%{opacity:0}}@keyframes ios-navbar-large-title-text-fade-in{0%{opacity:0}20%{opacity:0}100%{opacity:1}}@keyframes ios-navbar-back-text-current-to-previous{0%{opacity:1;transform:translateY(0px) translateX(0px) scale(1)}80%{opacity:0}100%{opacity:0;transform:translateX(calc(var(--f7-navbarTitleLargeOffset) - var(--f7-navbarLeftTextOffset))) translateY(calc(1 * var(--f7-navbar-large-title-height) - var(--f7-navbar-large-title-padding-vertical)/ 2)) scale(2)}}@keyframes ios-navbar-back-text-next-to-current{0%{opacity:0;transform:translateX(calc(var(--f7-navbarTitleLargeOffset) - var(--f7-navbarLeftTextOffset))) translateY(calc(1 * var(--f7-navbar-large-title-height) + var(--f7-navbar-large-title-padding-vertical)/ 2)) scale(2)}20%{opacity:0}100%{opacity:1;transform:translateX(0px) translateY(0px) scale(1)}}@keyframes ios-navbar-bg-from-cb-to-lb{from{transform:var(--f7-navbar-large-bg-center-bottom)}to{transform:var(--f7-navbar-large-bg-left-bottom)}}@keyframes ios-navbar-bg-from-cb-to-lt{from{transform:var(--f7-navbar-large-bg-center-bottom)}to{transform:var(--f7-navbar-large-bg-left-top)}}@keyframes ios-navbar-bg-from-ct-to-lb{from{transform:var(--f7-navbar-large-bg-center-top)}to{transform:var(--f7-navbar-large-bg-left-bottom)}}@keyframes ios-navbar-bg-from-ct-to-lt{from{transform:var(--f7-navbar-large-bg-center-top)}to{transform:var(--f7-navbar-large-bg-left-top)}}@keyframes ios-navbar-bg-from-rb-to-cb{from{transform:var(--f7-navbar-large-bg-right-bottom)}to{transform:var(--f7-navbar-large-bg-center-bottom)}}@keyframes ios-navbar-bg-from-rb-to-ct{from{transform:var(--f7-navbar-large-bg-right-bottom)}to{transform:var(--f7-navbar-large-bg-center-top)}}@keyframes ios-navbar-bg-from-rt-to-cb{from{transform:var(--f7-navbar-large-bg-right-top)}to{transform:var(--f7-navbar-large-bg-center-bottom)}}@keyframes ios-navbar-bg-from-cb-to-rb{from{transform:var(--f7-navbar-large-bg-center-bottom)}to{transform:var(--f7-navbar-large-bg-right-bottom)}}@keyframes ios-navbar-bg-from-ct-to-rb{from{transform:var(--f7-navbar-large-bg-center-top)}to{transform:var(--f7-navbar-large-bg-right-bottom)}}@keyframes ios-navbar-bg-from-cb-to-rt{from{transform:var(--f7-navbar-large-bg-center-bottom)}to{transform:var(--f7-navbar-large-bg-right-top)}}@keyframes ios-navbar-bg-from-ct-to-rt{from{transform:var(--f7-navbar-large-bg-center-top)}to{transform:var(--f7-navbar-large-bg-right-top)}}@keyframes ios-navbar-bg-from-lb-to-cb{from{transform:var(--f7-navbar-large-bg-left-bottom)}to{transform:var(--f7-navbar-large-bg-center-bottom)}}@keyframes ios-navbar-bg-from-lt-to-cb{from{transform:var(--f7-navbar-large-bg-left-top)}to{transform:var(--f7-navbar-large-bg-center-bottom)}}@keyframes ios-navbar-bg-from-lb-to-ct{from{transform:var(--f7-navbar-large-bg-left-bottom)}to{transform:var(--f7-navbar-large-bg-center-top)}}@keyframes ios-navbar-bg-from-lt-to-ct{from{transform:var(--f7-navbar-large-bg-left-top)}to{transform:var(--f7-navbar-large-bg-center-top)}}@keyframes ios-navbar-transparent-bg-from-l-to-c{from{transform:var(--f7-navbar-large-transparent-bg-left)}to{transform:var(--f7-navbar-large-transparent-bg-center)}}@keyframes ios-navbar-transparent-bg-from-c-to-l{from{transform:var(--f7-navbar-large-transparent-bg-center)}to{transform:var(--f7-navbar-large-transparent-bg-left)}}.md .navbar a.link{padding:0 12px;min-width:48px}.md .navbar a.link:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .navbar a.link.icon-only:before,.md .navbar a.link.input-clear-button:before,.md .navbar a.link.notification-close-button:before,.md .navbar a.link.ripple-inset:before,.md .navbar a.link.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .navbar a.link.active-state:before{opacity:1;transition-duration:150ms}.md .navbar a.icon-only{min-width:0;flex-shrink:0;width:48px}.md .navbar .right{margin-left:auto}.md .navbar .right:first-child{right:var(--f7-safe-area-right)}.md .navbar-inner{justify-content:flex-start;overflow:hidden}.md .navbar-large:not(.navbar-large-collapsed) .navbar-inner{overflow:visible}.md .page.page-with-subnavbar .navbar-inner{overflow:visible}.md .navbar-inner-centered-title{justify-content:space-between}.md .navbar-inner-centered-title .right{margin-left:0}.md .navbar-inner-centered-title .title{text-align:center}.aurora .navbar a.icon-only{margin:0;justify-content:center}.aurora .navbar .left a+a,.aurora .navbar .right a+a{margin-left:10px}.aurora .navbar b{font-weight:700}.aurora .navbar .left{margin-right:16px}.aurora .navbar .right{margin-left:16px}.aurora .navbar .right:first-child{right:calc(16px + var(--f7-safe-area-right))}.aurora .navbar-inner{justify-content:space-between}.aurora .navbar-inner-left-title{justify-content:flex-start}.aurora .navbar-inner-left-title .right{margin-left:auto}.aurora .navbar-inner-left-title .title{text-align:left;margin-right:16px}:root{--f7-tabbar-link-active-bg-color:transparent;--f7-tabbar-label-text-transform:none;--f7-toolbar-hide-show-transition-duration:400ms}.ios{--f7-toolbar-height:44px;--f7-toolbar-font-size:17px;--f7-toolbar-inner-padding-left:8px;--f7-toolbar-inner-padding-right:8px;--f7-tabbar-labels-height:50px;--f7-tabbar-labels-tablet-height:50px;--f7-toolbar-top-shadow-image:none;--f7-toolbar-bottom-shadow-image:none;--f7-tabbar-icon-size:28px;--f7-tabbar-link-text-transform:none;--f7-tabbar-link-font-weight:400;--f7-tabbar-link-letter-spacing:0;--f7-tabbar-label-font-size:12px;--f7-tabbar-label-tablet-font-size:14px;--f7-tabbar-label-font-weight:500;--f7-tabbar-label-letter-spacing:0.01;--f7-tabbar-link-inactive-color:rgba(0, 0, 0, 0.4)}.ios .theme-dark,.ios.theme-dark{--f7-tabbar-link-inactive-color:rgba(255, 255, 255, 0.54)}.md{--f7-toolbar-height:48px;--f7-toolbar-font-size:14px;--f7-toolbar-inner-padding-left:0px;--f7-toolbar-inner-padding-right:0px;--f7-tabbar-labels-height:56px;--f7-tabbar-labels-tablet-height:56px;--f7-toolbar-top-shadow-image:var(--f7-bars-shadow-bottom-image);--f7-toolbar-bottom-shadow-image:var(--f7-bars-shadow-top-image);--f7-tabbar-icon-size:24px;--f7-tabbar-link-text-transform:uppercase;--f7-tabbar-link-font-weight:500;--f7-tabbar-link-letter-spacing:0.05em;--f7-tabbar-label-font-size:14px;--f7-tabbar-label-tablet-font-size:14px;--f7-tabbar-label-font-weight:400;--f7-tabbar-label-letter-spacing:0;--f7-tabbar-link-inactive-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-tabbar-link-inactive-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-toolbar-height:48px;--f7-toolbar-font-size:16px;--f7-toolbar-inner-padding-left:16px;--f7-toolbar-inner-padding-right:16px;--f7-toolbar-link-height:auto;--f7-toolbar-link-line-height:inherit;--f7-tabbar-labels-height:52px;--f7-tabbar-labels-tablet-height:52px;--f7-toolbar-top-shadow-image:none;--f7-toolbar-bottom-shadow-image:none;--f7-tabbar-icon-size:24px;--f7-tabbar-link-text-transform:none;--f7-tabbar-link-font-weight:500;--f7-tabbar-link-letter-spacing:0;--f7-tabbar-label-font-size:14px;--f7-tabbar-label-tablet-font-size:14px;--f7-tabbar-label-font-weight:500;--f7-tabbar-label-letter-spacing:0;--f7-tabbar-link-inactive-color:rgba(0, 0, 0, 0.5)}.aurora .theme-dark,.aurora.theme-dark{--f7-tabbar-link-inactive-color:rgba(255, 255, 255, 0.5)}.toolbar{width:100%;position:relative;margin:0;transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:600;box-sizing:border-box;left:0;height:var(--f7-toolbar-height);background-image:var(--f7-toolbar-bg-image,var(--f7-bars-bg-image));background-color:var(--f7-toolbar-bg-color,var(--f7-bars-bg-color));color:var(--f7-toolbar-text-color,var(--f7-bars-text-color));font-size:var(--f7-toolbar-font-size)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .toolbar{background-color:rgba(var(--f7-toolbar-bg-color-rgb,var(--f7-bars-bg-color-rgb)),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.toolbar b{font-weight:600}.toolbar a{color:var(--f7-toolbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)));box-sizing:border-box;flex-shrink:1;position:relative;white-space:nowrap;text-overflow:ellipsis}.toolbar .link{display:flex;line-height:var(--f7-toolbar-link-line-height, var(--f7-toolbar-height));height:var(--f7-toolbar-link-height,var(--f7-toolbar-height))}.toolbar i.icon{display:block}.toolbar:after,.toolbar:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}.page>.toolbar,.view>.toolbar,.views>.toolbar{position:absolute}.aurora .toolbar-top-aurora,.ios .toolbar-top-ios,.md .toolbar-top-md,.toolbar-top{top:0}.aurora .toolbar-top-aurora .tab-link-highlight,.ios .toolbar-top-ios .tab-link-highlight,.md .toolbar-top-md .tab-link-highlight,.toolbar-top .tab-link-highlight{bottom:0}.aurora .toolbar-top-aurora.no-border:after,.aurora .toolbar-top-aurora.no-hairline:after,.ios .toolbar-top-ios.no-border:after,.ios .toolbar-top-ios.no-hairline:after,.md .toolbar-top-md.no-border:after,.md .toolbar-top-md.no-hairline:after,.toolbar-top.no-border:after,.toolbar-top.no-hairline:after{display:none!important}.aurora .toolbar-top-aurora.no-shadow:before,.aurora .toolbar-top-aurora.toolbar-hidden:before,.ios .toolbar-top-ios.no-shadow:before,.ios .toolbar-top-ios.toolbar-hidden:before,.md .toolbar-top-md.no-shadow:before,.md .toolbar-top-md.toolbar-hidden:before,.toolbar-top.no-shadow:before,.toolbar-top.toolbar-hidden:before{display:none!important}.aurora .toolbar-top-aurora:after,.aurora .toolbar-top-aurora:before,.ios .toolbar-top-ios:after,.ios .toolbar-top-ios:before,.md .toolbar-top-md:after,.md .toolbar-top-md:before,.toolbar-top:after,.toolbar-top:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}.aurora .toolbar-top-aurora:after,.ios .toolbar-top-ios:after,.md .toolbar-top-md:after,.toolbar-top:after{content:'';position:absolute;background-color:var(--f7-toolbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.aurora .toolbar-top-aurora:before,.ios .toolbar-top-ios:before,.md .toolbar-top-md:before,.toolbar-top:before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-toolbar-top-shadow-image)}.aurora .toolbar-bottom-aurora,.ios .toolbar-bottom-ios,.md .toolbar-bottom-md,.toolbar-bottom{bottom:0;height:calc(var(--f7-toolbar-height) + var(--f7-safe-area-bottom))}.aurora .toolbar-bottom-aurora .tab-link-highlight,.ios .toolbar-bottom-ios .tab-link-highlight,.md .toolbar-bottom-md .tab-link-highlight,.toolbar-bottom .tab-link-highlight{top:0}.aurora .toolbar-bottom-aurora .toolbar-inner,.ios .toolbar-bottom-ios .toolbar-inner,.md .toolbar-bottom-md .toolbar-inner,.toolbar-bottom .toolbar-inner{height:auto;top:0;bottom:var(--f7-safe-area-bottom)}.aurora .toolbar-bottom-aurora.no-border:before,.aurora .toolbar-bottom-aurora.no-hairline:before,.ios .toolbar-bottom-ios.no-border:before,.ios .toolbar-bottom-ios.no-hairline:before,.md .toolbar-bottom-md.no-border:before,.md .toolbar-bottom-md.no-hairline:before,.toolbar-bottom.no-border:before,.toolbar-bottom.no-hairline:before{display:none!important}.aurora .toolbar-bottom-aurora.no-shadow:after,.aurora .toolbar-bottom-aurora.toolbar-hidden:after,.ios .toolbar-bottom-ios.no-shadow:after,.ios .toolbar-bottom-ios.toolbar-hidden:after,.md .toolbar-bottom-md.no-shadow:after,.md .toolbar-bottom-md.toolbar-hidden:after,.toolbar-bottom.no-shadow:after,.toolbar-bottom.toolbar-hidden:after{display:none!important}.aurora .toolbar-bottom-aurora:before,.ios .toolbar-bottom-ios:before,.md .toolbar-bottom-md:before,.toolbar-bottom:before{content:'';position:absolute;background-color:var(--f7-toolbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.aurora .toolbar-bottom-aurora:after,.ios .toolbar-bottom-ios:after,.md .toolbar-bottom-md:after,.toolbar-bottom:after{content:'';position:absolute;right:0;width:100%;bottom:100%;height:8px;top:auto;pointer-events:none;background:var(--f7-toolbar-bottom-shadow-image);transform:translate3d(0,0,0)}.toolbar-inner{position:absolute;left:0;top:0;width:100%;height:100%;display:flex;justify-content:space-between;box-sizing:border-box;align-items:center;align-content:center;overflow:hidden;padding:0 calc(var(--f7-toolbar-inner-padding-right) + var(--f7-safe-area-right)) 0 calc(var(--f7-toolbar-inner-padding-left) + var(--f7-safe-area-left))}.views>.tabbar,.views>.tabbar-labels{z-index:5001}.tabbar a,.tabbar-labels a{color:var(--f7-tabbar-link-inactive-color)}.tabbar .link,.tabbar-labels .link{line-height:1.4}.tabbar .link,.tabbar .tab-link,.tabbar-labels .link,.tabbar-labels .tab-link{height:100%;width:100%;box-sizing:border-box;display:flex;justify-content:center;align-items:center;flex-direction:column;text-transform:var(--f7-tabbar-link-text-transform);font-weight:var(--f7-tabbar-link-font-weight);letter-spacing:var(--f7-tabbar-link-letter-spacing);overflow:hidden}.tabbar .tab-link-active,.tabbar-labels .tab-link-active{color:var(--f7-tabbar-link-active-color,var(--f7-theme-color));background-color:var(--f7-tabbar-link-active-bg-color,transparent)}.tabbar i.icon,.tabbar-labels i.icon{font-size:var(--f7-tabbar-icon-size);height:var(--f7-tabbar-icon-size);line-height:var(--f7-tabbar-icon-size)}.tabbar-labels{--f7-toolbar-height:var(--f7-tabbar-labels-height)}.tabbar-labels .link,.tabbar-labels .tab-link{height:100%;justify-content:space-between;align-items:center}.tabbar-labels .tabbar-label{display:block;line-height:1;margin:0;position:relative;text-overflow:ellipsis;white-space:nowrap;font-size:var(--f7-tabbar-label-font-size);text-transform:var(--f7-tabbar-label-text-transform);font-weight:var(--f7-tabbar-label-font-weight);letter-spacing:var(--f7-tabbar-label-letter-spacing)}@media (min-width:768px) and (min-height:600px){:root{--f7-tabbar-labels-height:var(--f7-tabbar-labels-tablet-height);--f7-tabbar-label-font-size:var(--f7-tabbar-label-tablet-font-size)}}.tabbar-scrollable .toolbar-inner{justify-content:flex-start;overflow:auto;-webkit-overflow-scrolling:touch}.tabbar-scrollable .toolbar-inner::-webkit-scrollbar{display:none!important;width:0!important;height:0!important;-webkit-appearance:none;opacity:0!important}.tabbar-scrollable .link,.tabbar-scrollable .tab-link{width:auto;flex-shrink:0}.navbar-transitioning+.toolbar,.navbar-transitioning~* .toolbar,.toolbar-transitioning{transition-duration:var(--f7-toolbar-hide-show-transition-duration)}.aurora .toolbar-bottom-aurora~*,.ios .toolbar-bottom-ios~*,.md .toolbar-bottom-md~*,.toolbar-bottom~*{--f7-page-toolbar-bottom-offset:var(--f7-toolbar-height)}.aurora .toolbar-bottom-aurora.tabbar-labels~*,.ios .toolbar-bottom-ios.tabbar-labels~*,.md .toolbar-bottom-md.tabbar-labels~*,.toolbar-bottom.tabbar-labels~*{--f7-page-toolbar-bottom-offset:var(--f7-tabbar-labels-height)}.aurora .toolbar-bottom-aurora.toolbar-hidden,.ios .toolbar-bottom-ios.toolbar-hidden,.md .toolbar-bottom-md.toolbar-hidden,.toolbar-bottom.toolbar-hidden{transform:translate3d(0,100%,0)}.aurora .toolbar-top-aurora~*,.ios .toolbar-top-ios~*,.md .toolbar-top-md~*,.toolbar-top~*{--f7-page-toolbar-top-offset:var(--f7-toolbar-height)}.aurora .toolbar-top-aurora.tabbar-labels~*,.ios .toolbar-top-ios.tabbar-labels~*,.md .toolbar-top-md.tabbar-labels~*,.toolbar-top.tabbar-labels~*{--f7-page-toolbar-top-offset:var(--f7-tabbar-labels-height)}.aurora .toolbar-top-aurora.toolbar-hidden,.ios .toolbar-top-ios.toolbar-hidden,.md .toolbar-top-md.toolbar-hidden,.toolbar-top.toolbar-hidden{transform:translate3d(0,-100%,0)}.aurora .navbar~* .toolbar-top-aurora,.aurora .navbar~.page:not(.no-navbar) .toolbar-top-aurora,.aurora .navbar~.toolbar-top-aurora,.ios .navbars~* .toolbar-top-ios,.ios .navbars~.page:not(.no-navbar) .toolbar-top-ios,.ios .navbars~.toolbar-top-ios,.ios .navbar~* .toolbar-top-ios,.ios .navbar~.page:not(.no-navbar) .toolbar-top-ios,.ios .navbar~.toolbar-top-ios,.md .navbar~* .toolbar-top-md,.md .navbar~.page:not(.no-navbar) .toolbar-top-md,.md .navbar~.toolbar-top-md,.navbars~* .toolbar-top,.navbars~.page:not(.no-navbar) .toolbar-top,.navbars~.toolbar-top,.navbar~* .toolbar-top,.navbar~.page:not(.no-navbar) .toolbar-top,.navbar~.toolbar-top{top:calc(var(--f7-navbar-height) + var(--f7-safe-area-top))}.aurora .navbar~* .toolbar-top-aurora.toolbar-hidden,.aurora .navbar~.page:not(.no-navbar) .toolbar-top-aurora.toolbar-hidden,.aurora .navbar~.toolbar-top-aurora.toolbar-hidden,.ios .navbars~* .toolbar-top-ios.toolbar-hidden,.ios .navbars~.page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden,.ios .navbars~.toolbar-top-ios.toolbar-hidden,.ios .navbar~* .toolbar-top-ios.toolbar-hidden,.ios .navbar~.page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden,.ios .navbar~.toolbar-top-ios.toolbar-hidden,.md .navbar~* .toolbar-top-md.toolbar-hidden,.md .navbar~.page:not(.no-navbar) .toolbar-top-md.toolbar-hidden,.md .navbar~.toolbar-top-md.toolbar-hidden,.navbars~* .toolbar-top.toolbar-hidden,.navbars~.page:not(.no-navbar) .toolbar-top.toolbar-hidden,.navbars~.toolbar-top.toolbar-hidden,.navbar~* .toolbar-top.toolbar-hidden,.navbar~.page:not(.no-navbar) .toolbar-top.toolbar-hidden,.navbar~.toolbar-top.toolbar-hidden{transform:translate3d(0,calc(-1 * (var(--f7-navbar-height) + var(--f7-toolbar-height) + var(--f7-safe-area-top))),0)}.aurora .navbar~* .toolbar-top-aurora.toolbar-hidden.tabbar-labels,.aurora .navbar~.page:not(.no-navbar) .toolbar-top-aurora.toolbar-hidden.tabbar-labels,.aurora .navbar~.toolbar-top-aurora.toolbar-hidden.tabbar-labels,.ios .navbars~* .toolbar-top-ios.toolbar-hidden.tabbar-labels,.ios .navbars~.page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden.tabbar-labels,.ios .navbars~.toolbar-top-ios.toolbar-hidden.tabbar-labels,.ios .navbar~* .toolbar-top-ios.toolbar-hidden.tabbar-labels,.ios .navbar~.page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden.tabbar-labels,.ios .navbar~.toolbar-top-ios.toolbar-hidden.tabbar-labels,.md .navbar~* .toolbar-top-md.toolbar-hidden.tabbar-labels,.md .navbar~.page:not(.no-navbar) .toolbar-top-md.toolbar-hidden.tabbar-labels,.md .navbar~.toolbar-top-md.toolbar-hidden.tabbar-labels,.navbars~* .toolbar-top.toolbar-hidden.tabbar-labels,.navbars~.page:not(.no-navbar) .toolbar-top.toolbar-hidden.tabbar-labels,.navbars~.toolbar-top.toolbar-hidden.tabbar-labels,.navbar~* .toolbar-top.toolbar-hidden.tabbar-labels,.navbar~.page:not(.no-navbar) .toolbar-top.toolbar-hidden.tabbar-labels,.navbar~.toolbar-top.toolbar-hidden.tabbar-labels{transform:translate3d(0,calc(-1 * (var(--f7-navbar-height) + var(--f7-tabbar-labels-height) + var(--f7-safe-area-top))),0)}.aurora .navbar-hidden+.toolbar-top-aurora:not(.toolbar-hidden),.aurora .navbar-hidden~* .toolbar-top-aurora:not(.toolbar-hidden),.ios .navbar-hidden+.toolbar-top-ios:not(.toolbar-hidden),.ios .navbar-hidden~* .toolbar-top-ios:not(.toolbar-hidden),.md .navbar-hidden+.toolbar-top-md:not(.toolbar-hidden),.md .navbar-hidden~* .toolbar-top-md:not(.toolbar-hidden),.navbar-hidden+.toolbar-top:not(.toolbar-hidden),.navbar-hidden~* .toolbar-top:not(.toolbar-hidden){transform:translate3d(0,calc(0px - var(--f7-navbar-height)),0)}.aurora .navbar-large-hidden~* .toolbar-top-aurora:not(.toolbar-hidden),.ios .navbar-large-hidden+.toolbar-top-ios:not(.toolbar-hidden),.ios .navbar-large-hidden~* .toolbar-top-ios:not(.toolbar-hidden),.md .navbar-large-hidden+.toolbar-top-md:not(.toolbar-hidden),.md .navbar-large-hidden~* .toolbar-top-md:not(.toolbar-hidden),.navbar-large-hidden+.toolbar-top:not(.toolbar-hidden),.navbar-large-hidden~* .toolbar-top:not(.toolbar-hidden){transform:translate3d(0,calc(0px - var(--f7-navbar-height) - var(--f7-navbar-large-title-height)),0)}.ios .toolbar a.icon-only{min-height:var(--f7-toolbar-height);display:flex;justify-content:center;align-items:center;margin:0;min-width:44px}.ios .tabbar-labels .link,.ios .tabbar-labels .tab-link{padding-top:4px;padding-bottom:4px}.ios .tabbar-labels .link i+span,.ios .tabbar-labels .tab-link i+span{margin:0}@media (min-width:768px) and (min-height:600px){.ios .tabbar .link,.ios .tabbar .tab-link,.ios .tabbar-labels .link,.ios .tabbar-labels .tab-link{justify-content:center;flex-direction:row}.ios .tabbar .link i+span,.ios .tabbar .tab-link i+span,.ios .tabbar-labels .link i+span,.ios .tabbar-labels .tab-link i+span{margin-left:5px}}.ios .tabbar-scrollable .toolbar-inner{justify-content:flex-start}.ios .tabbar-scrollable .link,.ios .tabbar-scrollable .tab-link{padding:0 8px}.md .toolbar .link{justify-content:center;padding:0 12px;min-width:48px}.md .toolbar .link:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .toolbar .link.icon-only:before,.md .toolbar .link.input-clear-button:before,.md .toolbar .link.notification-close-button:before,.md .toolbar .link.ripple-inset:before,.md .toolbar .link.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .toolbar .link.active-state:before{opacity:1;transition-duration:150ms}.md .toolbar a.icon-only{min-width:0;flex-shrink:0}.md .tabbar .link,.md .tabbar .tab-link,.md .tabbar-labels .link,.md .tabbar-labels .tab-link{padding-left:0;padding-right:0}.md .tabbar a.icon-only,.md .tabbar-labels a.icon-only{flex-shrink:initial}.md .tabbar .tab-link,.md .tabbar-labels .tab-link{transition-duration:.3s;overflow:hidden;position:relative}.md .tabbar .tab-link-highlight,.md .tabbar-labels .tab-link-highlight{position:absolute;height:2px;background:var(--f7-tabbar-link-active-border-color,var(--f7-theme-color));transition-duration:.3s;left:0}.md .tabbar-labels .link,.md .tabbar-labels .tab-link{padding-top:7px;padding-bottom:7px}.md .tabbar-label{max-width:100%;overflow:hidden;line-height:1.2}.md .tabbar-scrollable .toolbar-inner{overflow:auto}.md .tabbar-scrollable .link,.md .tabbar-scrollable .tab-link{padding:0 12px}.aurora .toolbar a.icon-only{min-height:var(--f7-toolbar-height);display:flex;justify-content:center;align-items:center;margin:0}.aurora .tabbar .tab-link-highlight,.aurora .tabbar-labels .tab-link-highlight{position:absolute;height:2px;background:var(--f7-tabbar-link-active-border-color,var(--f7-theme-color));transition-duration:.3s;left:0}.aurora .tabbar .toolbar-inner,.aurora .tabbar-labels .toolbar-inner{padding-left:0;padding-right:0}.aurora .tabbar .link,.aurora .tabbar .tab-link,.aurora .tabbar-labels .link,.aurora .tabbar-labels .tab-link{transition-duration:.2s}.aurora .tabbar-labels .link,.aurora .tabbar-labels .tab-link{padding-top:5px;padding-bottom:5px}.aurora .tabbar-labels .link i+span,.aurora .tabbar-labels .tab-link i+span{margin:0}.aurora .tabbar-scrollable .toolbar-inner{justify-content:flex-start}.aurora .tabbar-scrollable .link,.aurora .tabbar-scrollable .tab-link{padding:0 16px}:root{--f7-subnavbar-title-line-height:1.2}.ios{--f7-subnavbar-height:44px;--f7-subnavbar-inner-padding-left:8px;--f7-subnavbar-inner-padding-right:8px;--f7-subnavbar-title-font-size:34px;--f7-subnavbar-title-font-weight:700;--f7-subnavbar-title-letter-spacing:-0.03em;--f7-subnavbar-title-margin-left:8px;--f7-subnavbar-shadow-image:none}.md{--f7-subnavbar-height:48px;--f7-subnavbar-inner-padding-left:16px;--f7-subnavbar-inner-padding-right:16px;--f7-subnavbar-title-font-size:20px;--f7-subnavbar-title-font-weight:500;--f7-subnavbar-title-letter-spacing:0;--f7-subnavbar-title-margin-left:0px;--f7-subnavbar-shadow-image:var(--f7-bars-shadow-bottom-image)}.aurora{--f7-subnavbar-height:48px;--f7-subnavbar-inner-padding-left:16px;--f7-subnavbar-inner-padding-right:16px;--f7-subnavbar-title-font-size:28px;--f7-subnavbar-title-font-weight:bold;--f7-subnavbar-title-letter-spacing:0em;--f7-subnavbar-title-margin-left:0px;--f7-subnavbar-shadow-image:none;--f7-subnavbar-link-height:auto;--f7-subnavbar-link-line-height:inherit}.subnavbar{width:100%;position:absolute;left:0;top:0;z-index:600;box-sizing:border-box;display:flex;justify-content:space-between;align-items:center;background-image:var(--f7-subnavbar-bg-image,var(--f7-bars-bg-image));background-color:var(--f7-subnavbar-bg-color,var(--f7-bars-bg-color));color:var(--f7-subnavbar-text-color,var(--f7-bars-text-color))}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .subnavbar{background-color:rgba(var(--f7-subnavbar-bg-color-rgb,var(--f7-bars-bg-color-rgb)),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.subnavbar .subnavbar-title{position:relative;overflow:hidden;text-overflow:ellpsis;white-space:nowrap;font-size:var(--f7-subnavbar-title-font-size);font-weight:var(--f7-subnavbar-title-font-weight);text-align:left;display:inline-block;line-height:var(--f7-subnavbar-title-line-height);letter-spacing:var(--f7-subnavbar-title-letter-spacing);margin-left:var(--f7-subnavbar-title-margin-left)}.subnavbar .left,.subnavbar .right{flex-shrink:0;display:flex;justify-content:flex-start;align-items:center}.subnavbar .right:first-child{position:absolute;height:100%}.subnavbar a{color:var(--f7-subnavbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.subnavbar a.link{line-height:var(--f7-subnavbar-link-line-height, var(--f7-subnavbar-height));height:var(--f7-subnavbar-link-height,var(--f7-subnavbar-height))}.subnavbar a.icon-only{min-width:var(--f7-subnavbar-height)}.subnavbar.no-border:after,.subnavbar.no-hairline:after{display:none!important}.subnavbar.navbar-hidden:before,.subnavbar.no-shadow:before{display:none!important}.subnavbar:after,.subnavbar:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}.subnavbar:after{content:'';position:absolute;background-color:var(--f7-subnavbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.subnavbar:before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-subnavbar-shadow-image)}.subnavbar-inner{width:100%;height:100%;display:flex;align-items:center;box-sizing:border-box;justify-content:space-between;overflow:hidden;padding:0 calc(var(--f7-subnavbar-inner-padding-left) + var(--f7-safe-area-right)) 0 calc(var(--f7-subnavbar-inner-padding-right) + var(--f7-safe-area-left))}.subnavbar-inner.stacked{display:none}.navbar .subnavbar{top:100%}.page>.subnavbar,.view>.subnavbar,.views>.subnavbar{position:absolute}.navbars~* .subnavbar,.navbars~.page-with-subnavbar:not(.no-navbar) .subnavbar,.navbars~.subnavbar,.navbar~* .subnavbar,.navbar~.page-with-subnavbar:not(.no-navbar) .subnavbar,.navbar~.subnavbar,.page-with-subnavbar .navbar~* .subnavbar,.page-with-subnavbar .navbar~.subnavbar{top:calc(var(--f7-navbar-height) + var(--f7-safe-area-top))}.navbar .title-large~.subnavbar,.navbars~.page-with-navbar-large:not(.no-navbar) .subnavbar,.navbar~.page-with-navbar-large:not(.no-navbar) .subnavbar,.page-with-subnavbar.page-with-navbar-large .navbar~* .subnavbar,.page-with-subnavbar.page-with-navbar-large .navbar~.subnavbar{top:calc(var(--f7-navbar-height) + var(--f7-navbar-large-title-height) + var(--f7-safe-area-top));transform:translate3d(0,calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)),0)}.page-with-subnavbar,.subnavbar~*{--f7-page-subnavbar-offset:var(--f7-subnavbar-height)}.ios .subnavbar{height:calc(var(--f7-subnavbar-height) + 1px);margin-top:-1px;padding-top:1px}.ios .subnavbar .title{align-self:flex-start;flex-shrink:10}.ios .subnavbar .left a+a,.ios .subnavbar .right a+a{margin-left:16px}.ios .subnavbar .left{margin-right:10px}.ios .subnavbar .right{margin-left:10px}.ios .subnavbar .right:first-child{right:8px}.ios .subnavbar a.link{justify-content:flex-start}.ios .subnavbar a.icon-only{justify-content:center;margin:0}.md .subnavbar{height:var(--f7-subnavbar-height)}.md .subnavbar .right{margin-left:auto}.md .subnavbar .right:first-child{right:16px}.md .subnavbar a.link{justify-content:center;padding:0 12px}.md .subnavbar a.link:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .subnavbar a.link.icon-only:before,.md .subnavbar a.link.input-clear-button:before,.md .subnavbar a.link.notification-close-button:before,.md .subnavbar a.link.ripple-inset:before,.md .subnavbar a.link.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .subnavbar a.link.active-state:before{opacity:1;transition-duration:150ms}.md .subnavbar a.icon-only{flex-shrink:0;padding:0 12px}.md .subnavbar-inner>a.link:first-child{margin-left:calc(-1 * var(--f7-subnavbar-inner-padding-left))}.md .subnavbar-inner>a.link:last-child{margin-right:calc(-1 * var(--f7-subnavbar-inner-padding-right))}.aurora .subnavbar{height:calc(var(--f7-subnavbar-height) + 1px);margin-top:-1px;padding-top:1px}.aurora .subnavbar .title{align-self:flex-start;flex-shrink:10}.aurora .subnavbar .left a+a,.aurora .subnavbar .right a+a{margin-left:10px}.aurora .subnavbar .left{margin-right:10px}.aurora .subnavbar .right{margin-left:10px}.aurora .subnavbar .right:first-child{right:16px}.aurora .subnavbar a.link{justify-content:flex-start}.aurora .subnavbar a.icon-only{justify-content:center;margin:0}:root{--f7-block-padding-horizontal:16px;--f7-block-padding-vertical:16px;--f7-block-font-size:inherit;--f7-block-text-color:inherit;--f7-block-header-margin:10px;--f7-block-footer-margin:10px;--f7-block-header-font-size:14px;--f7-block-footer-font-size:14px;--f7-block-title-text-transform:none;--f7-block-title-white-space:nowrap;--f7-block-title-medium-text-transform:none;--f7-block-title-large-text-transform:none;--f7-block-inset-side-margin:16px;--f7-block-title-medium-text-color:#000;--f7-block-title-large-text-color:#000;--f7-block-strong-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-block-title-text-color:#fff;--f7-block-strong-border-color:rgba(255, 255, 255, 0.15);--f7-block-title-medium-text-color:#fff;--f7-block-title-large-text-color:#fff;--f7-block-strong-bg-color:#1c1c1d}.ios{--f7-block-margin-vertical:35px;--f7-block-strong-border-color:rgba(0, 0, 0, 0.22);--f7-block-title-text-color:#000;--f7-block-title-font-size:16px;--f7-block-title-font-weight:600;--f7-block-title-line-height:20px;--f7-block-title-margin-bottom:10px;--f7-block-title-medium-font-size:22px;--f7-block-title-medium-font-weight:bold;--f7-block-title-medium-line-height:1.4;--f7-block-title-large-font-size:30px;--f7-block-title-large-font-weight:bold;--f7-block-title-large-line-height:1.3;--f7-block-inset-border-radius:8px;--f7-block-strong-text-color:#000;--f7-block-header-text-color:rgba(0, 0, 0, 0.45);--f7-block-footer-text-color:rgba(0, 0, 0, 0.45)}.ios .theme-dark,.ios.theme-dark{--f7-block-header-text-color:rgba(255, 255, 255, 0.55);--f7-block-footer-text-color:rgba(255, 255, 255, 0.55);--f7-block-strong-text-color:#fff}.md{--f7-block-margin-vertical:32px;--f7-block-strong-text-color:inherit;--f7-block-strong-border-color:rgba(0, 0, 0, 0.12);--f7-block-title-font-size:inherit;--f7-block-title-text-color:rgba(0, 0, 0, 0.54);--f7-block-title-font-weight:500;--f7-block-title-line-height:16px;--f7-block-title-margin-bottom:16px;--f7-block-title-medium-font-size:24px;--f7-block-title-medium-font-weight:500;--f7-block-title-medium-line-height:1.3;--f7-block-title-large-font-size:34px;--f7-block-title-large-font-weight:500;--f7-block-title-large-line-height:1.2;--f7-block-inset-border-radius:4px;--f7-block-header-text-color:rgba(0, 0, 0, 0.54);--f7-block-footer-text-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-block-header-text-color:rgba(255, 255, 255, 0.54);--f7-block-footer-text-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-block-margin-vertical:32px;--f7-block-strong-border-color:rgba(0, 0, 0, 0.12);--f7-block-title-font-size:16px;--f7-block-title-text-color:#000;--f7-block-title-font-weight:600;--f7-block-title-line-height:1.5;--f7-block-title-margin-bottom:10px;--f7-block-title-medium-font-size:22px;--f7-block-title-medium-font-weight:bold;--f7-block-title-medium-line-height:1.4;--f7-block-title-large-font-size:28px;--f7-block-title-large-font-weight:bold;--f7-block-title-large-line-height:1.3;--f7-block-inset-border-radius:8px;--f7-block-strong-text-color:inherit;--f7-block-header-text-color:rgba(0, 0, 0, 0.6);--f7-block-footer-text-color:rgba(0, 0, 0, 0.6)}.aurora .theme-dark,.aurora.theme-dark{--f7-block-header-text-color:rgba(255, 255, 255, 0.54);--f7-block-footer-text-color:rgba(255, 255, 255, 0.54);--f7-block-strong-text-color:#fff}.block{box-sizing:border-box;position:relative;z-index:1;color:var(--f7-block-text-color);margin:var(--f7-block-margin-vertical) 0;padding-top:0;padding-bottom:0;padding-left:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-right));font-size:var(--f7-block-font-size)}.aurora .block.no-hairlines-aurora ul:after,.aurora .block.no-hairlines-aurora ul:before,.aurora .block.no-hairlines-aurora:after,.aurora .block.no-hairlines-aurora:before,.block.no-hairlines ul:after,.block.no-hairlines ul:before,.block.no-hairlines:after,.block.no-hairlines:before,.ios .block.no-hairlines-ios ul:after,.ios .block.no-hairlines-ios ul:before,.ios .block.no-hairlines-ios:after,.ios .block.no-hairlines-ios:before,.md .block.no-hairlines-md ul:after,.md .block.no-hairlines-md ul:before,.md .block.no-hairlines-md:after,.md .block.no-hairlines-md:before{display:none!important}.aurora .block.no-hairline-top-aurora ul:before,.aurora .block.no-hairline-top-aurora:before,.block.no-hairline-top ul:before,.block.no-hairline-top:before,.ios .block.no-hairline-top-ios ul:before,.ios .block.no-hairline-top-ios:before,.md .block.no-hairline-top-md ul:before,.md .block.no-hairline-top-md:before{display:none!important}.aurora .block.no-hairline-bottom-aurora ul:after,.aurora .block.no-hairline-bottom-aurora:after,.block.no-hairline-bottom ul:after,.block.no-hairline-bottom:after,.ios .block.no-hairline-bottom-ios ul:after,.ios .block.no-hairline-bottom-ios:after,.md .block.no-hairline-bottom-md ul:after,.md .block.no-hairline-bottom-md:after{display:none!important}.block>h1:first-child,.block>h2:first-child,.block>h3:first-child,.block>h4:first-child,.block>p:first-child{margin-top:0}.block>h1:last-child,.block>h2:last-child,.block>h3:last-child,.block>h4:last-child,.block>p:last-child{margin-bottom:0}.block-strong{color:var(--f7-block-strong-text-color);padding-top:var(--f7-block-padding-vertical);padding-bottom:var(--f7-block-padding-vertical);background-color:var(--f7-block-strong-bg-color)}.block-strong:before{content:'';position:absolute;background-color:var(--f7-block-strong-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.block-strong:after{content:'';position:absolute;background-color:var(--f7-block-strong-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.block-title{position:relative;overflow:hidden;margin:0;white-space:var(--f7-block-title-white-space);text-overflow:ellipsis;text-transform:var(--f7-block-title-text-transform);color:var(--f7-block-title-text-color);font-size:var(--f7-block-title-font-size, inherit);font-weight:var(--f7-block-title-font-weight);line-height:var(--f7-block-title-line-height);margin-top:var(--f7-block-margin-vertical);margin-bottom:var(--f7-block-title-margin-bottom);margin-left:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));margin-right:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-right))}.block-title+.block,.block-title+.block-header,.block-title+.card,.block-title+.list,.block-title+.timeline{margin-top:0px}.block-title-medium{font-size:var(--f7-block-title-medium-font-size);text-transform:var(--f7-block-title-medium-text-transform);color:var(--f7-block-title-medium-text-color);font-weight:var(--f7-block-title-medium-font-weight);line-height:var(--f7-block-title-medium-line-height)}.block-title-large{font-size:var(--f7-block-title-large-font-size);text-transform:var(--f7-block-title-large-text-transform);color:var(--f7-block-title-large-text-color);font-weight:var(--f7-block-title-large-font-weight);line-height:var(--f7-block-title-large-line-height)}.block>.block-title:first-child,.list>.block-title:first-child{margin-top:0;margin-left:0;margin-right:0}.block-header{color:var(--f7-block-header-text-color);font-size:var(--f7-block-header-font-size);margin-bottom:var(--f7-block-header-margin);margin-top:var(--f7-block-margin-vertical)}.block-header+.block,.block-header+.card,.block-header+.list,.block-header+.timeline{margin-top:var(--f7-block-header-margin)}.block-footer{color:var(--f7-block-footer-text-color);font-size:var(--f7-block-footer-font-size);margin-top:var(--f7-block-footer-margin);margin-bottom:var(--f7-block-margin-vertical)}.block-footer,.block-header{padding-top:0;padding-bottom:0;padding-left:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-right))}.block-footer h1:first-child,.block-footer h2:first-child,.block-footer h3:first-child,.block-footer h4:first-child,.block-footer p:first-child,.block-footer ul:first-child,.block-header h1:first-child,.block-header h2:first-child,.block-header h3:first-child,.block-header h4:first-child,.block-header p:first-child,.block-header ul:first-child{margin-top:0}.block-footer h1:last-child,.block-footer h2:last-child,.block-footer h3:last-child,.block-footer h4:last-child,.block-footer p:last-child,.block-footer ul:last-child,.block-header h1:last-child,.block-header h2:last-child,.block-header h3:last-child,.block-header h4:last-child,.block-header p:last-child,.block-header ul:last-child{margin-bottom:0}.block-footer h1:first-child:last-child,.block-footer h2:first-child:last-child,.block-footer h3:first-child:last-child,.block-footer h4:first-child:last-child,.block-footer p:first-child:last-child,.block-footer ul:first-child:last-child,.block-header h1:first-child:last-child,.block-header h2:first-child:last-child,.block-header h3:first-child:last-child,.block-header h4:first-child:last-child,.block-header p:first-child:last-child,.block-header ul:first-child:last-child{margin-top:0;margin-bottom:0}.block .block-header,.card .block-header,.list .block-header,.timeline .block-header{margin-top:0}.block .block-footer,.card .block-footer,.list .block-footer,.timeline .block-footer{margin-bottom:0}.block+.block-footer,.card+.block-footer,.list+.block-footer,.timeline+.block-footer{margin-top:calc(-1 * (var(--f7-block-margin-vertical) - var(--f7-block-footer-margin)))}.block+.block-footer{margin-top:calc(-1 * (var(--f7-block-margin-vertical) - var(--f7-block-footer-margin)));margin-bottom:var(--f7-block-margin-vertical)}.block .block-footer,.block .block-header{padding:0}.block.inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.inset:after,.block-strong.inset:before{display:none!important}@media (min-width:480px){.block.xsmall-inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.xsmall-inset:after,.block-strong.xsmall-inset:before{display:none!important}}@media (min-width:568px){.block.small-inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.small-inset:after,.block-strong.small-inset:before{display:none!important}}@media (min-width:768px){.block.medium-inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.medium-inset:after,.block-strong.medium-inset:before{display:none!important}}@media (min-width:1024px){.block.large-inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.large-inset:after,.block-strong.large-inset:before{display:none!important}}@media (min-width:1200px){.block.xlarge-inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.xlarge-inset:after,.block-strong.xlarge-inset:before{display:none!important}}:root{--f7-list-inset-side-margin:16px;--f7-list-item-cell-margin:16px;--f7-list-item-padding-horizontal:16px;--f7-list-item-padding-vertical:8px;--f7-list-media-item-padding-horizontal:16px;--f7-list-item-text-max-lines:2;--f7-list-chevron-icon-font-size:20px;--f7-list-item-media-margin:16px;--f7-list-item-title-font-size:inherit;--f7-list-item-title-font-weight:400;--f7-list-item-title-text-color:inherit;--f7-list-item-title-line-height:inherit;--f7-list-item-title-white-space:nowrap;--f7-list-item-subtitle-font-weight:400;--f7-list-item-subtitle-text-color:inherit;--f7-list-item-subtitle-line-height:inherit;--f7-list-item-text-font-weight:400;--f7-list-item-after-font-weight:400;--f7-list-item-after-line-height:inherit;--f7-list-item-header-text-color:inherit;--f7-list-item-header-font-size:12px;--f7-list-item-header-font-weight:400;--f7-list-item-header-line-height:1.2;--f7-list-item-footer-font-size:12px;--f7-list-item-footer-font-weight:400;--f7-list-item-footer-line-height:1.2;--f7-list-button-font-size:inherit;--f7-list-button-font-weight:400;--f7-list-button-text-align:center;--f7-list-item-divider-line-height:inherit;--f7-list-item-divider-font-weight:400;--f7-list-group-title-line-height:inherit;--f7-menu-list-offset:8px;--f7-menu-list-border-radius:8px;--f7-menu-list-font-size:14px;--f7-menu-list-item-title-font-size:14px;--f7-menu-list-item-title-font-weight:500;--f7-menu-list-item-subtitle-font-size:14px;--f7-menu-list-item-text-font-size:14px;--f7-menu-list-item-after-font-size:14px;--f7-list-bg-color:#fff;--f7-list-chevron-icon-color:rgba(0, 0, 0, 0.2);--f7-menu-list-selected-text-color:var(--f7-theme-color);--f7-menu-list-selected-bg-color:rgba(var(--f7-theme-color-rgb), 0.15)}:root .theme-dark,:root.theme-dark{--f7-list-button-border-color:rgba(255, 255, 255, 0.15);--f7-list-bg-color:#1c1c1d;--f7-list-border-color:rgba(255, 255, 255, 0.15);--f7-list-item-border-color:rgba(255, 255, 255, 0.15);--f7-list-item-divider-border-color:rgba(255, 255, 255, 0.15);--f7-list-item-divider-bg-color:#232323;--f7-list-group-title-bg-color:#232323;--f7-list-chevron-icon-color:rgba(255, 255, 255, 0.3);--f7-menu-list-selected-text-color:inherit;--f7-menu-list-selected-bg-color:var(--f7-theme-color)}.ios{--f7-list-in-list-padding-left:30px;--f7-list-inset-border-radius:8px;--f7-list-margin-vertical:35px;--f7-list-font-size:17px;--f7-list-chevron-icon-area:20px;--f7-list-border-color:rgba(0, 0, 0, 0.22);--f7-list-item-border-color:rgba(0, 0, 0, 0.22);--f7-list-link-pressed-bg-color:rgba(0, 0, 0, 0.15);--f7-list-item-subtitle-font-size:15px;--f7-list-item-text-font-size:15px;--f7-list-item-text-line-height:21px;--f7-list-item-after-font-size:inherit;--f7-list-item-after-padding:5px;--f7-list-item-min-height:44px;--f7-list-item-media-icons-margin:5px;--f7-list-media-item-padding-vertical:10px;--f7-list-media-item-title-font-weight:600;--f7-list-button-border-color:rgba(0, 0, 0, 0.22);--f7-list-item-divider-height:31px;--f7-list-item-divider-font-size:inherit;--f7-list-item-divider-bg-color:rgba(0, 0, 0, 0.03);--f7-list-item-divider-border-color:rgba(0, 0, 0, 0.22);--f7-list-group-title-height:31px;--f7-list-group-title-font-size:inherit;--f7-list-group-title-font-weight:400;--f7-list-group-title-bg-color:#f7f7f7;--f7-list-item-after-text-color:rgba(0, 0, 0, 0.45);--f7-list-item-footer-text-color:rgba(0, 0, 0, 0.45);--f7-list-item-text-text-color:rgba(0, 0, 0, 0.45);--f7-list-item-divider-text-color:rgba(0, 0, 0, 0.45);--f7-list-group-title-text-color:rgba(0, 0, 0, 0.45)}.ios .theme-dark,.ios.theme-dark{--f7-list-item-after-text-color:rgba(255, 255, 255, 0.55);--f7-list-item-header-text-color:rgba(255, 255, 255, 0.55);--f7-list-item-footer-text-color:rgba(255, 255, 255, 0.55);--f7-list-item-text-text-color:rgba(255, 255, 255, 0.55);--f7-list-item-divider-text-color:rgba(255, 255, 255, 0.55);--f7-list-group-title-text-color:rgba(255, 255, 255, 0.55);--f7-list-link-pressed-bg-color:rgba(255, 255, 255, 0.08)}.md{--f7-list-in-list-padding-left:40px;--f7-list-inset-border-radius:4px;--f7-list-margin-vertical:32px;--f7-list-font-size:16px;--f7-list-chevron-icon-area:26px;--f7-list-border-color:rgba(0, 0, 0, 0.12);--f7-list-item-border-color:rgba(0, 0, 0, 0.12);--f7-list-item-subtitle-font-size:14px;--f7-list-item-text-font-size:14px;--f7-list-item-text-line-height:20px;--f7-list-item-after-font-size:14px;--f7-list-item-after-padding:8px;--f7-list-item-min-height:48px;--f7-list-item-media-icons-margin:8px;--f7-list-media-item-padding-vertical:14px;--f7-list-button-border-color:transparent;--f7-list-item-divider-height:48px;--f7-list-item-divider-font-size:14px;--f7-list-item-divider-bg-color:#f4f4f4;--f7-list-item-divider-border-color:transparent;--f7-list-group-title-height:48px;--f7-list-group-title-font-size:14px;--f7-list-group-title-font-weight:400;--f7-list-group-title-bg-color:#f4f4f4;--f7-menu-list-border-radius:4px;--f7-list-link-pressed-bg-color:rgba(0, 0, 0, 0.1);--f7-list-item-text-text-color:rgba(0, 0, 0, 0.54);--f7-list-item-after-text-color:rgba(0, 0, 0, 0.54);--f7-list-item-footer-text-color:rgba(0, 0, 0, 0.5);--f7-list-item-divider-text-color:rgba(0, 0, 0, 0.54);--f7-list-group-title-text-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-list-item-divider-text-color:#fff;--f7-list-group-title-text-color:#fff;--f7-list-link-pressed-bg-color:rgba(255, 255, 255, 0.05);--f7-list-item-text-text-color:rgba(255, 255, 255, 0.54);--f7-list-item-after-text-color:rgba(255, 255, 255, 0.54);--f7-list-item-footer-text-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-list-in-list-padding-left:16px;--f7-list-inset-border-radius:8px;--f7-list-margin-vertical:32px;--f7-list-font-size:16px;--f7-list-chevron-icon-area:20px;--f7-list-border-color:rgba(0, 0, 0, 0.12);--f7-list-item-border-color:rgba(0, 0, 0, 0.12);--f7-list-item-subtitle-font-size:14px;--f7-list-item-text-font-size:14px;--f7-list-item-text-line-height:20px;--f7-list-item-after-font-size:14px;--f7-list-item-after-padding:8px;--f7-list-item-min-height:48px;--f7-list-item-media-icons-margin:8px;--f7-list-media-item-padding-vertical:16px;--f7-list-media-item-title-font-weight:600;--f7-list-button-border-color:rgba(0, 0, 0, 0.12);--f7-list-button-font-weight:500;--f7-list-item-divider-height:32px;--f7-list-item-divider-font-size:14px;--f7-list-item-divider-bg-color:rgba(0, 0, 0, 0.03);--f7-list-item-divider-border-color:transparent;--f7-list-group-title-height:32px;--f7-list-group-title-font-size:14px;--f7-list-group-title-font-weight:500;--f7-list-group-title-bg-color:#f7f7f7;--f7-list-link-pressed-bg-color:rgba(0, 0, 0, 0.1);--f7-list-link-hover-bg-color:rgba(0, 0, 0, 0.03);--f7-list-item-text-text-color:rgba(0, 0, 0, 0.6);--f7-list-item-after-text-color:rgba(0, 0, 0, 0.5);--f7-list-item-footer-text-color:rgba(0, 0, 0, 0.6);--f7-list-button-hover-bg-color:rgba(0, 0, 0, 0.03);--f7-list-item-divider-text-color:rgba(0, 0, 0, 0.6);--f7-list-group-title-text-color:rgba(0, 0, 0, 0.6)}.aurora .theme-dark,.aurora.theme-dark{--f7-list-item-text-text-color:rgba(255, 255, 255, 0.54);--f7-list-item-after-text-color:rgba(255, 255, 255, 0.54);--f7-list-item-footer-text-color:rgba(255, 255, 255, 0.54);--f7-list-item-divider-text-color:rgba(255, 255, 255, 0.6);--f7-list-group-title-text-color:rgba(255, 255, 255, 0.6);--f7-list-link-pressed-bg-color:rgba(255, 255, 255, 0.05);--f7-list-link-hover-bg-color:rgba(255, 255, 255, 0.03);--f7-list-button-hover-bg-color:rgba(255, 255, 255, 0.03)}:root{--f7-list-chevron-icon-left:'chevron_left';--f7-list-chevron-icon-right:'chevron_right'}.list{--menu-list-offset:0px;position:relative;z-index:1;font-size:var(--f7-list-font-size);margin:var(--f7-list-margin-vertical) 0}.list ul{list-style:none;margin:0;padding:0;position:relative;background:var(--f7-list-bg-color)}.list ul:before{content:'';position:absolute;background-color:var(--f7-list-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.list ul:after{content:'';position:absolute;background-color:var(--f7-list-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.list ul ul{padding-left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-list-in-list-padding-left))}.list ul ul:after,.list ul ul:before{display:none!important}.list li{position:relative;box-sizing:border-box}.list .item-media{display:flex;flex-shrink:0;flex-wrap:nowrap;align-items:center;box-sizing:border-box;padding-bottom:var(--f7-list-item-padding-vertical);padding-top:var(--f7-list-item-padding-vertical)}.list .item-media+.item-inner{margin-left:var(--f7-list-item-media-margin)}.list .item-media i+i,.list .item-media i+img{margin-left:var(--f7-list-item-media-icons-margin)}.list .item-after{padding-left:var(--f7-list-item-after-padding)}.list .item-inner{position:relative;width:100%;min-width:0;display:flex;justify-content:space-between;box-sizing:border-box;align-items:center;align-self:stretch;padding-top:var(--f7-list-item-padding-vertical);padding-bottom:var(--f7-list-item-padding-vertical);min-height:calc(var(--f7-list-item-min-height) - var(--menu-list-offset));padding-right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right) - var(--menu-list-offset))}.list .item-title{min-width:0;flex-shrink:1;white-space:var(--f7-list-item-title-white-space);position:relative;overflow:hidden;text-overflow:ellipsis;max-width:100%;font-size:var(--f7-list-item-title-font-size);font-weight:var(--f7-list-item-title-font-weight);color:var(--f7-list-item-title-text-color);line-height:var(--f7-list-item-title-line-height)}.list .item-after{white-space:nowrap;flex-shrink:0;display:flex;font-size:var(--f7-list-item-after-font-size);font-weight:var(--f7-list-item-after-font-weight);color:var(--f7-list-item-after-text-color);line-height:var(--f7-list-item-after-line-height);margin-left:auto}.list .item-footer,.list .item-header{white-space:normal}.list .item-header{color:var(--f7-list-item-header-text-color);font-size:var(--f7-list-item-header-font-size);font-weight:var(--f7-list-item-header-font-weight);line-height:var(--f7-list-item-header-line-height)}.list .item-footer{color:var(--f7-list-item-footer-text-color);font-size:var(--f7-list-item-footer-font-size);font-weight:var(--f7-list-item-footer-font-weight);line-height:var(--f7-list-item-footer-line-height)}.list .item-link,.list .list-button{transition-duration:.3s;transition-property:background-color,color;display:block;position:relative;overflow:hidden;z-index:0}.list .item-link{color:inherit}.list .item-link.active-state{background-color:var(--f7-list-link-pressed-bg-color)}.list .item-link .item-inner{padding-right:calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right) - var(--menu-list-offset))}.list .item-content{display:flex;justify-content:space-between;box-sizing:border-box;align-items:center;min-height:calc(var(--f7-list-item-min-height) - var(--menu-list-offset));padding-left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left) - var(--menu-list-offset))}.list .item-subtitle{position:relative;overflow:hidden;white-space:nowrap;max-width:100%;text-overflow:ellipsis;font-size:var(--f7-list-item-subtitle-font-size);font-weight:var(--f7-list-item-subtitle-font-weight);color:var(--f7-list-item-subtitle-text-color);line-height:var(--f7-list-item-subtitle-line-height)}.list .item-text{position:relative;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:var(--f7-list-item-text-max-lines);-webkit-box-orient:vertical;display:-webkit-box;font-size:var(--f7-list-item-text-font-size);font-weight:var(--f7-list-item-text-font-weight);color:var(--f7-list-item-text-text-color);line-height:var(--f7-list-item-text-line-height);max-height:calc(var(--f7-list-item-text-line-height) * var(--f7-list-item-text-max-lines))}.list .item-title-row{position:relative;display:flex;justify-content:space-between;box-sizing:border-box}.list .item-title-row .item-after{align-self:center}.list .item-row{display:flex;justify-content:space-between;box-sizing:border-box}.list .item-cell{display:block;align-self:center;box-sizing:border-box;width:100%;min-width:0;margin-left:var(--f7-list-item-cell-margin);flex-shrink:1}.list .item-cell:first-child{margin-left:0}.list .ripple-wave+.item-cell{margin-left:0}.list li:last-child .list-button:after{display:none!important}.list li:last-child li:last-child>.item-content>.item-inner:after,.list li:last-child li:last-child>.item-inner:after,.list li:last-child li:last-child>.item-link>.item-content>.item-inner:after,.list li:last-child li:last-child>.swipeout-content>.item-content>.item-inner:after,.list li:last-child>.item-content>.item-inner:after,.list li:last-child>.item-inner:after,.list li:last-child>.item-link>.item-content>.item-inner:after,.list li:last-child>.swipeout-content>.item-content>.item-inner:after{display:none!important}.list li li:last-child .item-inner:after,.list li:last-child li .item-inner:after{content:'';position:absolute;background-color:var(--f7-list-item-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.aurora .list.no-hairlines-aurora ul:after,.aurora .list.no-hairlines-aurora ul:before,.aurora .list.no-hairlines-aurora:after,.aurora .list.no-hairlines-aurora:before,.ios .list.no-hairlines-ios ul:after,.ios .list.no-hairlines-ios ul:before,.ios .list.no-hairlines-ios:after,.ios .list.no-hairlines-ios:before,.list.no-hairlines ul:after,.list.no-hairlines ul:before,.list.no-hairlines:after,.list.no-hairlines:before,.md .list.no-hairlines-md ul:after,.md .list.no-hairlines-md ul:before,.md .list.no-hairlines-md:after,.md .list.no-hairlines-md:before{display:none!important}.aurora .list.no-hairline-top-aurora ul:before,.aurora .list.no-hairline-top-aurora:before,.ios .list.no-hairline-top-ios ul:before,.ios .list.no-hairline-top-ios:before,.list.no-hairline-top ul:before,.list.no-hairline-top:before,.md .list.no-hairline-top-md ul:before,.md .list.no-hairline-top-md:before{display:none!important}.aurora .list.no-hairline-bottom-aurora ul:after,.aurora .list.no-hairline-bottom-aurora:after,.ios .list.no-hairline-bottom-ios ul:after,.ios .list.no-hairline-bottom-ios:after,.list.no-hairline-bottom ul:after,.list.no-hairline-bottom:after,.md .list.no-hairline-bottom-md ul:after,.md .list.no-hairline-bottom-md:after{display:none!important}.aurora .list.no-hairlines-between-aurora .item-divider:after,.aurora .list.no-hairlines-between-aurora .item-inner:after,.aurora .list.no-hairlines-between-aurora .list-button:after,.aurora .list.no-hairlines-between-aurora .list-group-title:after,.ios .list.no-hairlines-between-ios .item-divider:after,.ios .list.no-hairlines-between-ios .item-inner:after,.ios .list.no-hairlines-between-ios .list-button:after,.ios .list.no-hairlines-between-ios .list-group-title:after,.list.no-hairlines-between .item-divider:after,.list.no-hairlines-between .item-inner:after,.list.no-hairlines-between .list-button:after,.list.no-hairlines-between .list-group-title:after,.md .list.no-hairlines-between-md .item-divider:after,.md .list.no-hairlines-between-md .item-inner:after,.md .list.no-hairlines-between-md .list-button:after,.md .list.no-hairlines-between-md .list-group-title:after{display:none!important}.aurora .list.no-hairlines-between-aurora.simple-list li:after,.ios .list.no-hairlines-between-ios.simple-list li:after,.list.no-hairlines-between.simple-list li:after,.md .list.no-hairlines-between-md.simple-list li:after{display:none!important}.aurora .list.no-hairlines-between-aurora.links-list a:after,.ios .list.no-hairlines-between-ios.links-list a:after,.list.no-hairlines-between.links-list a:after,.md .list.no-hairlines-between-md.links-list a:after{display:none!important}.list-button{--f7-touch-ripple-color:var(--f7-link-touch-ripple-color, rgba(var(--f7-theme-color-rgb), 0.25));padding:0 var(--f7-list-item-padding-horizontal);line-height:var(--f7-list-item-min-height);color:var(--f7-list-button-text-color,var(--f7-theme-color));font-size:var(--f7-list-button-font-size);font-weight:var(--f7-list-button-font-weight);text-align:var(--f7-list-button-text-align)}.list-button:after{content:'';position:absolute;background-color:var(--f7-list-button-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.list-button.active-state{background-color:var(--f7-list-button-pressed-bg-color,rgba(var(--f7-theme-color-rgb),.15))}.list-button[class*=color-]{--f7-list-button-text-color:var(--f7-theme-color)}.simple-list li{position:relative;white-space:nowrap;text-overflow:ellipsis;max-width:100%;box-sizing:border-box;display:flex;justify-content:space-between;align-items:center;align-content:center;line-height:var(--f7-list-item-min-height);height:var(--f7-list-item-min-height);padding-left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right))}.simple-list li:after{left:var(--f7-list-item-padding-horizontal);width:auto;left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));right:0}.simple-list li:last-child:after{display:none!important}.links-list li{z-index:1}.links-list a{transition-duration:.3s;transition-property:background-color;display:block;position:relative;overflow:hidden;display:flex;align-items:center;align-content:center;justify-content:space-between;box-sizing:border-box;white-space:nowrap;text-overflow:ellipsis;max-width:100%;height:var(--f7-list-item-min-height);color:inherit}.links-list a .ripple-wave{z-index:0}.links-list a:after{width:auto}.links-list a.active-state{background-color:var(--f7-list-link-pressed-bg-color)}.links-list a{padding-left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right))}.links-list a:after{left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));right:0}.links-list li:last-child a:after{display:none!important}.links-list a:after,.list .item-inner:after,.simple-list li:after{content:'';position:absolute;background-color:var(--f7-list-item-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.media-list,li.media-item{--f7-list-item-padding-vertical:var(--f7-list-media-item-padding-vertical);--f7-list-item-padding-horizontal:var(--f7-list-media-item-padding-horizontal)}.media-list .item-title,li.media-item .item-title{font-weight:var(--f7-list-media-item-title-font-weight,var(--f7-list-item-title-font-weight,inherit))}.media-list .item-inner,li.media-item .item-inner{display:block;align-self:stretch}.media-list .item-media,li.media-item .item-media{align-self:flex-start}.media-list .item-media img,li.media-item .item-media img{display:block}.media-list .item-link .item-inner,li.media-item .item-link .item-inner{padding-right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right) - var(--menu-list-offset))}.media-list .item-link .item-title-row,li.media-item .item-link .item-title-row{padding-right:calc(var(--f7-list-chevron-icon-area))}.media-list .chevron-center .item-link .item-inner,.media-list .item-link.chevron-center .item-inner,.media-list.chevron-center .item-link .item-inner,li.media-item .chevron-center .item-link .item-inner,li.media-item .item-link.chevron-center .item-inner,li.media-item.chevron-center .item-link .item-inner{padding-right:calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right) - var(--menu-list-offset))}.media-list .chevron-center .item-title-row,.media-list.chevron-center .item-title-row,li.media-item .chevron-center .item-title-row,li.media-item.chevron-center .item-title-row{padding-right:0}.links-list a:before,.list .item-link .item-inner:before,.media-list .chevron-center .item-link .item-inner:before,.media-list .item-link .item-title-row:before,.media-list .item-link.chevron-center .item-inner:before,.media-list.chevron-center .item-link .item-inner:before,li.media-item .chevron-center .item-link .item-inner:before,li.media-item .item-link .item-title-row:before,li.media-item .item-link.chevron-center .item-inner:before,li.media-item.chevron-center .item-link .item-inner:before{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;position:absolute;top:50%;width:8px;height:14px;margin-top:-7px;font-size:var(--f7-list-chevron-icon-font-size);line-height:14px;color:var(--f7-list-chevron-icon-color);pointer-events:none;right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right));content:var(--f7-list-chevron-icon-right)}.media-list .chevron-center .item-title-row:before,.media-list.chevron-center .item-title-row:before,li.media-item .chevron-center .item-title-row:before,li.media-item.chevron-center .item-title-row:before{display:none}.media-list .item-link .item-inner:before,li.media-item .item-link .item-inner:before{display:none}.media-list .item-link .item-title-row:before,li.media-item .item-link .item-title-row:before{right:0}.list-group ul:after,.list-group ul:before{z-index:25!important}.list-group+.list-group ul:before{display:none!important}.item-divider,li.item-divider,li.list-group-title{white-space:nowrap;position:relative;max-width:100%;text-overflow:ellipsis;overflow:hidden;z-index:15;padding-top:0;padding-bottom:0;padding-left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right));box-sizing:border-box;display:flex;align-items:center;align-content:center}.item-divider:after,li.item-divider:after,li.list-group-title:after{display:none!important}.item-divider,li.item-divider{margin-top:-1px;height:var(--f7-list-item-divider-height);color:var(--f7-list-item-divider-text-color);font-size:var(--f7-list-item-divider-font-size);font-weight:var(--f7-list-item-divider-font-weight);background-color:var(--f7-list-item-divider-bg-color);line-height:var(--f7-list-item-divider-line-height)}.item-divider:before,li.item-divider:before{content:'';position:absolute;background-color:var(--f7-list-item-divider-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.list li.list-group-title,li.list-group-title{position:relative;position:-webkit-sticky;position:sticky;top:0;margin-top:0;z-index:20;height:var(--f7-list-group-title-height);color:var(--f7-list-group-title-text-color);font-size:var(--f7-list-group-title-font-size);font-weight:var(--f7-list-group-title-font-weight);background-color:var(--f7-list-group-title-bg-color);line-height:var(--f7-list-group-title-line-height)}.page-with-navbar-large .list li.list-group-title,.page-with-navbar-large li.list-group-title{top:calc(-1 * var(--f7-navbar-large-title-height))}.list.inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.inset .block-title{margin-left:0;margin-right:0}.list.inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.inset ul:after,.list.inset ul:before{display:none!important}.list.inset li.swipeout:first-child,.list.inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.inset li.swipeout:last-child,.list.inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.inset li.swipeout:first-child:last-child,.list.inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}@media (min-width:480px){.list.xsmall-inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.xsmall-inset .block-title{margin-left:0;margin-right:0}.list.xsmall-inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.xsmall-inset ul:after,.list.xsmall-inset ul:before{display:none!important}.list.xsmall-inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.xsmall-inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.xsmall-inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}}@media (min-width:568px){.list.small-inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.small-inset .block-title{margin-left:0;margin-right:0}.list.small-inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.small-inset ul:after,.list.small-inset ul:before{display:none!important}.list.small-inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.small-inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.small-inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}}@media (min-width:768px){.list.medium-inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.medium-inset .block-title{margin-left:0;margin-right:0}.list.medium-inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.medium-inset ul:after,.list.medium-inset ul:before{display:none!important}.list.medium-inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.medium-inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.medium-inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}}@media (min-width:1024px){.list.large-inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.large-inset .block-title{margin-left:0;margin-right:0}.list.large-inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.large-inset ul:after,.list.large-inset ul:before{display:none!important}.list.large-inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.large-inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.large-inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}}@media (min-width:1200px){.list.xlarge-inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.xlarge-inset .block-title{margin-left:0;margin-right:0}.list.xlarge-inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.xlarge-inset ul:after,.list.xlarge-inset ul:before{display:none!important}.list.xlarge-inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.xlarge-inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.xlarge-inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}}.list .no-chevron,.list.no-chevron,.menu-list{--f7-list-chevron-icon-color:transparent;--f7-list-chevron-icon-area:0px}.menu-list{--menu-list-offset:var(--f7-menu-list-offset);--f7-list-font-size:var(--f7-menu-list-font-size);--f7-list-item-title-font-size:var(--f7-menu-list-item-title-font-size);--f7-list-item-title-font-weight:var(--f7-menu-list-item-title-font-weight);--f7-list-item-subtitle-font-size:var(--f7-menu-list-item-subtitle-font-size);--f7-list-item-text-font-size:var(--f7-menu-list-item-text-font-size);--f7-list-item-after-font-size:var(--f7-menu-list-item-after-font-size)}.menu-list .item-after,.menu-list .item-footer,.menu-list .item-header,.menu-list .item-subtitle,.menu-list .item-text,.menu-list .item-title{transition-duration:.3s}.menu-list li:not(.item-divider):not(.list-group-title){padding-top:calc(var(--f7-menu-list-offset)/ 2);padding-bottom:calc(var(--f7-menu-list-offset)/ 2)}.menu-list li:not(.item-divider):not(.list-group-title):first-child{padding-top:var(--f7-menu-list-offset)}.menu-list li:not(.item-divider):not(.list-group-title):last-child{padding-bottom:var(--f7-menu-list-offset)}.menu-list .item-link{margin-left:var(--f7-menu-list-offset);margin-right:var(--f7-menu-list-offset);border-radius:var(--f7-menu-list-border-radius)!important}.menu-list .item-inner:after{display:none}.menu-list .item-selected .item-link,.menu-list .item-selected.item-link,.menu-list .tab-link-active .item-link,.menu-list .tab-link-active.item-link{color:var(--f7-menu-list-selected-text-color);background-color:var(--f7-menu-list-selected-bg-color)}.menu-list .item-selected .item-after,.menu-list .item-selected .item-footer,.menu-list .item-selected .item-header,.menu-list .item-selected .item-subtitle,.menu-list .item-selected .item-text,.menu-list .item-selected .item-title{color:var(--f7-menu-list-selected-text-color)}.ios .item-link.active-state .item-inner:after,.ios .links-list a.active-state:after,.ios .list-button.active-state:after{background-color:transparent}.ios .links-list a.active-state,.ios .list .item-link.active-state,.ios .list .list-button.active-state{transition-duration:0s}.md .list .item-media{min-width:40px}.aurora .list .item-media{min-width:24px}.aurora .links-list a,.aurora .list .item-link:not(.item-selected),.aurora .list .list-button{transition-duration:0s}.aurora.device-desktop .links-list a:hover:not(.active-state):not(.no-hover),.aurora.device-desktop .list .item-link:not(.item-selected):hover:not(.active-state):not(.no-hover){background:var(--f7-list-link-hover-bg-color)}.aurora.device-desktop .list .list-button:hover:not(.active-state):not(.no-hover){background:var(--f7-list-button-hover-bg-color)}:root{--f7-badge-text-color:#fff;--f7-badge-bg-color:#8e8e93;--f7-badge-padding:0 4px;--f7-badge-in-icon-size:16px;--f7-badge-in-icon-font-size:10px;--f7-badge-font-weight:normal;--f7-badge-font-size:12px}.ios{--f7-badge-size:20px;--f7-badge-font-weight:600}.md{--f7-badge-size:18px;--f7-badge-font-weight:500}.aurora{--f7-badge-size:18px;--f7-badge-font-weight:600}.badge{display:inline-flex;align-items:center;align-content:center;justify-content:center;color:var(--f7-badge-text-color);background:var(--f7-badge-bg-color);position:relative;box-sizing:border-box;text-align:center;vertical-align:middle;font-weight:var(--f7-badge-font-weight);font-size:var(--f7-badge-font-size);border-radius:var(--f7-badge-size);padding:var(--f7-badge-padding);height:var(--f7-badge-size);min-width:var(--f7-badge-size)}.f7-icons .badge,.framework7-icons .badge,.icon .badge,.material-icons .badge{position:absolute;left:100%;margin-left:-10px;top:-2px;font-family:var(--f7-font-family);--f7-badge-font-size:var(--f7-badge-in-icon-font-size);--f7-badge-size:var(--f7-badge-in-icon-size)}.badge[class*=color-]{--f7-badge-bg-color:var(--f7-theme-color)}:root{--f7-button-font-size:14px;--f7-button-min-width:32px;--f7-button-bg-color:transparent;--f7-button-border-width:0px;--f7-button-text-transform:uppercase;--f7-button-large-text-transform:uppercase;--f7-button-small-text-transform:uppercase;--f7-button-small-outline-border-width:2px;--f7-button-outline-border-width:2px;--f7-button-raised-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12),0 1px 2px rgba(0, 0, 0, 0.24);--f7-button-raised-pressed-box-shadow:0 3px 6px rgba(0, 0, 0, 0.16),0 3px 6px rgba(0, 0, 0, 0.23);--f7-segmented-raised-divider-color:rgba(0, 0, 0, 0.1);--f7-segmented-strong-padding:2px;--f7-segmented-strong-between-buttons:4px;--f7-segmented-strong-button-font-weight:500;--f7-segmented-strong-button-active-box-shadow:0px 2px 2px rgba(0, 0, 0, 0.25);--f7-segmented-strong-bg-color:rgba(0, 0, 0, 0.07);--f7-segmented-strong-button-text-color:#000;--f7-segmented-strong-button-pressed-bg-color:rgba(0, 0, 0, 0.07);--f7-segmented-strong-button-hover-bg-color:rgba(0, 0, 0, 0.04);--f7-segmented-strong-button-active-text-color:#000;--f7-segmented-strong-button-active-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-segmented-strong-bg-color:rgba(255, 255, 255, 0.1);--f7-segmented-strong-button-pressed-bg-color:rgba(255, 255, 255, 0.04);--f7-segmented-strong-button-hover-bg-color:rgba(255, 255, 255, 0.02);--f7-segmented-strong-button-active-bg-color:rgba(255, 255, 255, 0.14);--f7-segmented-strong-button-text-color:#fff;--f7-segmented-strong-button-active-text-color:#fff}.ios{--f7-button-height:28px;--f7-button-padding-horizontal:10px;--f7-button-border-radius:5px;--f7-button-font-weight:600;--f7-button-letter-spacing:0;--f7-button-large-height:44px;--f7-button-large-font-size:17px;--f7-button-large-font-weight:500;--f7-button-small-height:26px;--f7-button-small-font-size:13px;--f7-button-small-font-weight:600;--f7-segmented-strong-button-text-transform:none;--f7-segmented-strong-button-active-font-weight:600}.md{--f7-button-height:36px;--f7-button-padding-horizontal:8px;--f7-button-border-radius:4px;--f7-button-font-weight:500;--f7-button-letter-spacing:0.05em;--f7-button-large-height:48px;--f7-button-large-font-size:14px;--f7-button-large-font-weight:500;--f7-button-small-height:28px;--f7-button-small-font-size:14px;--f7-button-small-font-weight:500;--f7-segmented-strong-button-text-transform:uppercase;--f7-segmented-strong-button-active-font-weight:500}.aurora{--f7-button-height:36px;--f7-button-min-width:24px;--f7-button-padding-horizontal:10px;--f7-button-border-radius:8px;--f7-button-font-weight:600;--f7-button-letter-spacing:0em;--f7-button-large-height:48px;--f7-button-large-font-size:16px;--f7-button-large-font-weight:600;--f7-button-small-height:28px;--f7-button-small-font-size:14px;--f7-button-small-font-weight:600;--f7-segmented-strong-button-text-transform:uppercase;--f7-segmented-strong-button-active-font-weight:600}button{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%}.button{--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.25);text-decoration:none;text-align:center;display:flex;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;margin:0;white-space:nowrap;text-overflow:ellipsis;position:relative;overflow:hidden;font-family:inherit;cursor:pointer;outline:0;box-sizing:border-box;vertical-align:middle;justify-content:center;align-items:center;border:var(--f7-button-border-width,0px) solid var(--f7-button-border-color,var(--f7-theme-color));font-size:var(--f7-button-font-size);color:var(--f7-button-text-color,var(--f7-theme-color));height:var(--f7-button-height);line-height:calc(var(--f7-button-height) - var(--f7-button-border-width, 0) * 2);padding:var(--f7-button-padding-vertical,0px) var(--f7-button-padding-horizontal);border-radius:var(--f7-button-border-radius);min-width:var(--f7-button-min-width);font-weight:var(--f7-button-font-weight);letter-spacing:var(--f7-button-letter-spacing);text-transform:var(--f7-button-text-transform);background-color:var(--f7-button-bg-color);box-shadow:var(--f7-button-box-shadow)}.button.active-state{background-color:var(--f7-button-pressed-bg-color,rgba(var(--f7-theme-color-rgb),.15));color:var(--f7-button-pressed-text-color,var(--f7-button-text-color,var(--f7-theme-color)))}input[type=button].button,input[type=reset].button,input[type=submit].button{width:100%}.button>i+i,.button>i+span,.button>span+i,.button>span+span{margin-left:4px}.appbar .button,.navbar .button,.searchbar .button,.subnavbar .button,.toolbar .button{color:var(--f7-button-text-color,var(--f7-theme-color))}.aurora .button-round-aurora,.button-round,.ios .button-round-ios,.md .button-round-md{--f7-button-border-radius:var(--f7-button-height)}.aurora .button-fill-aurora,.button-active,.button-fill,.button.tab-link-active,.ios .button-fill-ios,.md .button-fill-md{--f7-button-bg-color:var(--f7-button-fill-bg-color, var(--f7-theme-color));--f7-button-text-color:var(--f7-button-fill-text-color, #fff);--f7-touch-ripple-color:var(--f7-touch-ripple-white)}.aurora .button-fill-aurora,.button-fill,.ios .button-fill-ios,.md .button-fill-md{--f7-button-pressed-bg-color:var(--f7-button-fill-pressed-bg-color)}.button-active,.button.tab-link-active{--f7-button-pressed-bg-color:var(--f7-button-bg-color)}.aurora .button-outline-aurora,.button-outline,.ios .button-outline-ios,.md .button-outline-md{--f7-button-border-color:var(--f7-button-outline-border-color, var(--f7-theme-color));--f7-button-border-width:var(--f7-button-outline-border-width)}.aurora .button-large-aurora,.button-large,.ios .button-large-ios,.md .button-large-md{--f7-button-height:var(--f7-button-large-height);--f7-button-font-size:var(--f7-button-large-font-size);--f7-button-font-weight:var(--f7-button-large-font-weight);--f7-button-text-transform:var(--f7-button-large-text-transform)}.aurora .button-small-aurora,.button-small,.ios .button-small-ios,.md .button-small-md{--f7-button-outline-border-width:var(--f7-button-small-outline-border-width);--f7-button-height:var(--f7-button-small-height);--f7-button-font-size:var(--f7-button-small-font-size);--f7-button-font-weight:var(--f7-button-small-font-weight);--f7-button-text-transform:var(--f7-button-small-text-transform)}.ios .button-small-ios.button-fill,.ios .button-small.button-fill,.ios .button-small.button-fill-ios{--f7-button-border-width:var(--f7-button-small-outline-border-width);--f7-button-pressed-text-color:var(--f7-theme-color);--f7-button-pressed-bg-color:transparent}.segmented{align-self:center;display:flex;flex-wrap:nowrap;border-radius:var(--f7-button-border-radius);box-shadow:var(--f7-button-box-shadow);box-sizing:border-box}.segmented .button,.segmented button{width:100%;flex-shrink:1;min-width:0;border-radius:0}.segmented .button:first-child{border-radius:var(--f7-button-border-radius) 0 0 var(--f7-button-border-radius)}.segmented .button:not(.button-outline):first-child{border-left:none}.segmented .button.button-outline:nth-child(n+2){border-left:none}.segmented .button:last-child{border-radius:0 var(--f7-button-border-radius) var(--f7-button-border-radius) 0}.segmented .button-round:first-child{border-radius:var(--f7-button-height) 0 0 var(--f7-button-height)}.segmented .button-round:last-child{border-radius:0 var(--f7-button-height) var(--f7-button-height) 0}.segmented .button:first-child:last-child{border-radius:var(--f7-button-border-radius)}.aurora .segmented-raised-aurora,.ios .segmented-raised-ios,.md .segmented-raised-md,.segmented-raised{box-shadow:var(--f7-button-raised-box-shadow)}.aurora .segmented-raised-aurora .button:not(.button-outline),.ios .segmented-raised-ios .button:not(.button-outline),.md .segmented-raised-md .button:not(.button-outline),.segmented-raised .button:not(.button-outline){border-left:1px solid var(--f7-segmented-raised-divider-color)}.aurora .button-raised-aurora,.button-raised,.ios .button-raised-ios,.md .button-raised-md{--f7-button-box-shadow:var(--f7-button-raised-box-shadow)}.aurora .button-raised-aurora.active-state,.button-raised.active-state,.ios .button-raised-ios.active-state,.md .button-raised-md.active-state{--f7-button-box-shadow:var(--f7-button-raised-pressed-box-shadow)}.aurora .segmented-strong-aurora,.ios .segmented-strong-ios,.md .segmented-strong-md,.segmented-strong{--f7-button-bg-color:transparent;--f7-button-hover-bg-color:var(--f7-segmented-strong-button-hover-bg-color);--f7-button-text-color:var(--f7-segmented-strong-button-text-color);--f7-button-font-weight:var(--f7-segmented-strong-button-font-weight);--f7-button-text-transform:var(--f7-segmented-strong-button-text-transform);--f7-button-pressed-bg-color:var(--f7-segmented-strong-button-pressed-bg-color);position:relative;background:var(--f7-segmented-strong-bg-color);border-radius:calc(var(--f7-button-border-radius) + 2px);box-shadow:none;padding:var(--f7-segmented-strong-padding);overflow:hidden}.aurora .segmented-strong-aurora .button,.ios .segmented-strong-ios .button,.md .segmented-strong-md .button,.segmented-strong .button{z-index:1;transform:translate3d(0,0,0)}.aurora .segmented-strong-aurora .button,.aurora .segmented-strong-aurora .button:first-child,.aurora .segmented-strong-aurora .button:last-child,.ios .segmented-strong-ios .button,.ios .segmented-strong-ios .button:first-child,.ios .segmented-strong-ios .button:last-child,.md .segmented-strong-md .button,.md .segmented-strong-md .button:first-child,.md .segmented-strong-md .button:last-child,.segmented-strong .button,.segmented-strong .button:first-child,.segmented-strong .button:last-child{border-radius:var(--f7-button-border-radius)}.aurora .segmented-strong-aurora .button+.button,.ios .segmented-strong-ios .button+.button,.md .segmented-strong-md .button+.button,.segmented-strong .button+.button{margin-left:var(--f7-segmented-strong-between-buttons)}.aurora .segmented-strong-aurora .button.button-active,.aurora .segmented-strong-aurora .button.tab-link-active,.ios .segmented-strong-ios .button.button-active,.ios .segmented-strong-ios .button.tab-link-active,.md .segmented-strong-md .button.button-active,.md .segmented-strong-md .button.tab-link-active,.segmented-strong .button.button-active,.segmented-strong .button.tab-link-active{--f7-button-hover-bg-color:transparent;--f7-button-bg-color:transparent;--f7-button-text-color:var(--f7-segmented-strong-button-active-text-color);--f7-button-font-weight:var(--f7-segmented-strong-button-active-font-weight)}.aurora .segmented-strong-aurora .segmented-highlight,.ios .segmented-strong-ios .segmented-highlight,.md .segmented-strong-md .segmented-highlight,.segmented-strong .segmented-highlight{--f7-segmented-highlight-num:1;--f7-segmented-highlight-active:0;--f7-segmented-highlight-padding:calc(var(--f7-segmented-strong-padding) * 2);--f7-segmented-highlight-between:var(--f7-segmented-strong-between-buttons);--f7-segmented-highlight-width:calc((100% - var(--f7-segmented-highlight-padding) - var(--f7-segmented-highlight-between) * (var(--f7-segmented-highlight-num) - 1)) / var(--f7-segmented-highlight-num));position:absolute;background-color:var(--f7-segmented-strong-button-active-bg-color);border-radius:var(--f7-button-border-radius);box-shadow:var(--f7-segmented-strong-button-active-box-shadow);left:var(--f7-segmented-strong-padding);top:var(--f7-segmented-strong-padding);height:calc(100% - var(--f7-segmented-strong-padding) * 2);width:var(--f7-segmented-highlight-width);z-index:0;transform:translateX(calc(var(--f7-segmented-highlight-active) * 100% + var(--f7-segmented-highlight-active) * var(--f7-segmented-highlight-between)));transition:.2s}.button:nth-child(2)~.segmented-highlight{--f7-segmented-highlight-num:2}.button:nth-child(3)~.segmented-highlight{--f7-segmented-highlight-num:3}.button:nth-child(4)~.segmented-highlight{--f7-segmented-highlight-num:4}.button:nth-child(5)~.segmented-highlight{--f7-segmented-highlight-num:5}.button:nth-child(6)~.segmented-highlight{--f7-segmented-highlight-num:6}.button:nth-child(7)~.segmented-highlight{--f7-segmented-highlight-num:7}.button:nth-child(8)~.segmented-highlight{--f7-segmented-highlight-num:8}.button:nth-child(9)~.segmented-highlight{--f7-segmented-highlight-num:9}.button:nth-child(10)~.segmented-highlight{--f7-segmented-highlight-num:10}.button-active:nth-child(2)~.segmented-highlight,.tab-link-active:nth-child(2)~.segmented-highlight{--f7-segmented-highlight-active:1}.button-active:nth-child(3)~.segmented-highlight,.tab-link-active:nth-child(3)~.segmented-highlight{--f7-segmented-highlight-active:2}.button-active:nth-child(4)~.segmented-highlight,.tab-link-active:nth-child(4)~.segmented-highlight{--f7-segmented-highlight-active:3}.button-active:nth-child(5)~.segmented-highlight,.tab-link-active:nth-child(5)~.segmented-highlight{--f7-segmented-highlight-active:4}.button-active:nth-child(6)~.segmented-highlight,.tab-link-active:nth-child(6)~.segmented-highlight{--f7-segmented-highlight-active:5}.button-active:nth-child(7)~.segmented-highlight,.tab-link-active:nth-child(7)~.segmented-highlight{--f7-segmented-highlight-active:6}.button-active:nth-child(8)~.segmented-highlight,.tab-link-active:nth-child(8)~.segmented-highlight{--f7-segmented-highlight-active:7}.button-active:nth-child(9)~.segmented-highlight,.tab-link-active:nth-child(9)~.segmented-highlight{--f7-segmented-highlight-active:8}.button-active:nth-child(10)~.segmented-highlight,.tab-link-active:nth-child(10)~.segmented-highlight{--f7-segmented-highlight-active:9}.aurora .segmented-round-aurora,.ios .segmented-round-ios,.md .segmented-round-md,.segmented-round{border-radius:var(--f7-button-height)}.aurora .segmented-round-aurora .segmented-highlight,.ios .segmented-round-ios .segmented-highlight,.md .segmented-round-md .segmented-highlight,.segmented-round .segmented-highlight{border-radius:var(--f7-button-height)}.subnavbar .segmented{width:100%}.button-preloader{position:relative;--f7-preloader-color:var(--f7-button-text-color, var(--f7-theme-color))}.button-preloader:not(.button-large){--f7-preloader-size:calc(var(--f7-button-height) - 6px)}.button-preloader.button-fill{--f7-preloader-color:#fff}.button-preloader>span:not(.preloader){transition:.2s;display:inline-flex;align-items:center;align-content:center;justify-content:center;transform:scale(1)}.button-preloader>.preloader{position:absolute;left:50%;top:50%;transition:.2s;transition-property:opacity;opacity:0;visibility:hidden;margin-left:calc(-1 * var(--f7-preloader-size)/ 2);margin-top:calc(-1 * var(--f7-preloader-size)/ 2)}.button-preloader.button-loading>span:not(.preloader){opacity:0;transform:scale(0)}.button-preloader.button-loading>.preloader{opacity:1;visibility:visible}.ios .button{transition-duration:.1s}.ios .button-fill,.ios .button-fill-ios{--f7-button-pressed-bg-color:var(--f7-button-fill-pressed-bg-color, var(--f7-theme-color-tint))}.ios .button-small,.ios .button-small-ios{transition-duration:.2s}.md .button{transition-duration:.3s;transform:translate3d(0,0,0)}.md .button-fill,.md .button-fill-md{--f7-button-pressed-bg-color:var(--f7-button-fill-pressed-bg-color, var(--f7-theme-color-shade))}.aurora .button{transition-duration:.1s;transform:translate3d(0,0,0)}.aurora.device-desktop .button:not(.active-state):not(.no-hover):hover{background-color:var(--f7-button-hover-bg-color,rgba(var(--f7-theme-color-rgb),.07))}.aurora .button-fill,.aurora .button-fill-aurora{--f7-button-pressed-bg-color:var(--f7-button-fill-pressed-bg-color, var(--f7-theme-color-shade))}.aurora .button-active,.aurora .button-fill,.aurora .button-fill-aurora,.aurora .button.tab-link-active{--f7-button-hover-bg-color:var(--f7-button-fill-hover-bg-color, var(--f7-theme-color-tint))}:root{--f7-touch-ripple-black:rgba(0, 0, 0, 0.1);--f7-touch-ripple-white:rgba(255, 255, 255, 0.3);--f7-touch-ripple-color:var(--f7-touch-ripple-black)}.theme-dark{--f7-touch-ripple-color:var(--f7-touch-ripple-white)}.actions-button,.button,.checkbox,.dialog-button,.fab a,.item-link,.link,.list-button,.radio,.ripple,.speed-dial-buttons a,.tab-link{-webkit-user-select:none;-moz-user-select:none;user-select:none}.ripple-wave{left:0;top:0;position:absolute!important;border-radius:50%;pointer-events:none;z-index:-1;padding:0;margin:0;font-size:0;transform:translate3d(0px,0px,0) scale(0);background-color:var(--f7-touch-ripple-color);animation:touch-ripple-in .2s forwards}.ripple-wave.ripple-wave-out{transform:var(--f7-ripple-transform);animation:touch-ripple-out .3s forwards}.button-fill .ripple-wave,.menu .ripple-wave,.picker-calendar-day .ripple-wave{z-index:1}.checkbox .ripple-wave,.data-table .sortable-cell .ripple-wave,.radio .ripple-wave{z-index:0}[class*=ripple-color-]{--f7-touch-ripple-color:var(--f7-theme-color-ripple-color)}@keyframes touch-ripple-in{from{transform:translate3d(0px,0px,0) scale(0)}to{transform:var(--f7-ripple-transform)}}@keyframes touch-ripple-out{from{opacity:1}to{opacity:0}}.f7-icons,.material-icons{width:1em;height:1em}i.icon{display:inline-block;vertical-align:middle;background-size:100% auto;background-position:center;background-repeat:no-repeat;font-style:normal;position:relative}.icon-back:after,.icon-forward:after,.icon-next:after,.icon-prev:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px}.icon[class*=color-]{color:var(--f7-theme-color)}.ios .icon-back,.ios .icon-forward,.ios .icon-next,.ios .icon-prev{width:12px;height:20px;line-height:20px}.ios .icon-back:after,.ios .icon-forward:after,.ios .icon-next:after,.ios .icon-prev:after{line-height:inherit}.ios .icon-next:after,.ios .icon-prev:after{font-size:16px}.ios .icon-back:after,.ios .icon-prev:after{content:'chevron_left_ios'}.ios .icon-forward:after,.ios .icon-next:after{content:'chevron_right_ios'}.md .icon-back,.md .icon-forward,.md .icon-next,.md .icon-prev{width:24px;height:24px}.md .icon-back:after,.md .icon-forward:after,.md .icon-next:after,.md .icon-prev:after{line-height:1.2}.md .icon-back:after{content:'arrow_left_md'}.md .icon-forward:after{content:'arrow_right_md'}.md .icon-next:after{content:'chevron_right_md'}.md .icon-prev:after{content:'chevron_left_md'}.aurora .f7-icons,.aurora .material-icons{font-size:24px}.aurora .icon-back,.aurora .icon-forward,.aurora .icon-next,.aurora .icon-prev{width:12px;height:20px;line-height:20px}.aurora .icon-back:after,.aurora .icon-forward:after,.aurora .icon-next:after,.aurora .icon-prev:after{line-height:inherit}.aurora .icon-next:after,.aurora .icon-prev:after{font-size:16px}.aurora .icon-back:after,.aurora .icon-prev:after{content:'chevron_left_ios'}.aurora .icon-forward:after,.aurora .icon-next:after{content:'chevron_right_ios'}.custom-modal-backdrop{z-index:10500}.actions-backdrop,.custom-modal-backdrop,.dialog-backdrop,.fab-backdrop,.popover-backdrop,.popup-backdrop,.preloader-backdrop,.sheet-backdrop{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.4);z-index:13000;visibility:hidden;opacity:0;transition-duration:.4s}.actions-backdrop.not-animated,.custom-modal-backdrop.not-animated,.dialog-backdrop.not-animated,.fab-backdrop.not-animated,.popover-backdrop.not-animated,.popup-backdrop.not-animated,.preloader-backdrop.not-animated,.sheet-backdrop.not-animated{transition-duration:0s}.actions-backdrop.backdrop-in,.custom-modal-backdrop.backdrop-in,.dialog-backdrop.backdrop-in,.fab-backdrop.backdrop-in,.popover-backdrop.backdrop-in,.popup-backdrop.backdrop-in,.preloader-backdrop.backdrop-in,.sheet-backdrop.backdrop-in{visibility:visible;opacity:1}:root{--f7-appbar-shadow-image:none}.ios{--f7-appbar-height:44px;--f7-appbar-inner-padding-left:8px;--f7-appbar-inner-padding-right:8px}.md{--f7-appbar-height:48px;--f7-appbar-inner-padding-left:16px;--f7-appbar-inner-padding-right:16px}.aurora{--f7-appbar-height:64px;--f7-appbar-inner-padding-left:16px;--f7-appbar-inner-padding-right:16px}.appbar{position:relative;left:0;top:0;width:100%;z-index:500;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box;margin:0;transform:translate3d(0,0,0);height:calc(var(--f7-appbar-height) + var(--f7-safe-area-top));background-image:var(--f7-appbar-bg-image,var(--f7-bars-bg-image));background-color:var(--f7-appbar-bg-color,var(--f7-bars-bg-color));color:var(--f7-appbar-text-color,var(--f7-bars-text-color));font-size:var(--f7-appbar-font-size);z-index:7000}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .appbar{background-color:rgba(var(--f7-appbar-bg-color-rgb,var(--f7-bars-bg-color-rgb)),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.appbar .panel~.appbar{z-index:5500}.appbar a{color:var(--f7-appbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.appbar a.link{display:flex;justify-content:flex-start;line-height:var(--f7-appbar-link-line-height, var(--f7-appbar-height));height:var(--f7-appbar-link-height,var(--f7-appbar-height))}.appbar .center,.appbar .left,.appbar .right{display:flex;align-items:center}.appbar.no-border:after,.appbar.no-hairline:after{display:none!important}.appbar.no-border .title-large:after,.appbar.no-hairline .title-large:after{display:none!important}.appbar.no-shadow:before{display:none!important}.appbar:after,.appbar:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}.appbar:after{content:'';position:absolute;background-color:var(--f7-appbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.appbar:before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-appbar-shadow-image)}.appbar:after{z-index:1}.appbar~*{--f7-appbar-app-offset:calc(var(--f7-appbar-height) + var(--f7-appbar-extra-offset, 0px) + var(--f7-safe-area-top))}.appbar~.appbar,.appbar~.view,.appbar~.views{--f7-safe-area-top:0px}.appbar~.panel .page,.appbar~.panel .page-content,.appbar~.panel .view{--f7-safe-area-top:0px}.appbar-inner{position:absolute;left:0;top:var(--f7-safe-area-top);width:100%;height:var(--f7-appbar-height);display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;padding:0 calc(var(--f7-appbar-inner-padding-right) + var(--f7-safe-area-right)) 0 calc(var(--f7-appbar-inner-padding-left) + var(--f7-safe-area-left))}.appbar-inner.stacked{display:none}:root{--f7-dialog-button-text-color:var(--f7-theme-color);--f7-dialog-button-text-align:center;--f7-dialog-input-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-dialog-text-color:#fff}.ios{--f7-dialog-box-shadow:none;--f7-dialog-width:270px;--f7-dialog-inner-padding:16px;--f7-dialog-border-radius:13px;--f7-dialog-text-align:center;--f7-dialog-font-size:14px;--f7-dialog-title-text-color:inherit;--f7-dialog-title-font-size:18px;--f7-dialog-title-font-weight:600;--f7-dialog-title-line-height:inherit;--f7-dialog-button-font-size:17px;--f7-dialog-button-height:44px;--f7-dialog-button-letter-spacing:0;--f7-dialog-button-font-weight:400;--f7-dialog-button-text-transform:none;--f7-dialog-input-border-radius:4px;--f7-dialog-input-font-size:14px;--f7-dialog-input-height:32px;--f7-dialog-input-border-width:1px;--f7-dialog-input-placeholder-color:#a9a9a9;--f7-dialog-preloader-size:34px;--f7-dialog-bg-color:rgba(255, 255, 255, 0.95);--f7-dialog-bg-color-rgb:255,255,255;--f7-dialog-text-color:#000;--f7-dialog-button-pressed-bg-color:rgba(0, 0, 0, 0.1);--f7-dialog-input-border-color:rgba(0, 0, 0, 0.3);--f7-dialog-border-divider-color:rgba(0, 0, 0, 0.2)}.ios .theme-dark,.ios.theme-dark{--f7-dialog-bg-color:rgba(45, 45, 45, 0.95);--f7-dialog-bg-color-rgb:45,45,45;--f7-dialog-button-pressed-bg-color:rgba(0, 0, 0, 0.2);--f7-dialog-border-divider-color:rgba(255, 255, 255, 0.15);--f7-dialog-input-border-color:rgba(255, 255, 255, 0.15);--f7-dialog-input-bg-color:rgba(0, 0, 0, 0.5)}.md{--f7-dialog-box-shadow:var(--f7-elevation-24);--f7-dialog-width:280px;--f7-dialog-inner-padding:24px;--f7-dialog-border-radius:4px;--f7-dialog-text-align:left;--f7-dialog-font-size:16px;--f7-dialog-title-font-size:20px;--f7-dialog-title-font-weight:500;--f7-dialog-title-line-height:1.3;--f7-dialog-button-font-size:14px;--f7-dialog-button-height:36px;--f7-dialog-button-letter-spacing:0.05em;--f7-dialog-button-font-weight:500;--f7-dialog-button-text-transform:uppercase;--f7-dialog-button-pressed-bg-color:rgba(var(--f7-theme-color-rgb), 0.15);--f7-dialog-input-border-radius:0px;--f7-dialog-input-font-size:16px;--f7-dialog-input-height:36px;--f7-dialog-input-border-color:transparent;--f7-dialog-input-border-width:0px;--f7-dialog-preloader-size:32px;--f7-dialog-bg-color:#fff;--f7-dialog-text-color:rgba(0, 0, 0, 0.54);--f7-dialog-title-text-color:#212121;--f7-dialog-input-placeholder-color:rgba(0, 0, 0, 0.35)}.md .theme-dark,.md.theme-dark{--f7-dialog-bg-color:#1c1c1d;--f7-dialog-title-text-color:#fff;--f7-dialog-input-bg-color:transparent;--f7-dialog-input-placeholder-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-dialog-box-shadow:0 0 20px 0 rgba(0, 0, 0, 0.15),0 25px 30px 0 rgba(0,0,0,0.35);--f7-dialog-width:300px;--f7-dialog-inner-padding:20px;--f7-dialog-border-radius:8px;--f7-dialog-text-align:left;--f7-dialog-font-size:14px;--f7-dialog-title-font-size:18px;--f7-dialog-title-font-weight:700;--f7-dialog-title-line-height:inherit;--f7-dialog-button-font-size:14px;--f7-dialog-button-height:36px;--f7-dialog-button-letter-spacing:0;--f7-dialog-button-font-weight:600;--f7-dialog-button-text-transform:uppercase;--f7-dialog-input-border-radius:8px;--f7-dialog-input-font-size:16px;--f7-dialog-input-height:32px;--f7-dialog-input-border-width:1px;--f7-dialog-preloader-size:24px;--f7-dialog-bg-color:#fff;--f7-dialog-title-text-color:inherit;--f7-dialog-text-color:#000;--f7-dialog-button-text-color:#fff;--f7-dialog-input-border-color:rgba(0, 0, 0, 0.2);--f7-dialog-input-placeholder-color:rgba(0, 0, 0, 0.32)}.aurora .theme-dark,.aurora.theme-dark{--f7-dialog-bg-color:#1c1c1d;--f7-dialog-title-text-color:#fff;--f7-dialog-input-bg-color:rgba(0, 0, 0, 0.25);--f7-dialog-input-placeholder-color:rgba(255, 255, 255, 0.54);--f7-dialog-input-border-color:rgba(255, 255, 255, 0.15)}.dialog{position:absolute;z-index:13500;left:50%;margin-top:0;top:50%;overflow:hidden;opacity:0;transform:translate3d(0,-50%,0) scale(1.185);transition-property:transform,opacity;display:none;transition-duration:.4s;box-shadow:var(--f7-dialog-box-shadow);width:var(--f7-dialog-width);margin-left:calc(-1 * var(--f7-dialog-width)/ 2);border-radius:var(--f7-dialog-border-radius);text-align:var(--f7-dialog-text-align);color:var(--f7-dialog-text-color);font-size:var(--f7-dialog-font-size);background:var(--f7-dialog-bg-color);will-change:transform,opacity}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .dialog{background-color:rgba(var(--f7-dialog-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}.dialog.modal-in{opacity:1;transform:translate3d(0,-50%,0) scale(1)}.dialog.modal-out{opacity:0;z-index:13499}.dialog.not-animated{transition-duration:0s}.dialog-inner{position:relative;padding:var(--f7-dialog-inner-padding)}.dialog-title{color:var(--f7-dialog-title-text-color);font-size:var(--f7-dialog-title-font-size);font-weight:var(--f7-dialog-title-font-weight);line-height:var(--f7-dialog-title-line-height)}.dialog-buttons{position:relative;display:flex}.dialog-buttons-vertical .dialog-buttons{display:block;height:auto!important}.dialog-button{box-sizing:border-box;overflow:hidden;position:relative;white-space:nowrap;text-overflow:ellipsis;color:var(--f7-dialog-button-text-color);font-size:var(--f7-dialog-button-font-size);height:var(--f7-dialog-button-height);line-height:var(--f7-dialog-button-height);letter-spacing:var(--f7-dialog-button-letter-spacing);text-align:var(--f7-dialog-button-text-align);font-weight:var(--f7-dialog-button-font-weight);text-transform:var(--f7-dialog-button-text-transform);display:block;cursor:pointer}.dialog-button.active-state{background-color:var(--f7-dialog-button-pressed-bg-color)}.dialog-no-buttons .dialog-buttons{display:none}.dialog-input-field{position:relative}input.dialog-input[type]{box-sizing:border-box;margin:0;margin-top:15px;border-radius:var(--f7-dialog-input-border-radius);-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;display:block;font-family:inherit;box-shadow:none;font-size:var(--f7-dialog-input-font-size);height:var(--f7-dialog-input-height);background-color:var(--f7-dialog-input-bg-color);border:var(--f7-dialog-input-border-width) solid var(--f7-dialog-input-border-color)}input.dialog-input[type]::-webkit-input-placeholder{color:var(--f7-dialog-input-placeholder-color)}input.dialog-input[type]::placeholder{color:var(--f7-dialog-input-placeholder-color)}.dialog-input-double input.dialog-input{border-radius:var(--f7-dialog-input-border-radius) var(--f7-dialog-input-border-radius) 0 0}.dialog-input-double+.dialog-input-double input.dialog-input{border-radius:0 0 var(--f7-dialog-input-border-radius) var(--f7-dialog-input-border-radius)}.dialog-preloader .preloader{--f7-preloader-size:var(--f7-dialog-preloader-size)}html.with-modal-dialog .page-content{overflow:hidden;-webkit-overflow-scrolling:auto}.ios .dialog.modal-out{transform:translate3d(0,-50%,0) scale(1)}.ios .dialog-inner{border-radius:var(--f7-dialog-border-radius) var(--f7-dialog-border-radius) 0 0}.ios .dialog-inner:after{content:'';position:absolute;background-color:var(--f7-dialog-border-divider-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.ios .dialog-title+.dialog-text{margin-top:5px}.ios .dialog-buttons{height:44px;justify-content:center}.ios .dialog-button{width:100%;padding:0 5px;-webkit-box-flex:1;-ms-flex:1}.ios .dialog-button:after{content:'';position:absolute;background-color:var(--f7-dialog-border-divider-color);display:block;z-index:15;top:0;right:0;bottom:auto;left:auto;width:1px;height:100%;transform-origin:100% 50%;transform:scaleX(calc(1 / var(--f7-device-pixel-ratio)))}.ios .dialog-button:first-child{border-radius:0 0 0 var(--f7-dialog-border-radius)}.ios .dialog-button:last-child{border-radius:0 0 var(--f7-dialog-border-radius) 0}.ios .dialog-button:last-child:after{display:none!important}.ios .dialog-button:first-child:last-child{border-radius:0 0 var(--f7-dialog-border-radius) var(--f7-dialog-border-radius)}.ios .dialog-button.dialog-button-bold{font-weight:500}.ios .dialog-button[class*=color-]{--f7-dialog-button-text-color:var(--f7-theme-color)}.ios .dialog-buttons-vertical .dialog-buttons{height:auto}.ios .dialog-buttons-vertical .dialog-button{border-radius:0}.ios .dialog-buttons-vertical .dialog-button:after{content:'';position:absolute;background-color:var(--f7-dialog-border-divider-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.ios .dialog-buttons-vertical .dialog-button:last-child{border-radius:0 0 var(--f7-dialog-border-radius) var(--f7-dialog-border-radius)}.ios .dialog-buttons-vertical .dialog-button:last-child:after{display:none!important}.ios .dialog-no-buttons .dialog-inner{border-radius:var(--f7-dialog-border-radius)}.ios .dialog-no-buttons .dialog-inner:after{display:none!important}.ios .dialog-input-field{margin-top:15px}.ios .dialog-input{padding:0 5px}.ios .dialog-input+.dialog-input{margin-top:5px}.ios .dialog-input-double+.dialog-input-double{margin-top:0}.ios .dialog-input-double+.dialog-input-double .dialog-input{border-top:0;margin-top:0}.ios .dialog-preloader .dialog-text~.preloader,.ios .dialog-preloader .dialog-title~.preloader{margin-top:15px}.ios .dialog-progress .dialog-text~.progressbar,.ios .dialog-progress .dialog-text~.progressbar-infinite,.ios .dialog-progress .dialog-title~.progressbar,.ios .dialog-progress .dialog-title~.progressbar-infinite{margin-top:15px}.md .dialog.modal-out{transform:translate3d(0,-50%,0) scale(.815)}.md .dialog-title+.dialog-text{margin-top:20px}.md .dialog-text{line-height:1.5}.md .dialog-buttons{height:48px;padding:6px 8px;overflow:hidden;box-sizing:border-box;justify-content:flex-end}.md .dialog-button{--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.25);border-radius:4px;min-width:64px;padding:0 8px;border:none;transition-duration:.3s;transform:translate3d(0,0,0)}.md .dialog-button.dialog-button-bold{font-weight:700}.md .dialog-button+.dialog-button{margin-left:4px}.md .dialog-button[class*=color-]{--f7-dialog-button-text-color:var(--f7-theme-color)}.md .dialog-buttons-vertical .dialog-buttons{display:flex;flex-direction:column;align-items:flex-end}.md .dialog-buttons-vertical .dialog-button+.dialog-button{margin-top:12px}.md .dialog-input{padding:0;transition-duration:.2s;position:relative}.md .dialog-input+.dialog-input{margin-top:16px}.md .dialog-preloader .dialog-inner,.md .dialog-preloader .dialog-title,.md .dialog-progress .dialog-inner,.md .dialog-progress .dialog-title{text-align:center}.md .dialog-preloader .dialog-text~.preloader,.md .dialog-preloader .dialog-title~.preloader{margin-top:20px}.md .dialog-progress .dialog-text~.progressbar,.md .dialog-progress .dialog-text~.progressbar-infinite,.md .dialog-progress .dialog-title~.progressbar,.md .dialog-progress .dialog-title~.progressbar-infinite{margin-top:16px}.aurora .dialog.modal-out{transform:translate3d(0,-50%,0) scale(.815)}.aurora .dialog-title+.dialog-text{margin-top:16px}.aurora .dialog-text{line-height:1.5}.aurora .dialog-buttons{padding:var(--f7-dialog-inner-padding);padding-top:0;overflow:hidden;box-sizing:border-box;justify-content:flex-end}.aurora .dialog-button{border-radius:8px;min-width:64px;padding:0 10px;border:none;transition-duration:.3s;transform:translate3d(0,0,0);background:var(--f7-theme-color)}.aurora .dialog-button.dialog-button-bold{font-weight:600}.aurora .dialog-button+.dialog-button{margin-left:16px}.aurora .dialog-button.active-state{background-color:var(--f7-dialog-button-pressed-bg-color,var(--f7-theme-color-shade))}.aurora.device-desktop .dialog-button:not(.active-state):not(.no-hover):hover{background-color:var(--f7-dialog-button-hover-bg-color,var(--f7-theme-color-tint))}.aurora .dialog-buttons-vertical .dialog-buttons{display:flex;flex-direction:column;align-items:stretch}.aurora .dialog-buttons-vertical .dialog-button{margin-left:0;flex-shrink:0}.aurora .dialog-buttons-vertical .dialog-button+.dialog-button{margin-top:8px}.aurora div.dialog-input-field{margin-top:16px}.aurora div.dialog-input-field input.dialog-input{margin-top:0}.aurora div.dialog-input-field.input:after{display:none!important}.aurora .dialog-input{padding:0 8px;transition-duration:.2s;position:relative}.aurora .dialog-input+.dialog-input{margin-top:8px}.aurora .dialog-input-double+.dialog-input-double{margin-top:0}.aurora .dialog-input-double+.dialog-input-double .dialog-input{border-top:0;margin-top:0}.aurora .dialog-preloader .dialog-inner,.aurora .dialog-preloader .dialog-title,.aurora .dialog-progress .dialog-inner,.aurora .dialog-progress .dialog-title{text-align:center}.aurora .dialog-preloader .dialog-text~.preloader,.aurora .dialog-preloader .dialog-title~.preloader{margin-top:16px}.aurora .dialog-progress .dialog-text~.progressbar,.aurora .dialog-progress .dialog-text~.progressbar-infinite,.aurora .dialog-progress .dialog-title~.progressbar,.aurora .dialog-progress .dialog-title~.progressbar-infinite{margin-top:16px}:root{--f7-popup-border-radius:0px;--f7-popup-tablet-width:630px;--f7-popup-tablet-height:630px;--f7-popup-transition-duration:400ms;--f7-popup-push-border-radius:10px;--f7-popup-push-offset:var(--f7-safe-area-top)}.ios{--f7-popup-tablet-border-radius:5px;--f7-popup-box-shadow:none}.md{--f7-popup-tablet-border-radius:4px;--f7-popup-box-shadow:0px 20px 44px rgba(0, 0, 0, 0.5)}.aurora{--f7-popup-tablet-border-radius:8px;--f7-popup-box-shadow:0px 20px 44px rgba(0, 0, 0, 0.5)}.popup-backdrop{z-index:10500}.popup{position:absolute;left:0;top:0px;width:100%;height:100%;display:none;box-sizing:border-box;transition-property:transform;transform:translate3d(0,100vh,0);background:#fff;z-index:11000;overflow:hidden;border-radius:var(--f7-popup-border-radius)}.popup.theme-dark,.theme-dark .popup{background:#000}.popup.modal-in,.popup.modal-out{transition-duration:var(--f7-popup-transition-duration)}.popup.not-animated{transition-duration:0s}.popup.modal-in{display:block;transform:translate3d(0,0,0)}.popup.modal-out{transform:translate3d(0,100vh,0)}.popup.swipe-close-to-top.modal-out{transform:translate3d(0,-100vh,0)}@media (min-width:630px) and (min-height:630px){.popup:not(.popup-tablet-fullscreen){--f7-safe-area-top:0px;--f7-safe-area-bottom:0px;width:var(--f7-popup-tablet-width);height:var(--f7-popup-tablet-height);left:50%;top:50%;margin-left:calc(-1 * var(--f7-popup-tablet-width)/ 2);margin-top:calc(-1 * var(--f7-popup-tablet-height)/ 2);transform:translate3d(0,100vh,0);box-shadow:var(--f7-popup-box-shadow);border-radius:var(--f7-popup-tablet-border-radius,var(--f7-popup-border-radius))}.popup:not(.popup-tablet-fullscreen).modal-in{transform:translate3d(0,0,0)}.popup:not(.popup-tablet-fullscreen).modal-out{transform:translate3d(0,100vh,0)}.popup:not(.popup-tablet-fullscreen).swipe-close-to-top.modal-out{transform:translate3d(0,-100vh,0)}.popup:not(.popup-tablet-fullscreen).popup-behind{transform:translate3d(0,0,0) scale(.9)}.popup:not(.popup-tablet-fullscreen).popup-behind.modal-out{transform:translate3d(0,100vh,0) scale(.9)}}html.with-modal-popup .framework7-root>.panel .page-content,html.with-modal-popup .framework7-root>.view .page-content,html.with-modal-popup .framework7-root>.views .page-content{overflow:hidden;-webkit-overflow-scrolling:auto}html.with-modal-popup-push .popup-push,html.with-modal-popup-push-closing .popup-push{top:calc(var(--f7-popup-push-offset) + 10px);height:calc(100% - var(--f7-popup-push-offset) - 10px);border-radius:var(--f7-popup-push-border-radius) var(--f7-popup-push-border-radius) 0 0;--f7-safe-area-top:0px}html.with-modal-popup-push .popup-push .page,html.with-modal-popup-push .popup-push .view,html.with-modal-popup-push-closing .popup-push .page,html.with-modal-popup-push-closing .popup-push .view{--f7-safe-area-top:0px}html.with-modal-popup-push .framework7-root,html.with-modal-popup-push-closing .framework7-root{background:#000}html.with-modal-popup-push .framework7-root>.view,html.with-modal-popup-push .framework7-root>.views,html.with-modal-popup-push-closing .framework7-root>.view,html.with-modal-popup-push-closing .framework7-root>.views{transition-duration:var(--f7-popup-transition-duration)}html.with-modal-popup-push .framework7-root>.view.theme-dark:after,html.with-modal-popup-push .framework7-root>.views.theme-dark:after,html.with-modal-popup-push .theme-dark .framework7-root>.view:after,html.with-modal-popup-push .theme-dark .framework7-root>.views:after,html.with-modal-popup-push .theme-dark.framework7-root>.view:after,html.with-modal-popup-push .theme-dark.framework7-root>.views:after,html.with-modal-popup-push-closing .framework7-root>.view.theme-dark:after,html.with-modal-popup-push-closing .framework7-root>.views.theme-dark:after,html.with-modal-popup-push-closing .theme-dark .framework7-root>.view:after,html.with-modal-popup-push-closing .theme-dark .framework7-root>.views:after,html.with-modal-popup-push-closing .theme-dark.framework7-root>.view:after,html.with-modal-popup-push-closing .theme-dark.framework7-root>.views:after,html.with-modal-popup-push-closing.theme-dark .framework7-root>.view:after,html.with-modal-popup-push-closing.theme-dark .framework7-root>.views:after,html.with-modal-popup-push.theme-dark .framework7-root>.view:after,html.with-modal-popup-push.theme-dark .framework7-root>.views:after{content:'';position:absolute;pointer-events:none;left:0;top:0;width:100%;height:100%;background:rgba(255,255,255,.1);z-index:13000;border-radius:var(--f7-popup-push-border-radius) var(--f7-popup-push-border-radius) 0 0;opacity:1;animation:popup-dark-push-overlay-fade-in var(--f7-popup-transition-duration) forwards}html.with-modal-popup-push .framework7-root>.view,html.with-modal-popup-push .framework7-root>.views{border-radius:var(--f7-popup-push-border-radius) var(--f7-popup-push-border-radius) 0 0;transform:translate3d(0,0,0px) scale(var(--f7-popup-push-scale,1))!important}html.with-modal-popup-push .popup:after{content:'';pointer-events:none;position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.4);z-index:13000;transition-duration:var(--f7-popup-transition-duration);border-radius:var(--f7-popup-push-border-radius) var(--f7-popup-push-border-radius) 0 0;opacity:0}html.with-modal-popup-push .theme-dark .popup:after,html.with-modal-popup-push .theme-dark.popup:after,html.with-modal-popup-push.theme-dark .popup:after{background:rgba(255,255,255,.05)}html.with-modal-popup-push .popup-behind{transform:translate3d(0,0px,0px) scale(var(--f7-popup-push-scale,1))}html.with-modal-popup-push .popup-behind.modal-out{transform:translate3d(0,100vh,0) scale(var(--f7-popup-push-scale,1))}html.with-modal-popup-push .popup-behind:not(.popup-push){border-radius:var(--f7-popup-push-border-radius) var(--f7-popup-push-border-radius) 0 0}html.with-modal-popup-push .popup-behind.popup-push{transform:translate3d(0,calc(0px - var(--f7-popup-push-offset) - 10px),0px) scale(var(--f7-popup-push-scale,1))}html.with-modal-popup-push .popup-behind.popup-push.modal-out{transform:translate3d(0,calc(0px - var(--f7-popup-push-offset) - 10px + 100vh),0px) scale(var(--f7-popup-push-scale,1))}html.with-modal-popup-push .popup-behind:after{opacity:1;pointer-events:auto}html.with-modal-popup-push-closing .framework7-root>.view.theme-dark:after,html.with-modal-popup-push-closing .framework7-root>.views.theme-dark:after,html.with-modal-popup-push-closing .theme-dark .framework7-root>.view:after,html.with-modal-popup-push-closing .theme-dark .framework7-root>.views:after,html.with-modal-popup-push-closing .theme-dark.framework7-root>.view:after,html.with-modal-popup-push-closing .theme-dark.framework7-root>.views:after,html.with-modal-popup-push-closing.theme-dark .framework7-root>.view:after,html.with-modal-popup-push-closing.theme-dark .framework7-root>.views:after{animation:popup-dark-push-overlay-fade-out var(--f7-popup-transition-duration) forwards}@keyframes popup-dark-push-overlay-fade-in{from{opacity:0}to{opacity:1}}@keyframes popup-dark-push-overlay-fade-out{from{opacity:1}to{opacity:0}}:root{--f7-login-screen-blocks-max-width:480px;--f7-login-screen-title-text-align:center;--f7-login-screen-title-text-color:inherit;--f7-login-screen-title-letter-spacing:0;--f7-login-screen-title-font-weight:600;--f7-login-screen-title-font-size:28px;--f7-login-screen-content-bg-color:#fff;--f7-login-screen-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-login-screen-bg-color:#121212;--f7-login-screen-content-bg-color:#121212}.ios{--f7-login-screen-blocks-margin-vertical:25px}.ios .theme-dark,.ios.theme-dark{--f7-login-screen-bg-color:#000;--f7-login-screen-content-bg-color:#000}.md{--f7-login-screen-blocks-margin-vertical:24px}.aurora{--f7-login-screen-blocks-margin-vertical:16px}.login-screen{position:absolute;left:0;top:0;width:100%;height:100%;display:none;box-sizing:border-box;transition-property:transform;transform:translate3d(0,100vh,0);background:var(--f7-login-screen-bg-color);z-index:11000}.login-screen.modal-in,.login-screen.modal-out{transition-duration:.4s}.login-screen.not-animated{transition-duration:0s}.login-screen.modal-in{display:block;transform:translate3d(0,0,0)}.login-screen.modal-out{transform:translate3d(0,100%,0)}.login-screen .page,.login-screen-content,.login-screen-page{background:var(--f7-login-screen-content-bg-color)}.login-screen-content .list-button,.login-screen-page .list-button{text-align:center;color:var(--f7-login-screen-list-button-text-color,var(--f7-theme-color))}.login-screen-content .block,.login-screen-content .list,.login-screen-content .login-screen-title,.login-screen-page .block,.login-screen-page .list,.login-screen-page .login-screen-title{margin:var(--f7-login-screen-blocks-margin-vertical) auto}.login-screen-content .block,.login-screen-content .block-footer,.login-screen-content .block-header,.login-screen-content .list,.login-screen-content .login-screen-title,.login-screen-page .block,.login-screen-page .block-footer,.login-screen-page .block-header,.login-screen-page .list,.login-screen-page .login-screen-title{max-width:var(--f7-login-screen-blocks-max-width)}.login-screen-content .list ul,.login-screen-page .list ul{background:0 0}.login-screen-content .list ul:after,.login-screen-content .list ul:before,.login-screen-page .list ul:after,.login-screen-page .list ul:before{display:none!important}.login-screen-content .block-footer,.login-screen-content .block-header,.login-screen-page .block-footer,.login-screen-page .block-header{text-align:center;margin-left:auto;margin-right:auto}.login-screen-title{text-align:var(--f7-login-screen-title-text-align);font-size:var(--f7-login-screen-title-font-size);font-weight:var(--f7-login-screen-title-font-weight);color:var(--f7-login-screen-title-text-color);letter-spacing:var(--f7-login-screen-title-letter-spacing)}.login-screen-page,.login-screen>.page,.login-screen>.view>.page{display:flex;flex-direction:column}.login-screen-page .login-screen-content,.login-screen-page .page-content,.login-screen>.page .login-screen-content,.login-screen>.page .page-content,.login-screen>.view>.page .login-screen-content,.login-screen>.view>.page .page-content{margin-top:auto;margin-bottom:auto;height:auto;max-height:100%;width:100%}.theme-dark .login-screen-content .block-strong,.theme-dark .login-screen-content .list ul,.theme-dark .login-screen-page .block-strong,.theme-dark .login-screen-page .list ul,.theme-dark.login-screen-page .block-strong,.theme-dark.login-screen-page .list ul{background-color:transparent}:root{--f7-popover-width:260px}.ios{--f7-popover-border-radius:13px;--f7-popover-box-shadow:none;--f7-popover-actions-icon-size:28px;--f7-popover-bg-color:rgba(255, 255, 255, 0.95);--f7-popover-actions-label-text-color:rgba(0, 0, 0, 0.45)}.ios .theme-dark,.ios.theme-dark{--f7-popover-bg-color:rgba(30, 30, 30, 0.95);--f7-popover-actions-label-text-color:rgba(255, 255, 255, 0.55)}.md{--f7-popover-border-radius:4px;--f7-popover-box-shadow:var(--f7-elevation-8);--f7-popover-actions-icon-size:24px;--f7-popover-bg-color:#fff;--f7-popover-actions-label-text-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-popover-bg-color:#1c1c1d;--f7-popover-actions-label-text-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-popover-border-radius:8px;--f7-popover-box-shadow:var(--f7-elevation-8);--f7-popover-actions-icon-size:24px;--f7-popover-bg-color:#fff;--f7-popover-actions-label-text-color:rgba(0, 0, 0, 0.6)}.aurora .theme-dark,.aurora.theme-dark{--f7-popover-bg-color:#1c1c1d;--f7-popover-actions-label-text-color:rgba(255, 255, 255, 0.6)}.popover{width:var(--f7-popover-width);z-index:13500;margin:0;top:0;opacity:0;left:0;position:absolute;display:none;transition-duration:.3s;background-color:var(--f7-popover-bg-color);border-radius:var(--f7-popover-border-radius);box-shadow:var(--f7-popover-box-shadow);will-change:transform,opacity}.popover .list{margin:0}.popover .list ul{background:0 0}.popover .list:first-child ul:before{display:none!important}.popover .list:last-child ul:after{display:none!important}.popover .list:first-child ul{border-radius:var(--f7-popover-border-radius) var(--f7-popover-border-radius) 0 0}.popover .list:first-child li:first-child,.popover .list:first-child li:first-child a,.popover .list:first-child li:first-child>label{border-radius:var(--f7-popover-border-radius) var(--f7-popover-border-radius) 0 0}.popover .list:last-child ul{border-radius:0 0 var(--f7-popover-border-radius) var(--f7-popover-border-radius)}.popover .list:last-child li:last-child,.popover .list:last-child li:last-child a,.popover .list:last-child li:last-child>label{border-radius:0 0 var(--f7-popover-border-radius) var(--f7-popover-border-radius)}.popover .list:first-child:last-child li:first-child:last-child,.popover .list:first-child:last-child li:first-child:last-child a,.popover .list:first-child:last-child li:first-child:last-child>label,.popover .list:first-child:last-child ul{border-radius:var(--f7-popover-border-radius)}.popover .list+.list{margin-top:var(--f7-list-margin-vertical)}.popover.modal-in{opacity:1}.popover.not-animated{transition-duration:0s}.popover-inner{overflow:auto;-webkit-overflow-scrolling:touch}.popover-from-actions .item-link i.icon{width:var(--f7-popover-actions-icon-size);height:var(--f7-popover-actions-icon-size);font-size:var(--f7-popover-actions-icon-size)}.popover-from-actions-bold{font-weight:600}.popover-from-actions-label{line-height:1.3;position:relative;display:flex;align-items:center;padding:var(--f7-actions-label-padding);color:var(--f7-popover-actions-label-text-color);font-size:var(--f7-actions-label-font-size);justify-content:var(--f7-actions-label-justify-content)}.popover-from-actions-label:after{content:'';position:absolute;background-color:var(--f7-list-item-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.popover-from-actions-label:last-child:after{display:none!important}.ios .popover{transform:none;transition-property:opacity}.ios .popover-angle{width:26px;height:26px;position:absolute;left:-26px;top:0;z-index:100;overflow:hidden}.ios .popover-angle:after{content:'';background:var(--f7-popover-bg-color);width:26px;height:26px;position:absolute;left:0;top:0;border-radius:3px;transform:rotate(45deg)}.ios .popover-angle.on-left{left:-26px}.ios .popover-angle.on-left:after{left:19px;top:0}.ios .popover-angle.on-right{left:100%}.ios .popover-angle.on-right:after{left:-19px;top:0}.ios .popover-angle.on-top{left:0;top:-26px}.ios .popover-angle.on-top:after{left:0;top:19px}.ios .popover-angle.on-bottom{left:0;top:100%}.ios .popover-angle.on-bottom:after{left:0;top:-19px}.md .popover{transform:scale(.85,.6);transition-property:opacity,transform}.md .popover.modal-in{opacity:1;transform:scale(1)}.md .popover.modal-out{opacity:0;transform:scale(1)}.md .popover-on-top{transform-origin:center bottom}.md .popover-on-top.popover-on-right{transform-origin:left bottom}.md .popover-on-top.popover-on-left{transform-origin:right bottom}.md .popover-on-middle{transform-origin:center center}.md .popover-on-middle.popover-on-right{transform-origin:left center}.md .popover-on-middle.popover-on-left{transform-origin:right center}.md .popover-on-bottom{transform-origin:center top}.md .popover-on-bottom.popover-on-right{transform-origin:left top}.md .popover-on-bottom.popover-on-left{transform-origin:right top}.aurora .popover{transform:none;transition-property:opacity}.aurora .popover-angle{width:24px;height:24px;position:absolute;left:-24px;top:0;z-index:100;overflow:hidden}.aurora .popover-angle:after{content:'';background:var(--f7-popover-bg-color);width:24px;height:24px;position:absolute;left:0;top:0;border-radius:4px;transform:rotate(45deg)}.aurora .popover-angle.on-left{left:-24px}.aurora .popover-angle.on-left:after{left:17px;top:0}.aurora .popover-angle.on-right{left:100%}.aurora .popover-angle.on-right:after{left:-17px;top:0}.aurora .popover-angle.on-top{left:0;top:-24px}.aurora .popover-angle.on-top:after{left:0;top:17px}.aurora .popover-angle.on-bottom{left:0;top:100%}.aurora .popover-angle.on-bottom:after{left:0;top:-17px}:root{--f7-actions-grid-button-font-size:12px;--f7-actions-grid-button-text-color:#757575;--f7-actions-grid-button-icon-size:48px}:root .theme-dark,:root.theme-dark{--f7-actions-label-text-color:rgba(255, 255, 255, 0.55)}.ios{--f7-actions-border-radius:13px;--f7-actions-button-padding:0px;--f7-actions-button-text-align:center;--f7-actions-button-height:57px;--f7-actions-button-height-landscape:44px;--f7-actions-button-font-size:20px;--f7-actions-button-icon-size:28px;--f7-actions-button-justify-content:center;--f7-actions-label-padding:8px 10px;--f7-actions-label-font-size:13px;--f7-actions-label-justify-content:center;--f7-actions-group-border-color:transparent;--f7-actions-group-margin:8px;--f7-actions-bg-color:rgba(255, 255, 255, 0.95);--f7-actions-bg-color-rgb:255,255,255;--f7-actions-button-border-color:rgba(0, 0, 0, 0.2);--f7-actions-button-pressed-bg-color:rgba(230, 230, 230, 0.9);--f7-actions-button-pressed-bg-color-rgb:230,230,230;--f7-actions-label-text-color:#8a8a8a}.ios .theme-dark,.ios.theme-dark{--f7-actions-bg-color:rgba(45, 45, 45, 0.95);--f7-actions-bg-color-rgb:45,45,45;--f7-actions-button-border-color:rgba(255, 255, 255, 0.15);--f7-actions-button-pressed-bg-color:rgba(50, 50, 50, 0.9);--f7-actions-button-pressed-bg-color-rgb:50,50,50}.md{--f7-actions-border-radius:0px;--f7-actions-button-border-color:transparent;--f7-actions-button-padding:0 16px;--f7-actions-button-text-align:left;--f7-actions-button-height:48px;--f7-actions-button-height-landscape:48px;--f7-actions-button-font-size:16px;--f7-actions-button-icon-size:24px;--f7-actions-button-justify-content:space-between;--f7-actions-label-padding:12px 16px;--f7-actions-label-font-size:16px;--f7-actions-label-justify-content:flex-start;--f7-actions-group-margin:0px;--f7-actions-bg-color:#fff;--f7-actions-button-pressed-bg-color:#e5e5e5;--f7-actions-label-text-color:rgba(0, 0, 0, 0.54);--f7-actions-group-border-color:rgba(0, 0, 0, 0.12)}.md .theme-dark,.md.theme-dark{--f7-actions-bg-color:#202020;--f7-actions-button-pressed-bg-color:#2e2e2e;--f7-actions-group-border-color:rgba(255, 255, 255, 0.15)}.aurora{--f7-actions-border-radius:8px;--f7-actions-button-padding:0 16px;--f7-actions-button-text-align:center;--f7-actions-button-height:48px;--f7-actions-button-height-landscape:48px;--f7-actions-button-font-size:16px;--f7-actions-button-icon-size:24px;--f7-actions-button-justify-content:space-between;--f7-actions-label-padding:10px 16px;--f7-actions-label-font-size:14px;--f7-actions-label-justify-content:center;--f7-actions-group-margin:16px;--f7-actions-bg-color:#fff;--f7-actions-button-border-color:rgba(0, 0, 0, 0.12);--f7-actions-button-pressed-bg-color:#e5e5e5;--f7-actions-label-text-color:rgba(0, 0, 0, 0.5);--f7-actions-group-border-color:rgba(0, 0, 0, 0.1)}.aurora .theme-dark,.aurora.theme-dark{--f7-actions-bg-color:#202020;--f7-actions-button-border-color:rgba(255, 255, 255, 0.15);--f7-actions-button-pressed-bg-color:#2e2e2e;--f7-actions-group-border-color:rgba(255, 255, 255, 0.15)}.actions-modal{position:absolute;left:0;bottom:0;z-index:13500;width:100%;transform:translate3d(0,100%,0);display:none;max-height:100%;overflow:auto;-webkit-overflow-scrolling:touch;transition-property:transform;will-change:transform}.actions-modal.modal-in,.actions-modal.modal-out{transition-duration:.3s}.actions-modal.not-animated{transition-duration:0s}.actions-modal.modal-in{transform:translate3d(0,calc(-1 * var(--f7-safe-area-bottom)),0)}.actions-modal.modal-out{z-index:13499;transform:translate3d(0,100%,0)}@media (min-width:496px){.actions-modal{width:480px;left:50%;margin-left:-240px}}@media (orientation:landscape){.actions-modal{--f7-actions-button-height:var(--f7-actions-button-height-landscape)}}.actions-group{overflow:hidden;position:relative;margin:var(--f7-actions-group-margin);border-radius:var(--f7-actions-border-radius);transform:translate3d(0,0,0)}.actions-group:after{content:'';position:absolute;background-color:var(--f7-actions-group-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.actions-group:last-child:after{display:none!important}.actions-button,.actions-label{width:100%;font-weight:400;margin:0;box-sizing:border-box;display:block;position:relative;overflow:hidden;text-align:var(--f7-actions-button-text-align);background:var(--f7-actions-bg-color)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .actions-button,.ios-translucent-modals .actions-label{background-color:rgba(var(--f7-actions-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}.actions-button:after,.actions-label:after{content:'';position:absolute;background-color:var(--f7-actions-button-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.actions-button:first-child,.actions-label:first-child{border-radius:var(--f7-actions-border-radius) var(--f7-actions-border-radius) 0 0}.actions-button:last-child,.actions-label:last-child{border-radius:0 0 var(--f7-actions-border-radius) var(--f7-actions-border-radius)}.actions-button:last-child:after,.actions-label:last-child:after{display:none!important}.actions-button:first-child:last-child,.actions-label:first-child:last-child{border-radius:var(--f7-actions-border-radius)}.actions-button a,.actions-label a{text-decoration:none;color:inherit;display:block}.actions-button b,.actions-button.actions-button-bold,.actions-label b,.actions-label.actions-button-bold{font-weight:600}.actions-button{cursor:pointer;display:flex;color:var(--f7-actions-button-text-color,var(--f7-theme-color));font-size:var(--f7-actions-button-font-size);height:var(--f7-actions-button-height);line-height:var(--f7-actions-button-height);padding:var(--f7-actions-button-padding);justify-content:var(--f7-actions-button-justify-content);z-index:10}.actions-button.active-state{background-color:var(--f7-actions-button-pressed-bg-color)!important}.actions-button[class*=color-]{color:var(--f7-theme-color)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .actions-button.active-state{background-color:rgba(var(--f7-actions-button-pressed-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}.actions-button-media{flex-shrink:0;display:flex;align-items:center}.actions-button-media i.icon{width:var(--f7-actions-button-icon-size);height:var(--f7-actions-button-icon-size);font-size:var(--f7-actions-button-icon-size)}.actions-button a,.actions-button-text{position:relative;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.actions-button-text{width:100%;flex-shrink:1;text-align:var(--f7-actions-button-text-align)}.actions-label{line-height:1.3;display:flex;align-items:center;font-size:var(--f7-actions-label-font-size);color:var(--f7-actions-label-text-color);padding:var(--f7-actions-label-padding);justify-content:var(--f7-actions-label-justify-content);min-height:var(--f7-actions-label-min-height,var(--f7-actions-button-height))}.actions-label[class*=' color-']{--f7-actions-label-text-color:var(--f7-theme-color)}.actions-grid .actions-group{display:flex;flex-wrap:wrap;justify-content:flex-start;border-radius:0;background:var(--f7-actions-bg-color);margin-top:0}.actions-grid .actions-group:first-child{border-radius:var(--f7-actions-border-radius) var(--f7-actions-border-radius) 0 0}.actions-grid .actions-group:last-child{border-radius:0 0 var(--f7-actions-border-radius) var(--f7-actions-border-radius)}.actions-grid .actions-group:first-child:last-child{border-radius:var(--f7-actions-border-radius)}.actions-grid .actions-group:not(:last-child){margin-bottom:0}.actions-grid .actions-button,.actions-grid .actions-label{border-radius:0!important;background:0 0}.actions-grid .actions-button{width:33.33333333%;display:block;color:var(--f7-actions-grid-button-text-color);height:auto;line-height:1;padding:16px}.actions-grid .actions-button:after{display:none!important}.actions-grid .actions-button-media{margin-left:auto!important;margin-right:auto!important;width:var(--f7-actions-grid-button-icon-size);height:var(--f7-actions-grid-button-icon-size)}.actions-grid .actions-button-media i.icon{width:var(--f7-actions-grid-button-icon-size);height:var(--f7-actions-grid-button-icon-size);font-size:var(--f7-actions-grid-button-icon-size)}.actions-grid .actions-button-text{margin-left:0!important;text-align:center!important;margin-top:8px;line-height:1.33em;height:1.33em;font-size:var(--f7-actions-grid-button-font-size)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .actions-grid .actions-group{background-color:rgba(var(--f7-actions-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}.ios .actions-button-media{margin-left:16px}.ios .actions-button-media+.actions-button-text{text-align:left;margin-left:16px}.md .actions-button{transition-duration:.3s}.md .actions-button-media{min-width:40px}.md .actions-button-media+.actions-button-text{margin-left:16px}.aurora .actions-button-media{margin-left:16px}.aurora .actions-button-media+.actions-button-text{text-align:left;margin-left:16px}:root{--f7-sheet-height:260px;--f7-sheet-border-color:transparent;--f7-sheet-transition-duration:300ms;--f7-sheet-push-border-radius:10px;--f7-sheet-push-offset:var(--f7-safe-area-top);--f7-sheet-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-sheet-bg-color:#202020}.ios{--f7-sheet-border-color:var(--f7-bars-border-color)}.sheet-backdrop{z-index:11000}.sheet-modal{position:absolute;left:0;bottom:0;width:100%;height:var(--f7-sheet-height);display:none;box-sizing:border-box;transition-property:transform;transform:translate3d(0,100%,0);background:var(--f7-sheet-bg-color);z-index:12500;will-change:transform,opacity}.sheet-modal.modal-in,.sheet-modal.modal-out{transition-duration:var(--f7-sheet-transition-duration)}.sheet-modal.not-animated{transition-duration:0s}.sheet-modal.modal-in{display:block;transform:translate3d(0,0,0)}.sheet-modal.modal-in-swipe-step{display:block;transform:translate3d(0,var(--f7-sheet-swipe-step,0),0)}.sheet-modal.modal-out{transform:translate3d(0,100%,0)}.sheet-modal .sheet-modal-inner{height:100%;position:relative;overflow:hidden}.sheet-modal .toolbar{--f7-safe-area-bottom:0px;position:relative;width:100%}.sheet-modal .toolbar:after,.sheet-modal .toolbar:before{display:none}.sheet-modal .toolbar+.sheet-modal-inner{height:calc(100% - var(--f7-toolbar-height))}.sheet-modal .toolbar+.sheet-modal-inner .page-content{--f7-page-toolbar-top-offset:0px;--f7-page-toolbar-bottom-offset:0px}.sheet-modal-top:after{content:'';position:absolute;background-color:var(--f7-sheet-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.sheet-modal-top:after{z-index:700;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform-style:preserve-3d}.sheet-modal-bottom,.sheet-modal:not(.sheet-modal-top){--f7-safe-area-top:0px}.sheet-modal-bottom:before,.sheet-modal:not(.sheet-modal-top):before{content:'';position:absolute;background-color:var(--f7-sheet-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.sheet-modal-bottom:before,.sheet-modal:not(.sheet-modal-top):before{z-index:700;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform-style:preserve-3d}.sheet-modal-top{--f7-safe-area-bottom:0px;bottom:auto;top:0;transform:translate3d(0,-100%,0)}.sheet-modal-top.modal-out{transform:translate3d(0,-100%,0)}.sheet-modal-top .toolbar-bottom{position:absolute}.sheet-modal-top .page-content{padding-top:var(--f7-safe-area-top)}html.with-modal-sheet-push .sheet-modal-push,html.with-modal-sheet-push-closing .sheet-modal-push{--f7-sheet-border-color:transparent;border-radius:var(--f7-sheet-push-border-radius) var(--f7-sheet-push-border-radius) 0 0;overflow:hidden}html.with-modal-sheet-push .sheet-modal-push .page,html.with-modal-sheet-push .sheet-modal-push .view,html.with-modal-sheet-push-closing .sheet-modal-push .page,html.with-modal-sheet-push-closing .sheet-modal-push .view{--f7-safe-area-top:0px}html.with-modal-sheet-push .sheet-modal-push.sheet-modal-top,html.with-modal-sheet-push-closing .sheet-modal-push.sheet-modal-top{border-radius:0 0 var(--f7-sheet-push-border-radius) var(--f7-sheet-push-border-radius)}html.with-modal-sheet-push .framework7-root,html.with-modal-sheet-push-closing .framework7-root{background:#000}html.with-modal-sheet-push .framework7-root>.view,html.with-modal-sheet-push .framework7-root>.views,html.with-modal-sheet-push-closing .framework7-root>.view,html.with-modal-sheet-push-closing .framework7-root>.views{transition-duration:var(--f7-sheet-transition-duration)}html.with-modal-sheet-push .framework7-root>.view.theme-dark:after,html.with-modal-sheet-push .framework7-root>.views.theme-dark:after,html.with-modal-sheet-push .theme-dark .framework7-root>.view:after,html.with-modal-sheet-push .theme-dark .framework7-root>.views:after,html.with-modal-sheet-push .theme-dark.framework7-root>.view:after,html.with-modal-sheet-push .theme-dark.framework7-root>.views:after,html.with-modal-sheet-push-closing .framework7-root>.view.theme-dark:after,html.with-modal-sheet-push-closing .framework7-root>.views.theme-dark:after,html.with-modal-sheet-push-closing .theme-dark .framework7-root>.view:after,html.with-modal-sheet-push-closing .theme-dark .framework7-root>.views:after,html.with-modal-sheet-push-closing .theme-dark.framework7-root>.view:after,html.with-modal-sheet-push-closing .theme-dark.framework7-root>.views:after,html.with-modal-sheet-push-closing.theme-dark .framework7-root>.view:after,html.with-modal-sheet-push-closing.theme-dark .framework7-root>.views:after,html.with-modal-sheet-push.theme-dark .framework7-root>.view:after,html.with-modal-sheet-push.theme-dark .framework7-root>.views:after{content:'';position:absolute;pointer-events:none;left:0;top:0;width:100%;height:100%;background:rgba(255,255,255,.1);z-index:13000;border-radius:var(--f7-sheet-push-border-radius) var(--f7-sheet-push-border-radius) 0 0;opacity:1;animation:sheet-dark-push-overlay-fade-in var(--f7-sheet-transition-duration) forwards}html.with-modal-sheet-push .framework7-root>.view,html.with-modal-sheet-push .framework7-root>.views{border-radius:var(--f7-sheet-push-border-radius);transform:translate3d(0,0,0px) scale(var(--f7-sheet-push-scale,1))!important}html.with-modal-sheet-push-closing .framework7-root>.view.theme-dark:after,html.with-modal-sheet-push-closing .framework7-root>.views.theme-dark:after,html.with-modal-sheet-push-closing .theme-dark .framework7-root>.view:after,html.with-modal-sheet-push-closing .theme-dark .framework7-root>.views:after,html.with-modal-sheet-push-closing .theme-dark.framework7-root>.view:after,html.with-modal-sheet-push-closing .theme-dark.framework7-root>.views:after,html.with-modal-sheet-push-closing.theme-dark .framework7-root>.view:after,html.with-modal-sheet-push-closing.theme-dark .framework7-root>.views:after{animation:sheet-dark-push-overlay-fade-out var(--f7-sheet-transition-duration) forwards}@keyframes sheet-dark-push-overlay-fade-in{from{opacity:0}to{opacity:1}}@keyframes sheet-dark-push-overlay-fade-out{from{opacity:1}to{opacity:0}}.md .sheet-modal .toolbar a.link:not(.tab-link){flex-shrink:0}:root{--f7-toast-text-color:#fff;--f7-toast-font-size:14px;--f7-toast-icon-size:48px;--f7-toast-max-width:568px}.ios{--f7-toast-bg-color:rgba(0, 0, 0, 0.75);--f7-toast-bg-color-rgb:0,0,0;--f7-toast-padding-horizontal:16px;--f7-toast-padding-vertical:12px;--f7-toast-border-radius:8px;--f7-toast-button-min-width:64px}.md{--f7-toast-bg-color:#323232;--f7-toast-padding-horizontal:24px;--f7-toast-padding-vertical:14px;--f7-toast-border-radius:4px;--f7-toast-button-min-width:64px}.aurora{--f7-toast-bg-color:#323232;--f7-toast-padding-horizontal:16px;--f7-toast-padding-vertical:16px;--f7-toast-border-radius:8px;--f7-toast-button-min-width:32px}.toast{--f7-touch-ripple-color:var(--f7-touch-ripple-white);transition-property:transform,opacity;position:absolute;max-width:var(--f7-toast-max-width);z-index:20000;color:var(--f7-toast-text-color);font-size:var(--f7-toast-font-size);box-sizing:border-box;background-color:var(--f7-toast-bg-color);opacity:0}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .toast{background-color:rgba(var(--f7-toast-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}.toast.modal-in{opacity:1}.toast .toast-content{display:flex;justify-content:space-between;align-items:center;box-sizing:border-box;padding:var(--f7-toast-padding-vertical) var(--f7-toast-padding-horizontal)}.toast .toast-text{line-height:20px;flex-shrink:1;min-width:0}.toast .toast-button{flex-shrink:0;min-width:var(--f7-toast-button-min-width);margin-top:-8px;margin-bottom:-8px}.toast.toast-with-icon .toast-content{display:block;text-align:center}.toast.toast-with-icon .toast-text{text-align:center}.toast.toast-with-icon .toast-icon .f7-icons,.toast.toast-with-icon .toast-icon .material-icons{font-size:var(--f7-toast-icon-size)}.toast.toast-center{top:50%}.toast.toast-top{margin-top:var(--f7-safe-area-top)}.ios .toast{transition-duration:.3s;width:100%;left:0}.ios .toast.toast-top{top:0;transform:translate3d(0,-100%,0)}.ios .toast.toast-top.modal-in{transform:translate3d(0,0%,0)}.ios .toast.toast-center{width:auto;left:50%;border-radius:var(--f7-toast-border-radius);transform:translate3d(-50%,-50%,0)}.ios .toast.toast-center.modal-in{transform:translate3d(-50%,-50%,0)}.ios .toast.toast-bottom{bottom:0;transform:translate3d(0,100%,0)}.ios .toast.toast-bottom.modal-in{transform:translate3d(0,0%,0)}@media (max-width:568px){.ios .toast.toast-top{margin-top:0}.ios .toast.toast-top .toast-content{padding-top:calc(var(--f7-toast-padding-vertical) + var(--f7-safe-area-top))}.ios .toast.toast-bottom .toast-content{padding-bottom:calc(var(--f7-toast-padding-vertical) + var(--f7-safe-area-bottom))}}@media (min-width:569px){.ios .toast{left:50%;margin-left:calc(-1 * var(--f7-toast-max-width)/ 2);border-radius:var(--f7-toast-border-radius)}.ios .toast.toast-top{top:16px}.ios .toast.toast-center{margin-left:0}.ios .toast.toast-bottom{margin-bottom:calc(16px + var(--f7-safe-area-bottom))}}@media (min-width:1024px){.ios .toast{margin-left:0;width:auto}.ios .toast.toast-horizontal-left{left:16px}.ios .toast.toast-horizontal-right{left:auto;right:16px}.ios .toast.toast-horizontal-center{left:50%;width:var(--f7-toast-max-width);margin-left:calc(-1 * var(--f7-toast-max-width)/ 2)}}.ios .toast-button{margin-left:16px;margin-right:calc(-1 * var(--f7-button-padding-horizontal))}.md .toast{transition-duration:.2s;border-radius:var(--f7-toast-border-radius);width:calc(100% - 16px);transform:scale(.9);left:8px}.md .toast.modal-in{transform:scale(1)}.md .toast.modal-out{transform:scale(1)}.md .toast.toast-top{top:8px}.md .toast.toast-center{left:50%;width:auto;transform:scale(.9) translate3d(-55%,-55%,0)}.md .toast.toast-center.modal-in{transform:scale(1) translate3d(-50%,-50%,0)}.md .toast.toast-center.modal-out{transform:scale(1) translate3d(-50%,-50%,0)}.md .toast.toast-bottom{bottom:calc(8px + var(--f7-safe-area-bottom))}@media (min-width:584px){.md .toast{left:50%;margin-left:calc(-1 * var(--f7-toast-max-width)/ 2)}.md .toast.toast-center{margin-left:0}}@media (min-width:1024px){.md .toast{margin-left:0;width:auto}.md .toast.toast-horizontal-left{left:24px}.md .toast.toast-horizontal-right{left:auto;right:24px}.md .toast.toast-horizontal-center{left:50%;width:var(--f7-toast-max-width);margin-left:calc(-1 * var(--f7-toast-max-width)/ 2)}.md .toast.toast-bottom{bottom:calc(24px + var(--f7-safe-area-bottom))}.md .toast.toast-top{top:24px}}.md .toast-button{margin-left:16px;margin-right:-8px}.aurora .toast{transition-duration:.2s;border-radius:var(--f7-toast-border-radius);left:16px;width:calc(100% - 32px);transform:scale(.9)}.aurora .toast.modal-in{transform:scale(1)}.aurora .toast.modal-out{transform:scale(1)}.aurora .toast.toast-top{top:16px}.aurora .toast.toast-center{left:50%;width:auto;transform:scale(.9) translate3d(-55%,-55%,0)}.aurora .toast.toast-center.modal-in{transform:scale(1) translate3d(-50%,-50%,0)}.aurora .toast.toast-center.modal-out{transform:scale(1) translate3d(-50%,-50%,0)}.aurora .toast.toast-bottom{bottom:calc(16px + var(--f7-safe-area-bottom))}@media (min-width:584px){.aurora .toast{left:50%;margin-left:calc(-1 * var(--f7-toast-max-width)/ 2)}.aurora .toast.toast-center{margin-left:0}}@media (min-width:1024px){.aurora .toast{margin-left:0;width:auto}.aurora .toast.toast-horizontal-left{left:16px}.aurora .toast.toast-horizontal-right{left:auto;right:16px}.aurora .toast.toast-horizontal-center{left:50%;width:var(--f7-toast-max-width);margin-left:calc(-1 * var(--f7-toast-max-width)/ 2)}}.aurora .toast-button{margin-left:16px}:root{--f7-preloader-modal-padding:8px;--f7-preloader-modal-bg-color:rgba(0, 0, 0, 0.8)}.ios{--f7-preloader-color:#6c6c6c;--f7-preloader-size:20px;--f7-preloader-modal-preloader-size:34px;--f7-preloader-modal-border-radius:5px}.md{--f7-preloader-color:#757575;--f7-preloader-size:32px;--f7-preloader-modal-preloader-size:32px;--f7-preloader-modal-border-radius:4px}.aurora{--f7-preloader-color:#757575;--f7-preloader-size:24px;--f7-preloader-modal-preloader-size:24px;--f7-preloader-modal-border-radius:4px}.preloader{display:inline-block;vertical-align:middle;width:var(--f7-preloader-size);height:var(--f7-preloader-size);font-size:0;position:relative}.preloader .preloader-inner{width:100%;height:100%;display:block;position:relative}.preloader-backdrop{visibility:visible;opacity:0;background:0 0;z-index:14000}.preloader-modal{position:absolute;left:50%;top:50%;padding:var(--f7-preloader-modal-padding);background:var(--f7-preloader-modal-bg-color);z-index:14500;transform:translateX(-50%) translateY(-50%);border-radius:var(--f7-preloader-modal-border-radius)}.preloader-modal .preloader{--f7-preloader-size:var(--f7-preloader-modal-preloader-size);display:block!important}.with-modal-preloader .page-content,.with-modal-preloader.page-content,html.with-modal-preloader .page-content{overflow:hidden;-webkit-overflow-scrolling:auto}.preloader[class*=color-]{--f7-preloader-color:var(--f7-theme-color)}.ios .preloader-inner{animation:ios-preloader-spin 1s steps(8,end) infinite}.ios .preloader-inner-line{display:block;width:11.6%;height:33.33%;border-radius:100px;background:var(--f7-preloader-color);position:absolute;left:50%;top:50%;transform-origin:center 150%}.ios .preloader.color-multi .preloader-inner-line{animation:ios-preloader-multicolor 3s linear infinite}.ios .preloader-inner-line:nth-child(1){transform:translate(-50%,-150%) rotate(0deg);opacity:.27}.ios .preloader-inner-line:nth-child(2){transform:translate(-50%,-150%) rotate(45deg);opacity:.35285714}.ios .preloader-inner-line:nth-child(3){transform:translate(-50%,-150%) rotate(90deg);opacity:.43571429}.ios .preloader-inner-line:nth-child(4){transform:translate(-50%,-150%) rotate(135deg);opacity:.51857143}.ios .preloader-inner-line:nth-child(5){transform:translate(-50%,-150%) rotate(180deg);opacity:.60142857}.ios .preloader-inner-line:nth-child(6){transform:translate(-50%,-150%) rotate(225deg);opacity:.68428571}.ios .preloader-inner-line:nth-child(7){transform:translate(-50%,-150%) rotate(270deg);opacity:.76714286}.ios .preloader-inner-line:nth-child(8){transform:translate(-50%,-150%) rotate(315deg);opacity:.85}@keyframes ios-preloader-spin{100%{transform:rotate(360deg)}}@keyframes ios-preloader-multicolor{0%,100%{background-color:#2196f3}25%{background-color:#ff3b30}50%{background-color:#4cd964}75%{background-color:#ff9500}}.md .preloader-inner{animation:md-preloader-rotate 1.4s linear infinite}.md .preloader-inner circle{fill:none;stroke:var(--f7-preloader-color);animation:md-preloader-circle-rotate 5.6s ease-in-out infinite;stroke-dasharray:100px;stroke-dashoffset:80px;stroke-width:4;transform:rotate(-90deg);transform-origin:18px 18px}.md .preloader.color-multi circle{animation:md-preloader-circle-rotate 5.6s ease-in-out infinite,md-preloader-multicolor 5.6s ease-in-out infinite}@keyframes md-preloader-multicolor{0%,100%{stroke:#4285f4}75%{stroke:#1b9a59}50%{stroke:#f7c223}25%{stroke:#de3e35}}@keyframes md-preloader-rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes md-preloader-circle-rotate{0%{transform:rotate(-90deg);stroke-dashoffset:100px}12.5%{transform:rotate(-90deg);stroke-dashoffset:25px}25%{stroke-dashoffset:100px;transform:rotate(180deg)}25.1%{transform:rotate(-180deg);stroke-dashoffset:100px}37.5%{transform:rotate(-180deg);stroke-dashoffset:25px}50%{stroke-dashoffset:100px;transform:rotate(90deg)}50.1%{transform:rotate(90deg);stroke-dashoffset:100px}62.5%{transform:rotate(90deg);stroke-dashoffset:25px}75%{stroke-dashoffset:100px;transform:rotate(360deg)}75.1%{transform:rotate(0deg);stroke-dashoffset:100px}87.5%{transform:rotate(0deg);stroke-dashoffset:25px}100%{stroke-dashoffset:100px;transform:rotate(270deg)}}.aurora .preloader-inner{position:absolute;left:0;top:0}.aurora .preloader-inner-circle{width:100%;height:100%;position:absolute;left:0;top:0;border-radius:50%;border:calc(var(--f7-preloader-size)/ 8) solid var(--f7-preloader-color);border-top-color:transparent;box-sizing:border-box;animation:aurora-preloader-rotate .75s linear infinite}.aurora .preloader.color-multi .preloader-inner-circle{animation:aurora-preloader-rotate .75s linear infinite,aurora-preloader-multicolor 3s linear infinite}@keyframes aurora-preloader-rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes aurora-preloader-multicolor{0%,100%{border-color:#2196f3;border-top-color:transparent}25%{border-color:#ff3b30;border-top-color:transparent}50%{border-color:#4cd964;border-top-color:transparent}75%{border-color:#ff9500;border-top-color:transparent}}.ios{--f7-progressbar-height:2px;--f7-progressbar-border-radius:2px;--f7-progressbar-bg-color:rgba(0, 0, 0, 0.3)}.ios .theme-dark,.ios.theme-dark{--f7-progressbar-bg-color:rgba(255, 255, 255, 0.3)}.md{--f7-progressbar-height:4px;--f7-progressbar-border-radius:0px}.aurora{--f7-progressbar-height:6px;--f7-progressbar-border-radius:3px;--f7-progressbar-bg-color:#dbdbdb}.aurora .theme-dark,.aurora.theme-dark{--f7-progressbar-bg-color:#444}.progressbar,.progressbar-infinite{width:100%;overflow:hidden;position:relative;display:block;transform-style:preserve-3d;background:var(--f7-progressbar-bg-color,rgba(var(--f7-theme-color-rgb),.5));transform-origin:center top;height:var(--f7-progressbar-height);border-radius:var(--f7-progressbar-border-radius)}.progressbar{vertical-align:middle}.progressbar span{background-color:var(--f7-progressbar-progress-color,var(--f7-theme-color));width:100%;height:100%;position:absolute;left:0;top:0;transform:translate3d(-100%,0,0);transition-duration:150ms}.progressbar-infinite{z-index:15000}.progressbar-infinite:after,.progressbar-infinite:before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;transform-origin:left center;transform:translate3d(0,0,0);display:block;background-color:var(--f7-progressbar-progress-color,var(--f7-theme-color))}.progressbar-infinite.color-multi{background:0 0!important}.progressbar-in{animation:progressbar-in 150ms forwards}.progressbar-out{animation:progressbar-out 150ms forwards}.framework7-root>.progressbar,.framework7-root>.progressbar-infinite,.page>.progressbar,.page>.progressbar-infinite,.panel>.progressbar,.panel>.progressbar-infinite,.popup>.progressbar,.popup>.progressbar-infinite,.view>.progressbar,.view>.progressbar-infinite,.views>.progressbar,.views>.progressbar-infinite,body>.progressbar,body>.progressbar-infinite{position:absolute;left:0;top:0;z-index:15000;border-radius:0!important;transform-origin:center top!important}@keyframes progressbar-in{from{opacity:0;transform:scaleY(0)}to{opacity:1;transform:scaleY(1)}}@keyframes progressbar-out{from{opacity:1;transform:scaleY(1)}to{opacity:0;transform:scaleY(0)}}.ios .progressbar-infinite:before{animation:ios-progressbar-infinite 1s linear infinite}.ios .progressbar-infinite:after{display:none}.ios .progressbar-infinite.color-multi:before{width:400%;background-image:linear-gradient(to right,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55,#5856d6,#34aadc,#007aff,#5ac8fa,#4cd964);background-size:25% 100%;background-repeat:repeat-x;animation:ios-progressbar-infinite-multicolor 3s linear infinite}@keyframes ios-progressbar-infinite{0%{transform:translate3d(-100%,0,0)}100%{transform:translate3d(100%,0,0)}}@keyframes ios-progressbar-infinite-multicolor{0%{transform:translate3d(0%,0,0)}100%{transform:translate3d(-50%,0,0)}}.md .progressbar-infinite:before{animation:md-progressbar-infinite-1 2s linear infinite}.md .progressbar-infinite:after{animation:md-progressbar-infinite-2 2s linear infinite}.md .progressbar-infinite.color-multi:before{background:0 0;animation:md-progressbar-infinite-multicolor-bg 3s step-end infinite}.md .progressbar-infinite.color-multi:after{background:0 0;animation:md-progressbar-infinite-multicolor-fill 3s linear infinite;transform-origin:center center}@keyframes md-progressbar-infinite-1{0%{transform:translateX(-10%) scaleX(.1)}25%{transform:translateX(30%) scaleX(.6)}50%{transform:translateX(100%) scaleX(1)}100%{transform:translateX(100%) scaleX(1)}}@keyframes md-progressbar-infinite-2{0%{transform:translateX(-100%) scaleX(1)}40%{transform:translateX(-100%) scaleX(1)}75%{transform:translateX(60%) scaleX(.35)}90%{transform:translateX(100%) scaleX(.1)}100%{transform:translateX(100%) scaleX(.1)}}@keyframes md-progressbar-infinite-multicolor-bg{0%{background-color:#4caf50}25%{background-color:#f44336}50%{background-color:#2196f3}75%{background-color:#ffeb3b}}@keyframes md-progressbar-infinite-multicolor-fill{0%{transform:scaleX(0);background-color:#f44336}24.9%{transform:scaleX(1);background-color:#f44336}25%{transform:scaleX(0);background-color:#2196f3}49.9%{transform:scaleX(1);background-color:#2196f3}50%{transform:scaleX(0);background-color:#ffeb3b}74.9%{transform:scaleX(1);background-color:#ffeb3b}75%{transform:scaleX(0);background-color:#4caf50}100%{transform:scaleX(1);background-color:#4caf50}}.aurora .progressbar,.aurora .progressbar span,.aurora .progressbar-infinite,.aurora .progressbar-infinite:before{box-shadow:0px 0px 0px 1px rgba(0,0,0,.05) inset}.aurora .progressbar-infinite:before{animation:aurora-progressbar-infinite 1s linear infinite}.aurora .progressbar-infinite:after{display:none}.aurora .progressbar-infinite.color-multi:before{width:400%;background-image:linear-gradient(to right,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55,#5856d6,#34aadc,#007aff,#5ac8fa,#4cd964);background-size:25% 100%;background-repeat:repeat-x;animation:aurora-progressbar-infinite-multicolor 3s linear infinite}@keyframes aurora-progressbar-infinite{0%{transform:translate3d(-100%,0,0)}100%{transform:translate3d(100%,0,0)}}@keyframes aurora-progressbar-infinite-multicolor{0%{transform:translate3d(0%,0,0)}100%{transform:translate3d(-50%,0,0)}}:root{--f7-sortable-handler-color:rgba(0, 0, 0, 0.22);--f7-sortable-sorting-item-bg-color:rgba(255, 255, 255, 0.8)}:root .theme-dark,:root.theme-dark{--f7-sortable-sorting-item-bg-color:rgba(50, 50, 50, 0.8);--f7-sortable-handler-color:rgba(255, 255, 255, 0.55)}.ios{--f7-sortable-handler-width:36px;--f7-sortable-sorting-item-box-shadow:0px 2px 8px rgba(0, 0, 0, 0.6)}.md{--f7-sortable-handler-width:42px;--f7-sortable-sorting-item-box-shadow:var(--f7-elevation-2)}.aurora{--f7-sortable-handler-width:42px;--f7-sortable-sorting-item-box-shadow:var(--f7-elevation-2)}.sortable .sortable-handler{width:var(--f7-sortable-handler-width);height:100%;position:absolute;top:0;z-index:10;opacity:0;pointer-events:none;cursor:move;transition-duration:.3s;display:flex;align-items:center;justify-content:center;overflow:hidden;right:var(--f7-safe-area-right)}.sortable .sortable-handler:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;transition-duration:.3s;transform:translateX(10px);color:var(--f7-sortable-handler-color);overflow:hidden;height:20px;width:18px}.sortable li.sorting{z-index:50;background:var(--f7-sortable-sorting-item-bg-color);transition-duration:0s;box-shadow:var(--f7-sortable-sorting-item-box-shadow)}.sortable li.sorting .item-inner:after{display:none!important}.sortable-opposite .sortable-handler{left:var(--f7-safe-area-right);right:auto}.sortable-opposite .sortable-handler:after{transform:translateX(-10px)}.sortable-opposite .item-content,.sortable-opposite.links-list li a,.sortable.simple-list li,.sortable:not(.sortable-opposite) .item-inner{transition-duration:.3s;transition-property:all}.sortable-sorting li{transition-duration:.3s}.sortable-enabled li:not(.no-sorting):not(.disallow-sorting) .sortable-handler{pointer-events:auto;opacity:1}.sortable-enabled li:not(.no-sorting):not(.disallow-sorting) .sortable-handler:after{transform:translateX(0px)}.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link .item-inner:before,.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link .item-title-row:before,.sortable-enabled:not(.sortable-opposite).links-list li:not(.no-sorting):not(.disallow-sorting)>a:before{display:none}.links-list.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) a,.no-chevron .sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link .item-inner,.simple-list.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting),.sortable-enabled :not(.sortable-opposite).no-chevron .item-link .item-inner,.sortable-enabled.no-chevron:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link .item-inner,.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-inner,.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link .item-inner,.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link.no-chevron .item-inner{padding-right:calc(var(--f7-sortable-handler-width) + var(--f7-safe-area-right))}.links-list.sortable-opposite.sortable-enabled li:not(.no-sorting):not(.disallow-sorting) a,.simple-list.sortable-opposite.sortable-enabled li:not(.no-sorting):not(.disallow-sorting),.sortable-opposite.sortable-enabled li:not(.no-sorting):not(.disallow-sorting) .item-content{padding-left:calc(var(--f7-sortable-handler-width) + var(--f7-safe-area-right))}.ios .sortable-handler:after{content:'sort_ios'}.md .sortable-handler:after{content:'sort_md'}.aurora .sortable-handler:after{content:'sort_md'}:root{--f7-swipeout-button-text-color:#fff;--f7-swipeout-delete-button-bg-color:#ff3b30;--f7-swipeout-button-font-size:inherit;--f7-swipeout-button-font-weight:inherit;--f7-swipeout-button-padding-vertical:0px;--f7-swipeout-button-bg-color:rgba(0, 0, 0, 0.22)}:root .theme-dark,:root.theme-dark{--f7-swipeout-button-bg-color:rgba(255, 255, 255, 0.55)}.ios{--f7-swipeout-button-padding-horizontal:30px}.md{--f7-swipeout-button-padding-horizontal:24px}.aurora{--f7-swipeout-button-padding-horizontal:24px;--f7-swipeout-button-font-weight:500}.swipeout{overflow:hidden;transform-style:preserve-3d}.swipeout-deleting{transition-duration:.3s}.swipeout-deleting .swipeout-content{transform:translateX(-100%)}.swipeout-transitioning .swipeout-actions-left a,.swipeout-transitioning .swipeout-actions-right a,.swipeout-transitioning .swipeout-content,.swipeout-transitioning .swipeout-overswipe{transition-duration:.3s;transition-property:transform,left}.swipeout-content{position:relative;z-index:10}.swipeout-overswipe{transition-duration:.2s;transition-property:left}.swipeout-actions-left,.swipeout-actions-right{position:absolute;top:0;height:100%;display:flex;direction:ltr}.swipeout-actions-left>a,.swipeout-actions-left>button,.swipeout-actions-left>div,.swipeout-actions-left>span,.swipeout-actions-right>a,.swipeout-actions-right>button,.swipeout-actions-right>div,.swipeout-actions-right>span{color:var(--f7-swipeout-button-text-color);background:var(--f7-swipeout-button-bg-color);padding:var(--f7-swipeout-button-padding-vertical) var(--f7-swipeout-button-padding-horizontal);display:flex;align-items:center;position:relative;left:0;font-size:var(--f7-swipeout-button-font-size);font-weight:var(--f7-swipeout-button-font-weight)}.swipeout-actions-left>a:after,.swipeout-actions-left>button:after,.swipeout-actions-left>div:after,.swipeout-actions-left>span:after,.swipeout-actions-right>a:after,.swipeout-actions-right>button:after,.swipeout-actions-right>div:after,.swipeout-actions-right>span:after{content:'';position:absolute;top:0;width:600%;height:100%;background:inherit;z-index:-1;transform:translate3d(0,0,0);pointer-events:none}.swipeout-actions-left .swipeout-delete,.swipeout-actions-right .swipeout-delete{background:var(--f7-swipeout-delete-button-bg-color)}.swipeout-actions-right{right:0%;transform:translateX(100%)}.swipeout-actions-right>a:after,.swipeout-actions-right>button:after,.swipeout-actions-right>div:after,.swipeout-actions-right>span:after{left:100%;margin-left:-1px}.swipeout-actions-right>a:last-child,.swipeout-actions-right>button:last-child,.swipeout-actions-right>div:last-child,.swipeout-actions-right>span:last-child{padding-right:calc(var(--f7-swipeout-button-padding-horizontal) + var(--f7-safe-area-right))}.swipeout-actions-left{left:0%;transform:translateX(-100%)}.swipeout-actions-left>a:after,.swipeout-actions-left>button:after,.swipeout-actions-left>div:after,.swipeout-actions-left>span:after{right:100%;margin-right:-1px}.swipeout-actions-left>a:first-child,.swipeout-actions-left>button:first-child,.swipeout-actions-left>div:first-child,.swipeout-actions-left>span:first-child{padding-left:calc(var(--f7-swipeout-button-padding-horizontal) + var(--f7-safe-area-left))}.swipeout-actions-left [class*=color-],.swipeout-actions-right [class*=color-]{--f7-swipeout-button-bg-color:var(--f7-theme-color)}:root{--f7-accordion-chevron-icon-down:'chevron_down';--f7-accordion-chevron-icon-up:'chevron_up'}.accordion-item-toggle{cursor:pointer}.list.accordion-list .accordion-item-toggle{transition-duration:.3s;position:relative;overflow:hidden}.list.accordion-list .accordion-item-toggle.active-state{transition-duration:.3s;background-color:var(--f7-list-link-pressed-bg-color)}.list.accordion-list .accordion-item-toggle.active-state>.item-inner:after{background-color:transparent}.list.accordion-list .accordion-item-toggle .item-inner{transition-duration:.3s;transition-property:background-color}.list.accordion-list .accordion-item-toggle .item-inner:after{transition-duration:.3s}.list.accordion-list .accordion-item-toggle .ripple-wave{z-index:0}.accordion-item .item-link .item-inner:after{transition-duration:.3s}.accordion-item .block,.accordion-item .list{margin-top:0;margin-bottom:0}.accordion-item .block>h1:first-child,.accordion-item .block>h2:first-child,.accordion-item .block>h3:first-child,.accordion-item .block>h4:first-child,.accordion-item .block>p:first-child{margin-top:10px}.accordion-item .block>h1:last-child,.accordion-item .block>h2:last-child,.accordion-item .block>h3:last-child,.accordion-item .block>h4:last-child,.accordion-item .block>p:last-child{margin-bottom:10px}.accordion-item-opened .accordion-item-toggle .item-inner:after,.accordion-item-opened>.item-link .item-inner:after{background-color:transparent}.list li.accordion-item ul{padding-left:0}.accordion-item-content{position:relative;overflow:hidden;height:0;font-size:14px;transition-duration:.3s}.accordion-item-opened>.accordion-item-content{height:auto}html.device-android-4 .accordion-item-content{transform:none}.list .accordion-item-toggle .item-inner:before{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;position:absolute;top:50%;font-size:var(--f7-list-chevron-icon-font-size);color:var(--f7-list-chevron-icon-color);pointer-events:none;right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right))}.list:not(.accordion-opposite) .accordion-item-toggle .item-inner{padding-right:calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right))}.accordion-opposite .accordion-item-toggle .item-inner,.accordion-opposite .accordion-item-toggle.item-link .item-inner,.accordion-opposite .accordion-item>.item-link>.item-content>.item-inner,.accordion-opposite .accordion-item>.item-link>.item-inner{padding-right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right))}.accordion-opposite .accordion-item>.item-link>.item-title-row{padding-right:0}.accordion-opposite .accordion-item-toggle .item-inner:before,.accordion-opposite .accordion-item-toggle.item-link .item-inner:before,.accordion-opposite .accordion-item>.item-link .item-title-row:before,.accordion-opposite .accordion-item>.item-link>.item-content>.item-inner:before,.accordion-opposite .accordion-item>.item-link>.item-inner:before{display:none}.accordion-opposite .accordion-item-toggle.item-content,.accordion-opposite .accordion-item-toggle>.item-content,.accordion-opposite .accordion-item>.item-content,.accordion-opposite .accordion-item>.item-link>.item-content,.accordion-opposite.links-list .accordion-item>a{position:relative;padding-left:calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left))}.accordion-opposite .accordion-item-toggle.item-content:before,.accordion-opposite .accordion-item-toggle>.item-content:before,.accordion-opposite .accordion-item>.item-content:before,.accordion-opposite .accordion-item>.item-link>.item-content:before,.accordion-opposite.links-list .accordion-item>a:before{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;position:absolute;top:50%;font-size:var(--f7-list-chevron-icon-font-size);color:var(--f7-list-chevron-icon-color);pointer-events:none;content:var(--f7-accordion-chevron-icon-down);width:14px;height:8px;margin-top:-4px;line-height:8px;transform:translateX(-50%);left:calc((var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal))/ 2 + var(--f7-safe-area-left))}.list .accordion-item-toggle.active-state{background-color:var(--f7-list-link-pressed-bg-color)}.accordion-item.media-item .accordion-item-toggle .item-title-row:before,.accordion-item.media-item>.item-link .item-title-row:before,.links-list .accordion-item>a:before,.list .accordion-item-toggle .item-inner:before,.list:not(.media-list) .accordion-item:not(.media-item) .accordion-item-toggle .item-inner:before,.list:not(.media-list) .accordion-item:not(.media-item)>.item-link .item-inner:before,.media-list .accordion-item .accordion-item-toggle .item-title-row:before,.media-list .accordion-item>.item-link .item-title-row:before{content:var(--f7-accordion-chevron-icon-down);width:14px;height:8px;margin-top:-4px;line-height:8px}.accordion-item-opened.media-item .accordion-item-toggle .item-title-row:before,.accordion-item-opened.media-item>.item-link .item-title-row:before,.accordion-opposite .accordion-item-opened .accordion-item-toggle.item-content:before,.accordion-opposite .accordion-item-opened .accordion-item-toggle>.item-content:before,.accordion-opposite .accordion-item-opened>.item-content:before,.accordion-opposite .accordion-item-opened>.item-link>.item-content:before,.accordion-opposite .links-list .accordion-item-opened>a:before,.links-list .accordion-item-opened>a:before,.list .accordion-item-toggle.accordion-item-opened .item-inner:before,.list:not(.media-list) .accordion-item-opened:not(.media-item) .accordion-item-toggle .item-inner:before,.list:not(.media-list) .accordion-item-opened:not(.media-item)>.item-link .item-inner:before,.media-list .accordion-item-opened .accordion-item-toggle .item-title-row:before,.media-list .accordion-item-opened>.item-link .item-title-row:before{content:var(--f7-accordion-chevron-icon-up);width:14px;height:8px;margin-top:-4px;line-height:8px}:root .theme-dark,:root.theme-dark{--f7-contacts-list-title-text-color:#fff}.ios{--f7-contacts-list-title-font-size:inherit;--f7-contacts-list-title-font-weight:600;--f7-contacts-list-title-height:22px;--f7-contacts-list-title-text-color:#000;--f7-contacts-list-title-bg-color:#f7f7f7}.ios .theme-dark,.ios.theme-dark{--f7-contacts-list-title-bg-color:#323234}.md{--f7-contacts-list-title-font-size:20px;--f7-contacts-list-title-font-weight:500;--f7-contacts-list-title-height:48px;--f7-contacts-list-title-bg-color:transparent}.aurora{--f7-contacts-list-title-font-weight:600;--f7-contacts-list-title-text-color:#000}.contacts-list{--f7-list-margin-vertical:0px}.contacts-list .list-group-title,.contacts-list li.list-group-title{background-color:var(--f7-contacts-list-title-bg-color,var(--f7-list-group-title-bg-color));font-weight:var(--f7-contacts-list-title-font-weight,var(--f7-list-group-title-font-weight));font-size:var(--f7-contacts-list-title-font-size, var(--f7-list-group-title-font-size));color:var(--f7-contacts-list-title-text-color,var(--f7-theme-color));line-height:var(--f7-contacts-list-title-height, var(--f7-list-group-title-height));height:var(--f7-contacts-list-title-height,var(--f7-list-group-title-height))}.contacts-list .list-group:first-child ul:before{display:none!important}.contacts-list .list-group:last-child ul:after{display:none!important}.md .contacts-list .list-group-title{pointer-events:none;overflow:visible;width:56px}.md .contacts-list .list-group-title+li{margin-top:calc(var(--f7-contacts-list-title-height) * -1)}.md .contacts-list li:not(.list-group-title){padding-left:56px}:root{--f7-list-index-width:16px;--f7-list-index-font-size:11px;--f7-list-index-font-weight:600;--f7-list-index-item-height:14px;--f7-list-index-label-text-color:#fff;--f7-list-index-label-font-weight:500}.ios{--f7-list-index-label-size:44px;--f7-list-index-label-font-size:17px;--f7-list-index-skip-dot-size:6px}.md{--f7-list-index-label-size:56px;--f7-list-index-label-font-size:20px;--f7-list-index-skip-dot-size:4px}.aurora{--f7-list-index-font-size:12px;--f7-list-index-label-size:32px;--f7-list-index-label-font-size:12px;--f7-list-index-label-font-weight:600;--f7-list-index-skip-dot-size:4px}.list-index{position:absolute;top:0;bottom:0;text-align:center;z-index:10;width:var(--f7-list-index-width);cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;right:var(--f7-safe-area-right)}.list-index:before{content:'';position:absolute;width:20px;top:0;right:100%;height:100%}.list-index ul{color:var(--f7-list-index-text-color,var(--f7-theme-color));font-size:var(--f7-list-index-font-size);font-weight:var(--f7-list-index-font-weight);list-style:none;margin:0;padding:0;display:flex;flex-direction:column;justify-content:center;align-items:center;flex-shrink:0;height:100%;width:100%;position:relative}.list-index li{margin:0;padding:0;list-style:none;position:relative;height:var(--f7-list-index-item-height);line-height:var(--f7-list-index-item-height);flex-shrink:0;display:block;width:100%}.list-index .list-index-skip-placeholder:after{content:'';position:absolute;left:50%;top:50%;border-radius:50%;width:var(--f7-list-index-skip-dot-size);height:var(--f7-list-index-skip-dot-size);margin-left:calc(-1 * var(--f7-list-index-skip-dot-size)/ 2);margin-top:calc(-1 * var(--f7-list-index-skip-dot-size)/ 2);background:var(--f7-list-index-text-color,var(--f7-theme-color))}.list-index .list-index-label{position:absolute;bottom:0;right:100%;text-align:center;background-color:var(--f7-list-index-label-bg-color,var(--f7-theme-color));color:var(--f7-list-index-label-text-color);width:var(--f7-list-index-label-size);height:var(--f7-list-index-label-size);line-height:var(--f7-list-index-label-size);font-size:var(--f7-list-index-label-font-size);font-weight:var(--f7-list-index-label-font-weight)}.navbars~.page>.list-index,.navbar~.list-index,.navbar~.page>.list-index{top:var(--f7-navbar-height)}.ios .navbars~.toolbar-top-ios .md .navbar~.toolbar-top-md~.list-index,.ios .navbar~.toolbar-top-ios~.list-index,.navbars~.toolbar-top~.list-index,.navbar~.toolbar-top~.list-index{top:calc(var(--f7-navbar-height) + var(--f7-toolbar-height))}.ios .navbars~.toolbar-top-ios .md .navbar~.toolbar-top-md.tabbar-labels~.list-index,.ios .navbar~.toolbar-top-ios.tabbar-labels~.list-index,.navbars~.toolbar-top.tabbar-labels~.list-index,.navbar~.toolbar-top.tabbar-labels~.list-index{top:calc(var(--f7-navbar-height) + var(--f7-tabbar-labels-height))}.navbars~.subnavbar~.list-index,.navbar~.subnavbar~.list-index,.page-with-subnavbar .navbar~.list-index{top:calc(var(--f7-navbar-height) + var(--f7-subnavbar-height))}.ios .toolbar-bottom-ios~* .page>.list-index,.ios .toolbar-bottom-ios~.list-index,.ios .toolbar-bottom-ios~.page>.list-index,.md .toolbar-bottom-md~* .page>.list-index,.md .toolbar-bottom-md~.list-index,.md .toolbar-bottom-md~.page>.list-index,.toolbar-bottom~* .page>.list-index,.toolbar-bottom~.list-index,.toolbar-bottom~.page>.list-index{bottom:calc(var(--f7-toolbar-height) + var(--f7-safe-area-bottom))}.ios .toolbar-bottom-ios.tabbar-labels~* .page>.list-index,.ios .toolbar-bottom-ios.tabbar-labels~.list-index,.ios .toolbar-bottom-ios.tabbar-labels~.page>.list-index,.md .toolbar-bottom-md.tabbar-labels~* .page>.list-index,.md .toolbar-bottom-md.tabbar-labels~.list-index,.md .toolbar-bottom-md.tabbar-labels~.page>.list-index,.toolbar-bottom.tabbar-labels~* .page>.list-index,.toolbar-bottom.tabbar-labels~.list-index,.toolbar-bottom.tabbar-labels~.page>.list-index{bottom:calc(var(--f7-tabbar-labels-height) + var(--f7-safe-area-bottom))}.ios .list-index .list-index-label{margin-bottom:calc(-1 * var(--f7-list-index-label-size)/ 2);margin-right:calc(var(--f7-list-index-width) - 1px);border-radius:50%}.ios .list-index .list-index-label:before{position:absolute;width:100%;height:100%;border-radius:50% 0% 50% 50%;content:'';background-color:inherit;left:0;top:0;transform:rotate(45deg);z-index:-1}.md .list-index .list-index-label{border-radius:50% 50% 0 50%}.aurora .list-index .list-index-label{margin-bottom:calc(-1 * var(--f7-list-index-label-size)/ 2);margin-right:calc(var(--f7-list-index-width) - 1px);border-radius:50%}.aurora .list-index .list-index-label:before{position:absolute;width:100%;height:100%;border-radius:50% 1px 50% 50%;content:'';background-color:inherit;left:0;top:0;transform:rotate(45deg);z-index:-1}:root{--f7-timeline-inner-block-margin-vertical:16px;--f7-timeline-divider-margin-horizontal:16px;--f7-timeline-horizontal-date-height:34px;--f7-timeline-year-height:24px;--f7-timeline-year-font-weight:inherit;--f7-timeline-month-height:24px;--f7-timeline-month-font-size:inherit;--f7-timeline-month-font-weight:inherit;--f7-timeline-item-text-font-weight:inherit;--f7-timeline-item-subtitle-font-weight:inherit;--f7-timeline-item-inner-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-timeline-item-inner-bg-color:#1c1c1d;--f7-timeline-horizontal-item-border-color:rgba(255, 255, 255, 0.15);--f7-timeline-horizontal-item-date-border-color:rgba(255, 255, 255, 0.15)}.ios{--f7-timeline-padding-horizontal:16px;--f7-timeline-margin-vertical:35px;--f7-timeline-item-inner-border-radius:7px;--f7-timeline-item-inner-box-shadow:none;--f7-timeline-item-time-font-size:13px;--f7-timeline-item-title-font-size:17px;--f7-timeline-item-title-line-height:inherit;--f7-timeline-item-title-font-weight:600;--f7-timeline-item-subtitle-font-size:15px;--f7-timeline-item-subtitle-line-height:inherit;--f7-timeline-item-text-font-size:inherit;--f7-timeline-item-text-color:inherit;--f7-timeline-item-text-line-height:inherit;--f7-timeline-year-font-size:16px;--f7-timeline-horizontal-item-padding:10px;--f7-timeline-horizontal-item-date-shadow-image:none;--f7-timeline-item-time-text-color:rgba(0, 0, 0, 0.45);--f7-timeline-horizontal-item-border-color:rgba(0, 0, 0, 0.22);--f7-timeline-horizontal-item-date-border-color:rgba(0, 0, 0, 0.22)}.ios .theme-dark,.ios.theme-dark{--f7-timeline-item-time-text-color:rgba(255, 255, 255, 0.55)}.md{--f7-timeline-padding-horizontal:16px;--f7-timeline-margin-vertical:32px;--f7-timeline-item-inner-border-radius:4px;--f7-timeline-item-inner-box-shadow:var(--f7-elevation-1);--f7-timeline-item-time-font-size:13px;--f7-timeline-item-title-font-size:16px;--f7-timeline-item-title-line-height:inherit;--f7-timeline-item-title-font-weight:400;--f7-timeline-item-subtitle-font-size:inherit;--f7-timeline-item-subtitle-line-height:inherit;--f7-timeline-item-text-font-size:inherit;--f7-timeline-item-text-line-height:inherit;--f7-timeline-item-text-color:inherit;--f7-timeline-year-font-size:16px;--f7-timeline-horizontal-item-padding:12px;--f7-timeline-horizontal-item-date-shadow-image:var(--f7-bars-shadow-bottom-image);--f7-timeline-item-time-text-color:rgba(0, 0, 0, 0.54);--f7-timeline-horizontal-item-border-color:rgba(0, 0, 0, 0.12);--f7-timeline-horizontal-item-date-border-color:transparent}.md .theme-dark,.md.theme-dark{--f7-timeline-item-time-text-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-timeline-padding-horizontal:16px;--f7-timeline-margin-vertical:32px;--f7-timeline-item-inner-border-radius:8px;--f7-timeline-item-inner-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.15);--f7-timeline-item-time-font-size:13px;--f7-timeline-item-title-font-size:16px;--f7-timeline-item-title-line-height:inherit;--f7-timeline-item-title-font-weight:600;--f7-timeline-item-subtitle-font-size:inherit;--f7-timeline-item-subtitle-line-height:inherit;--f7-timeline-item-text-font-size:inherit;--f7-timeline-item-text-line-height:inherit;--f7-timeline-item-text-color:inherit;--f7-timeline-year-font-size:16px;--f7-timeline-horizontal-item-padding:12px;--f7-timeline-horizontal-item-date-shadow-image:none;--f7-timeline-item-time-text-color:rgba(0, 0, 0, 0.5);--f7-timeline-horizontal-item-border-color:rgba(0, 0, 0, 0.2);--f7-timeline-horizontal-item-date-border-color:rgba(0, 0, 0, 0.2)}.aurora .theme-dark,.aurora.theme-dark{--f7-timeline-item-time-text-color:rgba(255, 255, 255, 0.54)}.timeline{box-sizing:border-box;margin:var(--f7-timeline-margin-vertical) 0;padding:0 var(--f7-timeline-padding-horizontal);padding-top:0;padding-bottom:0;padding-left:calc(var(--f7-timeline-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-timeline-padding-horizontal) + var(--f7-safe-area-right))}.block-strong .timeline{padding:0;margin:0}.timeline-item{display:flex;justify-content:flex-start;overflow:hidden;box-sizing:border-box;position:relative;padding:2px 0px var(--f7-timeline-padding-horizontal)}.timeline-item:last-child{padding-bottom:2px}.timeline-item-date{flex-shrink:0;width:50px;text-align:right;box-sizing:border-box}.timeline-item-date small{font-size:10px}.timeline-item-content{margin:2px;min-width:0;position:relative;flex-shrink:10}.timeline-item-content .block,.timeline-item-content .card,.timeline-item-content .list,.timeline-item-content.block,.timeline-item-content.card,.timeline-item-content.list{margin:0;width:100%}.timeline-item-content .block+.block,.timeline-item-content .block+.card,.timeline-item-content .block+.list,.timeline-item-content .card+.block,.timeline-item-content .card+.card,.timeline-item-content .card+.list,.timeline-item-content .list+.block,.timeline-item-content .list+.card,.timeline-item-content .list+.list{margin:var(--f7-timeline-inner-block-margin-vertical) 0 0}.timeline-item-content h1:first-child,.timeline-item-content h2:first-child,.timeline-item-content h3:first-child,.timeline-item-content h4:first-child,.timeline-item-content ol:first-child,.timeline-item-content p:first-child,.timeline-item-content ul:first-child{margin-top:0}.timeline-item-content h1:last-child,.timeline-item-content h2:last-child,.timeline-item-content h3:last-child,.timeline-item-content h4:last-child,.timeline-item-content ol:last-child,.timeline-item-content p:last-child,.timeline-item-content ul:last-child{margin-bottom:0}.timeline-item-inner{background:var(--f7-timeline-item-inner-bg-color);box-sizing:border-box;border-radius:var(--f7-timeline-item-inner-border-radius);padding:8px var(--f7-timeline-padding-horizontal);box-shadow:var(--f7-timeline-item-inner-box-shadow)}.timeline-item-inner+.timeline-item-inner{margin-top:var(--f7-timeline-inner-block-margin-vertical)}.timeline-item-inner .block{padding:0;color:inherit}.timeline-item-inner .block-strong{padding-left:0;padding-right:0;margin:0}.timeline-item-inner .block-strong:after,.timeline-item-inner .block-strong:before{display:none!important}.timeline-item-inner .list ul:after,.timeline-item-inner .list ul:before{display:none!important}.timeline-item-divider{width:1px;position:relative;width:10px;height:10px;background:#bbb;border-radius:50%;flex-shrink:0;margin:3px var(--f7-timeline-divider-margin-horizontal) 0}.timeline-item-divider:after,.timeline-item-divider:before{content:' ';width:1px;height:100vh;position:absolute;left:50%;background:inherit;transform:translate3d(-50%,0,0)}.timeline-item-divider:after{top:100%}.timeline-item-divider:before{bottom:100%}.timeline-item:last-child .timeline-item-divider:after{display:none}.timeline-item:first-child .timeline-item-divider:before{display:none}.timeline-item-time{font-size:var(--f7-timeline-item-time-font-size);margin-top:var(--f7-timeline-inner-block-margin-vertical);color:var(--f7-timeline-item-time-text-color)}.timeline-item-time:first-child,.timeline-item-time:last-child{margin-top:0}.timeline-item-title+.timeline-item-time{margin-top:0}.timeline-item-title{font-size:var(--f7-timeline-item-title-font-size);font-weight:var(--f7-timeline-item-title-font-weight);line-height:var(--f7-timeline-item-title-line-height)}.timeline-item-subtitle{font-size:var(--f7-timeline-item-subtitle-font-size);font-weight:var(--f7-timeline-item-subtitle-font-weight);line-height:var(--f7-timeline-item-subtitle-line-height)}.timeline-item-text{color:var(--f7-timeline-item-text-color);font-size:var(--f7-timeline-item-text-font-size);font-weight:var(--f7-timeline-item-text-font-weight);line-height:var(--f7-timeline-item-text-line-height)}.timeline-sides .timeline-item,.timeline-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.timeline-sides .timeline-item .timeline-item-date,.timeline-sides .timeline-item-right .timeline-item-date{text-align:right}.timeline-sides .timeline-item-left,.timeline-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.timeline-sides .timeline-item-left .timeline-item-date,.timeline-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}@media (min-width:480px){.xsmall-sides .timeline-item,.xsmall-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.xsmall-sides .timeline-item .timeline-item-date,.xsmall-sides .timeline-item-right .timeline-item-date{text-align:right}.xsmall-sides .timeline-item-left,.xsmall-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.xsmall-sides .timeline-item-left .timeline-item-date,.xsmall-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}}@media (min-width:568px){.small-sides .timeline-item,.small-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.small-sides .timeline-item .timeline-item-date,.small-sides .timeline-item-right .timeline-item-date{text-align:right}.small-sides .timeline-item-left,.small-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.small-sides .timeline-item-left .timeline-item-date,.small-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}}@media (min-width:768px){.medium-sides .timeline-item,.medium-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.medium-sides .timeline-item .timeline-item-date,.medium-sides .timeline-item-right .timeline-item-date{text-align:right}.medium-sides .timeline-item-left,.medium-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.medium-sides .timeline-item-left .timeline-item-date,.medium-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}}@media (min-width:1024px){.large-sides .timeline-item,.large-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.large-sides .timeline-item .timeline-item-date,.large-sides .timeline-item-right .timeline-item-date{text-align:right}.large-sides .timeline-item-left,.large-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.large-sides .timeline-item-left .timeline-item-date,.large-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}}@media (min-width:1200px){.xlarge-sides .timeline-item,.xlarge-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.xlarge-sides .timeline-item .timeline-item-date,.xlarge-sides .timeline-item-right .timeline-item-date{text-align:right}.xlarge-sides .timeline-item-left,.xlarge-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.xlarge-sides .timeline-item-left .timeline-item-date,.xlarge-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}}.timeline-horizontal{height:100%;display:flex;padding:0;margin:0;position:relative;padding-left:var(--f7-safe-area-left);padding-right:0}.timeline-horizontal .timeline-item{display:block;width:100/3vw;margin:0;padding:0;flex-shrink:0;position:relative;height:100%;padding-top:var(--f7-timeline-horizontal-date-height)!important;padding-bottom:var(--f7-timeline-horizontal-item-padding)}.timeline-horizontal .timeline-item:after{content:'';position:absolute;background-color:var(--f7-timeline-horizontal-item-border-color);display:block;z-index:15;top:0;right:0;bottom:auto;left:auto;width:1px;height:100%;transform-origin:100% 50%;transform:scaleX(calc(1 / var(--f7-device-pixel-ratio)))}.timeline-horizontal .timeline-item-date{padding:0px var(--f7-timeline-horizontal-item-padding);width:auto;line-height:var(--f7-timeline-horizontal-date-height);position:absolute;left:0;top:0;width:100%;height:var(--f7-timeline-horizontal-date-height);background-color:var(--f7-bars-bg-color);color:var(--f7-bars-text-color);text-align:left}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .timeline-horizontal .timeline-item-date{background-color:rgba(var(--f7-bars-bg-color-rgb),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.timeline-horizontal .timeline-item-date:after{content:'';position:absolute;background-color:var(--f7-timeline-horizontal-item-date-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.timeline-horizontal .timeline-item-date:before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-timeline-horizontal-item-date-shadow-image)}.timeline-horizontal.no-shadow .timeline-item-date:before{display:none}.timeline-horizontal .timeline-item-content{padding:var(--f7-timeline-horizontal-item-padding);height:calc(100% - var(--f7-timeline-horizontal-item-padding));overflow:auto;-webkit-overflow-scrolling:touch;margin:0}.timeline-horizontal .timeline-item-divider{display:none}.timeline-horizontal .timeline-month:last-child .timeline-item:last-child:after,.timeline-horizontal>.timeline-item:last-child:after{display:none!important}.timeline-horizontal.col-5 .timeline-item{width:5vw}.timeline-horizontal.col-10 .timeline-item{width:10vw}.timeline-horizontal.col-15 .timeline-item{width:15vw}.timeline-horizontal.col-20 .timeline-item{width:20vw}.timeline-horizontal.col-25 .timeline-item{width:25vw}.timeline-horizontal.col-30 .timeline-item{width:30vw}.timeline-horizontal.col-33 .timeline-item{width:100/3vw}.timeline-horizontal.col-35 .timeline-item{width:35vw}.timeline-horizontal.col-40 .timeline-item{width:40vw}.timeline-horizontal.col-45 .timeline-item{width:45vw}.timeline-horizontal.col-50 .timeline-item{width:50vw}.timeline-horizontal.col-55 .timeline-item{width:55vw}.timeline-horizontal.col-60 .timeline-item{width:60vw}.timeline-horizontal.col-65 .timeline-item{width:65vw}.timeline-horizontal.col-66 .timeline-item{width:66.66666666666666vw}.timeline-horizontal.col-70 .timeline-item{width:70vw}.timeline-horizontal.col-75 .timeline-item{width:75vw}.timeline-horizontal.col-80 .timeline-item{width:80vw}.timeline-horizontal.col-85 .timeline-item{width:85vw}.timeline-horizontal.col-90 .timeline-item{width:90vw}.timeline-horizontal.col-95 .timeline-item{width:95vw}.timeline-horizontal.col-100 .timeline-item{width:100vw}@media (min-width:768px){.timeline-horizontal.tablet-5 .timeline-item{width:5vw}.timeline-horizontal.tablet-10 .timeline-item{width:10vw}.timeline-horizontal.tablet-15 .timeline-item{width:15vw}.timeline-horizontal.tablet-20 .timeline-item{width:20vw}.timeline-horizontal.tablet-25 .timeline-item{width:25vw}.timeline-horizontal.tablet-30 .timeline-item{width:30vw}.timeline-horizontal.tablet-33 .timeline-item{width:100/3vw}.timeline-horizontal.tablet-35 .timeline-item{width:35vw}.timeline-horizontal.tablet-40 .timeline-item{width:40vw}.timeline-horizontal.tablet-45 .timeline-item{width:45vw}.timeline-horizontal.tablet-50 .timeline-item{width:50vw}.timeline-horizontal.tablet-55 .timeline-item{width:55vw}.timeline-horizontal.tablet-60 .timeline-item{width:60vw}.timeline-horizontal.tablet-65 .timeline-item{width:65vw}.timeline-horizontal.tablet-66 .timeline-item{width:66.66666666666666vw}.timeline-horizontal.tablet-70 .timeline-item{width:70vw}.timeline-horizontal.tablet-75 .timeline-item{width:75vw}.timeline-horizontal.tablet-80 .timeline-item{width:80vw}.timeline-horizontal.tablet-85 .timeline-item{width:85vw}.timeline-horizontal.tablet-90 .timeline-item{width:90vw}.timeline-horizontal.tablet-95 .timeline-item{width:95vw}.timeline-horizontal.tablet-100 .timeline-item{width:100vw}}.timeline-year{padding-top:var(--f7-timeline-year-height)}.timeline-year:after{content:'';position:absolute;background-color:var(--f7-timeline-horizontal-item-border-color);display:block;z-index:15;top:0;right:0;bottom:auto;left:auto;width:1px;height:100%;transform-origin:100% 50%;transform:scaleX(calc(1 / var(--f7-device-pixel-ratio)))}.timeline-year:last-child:after{display:none!important}.timeline-month{padding-top:var(--f7-timeline-month-height)}.timeline-month .timeline-item:before{content:'';position:absolute;background-color:var(--f7-timeline-horizontal-item-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.timeline-month,.timeline-year{display:flex;flex-shrink:0;position:relative;box-sizing:border-box;height:100%}.timeline-year-title{line-height:var(--f7-timeline-year-height);height:var(--f7-timeline-year-height);font-size:var(--f7-timeline-year-font-size);font-weight:var(--f7-timeline-year-font-weight)}.timeline-month-title{line-height:var(--f7-timeline-month-height);height:var(--f7-timeline-month-height);font-size:var(--f7-timeline-month-font-size);font-weight:var(--f7-timeline-month-font-weight)}.timeline-month-title,.timeline-year-title{position:absolute;left:0;top:0;width:100%;box-sizing:border-box;padding:0 var(--f7-timeline-horizontal-item-padding);background-color:var(--f7-bars-bg-color);color:var(--f7-bars-text-color)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .timeline-month-title,.ios-translucent-bars .timeline-year-title{background-color:rgba(var(--f7-bars-bg-color-rgb),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.timeline-month-title span,.timeline-year-title span{display:inline-block;position:-webkit-sticky;position:sticky;left:calc(var(--f7-timeline-horizontal-item-padding) + var(--f7-safe-area-left))}.timeline-month-title span{margin-top:-2px}.timeline-year:first-child .timeline-month:first-child .timeline-month-title,.timeline-year:first-child .timeline-year-title,.timeline-year:first-child .timeline-year-title+.timeline-month .timeline-month-title{left:calc(var(--f7-safe-area-left) * -1);right:0;width:auto}.timeline-horizontal .timeline-item:first-child,.timeline-year:first-child .timeline-month:first-child .timeline-item:first-child,.timeline-year:first-child .timeline-year-title+.timeline-month .timeline-item:first-child,.timeline-year:first-child .timeline-year-title+.timeline-month .timeline-month-title+.timeline-item{overflow:visible}.timeline-horizontal .timeline-item:first-child .timeline-item-date,.timeline-year:first-child .timeline-month:first-child .timeline-item:first-child .timeline-item-date,.timeline-year:first-child .timeline-year-title+.timeline-month .timeline-item:first-child .timeline-item-date,.timeline-year:first-child .timeline-year-title+.timeline-month .timeline-month-title+.timeline-item .timeline-item-date{width:auto;padding-left:calc(var(--f7-timeline-horizontal-item-padding) + var(--f7-safe-area-left));left:calc(0px - var(--f7-safe-area-left));right:0}.timeline-year:last-child .timeline-month:last-child .timeline-month-title,.timeline-year:last-child .timeline-year-title{width:auto;right:calc(0px - var(--f7-safe-area-right))}.timeline-horizontal .timeline-item:last-child,.timeline-year:last-child .timeline-month:last-child .timeline-item:last-child{overflow:visible}.timeline-horizontal .timeline-item:last-child .timeline-item-date,.timeline-year:last-child .timeline-month:last-child .timeline-item:last-child .timeline-item-date{width:auto;right:calc(0px - var(--f7-safe-area-right));left:0}.ios .block-strong .timeline-item-inner{border-radius:3px;border:1px solid rgba(0,0,0,.1)}.ios .timeline-year-title span{margin-top:3px}.md .timeline-year-title span{margin-top:2px}.aurora .timeline-year-title span{margin-top:2px}.tabs .tab{display:none}.tabs .tab-active{display:block}.tabs-animated-wrap{position:relative;width:100%;overflow:hidden;height:100%}.tabs-animated-wrap>.tabs{display:flex;height:100%;transition-duration:.3s}.tabs-animated-wrap>.tabs>.tab{width:100%;display:block;flex-shrink:0}.tabs-animated-wrap.not-animated>.tabs{transition-duration:0s}.tabs-swipeable-wrap{height:100%}.tabs-swipeable-wrap>.tabs{height:100%}.tabs-swipeable-wrap>.tabs>.tab{display:block}.page>.tabs{height:100%}:root{--f7-panel-width:260px;--f7-panel-bg-color:#fff}.ios{--f7-panel-collapsed-width:58px;--f7-panel-backdrop-bg-color:rgba(0, 0, 0, 0);--f7-panel-transition-duration:400ms;--f7-panel-shadow:transparent}.md{--f7-panel-collapsed-width:60px;--f7-panel-backdrop-bg-color:rgba(0, 0, 0, 0.3);--f7-panel-transition-duration:300ms;--f7-panel-shadow:rgba(0, 0, 0, 0.2) 0%,rgba(0, 0, 0, 0.07) 30%,rgba(0, 0, 0, 0.03) 40%,rgba(0, 0, 0, 0) 60%,rgba(0, 0, 0, 0) 100%}.aurora{--f7-panel-collapsed-width:60px;--f7-panel-backdrop-bg-color:rgba(0, 0, 0, 0.3);--f7-panel-transition-duration:300ms;--f7-panel-shadow:rgba(0, 0, 0, 0.2) 0%,rgba(0, 0, 0, 0.07) 30%,rgba(0, 0, 0, 0.03) 40%,rgba(0, 0, 0, 0) 60%,rgba(0, 0, 0, 0) 100%}.panel-backdrop{position:absolute;left:0;top:var(--f7-appbar-app-offset,0px);width:100%;height:calc(100% - var(--f7-appbar-app-offset,0px));opacity:0;z-index:5999;visibility:hidden;pointer-events:none;transform:translate3d(0,0,0);background-color:var(--f7-panel-backdrop-bg-color);transition-property:transform,opacity;transition-duration:var(--f7-panel-transition-duration)}.panel-backdrop .with-panel,.panel-backdrop .with-panel-closing{visibility:visible}.panel-backdrop.not-animated{transition-duration:0s!important}.panel{z-index:1000;box-sizing:border-box;position:absolute;top:var(--f7-appbar-app-offset,0px);height:calc(100% - var(--f7-appbar-app-offset,0px));transform:translate3d(0,0,0);width:var(--f7-panel-width);background-color:var(--f7-panel-bg-color);overflow:visible;transition-property:transform;transition-duration:var(--f7-panel-transition-duration)}.panel:not(.panel-in):not(.panel-out):not(.panel-in-breakpoint):not(.panel-in-collapsed):not(.panel-in-swipe){display:none}.panel:after{pointer-events:none;opacity:0;z-index:5999;position:absolute;content:'';top:0;width:20px;height:100%;transition-property:transform,opacity;transition-duration:var(--f7-panel-transition-duration)}.panel.not-animated,.panel.not-animated:after{transition-duration:0s!important}.panel.panel-reveal.not-animated~.view,.panel.panel-reveal.not-animated~.views{transition-duration:0s!important}.panel.panel-resizing{-webkit-user-select:none;-moz-user-select:none;user-select:none}.panel.panel-resizing,.panel.panel-resizing:after,.panel.panel-resizing~.view,.panel.panel-resizing~.views{transition-duration:0s!important}.panel-cover{z-index:6000}.panel-left{left:0;width:var(--f7-panel-left-width,var(--f7-panel-width))}.panel-left.panel-cover,.panel-left.panel-push{transform:translate3d(calc(-1 * var(--f7-panel-left-width,var(--f7-panel-width))),0,0)}.panel-left.panel-cover:after,.panel-left.panel-push:after{left:100%;background:linear-gradient(to right,var(--f7-panel-shadow))}.with-panel-left-cover .panel-left.panel-cover:after,.with-panel-left-cover .panel-left.panel-push:after{opacity:1}.panel-left.panel-reveal:after{right:0;transform:translate3d(calc(-1 * var(--f7-panel-left-width,var(--f7-panel-width))),0,0);background:linear-gradient(to left,var(--f7-panel-shadow))}.with-panel-left-reveal .panel-left.panel-reveal:after{opacity:1;transform:translate3d(0,0,0)}.panel-right{right:0;width:var(--f7-panel-right-width,var(--f7-panel-width))}.panel-right.panel-cover,.panel-right.panel-push{transform:translate3d(var(--f7-panel-right-width,var(--f7-panel-width)),0,0)}.panel-right.panel-cover:after,.panel-right.panel-push:after{right:100%;background:linear-gradient(to left,var(--f7-panel-shadow))}.with-panel-right-cover .panel-right.panel-cover:after,.with-panel-right-cover .panel-right.panel-push:after{opacity:1}.panel-right.panel-reveal:after{left:0;background:linear-gradient(to right,var(--f7-panel-shadow));transform:translate3d(var(--f7-panel-right-width,var(--f7-panel-width)),0,0)}.with-panel-right-reveal .panel-right.panel-reveal:after{opacity:1;transform:translate3d(0,0,0)}.panel-in-breakpoint{transform:translate3d(0,0,0)!important;transition-duration:0s}.panel-in-breakpoint:after{display:none}.panel-in-breakpoint.panel-cover{z-index:5900}html.with-panel-closing .framework7-root>.view,html.with-panel-closing .views,html.with-panel-left-push .framework7-root>.view,html.with-panel-left-push .views,html.with-panel-left-reveal .framework7-root>.view,html.with-panel-left-reveal .views,html.with-panel-right-push .framework7-root>.view,html.with-panel-right-push .views,html.with-panel-right-reveal .framework7-root>.view,html.with-panel-right-reveal .views{transition-duration:var(--f7-panel-transition-duration);transition-property:transform}html.with-panel .framework7-root>.view .page-content,html.with-panel .framework7-root>.views .page-content{overflow:hidden;-webkit-overflow-scrolling:auto}html.with-panel-left-push .framework7-root>.view,html.with-panel-left-push .views,html.with-panel-left-reveal .framework7-root>.view,html.with-panel-left-reveal .views{transform:translate3d(var(--f7-panel-left-width,var(--f7-panel-width)),0,0)}html.with-panel-right-push .framework7-root>.view,html.with-panel-right-push .views,html.with-panel-right-reveal .framework7-root>.view,html.with-panel-right-reveal .views{transform:translate3d(calc(-1 * var(--f7-panel-right-width,var(--f7-panel-width))),0,0)}.page>.panel-backdrop{z-index:290}.page .panel-push,.page>.panel-reveal{z-index:1}.page>.panel-cover{z-index:300}.page.with-panel-closing>.page-content,.page.with-panel-closing>.tabs,.page.with-panel-left-push>.page-content,.page.with-panel-left-push>.tabs,.page.with-panel-left-reveal>.page-content,.page.with-panel-left-reveal>.tabs,.page.with-panel-right-push>.page-content,.page.with-panel-right-push>.tabs,.page.with-panel-right-reveal>.page-content,.page.with-panel-right-reveal>.tabs{transition-duration:var(--f7-panel-transition-duration);transition-property:transform}.page.with-panel-left-push>.page-content,.page.with-panel-left-push>.tabs,.page.with-panel-left-reveal>.page-content,.page.with-panel-left-reveal>.tabs{transform:translate3d(var(--f7-panel-left-width,var(--f7-panel-width)),0,0)}.page.with-panel-right-push>.page-content,.page.with-panel-right-push>.tabs,.page.with-panel-right-reveal>.page-content,.page.with-panel-right-reveal>.tabs{transform:translate3d(calc(-1 * var(--f7-panel-right-width,var(--f7-panel-width))),0,0)}.with-panel-closing .panel-backdrop-in,.with-panel-left-reveal .panel-backdrop-in,.with-panel-right-reveal .panel-backdrop-in{visibility:visible;pointer-events:auto;opacity:0}.with-panel-left-cover .panel-backdrop-in,.with-panel-left-push .panel-backdrop-in,.with-panel-right-cover .panel-backdrop-in,.with-panel-right-push .panel-backdrop-in{visibility:visible;pointer-events:auto;opacity:1}.with-panel-left-push .panel-backdrop-in,.with-panel-left-reveal .panel-backdrop-in{transform:translate3d(var(--f7-panel-left-width,var(--f7-panel-width)),0,0)}.with-panel-right-push .panel-backdrop-in,.with-panel-right-reveal .panel-backdrop-in{transform:translate3d(calc(-1 * var(--f7-panel-right-width,var(--f7-panel-width))),0,0)}.with-panel-left-cover .panel-left,.with-panel-left-push .panel-left{transform:translate3d(0px,0,0)}.with-panel-right-cover .panel-right,.with-panel-right-push .panel-right{transform:translate3d(0px,0,0)}.panel-resize-handler{position:absolute;top:0;height:100%;width:6px;cursor:col-resize;z-index:6000;display:none}.panel-resizable .panel-resize-handler{display:block}.panel-left.panel-cover .panel-resize-handler{right:-3px}.panel-left.panel-push .panel-resize-handler,.panel-resize-handler .panel-left.panel-reveal{right:0}.panel-right.panel-cover .panel-resize-handler{left:-3px}.panel-resize-handler .panel-right.panel-reveal,.panel-right.panel-push .panel-resize-handler{left:0}.panel-left.panel-in-collapsed~.page-content,.panel-left.panel-in-collapsed~.tabs,.panel-left.panel-in-collapsed~.view,.panel-left.panel-in-collapsed~.views{margin-left:var(--f7-panel-left-collapsed-width,var(--f7-panel-collapsed-width))}.page.with-panel-left-reveal .panel-left.panel-in-collapsed~.page-content,.page.with-panel-left-reveal .panel-left.panel-in-collapsed~.tabs,html.with-panel-left-reveal .panel-left.panel-in-collapsed~.view,html.with-panel-left-reveal .panel-left.panel-in-collapsed~.views{transform:translate3d(calc(var(--f7-panel-left-width,var(--f7-panel-width)) - var(--f7-panel-left-collapsed-width,var(--f7-panel-collapsed-width))),0,0)}.panel-right.panel-in-collapsed~.page-content,.panel-right.panel-in-collapsed~.tabs,.panel-right.panel-in-collapsed~.view,.panel-right.panel-in-collapsed~.views{margin-right:var(--f7-panel-right-collapsed-width,var(--f7-panel-collapsed-width))}.page.with-panel-right-reveal .panel-right.panel-in-collapsed~.page-content,.page.with-panel-right-reveal .panel-right.panel-in-collapsed~.tabs,html.with-panel-right-reveal .panel-right.panel-in-collapsed~.view,html.with-panel-right-reveal .panel-right.panel-in-collapsed~.views{transform:translate3d(calc(var(--f7-panel-right-collapsed-width,var(--f7-panel-collapsed-width)) - var(--f7-panel-right-width,var(--f7-panel-width))),0,0)}html.with-modal-popup-push .framework7-root,html.with-modal-popup-push-closing .framework7-root{--f7-panelPushScale:var(--f7-popup-push-scale);--f7-panelPushTransitionDuration:var(--f7-popup-transition-duration);--f7-panelPushBorderRadius:var(--f7-popup-push-border-radius)}html.with-modal-sheet-push .framework7-root,html.with-modal-sheet-push-closing .framework7-root{--f7-panelPushScale:var(--f7-sheet-push-scale);--f7-panelPushTransitionDuration:var(--f7-sheet-transition-duration);--f7-panelPushBorderRadius:var(--f7-sheet-push-border-radius)}html.with-modal-popup-push .framework7-root>.panel-in,html.with-modal-popup-push .framework7-root>.panel-out,html.with-modal-sheet-push .framework7-root>.panel-in,html.with-modal-sheet-push .framework7-root>.panel-out{transition-duration:var(--f7-panelPushTransitionDuration)}html.with-modal-popup-push .framework7-root>.panel-in.panel-push.panel-left,html.with-modal-popup-push .framework7-root>.panel-in.panel-reveal.panel-left,html.with-modal-popup-push .framework7-root>.panel-out.panel-push.panel-left,html.with-modal-popup-push .framework7-root>.panel-out.panel-reveal.panel-left,html.with-modal-sheet-push .framework7-root>.panel-in.panel-push.panel-left,html.with-modal-sheet-push .framework7-root>.panel-in.panel-reveal.panel-left,html.with-modal-sheet-push .framework7-root>.panel-out.panel-push.panel-left,html.with-modal-sheet-push .framework7-root>.panel-out.panel-reveal.panel-left{transform:scale(var(--f7-panelPushScale,1));transform-origin:50vw center;border-top-left-radius:var(--f7-panelPushBorderRadius)}html.with-modal-popup-push .framework7-root>.panel-in.panel-push.panel-left .view,html.with-modal-popup-push .framework7-root>.panel-in.panel-reveal.panel-left .view,html.with-modal-popup-push .framework7-root>.panel-out.panel-push.panel-left .view,html.with-modal-popup-push .framework7-root>.panel-out.panel-reveal.panel-left .view,html.with-modal-sheet-push .framework7-root>.panel-in.panel-push.panel-left .view,html.with-modal-sheet-push .framework7-root>.panel-in.panel-reveal.panel-left .view,html.with-modal-sheet-push .framework7-root>.panel-out.panel-push.panel-left .view,html.with-modal-sheet-push .framework7-root>.panel-out.panel-reveal.panel-left .view{border-top-left-radius:var(--f7-panelPushBorderRadius)}html.with-modal-popup-push .framework7-root>.panel-in.panel-push.panel-right,html.with-modal-popup-push .framework7-root>.panel-in.panel-reveal.panel-right,html.with-modal-popup-push .framework7-root>.panel-out.panel-push.panel-right,html.with-modal-popup-push .framework7-root>.panel-out.panel-reveal.panel-right,html.with-modal-sheet-push .framework7-root>.panel-in.panel-push.panel-right,html.with-modal-sheet-push .framework7-root>.panel-in.panel-reveal.panel-right,html.with-modal-sheet-push .framework7-root>.panel-out.panel-push.panel-right,html.with-modal-sheet-push .framework7-root>.panel-out.panel-reveal.panel-right{transform:scale(var(--f7-panelPushScale,1));transform-origin:calc(var(--f7-panel-left-width,var(--f7-panel-width)) - 50vw) center;border-top-right-radius:var(--f7-panelPushBorderRadius)}html.with-modal-popup-push .framework7-root>.panel-in.panel-push.panel-right .view,html.with-modal-popup-push .framework7-root>.panel-in.panel-reveal.panel-right .view,html.with-modal-popup-push .framework7-root>.panel-out.panel-push.panel-right .view,html.with-modal-popup-push .framework7-root>.panel-out.panel-reveal.panel-right .view,html.with-modal-sheet-push .framework7-root>.panel-in.panel-push.panel-right .view,html.with-modal-sheet-push .framework7-root>.panel-in.panel-reveal.panel-right .view,html.with-modal-sheet-push .framework7-root>.panel-out.panel-push.panel-right .view,html.with-modal-sheet-push .framework7-root>.panel-out.panel-reveal.panel-right .view{border-top-right-radius:var(--f7-panelPushBorderRadius)}html.with-modal-popup-push .framework7-root>.panel-in.panel-cover.panel-left,html.with-modal-popup-push .framework7-root>.panel-out.panel-cover.panel-left,html.with-modal-sheet-push .framework7-root>.panel-in.panel-cover.panel-left,html.with-modal-sheet-push .framework7-root>.panel-out.panel-cover.panel-left{transform:translate3d(calc(-1 * var(--f7-panel-left-width,var(--f7-panel-width))),0,0px)}html.with-modal-popup-push .framework7-root>.panel-in.panel-cover.panel-right,html.with-modal-popup-push .framework7-root>.panel-out.panel-cover.panel-right,html.with-modal-sheet-push .framework7-root>.panel-in.panel-cover.panel-right,html.with-modal-sheet-push .framework7-root>.panel-out.panel-cover.panel-right{transform:translate3d(var(--f7-panel-right-width,var(--f7-panel-width)),0,0px)}html.with-modal-popup-push-closing .framework7-root>.panel-in,html.with-modal-sheet-push-closing .framework7-root>.panel-in{transition-duration:var(--f7-panelPushTransitionDuration)}html.with-modal-popup-push-closing .framework7-root>.panel-in.panel-push.panel-left,html.with-modal-popup-push-closing .framework7-root>.panel-in.panel-reveal.panel-left,html.with-modal-sheet-push-closing .framework7-root>.panel-in.panel-push.panel-left,html.with-modal-sheet-push-closing .framework7-root>.panel-in.panel-reveal.panel-left{transform-origin:50vw center}html.with-modal-popup-push-closing .framework7-root>.panel-in.panel-push.panel-right,html.with-modal-popup-push-closing .framework7-root>.panel-in.panel-reveal.panel-right,html.with-modal-sheet-push-closing .framework7-root>.panel-in.panel-push.panel-right,html.with-modal-sheet-push-closing .framework7-root>.panel-in.panel-reveal.panel-right{transform-origin:calc(var(--f7-panel-right-width,var(--f7-panel-width)) - 50vw) center}:root{--f7-card-margin-horizontal:16px;--f7-card-margin-vertical:16px;--f7-card-content-padding-horizontal:16px;--f7-card-content-padding-vertical:16px;--f7-card-border-radius:4px;--f7-card-font-size:inherit;--f7-card-header-text-color:inherit;--f7-card-header-font-weight:400;--f7-card-header-padding-horizontal:16px;--f7-card-footer-font-weight:400;--f7-card-footer-font-size:inherit;--f7-card-footer-padding-horizontal:16px;--f7-card-expandable-font-size:16px;--f7-card-expandable-tablet-width:670px;--f7-card-expandable-tablet-height:670px;--f7-card-bg-color:#fff;--f7-card-outline-border-color:rgba(0, 0, 0, 0.12);--f7-card-header-border-color:rgba(0, 0, 0, 0.1);--f7-card-footer-border-color:rgba(0, 0, 0, 0.1);--f7-card-expandable-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-card-bg-color:#1c1c1d;--f7-card-expandable-bg-color:#1c1c1d;--f7-card-outline-border-color:rgba(255, 255, 255, 0.15);--f7-card-header-border-color:rgba(255, 255, 255, 0.15);--f7-card-footer-border-color:rgba(255, 255, 255, 0.15);--f7-card-footer-text-color:rgba(255, 255, 255, 0.55)}.ios{--f7-card-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.2);--f7-card-header-font-size:17px;--f7-card-header-padding-vertical:10px;--f7-card-header-min-height:44px;--f7-card-footer-text-color:rgba(0, 0, 0, 0.45);--f7-card-footer-padding-vertical:10px;--f7-card-footer-min-height:44px;--f7-card-expandable-margin-horizontal:20px;--f7-card-expandable-margin-vertical:30px;--f7-card-expandable-box-shadow:0px 20px 40px rgba(0, 0, 0, 0.3);--f7-card-expandable-border-radius:15px;--f7-card-expandable-tablet-border-radius:5px;--f7-card-expandable-header-font-size:27px;--f7-card-expandable-header-font-weight:bold}.md{--f7-card-box-shadow:var(--f7-elevation-1);--f7-card-header-font-size:16px;--f7-card-header-padding-vertical:4px;--f7-card-header-min-height:48px;--f7-card-footer-text-color:rgba(0, 0, 0, 0.54);--f7-card-footer-padding-vertical:4px;--f7-card-footer-min-height:48px;--f7-card-expandable-margin-horizontal:12px;--f7-card-expandable-margin-vertical:24px;--f7-card-expandable-box-shadow:var(--f7-elevation-10);--f7-card-expandable-border-radius:8px;--f7-card-expandable-tablet-border-radius:4px;--f7-card-expandable-header-font-size:24px;--f7-card-expandable-header-font-weight:500}.aurora{--f7-card-border-radius:8px;--f7-card-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.15);--f7-card-header-font-size:16px;--f7-card-header-font-weight:bold;--f7-card-header-padding-vertical:8px;--f7-card-header-min-height:48px;--f7-card-footer-text-color:rgba(0, 0, 0, 0.6);--f7-card-footer-padding-vertical:8px;--f7-card-footer-min-height:48px;--f7-card-expandable-margin-horizontal:10px;--f7-card-expandable-margin-vertical:20px;--f7-card-expandable-box-shadow:0px 10px 20px rgba(0, 0, 0, 0.2);--f7-card-expandable-border-radius:8px;--f7-card-expandable-tablet-border-radius:4px;--f7-card-expandable-header-font-size:24px;--f7-card-expandable-header-font-weight:bold}.card .list>ul:after,.card .list>ul:before,.cards-list>ul:after,.cards-list>ul:before{display:none!important}.card .list ul,.cards-list ul{background:0 0}.card{background:var(--f7-card-bg-color);position:relative;border-radius:var(--f7-card-border-radius);font-size:var(--f7-card-font-size);margin-top:var(--f7-card-margin-vertical);margin-bottom:var(--f7-card-margin-vertical);margin-left:calc(var(--f7-card-margin-horizontal) + var(--f7-safe-area-left));margin-right:calc(var(--f7-card-margin-horizontal) + var(--f7-safe-area-right));box-shadow:var(--f7-card-box-shadow)}.card .block,.card .list{margin:0}.row:not(.no-gap) .col>.card{margin-left:0;margin-right:0}.card.no-shadow{box-shadow:none}.aurora .card-outline-aurora,.card-outline,.ios .card-outline-ios,.md .card-outline-md{box-shadow:none;border:1px solid var(--f7-card-outline-border-color)}.aurora .card-outline-aurora.no-border,.aurora .card-outline-aurora.no-hairlines,.card-outline.no-border,.card-outline.no-hairlines,.ios .card-outline-ios.no-border,.ios .card-outline-ios.no-hairlines,.md .card-outline-md.no-border,.md .card-outline-md.no-hairlines{border:none}.card-content{position:relative}.card-content-padding{position:relative;padding:var(--f7-card-content-padding-vertical) var(--f7-card-content-padding-horizontal)}.card-content-padding>.block,.card-content-padding>.list{margin:calc(-1 * var(--f7-card-content-padding-vertical)) calc(-1 * var(--f7-card-content-padding-horizontal))}.card-content-padding>p:first-child{margin-top:0}.card-content-padding>p:last-child{margin-bottom:0}.card-header{min-height:var(--f7-card-header-min-height);color:var(--f7-card-header-text-color);font-size:var(--f7-card-header-font-size);font-weight:var(--f7-card-header-font-weight);padding:var(--f7-card-header-padding-vertical) var(--f7-card-header-padding-horizontal)}.card-footer{min-height:var(--f7-card-footer-min-height);color:var(--f7-card-footer-text-color);font-size:var(--f7-card-footer-font-size);font-weight:var(--f7-card-footer-font-weight);padding:var(--f7-card-footer-padding-vertical) var(--f7-card-footer-padding-horizontal)}.card-footer a.link{overflow:hidden}.card-footer,.card-header{position:relative;box-sizing:border-box;display:flex;justify-content:space-between;align-items:center}.card-footer[valign=top],.card-header[valign=top]{align-items:flex-start}.card-footer[valign=bottom],.card-header[valign=bottom]{align-items:flex-end}.card-footer a.link,.card-header a.link{position:relative}.card-footer a.link i.icon,.card-header a.link i.icon{display:block}.card-footer a.icon-only,.card-header a.icon-only{display:flex;justify-content:center;align-items:center;margin:0}.card-header{border-radius:var(--f7-card-border-radius) var(--f7-card-border-radius) 0 0}.card-header:after{content:'';position:absolute;background-color:var(--f7-card-header-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.card-header.no-hairline:after{display:none!important}.card-footer{border-radius:0 0 var(--f7-card-border-radius) var(--f7-card-border-radius)}.card-footer:before{content:'';position:absolute;background-color:var(--f7-card-footer-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.card-footer.no-hairline:before{display:none!important}.card-expandable{overflow:hidden;height:300px;background:var(--f7-card-expandable-bg-color);position:relative;transform-origin:center center;transition-property:transform,border-radius;border-radius:var(--f7-card-expandable-border-radius);z-index:2;transition-duration:.2s;margin-left:calc(var(--f7-card-expandable-margin-horizontal) + var(--f7-safe-area-left));margin-right:calc(var(--f7-card-expandable-margin-horizontal) + var(--f7-safe-area-right));margin-top:var(--f7-card-expandable-margin-vertical);margin-bottom:var(--f7-card-expandable-margin-vertical);box-shadow:var(--f7-card-expandable-box-shadow);font-size:var(--f7-card-expandable-font-size)}.card-expandable:not(.card-opened){-webkit-user-select:none;-moz-user-select:none;user-select:none}.card-expandable.card-no-transition{transition-duration:0s}.card-expandable.card-expandable-animate-width .card-content{transition-property:width,transform;width:100%}.card-expandable.active-state{transform:scale(.97) translate3d(0,0,0)}.card-expandable .card-opened-fade-in,.card-expandable .card-opened-fade-out{transition-duration:.4s}.card-expandable .card-opened-fade-in{opacity:0;pointer-events:none}.card-expandable .card-content{position:absolute;top:0;width:100vw;height:100vh;transform-origin:center top;overflow:hidden;transition-property:transform;box-sizing:border-box;pointer-events:none;left:0}.card-expandable .card-content .card-content-padding{padding-left:calc(var(--f7-safe-area-left) + var(--f7-card-content-padding-horizontal));padding-right:calc(var(--f7-safe-area-right) + var(--f7-card-content-padding-horizontal))}.card-expandable.card-opened{transition-duration:0s}.card-expandable.card-closing,.card-expandable.card-opening,.card-expandable.card-transitioning{transition-duration:.4s}.card-expandable.card-opening .card-content{transition-duration:.3s}.card-expandable.card-closing .card-content{transition-duration:.5s}.card-expandable.card-closing,.card-expandable.card-opened,.card-expandable.card-opening{z-index:300}.card-expandable.card-opened,.card-expandable.card-opening{border-radius:0}.card-expandable.card-opened .card-opened-fade-in,.card-expandable.card-opening .card-opened-fade-in{opacity:1;pointer-events:auto}.card-expandable.card-opened .card-opened-fade-out,.card-expandable.card-opening .card-opened-fade-out{opacity:0;pointer-events:none}.card-expandable.card-opened .card-content{overflow:auto;-webkit-overflow-scrolling:touch;pointer-events:auto}.card-expandable .card-header{font-size:var(--f7-card-expandable-header-font-size);font-weight:var(--f7-card-expandable-header-font-weight)}.card-expandable .card-header:after{display:none!important}.card-prevent-open{pointer-events:auto}.card-expandable-size{width:0;height:0;position:absolute;left:0;top:0;opacity:0;pointer-events:none;visibility:hidden}@media (min-width:768px) and (min-height:670px){.card-expandable:not(.card-tablet-fullscreen){max-width:var(--f7-card-expandable-tablet-width)}.card-expandable:not(.card-tablet-fullscreen).card-opened,.card-expandable:not(.card-tablet-fullscreen).card-opening{border-radius:var(--f7-card-expandable-tablet-border-radius)}.card-expandable:not(.card-tablet-fullscreen):not(.card-expandable-animate-width) .card-content{width:var(--f7-card-expandable-tablet-width)}.card-expandable:not(.card-tablet-fullscreen) .card-expandable-size{width:var(--f7-card-expandable-tablet-width);height:var(--f7-card-expandable-tablet-height)}}.page.page-with-card-opened .page-content{overflow:hidden}.card-backdrop{position:fixed;left:0;top:0;width:100%;height:100%;z-index:299;pointer-events:none;background:rgba(0,0,0,.2);opacity:0}.card-backdrop-in{animation:card-backdrop-fade-in .4s forwards;pointer-events:auto}.card-backdrop-out{animation:card-backdrop-fade-out .4s forwards}@supports ((-webkit-backdrop-filter:blur(15px)) or (backdrop-filter:blur(15px))){.card-backdrop{background:0 0;-webkit-backdrop-filter:blur(15px);backdrop-filter:blur(15px)}}@keyframes card-backdrop-fade-in{from{opacity:0}to{opacity:1}}@keyframes card-backdrop-fade-out{from{opacity:1}to{opacity:0}}:root{--f7-chip-font-size:14px;--f7-chip-font-weight:normal;--f7-chip-media-font-size:16px;--f7-chip-bg-color:rgba(0, 0, 0, 0.12);--f7-chip-outline-border-color:rgba(0, 0, 0, 0.12);--f7-chip-delete-button-color:#000}:root .theme-dark,:root.theme-dark{--f7-chip-delete-button-color:#fff;--f7-chip-bg-color:#333;--f7-chip-outline-border-color:rgba(255, 255, 255, 0.12)}.ios{--f7-chip-height:28px;--f7-chip-padding-horizontal:10px;--f7-chip-text-color:#000}.ios .theme-dark,.ios.theme-dark{--f7-chip-text-color:#fff}.md{--f7-chip-height:32px;--f7-chip-padding-horizontal:12px;--f7-chip-text-color:rgba(0, 0, 0, 0.87)}.md .theme-dark,.md.theme-dark{--f7-chip-text-color:rgba(255, 255, 255, 0.87)}.aurora{--f7-chip-height:32px;--f7-chip-padding-horizontal:12px;--f7-chip-text-color:#000}.aurora .theme-dark,.aurora.theme-dark{--f7-chip-text-color:#fff}.chip{padding-left:var(--f7-chip-padding-horizontal);padding-right:var(--f7-chip-padding-horizontal);font-weight:var(--f7-chip-font-weight);display:inline-flex;box-sizing:border-box;vertical-align:middle;align-items:center;margin:2px 0;background-color:var(--f7-chip-bg-color);font-size:var(--f7-chip-font-size);color:var(--f7-chip-text-color);height:var(--f7-chip-height);line-height:var(--f7-chip-height);border-radius:var(--f7-chip-height);position:relative}.chip-media{border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;height:var(--f7-chip-height);width:var(--f7-chip-height);border-radius:var(--f7-chip-height);text-align:center;line-height:var(--f7-chip-height);box-sizing:border-box;color:#fff;font-size:var(--f7-chip-media-font-size);vertical-align:middle;margin-left:calc(-1 * var(--f7-chip-padding-horizontal))}.chip-media i.icon{font-size:calc(var(--f7-chip-height) - 8px);height:calc(var(--f7-chip-height) - 8px)}.chip-media img{max-width:100%;max-height:100%;width:auto;height:auto;border-radius:50%;display:block}.chip-media+.chip-label{margin-left:4px}.chip-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:relative;flex-shrink:1;min-width:0}.chip-delete{text-align:center;cursor:pointer;flex-shrink:0;background-repeat:no-repeat;width:24px;height:24px;color:var(--f7-chip-delete-button-color);opacity:.54;position:relative}.chip-delete:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;content:'delete_round_ios';line-height:24px}.chip .chip-delete.active-state{opacity:1}.aurora .chip-outline-aurora,.chip-outline,.ios .chip-outline-ios,.md .chip-outline-md{border:1px solid var(--f7-chip-outline-border-color);background:0 0}.chip[class*=color-]{--f7-chip-bg-color:var(--f7-theme-color);--f7-chip-text-color:#fff}.aurora .chip-outline-aurora[class*=color-],.chip-outline[class*=color-],.ios .chip-outline-ios[class*=color-],.md .chip-outline-md[class*=color-]{--f7-chip-outline-border-color:var(--f7-theme-color);--f7-chip-text-color:var(--f7-theme-color)}.ios .chip-delete{margin-right:calc(-1 * var(--f7-chip-padding-horizontal))}.ios .chip-delete:after{font-size:10px}.md .chip-label+.chip-delete{margin-left:4px}.md .chip-delete{margin-right:calc(-1 * var(--f7-chip-padding-horizontal) + 4px)}.md .chip-delete:after{font-size:12px}.aurora .chip-delete{margin-right:calc(-1 * var(--f7-chip-padding-horizontal))}.aurora .chip-delete:after{font-size:10px}:root{--f7-input-bg-color:transparent;--f7-label-font-weight:400;--f7-label-line-height:1.3;--f7-input-padding-left:0px;--f7-input-padding-right:0px;--f7-input-error-text-color:#ff3b30;--f7-input-error-font-size:12px;--f7-input-error-line-height:1.4;--f7-input-error-font-weight:400;--f7-input-info-font-size:12px;--f7-input-info-line-height:1.4;--f7-input-outline-height:40px;--f7-input-outline-border-radius:4px;--f7-input-outline-padding-horizontal:12px;--f7-textarea-height:100px;--f7-input-outline-border-color:#bbb}:root .theme-dark,:root.theme-dark{--f7-input-outline-border-color:#444}.ios{--f7-input-height:44px;--f7-input-font-size:17px;--f7-input-placeholder-color:#a9a9a9;--f7-textarea-padding-vertical:11px;--f7-label-font-size:12px;--f7-label-text-color:inherit;--f7-floating-label-scale:calc(17 / 12);--f7-inline-label-font-size:17px;--f7-inline-label-line-height:1.4;--f7-inline-label-padding-top:3px;--f7-input-clear-button-size:14px;--f7-input-text-color:#000000;--f7-input-info-text-color:rgba(0, 0, 0, 0.45);--f7-input-clear-button-color:rgba(0, 0, 0, 0.45)}.ios .theme-dark,.ios.theme-dark{--f7-input-text-color:#fff;--f7-input-info-text-color:rgba(255, 255, 255, 0.55);--f7-input-clear-button-color:rgba(255, 255, 255, 0.5)}.md{--f7-input-height:36px;--f7-input-font-size:16px;--f7-textarea-padding-vertical:7px;--f7-label-font-size:12px;--f7-floating-label-scale:calc(16 / 12);--f7-inline-label-font-size:16px;--f7-inline-label-line-height:1.5;--f7-inline-label-padding-top:7px;--f7-input-clear-button-size:18px;--f7-input-clear-button-color:#aaa;--f7-input-text-color:#212121;--f7-input-placeholder-color:rgba(0, 0, 0, 0.35);--f7-label-text-color:rgba(0, 0, 0, 0.65);--f7-input-info-text-color:rgba(0, 0, 0, 0.45)}.md .theme-dark,.md.theme-dark{--f7-input-text-color:rgba(255, 255, 255, 0.87);--f7-input-placeholder-color:rgba(255, 255, 255, 0.35);--f7-label-text-color:rgba(255, 255, 255, 0.54);--f7-input-info-text-color:rgba(255, 255, 255, 0.45)}.aurora{--f7-input-height:32px;--f7-input-font-size:16px;--f7-textarea-padding-vertical:4px;--f7-label-font-size:12px;--f7-label-text-color:inherit;--f7-floating-label-scale:calc(16 / 12);--f7-inline-label-font-size:16px;--f7-inline-label-line-height:1.5;--f7-inline-label-padding-top:4px;--f7-input-clear-button-size:14px;--f7-input-outline-border-radius:8px;--f7-input-text-color:#000000;--f7-input-placeholder-color:rgba(0, 0, 0, 0.32);--f7-input-clear-button-color:rgba(0, 0, 0, 0.45);--f7-input-info-text-color:rgba(0, 0, 0, 0.5)}.aurora .theme-dark,.aurora.theme-dark{--f7-input-text-color:#fff;--f7-input-clear-button-color:rgba(255, 255, 255, 0.5);--f7-input-placeholder-color:rgba(255, 255, 255, 0.35);--f7-input-info-text-color:rgba(255, 255, 255, 0.45)}input[type=date],input[type=datetime-local],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],select,textarea{box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;box-shadow:none;border-radius:0;outline:0;display:block;padding:0;margin:0;font-family:inherit;background:0 0;resize:none;font-size:inherit;color:inherit}.textarea-resizable-shadow{opacity:0;position:absolute;z-index:-1000;pointer-events:none;left:-1000px;top:-1000px;visibility:hidden}.list input[type=date],.list input[type=datetime-local],.list input[type=email],.list input[type=month],.list input[type=number],.list input[type=password],.list input[type=search],.list input[type=tel],.list input[type=text],.list input[type=time],.list input[type=url],.list select{width:100%;height:var(--f7-input-height);color:var(--f7-input-text-color);font-size:var(--f7-input-font-size);background-color:var(--f7-input-bg-color,transparent);padding-left:var(--f7-input-padding-left);padding-right:var(--f7-input-padding-right)}.list input[type=date]::-webkit-input-placeholder,.list input[type=datetime-local]::-webkit-input-placeholder,.list input[type=email]::-webkit-input-placeholder,.list input[type=month]::-webkit-input-placeholder,.list input[type=number]::-webkit-input-placeholder,.list input[type=password]::-webkit-input-placeholder,.list input[type=search]::-webkit-input-placeholder,.list input[type=tel]::-webkit-input-placeholder,.list input[type=text]::-webkit-input-placeholder,.list input[type=time]::-webkit-input-placeholder,.list input[type=url]::-webkit-input-placeholder,.list select::-webkit-input-placeholder{color:var(--f7-input-placeholder-color)}.list input[type=date]::placeholder,.list input[type=datetime-local]::placeholder,.list input[type=email]::placeholder,.list input[type=month]::placeholder,.list input[type=number]::placeholder,.list input[type=password]::placeholder,.list input[type=search]::placeholder,.list input[type=tel]::placeholder,.list input[type=text]::placeholder,.list input[type=time]::placeholder,.list input[type=url]::placeholder,.list select::placeholder{color:var(--f7-input-placeholder-color)}.list textarea{width:100%;color:var(--f7-input-text-color);font-size:var(--f7-input-font-size);resize:none;line-height:1.4;height:var(--f7-textarea-height);background-color:var(--f7-input-bg-color,transparent);padding-top:var(--f7-textarea-padding-vertical);padding-bottom:var(--f7-textarea-padding-vertical);padding-left:var(--f7-input-padding-left);padding-right:var(--f7-input-padding-right)}.list textarea::-webkit-input-placeholder{color:var(--f7-input-placeholder-color)}.list textarea::placeholder{color:var(--f7-input-placeholder-color)}.list textarea.resizable{height:var(--f7-input-height)}.list input[type=datetime-local]{max-width:50vw}.list input[type=date],.list input[type=datetime-local],.list input[type=month],.list input[type=time]{line-height:var(--f7-input-height)}.list .item-floating-label,.list .item-label{width:100%;vertical-align:top;flex-shrink:0;font-size:var(--f7-label-font-size);font-weight:var(--f7-label-font-weight);line-height:var(--f7-label-line-height);color:var(--f7-label-text-color);transition-duration:.2s;transition-property:transform,color}.list .item-floating-label{--label-height:calc(var(--f7-label-font-size) * var(--f7-label-line-height));transform:scale(var(--f7-floating-label-scale)) translateY(calc((var(--f7-input-height)/ 2 + 50%)/ var(--f7-floating-label-scale)));color:var(--f7-input-placeholder-color);width:auto;max-width:calc(100% / var(--f7-floating-label-scale));pointer-events:none;left:var(--f7-input-padding-left);transform-origin:left center}.list .item-floating-label~.item-input-wrap input::-webkit-input-placeholder,.list .item-floating-label~.item-input-wrap textarea::-webkit-input-placeholder{opacity:0;transition-duration:.1s}.list .item-floating-label~.item-input-wrap input::placeholder,.list .item-floating-label~.item-input-wrap textarea::placeholder{opacity:0;transition-duration:.1s}.list .item-floating-label~.item-input-wrap input.input-focused::-webkit-input-placeholder,.list .item-floating-label~.item-input-wrap textarea.input-focused::-webkit-input-placeholder{opacity:1;transition-duration:.3s}.list .item-floating-label~.item-input-wrap input.input-focused::placeholder,.list .item-floating-label~.item-input-wrap textarea.input-focused::placeholder{opacity:1;transition-duration:.3s}.list .item-input-with-value .item-floating-label{color:var(--f7-label-text-color)}.list .item-input-focused .item-floating-label,.list .item-input-with-value .item-floating-label{transform:scale(1) translateY(0)}.list .item-input-wrap{width:100%;flex-shrink:1;position:relative}.item-input .item-inner{display:flex;flex-direction:column;align-items:flex-start}.input-error-message,.item-input-error-message{font-size:var(--f7-input-error-font-size);line-height:var(--f7-input-error-line-height);color:var(--f7-input-error-text-color);font-weight:var(--f7-input-error-font-weight);display:none;box-sizing:border-box}.input-info,.item-input-info{font-size:var(--f7-input-info-font-size);line-height:var(--f7-input-info-line-height);color:var(--f7-input-info-text-color)}.input-invalid .input-error-message,.input-invalid .item-input-error-message,.item-input-invalid .input-error-message,.item-input-invalid .item-input-error-message{display:block}.input-invalid .input-info,.input-invalid .item-input-info,.item-input-invalid .input-info,.item-input-invalid .item-input-info{display:none}.inline-label .item-inner,.inline-labels .item-inner{display:flex;align-items:center;flex-direction:row}.inline-label .item-floating-label,.inline-label .item-label,.inline-labels .item-floating-label,.inline-labels .item-label{padding-top:var(--f7-inline-label-padding-top);align-self:flex-start;width:35%;font-size:var(--f7-inline-label-font-size);line-height:var(--f7-inline-label-line-height)}.inline-label .item-floating-label+.item-input-wrap,.inline-label .item-label+.item-input-wrap,.inline-labels .item-floating-label+.item-input-wrap,.inline-labels .item-label+.item-input-wrap{margin-left:8px}.input{position:relative}.input input,.input select,.input textarea{width:100%}.input-clear-button{opacity:0;pointer-events:none;visibility:hidden;transition-duration:.1s;position:absolute;top:50%;border:none;padding:0;margin:0;outline:0;z-index:1;cursor:pointer;background:0 0;width:var(--f7-input-clear-button-size);height:var(--f7-input-clear-button-size);margin-top:calc(-1 * var(--f7-input-clear-button-size)/ 2);color:var(--f7-input-clear-button-color);right:0}.input-clear-button:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px}.input-clear-button:before{position:absolute;content:'';left:50%;top:50%}.item-input-wrap .input-clear-button{top:calc(var(--f7-input-height)/ 2)}.input-clear-button.active-state{opacity:.75!important}.input-with-value .input-clear-button,.input-with-value~.input-clear-button,.item-input-with-value .input-clear-button{opacity:1;pointer-events:auto;visibility:visible}.input-dropdown,.input-dropdown-wrap{position:relative}.input-dropdown-wrap:before,.input-dropdown:before{content:'';pointer-events:none;position:absolute;top:50%;margin-top:-2px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid #727272;right:6px}.input-dropdown input,.input-dropdown select,.input-dropdown textarea,.input-dropdown-wrap input,.input-dropdown-wrap select,.input-dropdown-wrap textarea{padding-right:calc(20px + var(--f7-input-padding-right))}.input-outline:after,.item-input-outline .item-input-wrap:after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;box-sizing:border-box;border:1px solid var(--f7-input-outline-border-color);border-radius:var(--f7-input-outline-border-radius);transition-duration:.2s;pointer-events:none}.input-outline.input-focused:after,.item-input-outline.item-input-focused .item-input-wrap:after{border-width:2px;border-color:var(--f7-input-outline-focused-border-color,var(--f7-theme-color))}.input-outline.input-invalid:after,.item-input-outline.item-input-invalid .item-input-wrap:after{border-width:2px;border-color:var(--f7-input-outline-invalid-border-color,var(--f7-input-error-text-color))}.input-outline input,.input-outline select,.input-outline textarea,.item-input-outline input,.item-input-outline select,.item-input-outline textarea,.list .item-input-outline input,.list .item-input-outline select,.list .item-input-outline textarea{border-radius:var(--f7-input-outline-border-radius);padding-left:var(--f7-input-outline-padding-horizontal);padding-right:var(--f7-input-outline-padding-horizontal)}.input-outline.input-dropdown:before,.item-input-outline .input-dropdown-wrap:before{right:8px}.input-outline.input-dropdown input,.input-outline.input-dropdown select,.input-outline.input-dropdown textarea,.item-input-outline .input-dropdown-wrap input,.item-input-outline .input-dropdown-wrap select,.item-input-outline .input-dropdown-wrap textarea{padding-right:20px}.input-outline .input-clear-button,.item-input-outline .input-clear-button{right:8px}.item-input-outline{--f7-input-height:var(--f7-input-outline-height)}.item-input-outline .item-inner:after{display:none!important}.item-input-outline .item-label{left:var(--f7-input-outline-padding-horizontal)}.inline-label .item-input-outline .item-label,.inline-labels .item-input-outline .item-label,.item-input-outline .inline-label .item-label,.item-input-outline .inline-label.item-label{left:0}.item-input-outline .item-floating-label{left:calc(var(--f7-input-outline-padding-horizontal) - 4px);padding-left:4px;padding-right:4px;background:var(--f7-page-bg-color);z-index:10;margin-top:calc(-.5 * (var(--f7-label-font-size) * var(--f7-label-line-height)))}.item-input-outline.item-input-focused .item-floating-label,.item-input-outline.item-input-with-value .item-floating-label{transform:scale(1) translateY(50%)}.item-input-outline .item-input-error-message,.item-input-outline .item-input-info{padding-left:var(--f7-input-outline-padding-horizontal)}.block-strong .item-input-outline .item-floating-label{background:var(--f7-block-strong-bg-color)}.list .item-input-outline .item-floating-label{background:var(--f7-list-bg-color)}.theme-dark option{background-color:var(--f7-page-bg-color)}.ios .item-floating-label+.item-input-wrap,.ios .item-label+.item-input-wrap{margin-top:0}.ios .item-input-focused .item-floating-label{color:var(--f7-label-text-color)}.ios .item-input .item-media{align-self:flex-start}.ios .item-input-wrap{margin-top:calc(-1 * var(--f7-list-item-padding-vertical));margin-bottom:calc(-1 * var(--f7-list-item-padding-vertical))}.ios .inline-label .item-floating-label+.item-input-wrap,.ios .inline-label .item-label+.item-input-wrap,.ios .inline-labels .item-floating-label+.item-input-wrap,.ios .inline-labels .item-label+.item-input-wrap{margin-top:calc(-1 * var(--f7-list-item-padding-vertical))}.ios .inline-label .item-input-wrap,.ios .inline-labels .item-input-wrap{margin-top:calc(-1 * var(--f7-list-item-padding-vertical))}.ios .input-error-message,.ios .input-info,.ios .item-input-error-message,.ios .item-input-info{position:relative;margin-bottom:6px;margin-top:-8px}.ios .item-input-focused .item-floating-label,.ios .item-input-focused .item-label{color:var(--f7-label-focused-text-color,var(--f7-label-text-color))}.ios .item-input-focused .item-inner:after{background:var(--f7-input-focused-border-color,var(--f7-list-item-border-color))}.ios .item-input-invalid .item-floating-label,.ios .item-input-invalid .item-label{color:var(--f7-label-invalid-text-color,var(--f7-label-text-color))}.ios .item-input-invalid .item-inner:after{background:var(--f7-input-invalid-border-color,var(--f7-list-item-border-color))}.ios .input-invalid input,.ios .input-invalid select,.ios .input-invalid textarea,.ios .item-input-invalid input,.ios .item-input-invalid select,.ios .item-input-invalid textarea{color:var(--f7-input-invalid-text-color,var(--f7-input-error-text-color))}.ios .input-clear-button:after{content:'delete_round_ios';font-size:calc(var(--f7-input-clear-button-size) / (14 / 10));line-height:1.4}.ios .input-clear-button:before{width:44px;height:44px;margin-left:-22px;margin-top:-22px}.ios .input-outline .item-input-wrap,.ios .item-input-outline .item-input-wrap{margin-top:0;margin-bottom:0}.ios .input-outline .input-error-message,.ios .input-outline .input-info,.ios .input-outline .item-input-error-message,.ios .input-outline .item-input-info,.ios .item-input-outline .input-error-message,.ios .item-input-outline .input-info,.ios .item-input-outline .item-input-error-message,.ios .item-input-outline .item-input-info{margin-top:0;white-space:normal;overflow:hidden;text-overflow:ellipsis}.ios .input-outline .input-info,.ios .input-outline .item-input-info,.ios .item-input-outline .input-info,.ios .item-input-outline .item-input-info{margin-bottom:calc(-1 * var(--f7-input-info-font-size) * var(--f7-input-info-line-height))}.ios .input-outline .input-error-message,.ios .input-outline .item-input-error-message,.ios .item-input-outline .input-error-message,.ios .item-input-outline .item-input-error-message{margin-bottom:calc(-1 * var(--f7-input-error-font-size) * var(--f7-input-error-line-height))}.ios .input-outline.input-with-info .item-input-wrap,.ios .input-outline.item-input-with-info .item-input-wrap,.ios .item-input-outline.input-with-info .item-input-wrap,.ios .item-input-outline.item-input-with-info .item-input-wrap{margin-bottom:calc(var(--f7-input-info-font-size) * var(--f7-input-info-line-height))}.ios .input-outline.input-with-error-message .item-input-wrap,.ios .input-outline.item-input-with-error-message .item-input-wrap,.ios .item-input-outline.input-with-error-message .item-input-wrap,.ios .item-input-outline.item-input-with-error-message .item-input-wrap{margin-bottom:calc(var(--f7-input-error-font-size) * var(--f7-input-error-line-height))}.md .input:not(.input-outline):after,.md .item-input:not(.item-input-outline) .item-input-wrap:after{content:'';position:absolute;background-color:var(--f7-list-item-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.md .input:not(.input-outline):after,.md .item-input:not(.item-input-outline) .item-input-wrap:after{transition-duration:.2s}.md .item-input-wrap{min-height:var(--f7-input-height)}.md .item-input .item-media{align-self:flex-end}.md .item-input .item-inner:after{display:none!important}.md .inline-label .item-media,.md .inline-labels .item-media{align-self:flex-start;padding-top:14px}.md .input-with-error-message,.md .input-with-info,.md .item-input-with-error-message,.md .item-input-with-info{padding-bottom:20px}.md .input-error-message,.md .input-info,.md .item-input-error-message,.md .item-input-info{position:absolute;top:100%;margin-top:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:100%;left:0}.md .item-input-focused .item-floating-label,.md .item-input-focused .item-label{color:var(--f7-label-focused-text-color,var(--f7-theme-color))}.md .input-focused:not(.input-outline):after,.md .item-input-focused:not(.item-input-outline) .item-input-wrap:after{background:var(--f7-input-focused-border-color,var(--f7-theme-color))}.md .input-focused:not(.input-outline):after,.md .input-invalid:not(.input-outline):after,.md .item-input-focused:not(.item-input-outline) .item-input-wrap:after,.md .item-input-invalid:not(.item-input-outline) .item-input-wrap:after{transform:scaleY(2)!important}.md .input-invalid:not(.input-outline):after,.md .item-input-invalid:not(.item-input-outline) .item-input-wrap:after{background:var(--f7-input-invalid-border-color,var(--f7-input-error-text-color))}.md .item-input-invalid .item-floating-label,.md .item-input-invalid .item-label{color:var(--f7-label-invalid-text-color,var(--f7-input-error-text-color))}.md .input-invalid input,.md .input-invalid select,.md .input-invalid textarea,.md .item-input-invalid input,.md .item-input-invalid select,.md .item-input-invalid textarea{color:var(--f7-input-invalid-text-color,var(--f7-input-text-color))}.md .input-clear-button:after{font-size:calc(var(--f7-input-clear-button-size) / (24 / 20));content:'delete_round_md';line-height:1.2}.md .input-clear-button:before{width:48px;height:48px;margin-left:-24px;margin-top:-24px}.aurora .item-floating-label+.item-input-wrap,.aurora .item-label+.item-input-wrap{margin-top:0}.aurora .input:not(.input-outline):after{content:'';position:absolute;background-color:var(--f7-list-item-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.aurora .input:not(.input-outline):after{transition-duration:.2s}.aurora .item-input-focused .item-floating-label{color:var(--f7-label-text-color)}.aurora .inline-label .item-media,.aurora .inline-labels .item-media{align-self:flex-start;padding-top:12px}.aurora .input-error-message,.aurora .input-info,.aurora .item-input-error-message,.aurora .item-input-info{position:relative}.aurora .input-focused:not(.input-outline):after,.aurora .input-invalid:not(.input-outline):after,.aurora .item-input-focused:not(.item-input-outline) .item-inner:after,.aurora .item-input-invalid:not(.item-input-outline) .item-inner:after{transform:scaleY(2)!important;display:block!important}.aurora .item-input-focused .item-floating-label,.aurora .item-input-focused .item-label{color:var(--f7-label-focused-text-color,var(--f7-theme-color))}.aurora .input-focused:not(.input-outline):after,.aurora .item-input-focused:not(.item-input-outline) .item-inner:after{background:var(--f7-input-focused-border-color,var(--f7-theme-color))}.aurora .item-input-invalid .item-floating-label,.aurora .item-input-invalid .item-label{color:var(--f7-label-invalid-text-color,var(--f7-input-error-text-color))}.aurora .input-invalid:not(.input-outline):after,.aurora .item-input-invalid:not(.item-input-outline) .item-inner:after{background:var(--f7-input-invalid-border-color,var(--f7-input-error-text-color))}.aurora .input-invalid input,.aurora .input-invalid select,.aurora .input-invalid textarea,.aurora .item-input-invalid input,.aurora .item-input-invalid select,.aurora .item-input-invalid textarea{color:var(--f7-input-invalid-text-color,var(--f7-input-text-color))}.aurora .input-clear-button:after{content:'delete_round_ios';font-size:calc(var(--f7-input-clear-button-size) / (14 / 10));line-height:1.4}.aurora .input-clear-button:before{width:44px;height:44px;margin-left:-22px;margin-top:-22px}.aurora .input-outline .item-input-wrap,.aurora .item-input-outline .item-input-wrap{margin-top:0;margin-bottom:0}.aurora .input-outline .input-error-message,.aurora .input-outline .input-info,.aurora .input-outline .item-input-error-message,.aurora .input-outline .item-input-info,.aurora .item-input-outline .input-error-message,.aurora .item-input-outline .input-info,.aurora .item-input-outline .item-input-error-message,.aurora .item-input-outline .item-input-info{margin-top:0;white-space:normal;overflow:hidden;text-overflow:ellipsis}.aurora .input-outline .input-info,.aurora .input-outline .item-input-info,.aurora .item-input-outline .input-info,.aurora .item-input-outline .item-input-info{margin-bottom:calc(-1 * var(--f7-input-info-font-size) * var(--f7-input-info-line-height))}.aurora .input-outline .input-error-message,.aurora .input-outline .item-input-error-message,.aurora .item-input-outline .input-error-message,.aurora .item-input-outline .item-input-error-message{margin-bottom:calc(-1 * var(--f7-input-error-font-size) * var(--f7-input-error-line-height))}.aurora .input-outline.input-with-info .item-input-wrap,.aurora .input-outline.item-input-with-info .item-input-wrap,.aurora .item-input-outline.input-with-info .item-input-wrap,.aurora .item-input-outline.item-input-with-info .item-input-wrap{margin-bottom:calc(var(--f7-input-info-font-size) * var(--f7-input-info-line-height))}.aurora .input-outline.input-with-error-message .item-input-wrap,.aurora .input-outline.item-input-with-error-message .item-input-wrap,.aurora .item-input-outline.input-with-error-message .item-input-wrap,.aurora .item-input-outline.item-input-with-error-message .item-input-wrap{margin-bottom:calc(var(--f7-input-error-font-size) * var(--f7-input-error-line-height))}:root{--f7-checkbox-icon-color:#fff;--f7-checkbox-extra-margin:0px}:root .theme-dark,:root.theme-dark{--f7-checkbox-inactive-color:rgba(255, 255, 255, 0.3);--f7-checkbox-icon-color:#000}.ios{--f7-checkbox-size:22px;--f7-checkbox-border-radius:50%;--f7-checkbox-border-width:1px;--f7-checkbox-inactive-color:#c7c7cc}.md{--f7-checkbox-size:18px;--f7-checkbox-border-radius:2px;--f7-checkbox-border-width:2px;--f7-checkbox-inactive-color:#6d6d6d}.aurora{--f7-checkbox-size:16px;--f7-checkbox-border-radius:4px;--f7-checkbox-border-width:1px;--f7-checkbox-inactive-color:rgba(0, 0, 0, 0.25)}.checkbox{position:relative;display:inline-block;vertical-align:middle;z-index:1;background-color:transparent;--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.5)}.checkbox i,.icon-checkbox{flex-shrink:0;border:var(--f7-checkbox-border-width) solid var(--f7-checkbox-inactive-color);width:var(--f7-checkbox-size);height:var(--f7-checkbox-size);border-radius:var(--f7-checkbox-border-radius);box-sizing:border-box;position:relative;display:block}.checkbox i:after,.icon-checkbox:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;width:var(--f7-checkbox-size);height:var(--f7-checkbox-size);line-height:var(--f7-checkbox-size);top:calc(0px - var(--f7-checkbox-border-width));opacity:0;color:var(--f7-checkbox-icon-color);position:relative;transition-property:opacity;left:calc(0px - var(--f7-checkbox-border-width))}.checkbox input[type=checkbox]:not(:checked)~i:after,label.item-checkbox input[type=checkbox]:not(:checked)~* .icon-checkbox:after,label.item-checkbox input[type=checkbox]:not(:checked)~.icon-checkbox:after{font-size:0}.checkbox input[type=checkbox]:checked~i,.checkbox input[type=checkbox]:indeterminate~i,label.item-checkbox input[type=checkbox]:checked~* .icon-checkbox,label.item-checkbox input[type=checkbox]:checked~.icon-checkbox,label.item-checkbox input[type=checkbox]:indeterminate~* .icon-checkbox,label.item-checkbox input[type=checkbox]:indeterminate~.icon-checkbox{border-color:var(--f7-checkbox-active-color,var(--f7-theme-color));background-color:var(--f7-checkbox-active-color,var(--f7-theme-color))}.checkbox input[type=checkbox]:checked~i:after,.checkbox input[type=checkbox]:indeterminate~i:after,label.item-checkbox input[type=checkbox]:checked~* .icon-checkbox:after,label.item-checkbox input[type=checkbox]:checked~.icon-checkbox:after,label.item-checkbox input[type=checkbox]:indeterminate~* .icon-checkbox:after,label.item-checkbox input[type=checkbox]:indeterminate~.icon-checkbox:after{opacity:1}.checkbox input[type=checkbox]:indeterminate~i:after,label.item-checkbox input[type=checkbox]:indeterminate~* .icon-checkbox:after,label.item-checkbox input[type=checkbox]:indeterminate~.icon-checkbox:after{font-size:0;content:'';position:absolute;top:50%;width:70%;background:var(--f7-checkbox-icon-color);height:2px;border-radius:2px;margin-top:-1px;transition:0s;left:15%}.checkbox,label.item-checkbox{cursor:pointer}.checkbox input[type=checkbox],.checkbox input[type=radio],label.item-checkbox input[type=checkbox],label.item-checkbox input[type=radio]{display:none}label.item-checkbox{transition-duration:.3s}label.item-checkbox .item-content .item-media,label.item-checkbox.item-content .item-media{align-self:center}label.item-checkbox>.icon-checkbox{margin-right:calc(var(--f7-list-item-media-margin) + var(--f7-checkbox-extra-margin))}label.item-checkbox.active-state{background-color:var(--f7-list-link-pressed-bg-color)}label.item-checkbox.active-state:after{background-color:transparent}.disabled label.item-checkbox,label.item-checkbox.disabled{opacity:.55;pointer-events:none;opacity:.55!important;pointer-events:none!important}.ios .checkbox i:after,.ios .icon-checkbox:after{content:'checkbox_ios';font-size:21px}.ios label.item-checkbox.active-state{transition-duration:0s}.ios .checkbox input[type=checkbox]:indeterminate~i:after,.ios label.item-checkbox input[type=checkbox]:indeterminate~* .icon-checkbox:after,.ios label.item-checkbox input[type=checkbox]:indeterminate~.icon-checkbox:after{height:2px;margin-top:-1px}.md .checkbox i,.md .icon-checkbox{transition-duration:.2s}.md .checkbox i:after,.md .icon-checkbox:after{content:'checkbox_md';transition-duration:.2s;font-size:15px}.md label.item-checkbox{position:relative;overflow:hidden;z-index:0}.aurora .checkbox i,.aurora .icon-checkbox{transition-duration:150ms}.aurora .checkbox i:after,.aurora .icon-checkbox:after{content:'checkbox_aurora';transition-duration:150ms;font-size:21px}.aurora .checkbox i:before,.aurora .icon-checkbox:before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.1);opacity:0;transition-duration:150ms}.aurora .checkbox.active-state i:before{opacity:1}.aurora label.item-checkbox{position:relative;overflow:hidden;z-index:0}.aurora.device-desktop label.item-checkbox:hover:not(.active-state):not(.no-hover){background-color:var(--f7-list-link-hover-bg-color)}:root{--f7-radio-border-radius:50%;--f7-radio-extra-margin:0px}:root .theme-dark,:root.theme-dark{--f7-radio-inactive-color:rgba(255, 255, 255, 0.3)}.ios{--f7-radio-size:22px;--f7-radio-border-width:1px;--f7-radio-inactive-color:#c7c7cc}.md{--f7-radio-size:20px;--f7-radio-border-width:2px;--f7-radio-inactive-color:#6d6d6d}.aurora{--f7-radio-size:16px;--f7-radio-border-width:1px;--f7-radio-inactive-color:rgba(0, 0, 0, 0.25)}.radio{position:relative;display:inline-block;vertical-align:middle;z-index:1;--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.5)}.icon-radio{width:var(--f7-radio-size);height:var(--f7-radio-size);border-radius:var(--f7-radio-border-radius);position:relative;box-sizing:border-box;display:block;flex-shrink:0}.aurora .icon-radio,.md .icon-radio,.radio .icon-radio{border:var(--f7-radio-border-width) solid var(--f7-radio-inactive-color)}.radio,label.item-radio{cursor:pointer}.radio input[type=checkbox],.radio input[type=radio],label.item-radio input[type=checkbox],label.item-radio input[type=radio]{display:none}label.item-radio{transition-duration:.3s}label.item-radio .item-content .item-media,label.item-radio.item-content .item-media{align-self:center}label.item-radio.active-state{background-color:var(--f7-list-link-pressed-bg-color)}label.item-radio.active-state:after{background-color:transparent}.disabled label.item-radio,label.item-radio.disabled{opacity:.55;pointer-events:none;opacity:.55!important;pointer-events:none!important}.ios .icon-radio:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;width:calc(var(--f7-radio-size) - var(--f7-radio-border-width) * 2);height:calc(var(--f7-radio-size) - var(--f7-radio-border-width) * 2);line-height:calc(var(--f7-radio-size) - var(--f7-radio-border-width) * 2 + 1px);font-size:20px;content:'radio_ios';color:var(--f7-radio-active-color,var(--f7-theme-color));opacity:0}.ios .radio input[type=radio]:checked~.icon-radio:after,.ios label.item-radio input[type=radio]:checked~* .icon-radio:after,.ios label.item-radio input[type=radio]:checked~.icon-radio:after{opacity:1}.ios .radio input[type=radio]:checked~.icon-radio{border-color:var(--f7-radio-active-color,var(--f7-theme-color))}.ios label.item-radio:not(.item-radio-icon-start) input[type=radio]~.icon-radio{position:absolute;top:50%;margin-top:-11px;right:calc(var(--f7-safe-area-right) + 10px)}.ios label.item-radio:not(.item-radio-icon-start) .item-inner{padding-right:calc(var(--f7-safe-area-right) + 36px)}.ios label.item-radio-icon-start>.icon-radio{margin-right:calc(var(--f7-list-item-media-margin) + var(--f7-checkbox-extra-margin))}.ios label.item-radio.active-state{transition-duration:0s}.md .icon-radio{transition-duration:.2s}.md .icon-radio:after{content:'';position:absolute;width:10px;height:10px;left:50%;top:50%;margin-left:-5px;margin-top:-5px;background-color:var(--f7-radio-active-color,var(--f7-theme-color));border-radius:50%;transform:scale(0);transition-duration:.2s}.md .radio input[type=radio]:checked~.icon-radio,.md label.item-radio input[type=radio]:checked~* .icon-radio,.md label.item-radio input[type=radio]:checked~.icon-radio{border-color:var(--f7-radio-active-color,var(--f7-theme-color))}.md .radio input[type=radio]:checked~.icon-radio:after,.md label.item-radio input[type=radio]:checked~* .icon-radio:after,.md label.item-radio input[type=radio]:checked~.icon-radio:after{background-color:var(--f7-radio-active-color,var(--f7-theme-color));transform:scale(1)}.md label.item-radio{position:relative;overflow:hidden;z-index:0}.md label.item-radio:not(.item-radio-icon-end)>.icon-radio{margin-right:calc(var(--f7-list-item-media-margin) + var(--f7-radio-extra-margin))}.md label.item-radio-icon-end input[type=radio]~.icon-radio{position:absolute;top:50%;margin-top:-10px;right:calc(var(--f7-safe-area-right) + 16px)}.md label.item-radio-icon-end .item-inner{padding-right:calc(var(--f7-safe-area-right) + 52px)}.aurora .icon-radio{transition-duration:150ms;overflow:hidden}.aurora .icon-radio:after{content:'';position:absolute;width:6px;height:6px;left:50%;top:50%;margin-left:-3px;margin-top:-3px;background-color:#fff;border-radius:50%;transform:scale(0);transition-duration:150ms}.aurora .icon-radio:before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.1);opacity:0;transition-duration:150ms}.aurora .radio.active-state i:before{opacity:1}.aurora .radio input[type=radio]:checked~.icon-radio,.aurora label.item-radio input[type=radio]:checked~* .icon-radio,.aurora label.item-radio input[type=radio]:checked~.icon-radio{border-color:var(--f7-radio-active-color,var(--f7-theme-color));background-color:var(--f7-radio-active-color,var(--f7-theme-color))}.aurora .radio input[type=radio]:checked~.icon-radio:after,.aurora label.item-radio input[type=radio]:checked~* .icon-radio:after,.aurora label.item-radio input[type=radio]:checked~.icon-radio:after{transform:scale(1)}.aurora label.item-radio{position:relative;overflow:hidden;z-index:0}.aurora label.item-radio:not(.item-radio-icon-end)>.icon-radio{margin-right:calc(var(--f7-list-item-media-margin) + var(--f7-radio-extra-margin))}.aurora label.item-radio-icon-end input[type=radio]~.icon-radio{position:absolute;top:50%;margin-top:-8px;right:calc(var(--f7-safe-area-right) + 16px)}.aurora label.item-radio-icon-end .item-inner{padding-right:calc(var(--f7-safe-area-right) + 48px)}.aurora.device-desktop label.item-radio:hover:not(.active-state):not(.no-hover){background-color:var(--f7-list-link-hover-bg-color)}:root{--f7-toggle-handle-color:#fff}:root .theme-dark,:root.theme-dark{--f7-toggle-inactive-color:#555}.ios{--f7-toggle-width:52px;--f7-toggle-height:32px;--f7-toggle-border-color:#e5e5e5;--f7-toggle-inactive-color:#fff}.ios .theme-dark,.ios.theme-dark{--f7-toggle-border-color:#555}.md{--f7-toggle-width:36px;--f7-toggle-height:14px;--f7-toggle-inactive-color:#b0afaf}.aurora{--f7-toggle-width:40px;--f7-toggle-height:20px;--f7-toggle-inactive-color:#aaa}.toggle,.toggle-icon{width:var(--f7-toggle-width);height:var(--f7-toggle-height);border-radius:var(--f7-toggle-height)}.toggle{display:inline-block;vertical-align:middle;position:relative;box-sizing:border-box;align-self:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.toggle input[type=checkbox]{display:none}.toggle input[disabled]~.toggle-icon{pointer-events:none}.toggle-icon{z-index:0;margin:0;padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;position:relative;transition:.3s;box-sizing:border-box;display:block;cursor:pointer}.toggle-icon:after,.toggle-icon:before{content:''}.toggle-icon:after{background:var(--f7-toggle-handle-color);position:absolute;z-index:2;transform:translateX(0px);transition-duration:.3s}.ios .toggle input[type=checkbox]:checked+.toggle-icon{background:var(--f7-toggle-active-color,var(--f7-theme-color))}.ios .toggle input[type=checkbox]:checked+.toggle-icon:before{transform:scale(0)}.ios .toggle input[type=checkbox]:checked+.toggle-icon:after{transform:translateX(calc(var(--f7-toggle-width) - var(--f7-toggle-height)))}.ios .toggle-icon{background:var(--f7-toggle-border-color)}.ios .toggle-icon:before{position:absolute;left:2px;top:2px;width:calc(var(--f7-toggle-width) - 4px);height:calc(var(--f7-toggle-height) - 4px);border-radius:var(--f7-toggle-height);box-sizing:border-box;background:var(--f7-toggle-inactive-color);z-index:1;transition-duration:.3s;transform:scale(1)}.ios .toggle-icon:after{height:calc(var(--f7-toggle-height) - 4px);width:calc(var(--f7-toggle-height) - 4px);top:2px;left:2px;box-shadow:0 2px 4px rgba(0,0,0,.3);border-radius:calc(var(--f7-toggle-height) - 4px)}.ios .toggle-active-state input[type=checkbox]:not(:checked)+.toggle-icon:before{transform:scale(0)}.ios .toggle-active-state input[type=checkbox]+.toggle-icon:after{width:calc(var(--f7-toggle-height) + 4px)}.ios .toggle-active-state input[type=checkbox]:checked+.toggle-icon:after{transform:translateX(calc(var(--f7-toggle-width) - var(--f7-toggle-height) - 8px))}.md .toggle input[type=checkbox]:checked+.toggle-icon{background:var(--f7-toggle-active-color,rgba(var(--f7-theme-color-rgb),.5))}.md .toggle input[type=checkbox]:checked+.toggle-icon:after{transform:translateX(calc(var(--f7-toggle-width) - var(--f7-toggle-height) - 6px));background:var(--f7-toggle-active-color,var(--f7-theme-color))}.md .toggle-icon{background:var(--f7-toggle-inactive-color)}.md .toggle-icon:after{height:calc(var(--f7-toggle-height) + 6px);width:calc(var(--f7-toggle-height) + 6px);top:-3px;box-shadow:0 2px 5px rgba(0,0,0,.4);border-radius:var(--f7-toggle-height);left:0}.aurora .toggle input[type=checkbox]:checked+.toggle-icon{background:var(--f7-toggle-active-color,var(--f7-theme-color))}.aurora .toggle input[type=checkbox]:checked+.toggle-icon:after{transform:translateX(calc(var(--f7-toggle-width) - var(--f7-toggle-height)))}.aurora .toggle-icon{background:var(--f7-toggle-inactive-color)}.aurora .toggle-icon:after{height:calc(var(--f7-toggle-height) - 4px);width:calc(var(--f7-toggle-height) - 4px);top:2px;left:2px;border-radius:calc(var(--f7-toggle-height) - 4px)}:root{--f7-range-scale-step-height:5px;--f7-range-scale-text-color:#666;--f7-range-scale-substep-width:1px;--f7-range-scale-substep-height:4px}.ios{--f7-range-size:28px;--f7-range-bar-bg-color:#b7b8b7;--f7-range-bar-size:4px;--f7-range-bar-border-radius:2px;--f7-range-knob-size:28px;--f7-range-knob-color:#fff;--f7-range-knob-box-shadow:0 2px 4px rgba(0, 0, 0, 0.3);--f7-range-label-size:24px;--f7-range-label-text-color:#000;--f7-range-label-bg-color:#fff;--f7-range-label-font-size:12px;--f7-range-label-font-weight:500;--f7-range-label-border-radius:5px;--f7-range-label-padding:0px 2px;--f7-range-scale-step-width:1px;--f7-range-scale-font-size:12px;--f7-range-scale-font-weight:400;--f7-range-scale-label-offset:4px}.md{--f7-range-size:20px;--f7-range-bar-bg-color:#b9b9b9;--f7-range-bar-size:2px;--f7-range-bar-border-radius:0px;--f7-range-knob-size:12px;--f7-range-knob-box-shadow:none;--f7-range-label-size:26px;--f7-range-label-font-weight:normal;--f7-range-label-text-color:#fff;--f7-range-label-font-size:10px;--f7-range-label-border-radius:50%;--f7-range-label-padding:0px;--f7-range-scale-step-width:2px;--f7-range-scale-font-size:12px;--f7-range-scale-font-weight:400;--f7-range-scale-label-offset:4px}.aurora{--f7-range-size:20px;--f7-range-bar-bg-color:#c7c7c7;--f7-range-bar-size:2px;--f7-range-bar-border-radius:2px;--f7-range-knob-size:16px;--f7-range-knob-box-shadow:none;--f7-range-label-size:20px;--f7-range-label-text-color:#fff;--f7-range-label-font-size:10px;--f7-range-label-font-weight:600;--f7-range-label-border-radius:4px;--f7-range-label-padding:0px 4px;--f7-range-scale-step-width:2px;--f7-range-scale-font-size:11px;--f7-range-scale-font-weight:500;--f7-range-scale-label-offset:2px}.range-slider{display:block;position:relative;align-self:center;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.range-slider input[type=range]{display:none}.range-slider.range-slider-horizontal{width:100%;height:var(--f7-range-size);touch-action:pan-y}.range-slider.range-slider-vertical{height:100%;width:var(--f7-range-size);touch-action:pan-x}.range-bar{position:absolute;overflow:hidden;background:var(--f7-range-bar-bg-color);border-radius:var(--f7-range-bar-border-radius)}.range-slider-vertical .range-bar{left:50%;top:0;height:100%;width:var(--f7-range-bar-size);margin-left:calc(-1 * var(--f7-range-bar-size)/ 2)}.range-slider-horizontal .range-bar{left:0;top:50%;width:100%;height:var(--f7-range-bar-size);margin-top:calc(-1 * var(--f7-range-bar-size)/ 2)}.range-bar-active{position:absolute;background:var(--f7-range-bar-active-bg-color,var(--f7-theme-color))}.range-slider-horizontal .range-bar-active{left:0;top:0;height:100%}.range-slider-vertical .range-bar-active{left:0;bottom:0;width:100%}.range-slider-vertical-reversed .range-bar-active{top:0;bottom:auto}.range-knob-wrap{z-index:20;position:absolute;height:var(--f7-range-knob-size);width:var(--f7-range-knob-size)}.range-slider-horizontal .range-knob-wrap{top:50%;margin-top:calc(-1 * var(--f7-range-knob-size)/ 2);margin-left:calc(-1 * var(--f7-range-knob-size)/ 2);left:0}.range-slider-vertical .range-knob-wrap{left:50%;margin-left:calc(-1 * var(--f7-range-knob-size)/ 2);bottom:0;margin-bottom:calc(-1 * var(--f7-range-knob-size)/ 2)}.range-slider-vertical-reversed .range-knob-wrap{bottom:auto;top:0;margin-bottom:0;margin-top:calc(-1 * var(--f7-range-knob-size)/ 2)}.range-knob{box-sizing:border-box;border-radius:50%;position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background:var(--f7-range-knob-color,var(--f7-range-knob-bg-color,var(--f7-theme-color)));box-shadow:var(--f7-range-knob-box-shadow)}.range-knob:after{content:'';position:absolute;left:50%;top:50%;width:44px;height:44px;margin-left:-22px;margin-top:-22px}.range-knob-label{position:absolute;left:50%;bottom:100%;text-align:center;transition-duration:120ms;transition-property:transform;box-sizing:border-box;transform:translateY(100%) scale(0);height:var(--f7-range-label-size);line-height:var(--f7-range-label-size);min-width:var(--f7-range-label-size);color:var(--f7-range-label-text-color);background-color:var(--f7-range-label-bg-color,var(--f7-theme-color));font-size:var(--f7-range-label-font-size);font-weight:var(--f7-range-label-font-weight);border-radius:var(--f7-range-label-border-radius);padding:var(--f7-range-label-padding)}.range-knob-active-state .range-knob-label{transform:translateY(0%) scale(1)}.range-scale{position:absolute}.range-slider-horizontal .range-scale{top:50%;left:0;width:100%;margin-top:calc(var(--f7-range-bar-size)/ 2)}.range-slider-vertical .range-scale{right:50%;top:0;height:100%;margin-right:calc(var(--f7-range-bar-size)/ 2)}.range-scale-step{position:absolute;box-sizing:border-box;display:flex;font-size:var(--f7-range-scale-font-size);font-weight:var(--f7-range-scale-font-weight);color:var(--f7-range-scale-text-color,var(--f7-range-bar-bg-color));line-height:1}.range-scale-step:before{content:'';position:absolute;background:var(--f7-range-scale-step-bg-color,var(--f7-range-bar-bg-color))}.range-slider-horizontal .range-scale-step{justify-content:center;align-items:flex-start;width:var(--f7-range-scale-step-width);height:var(--f7-range-scale-step-height);padding-top:calc(var(--f7-range-scale-step-height) + var(--f7-range-scale-label-offset));top:0;margin-left:calc(-1 * var(--f7-range-scale-step-width)/ 2)}.range-slider-horizontal .range-scale-step:before{left:0;top:0;width:100%;height:var(--f7-range-scale-step-height)}.range-slider-horizontal .range-scale-step:first-child{margin-left:0}.range-slider-horizontal .range-scale-step:last-child{margin-left:calc(-1 * var(--f7-range-scale-step-width))}.range-slider-vertical .range-scale-step{line-height:1;justify-content:flex-end;align-items:center;height:var(--f7-range-scale-step-width);width:var(--f7-range-scale-step-height);padding-right:calc(var(--f7-range-scale-step-height) + var(--f7-range-scale-label-offset));right:0;margin-bottom:calc(-1 * var(--f7-range-scale-step-width)/ 2)}.range-slider-vertical .range-scale-step:first-child{margin-bottom:0}.range-slider-vertical .range-scale-step:last-child{margin-bottom:calc(-1 * var(--f7-range-scale-step-width))}.range-slider-vertical .range-scale-step:before{right:0;top:0;height:100%;width:var(--f7-range-scale-step-height)}.range-scale-substep{--f7-range-scale-step-bg-color:var(--f7-range-scale-substep-bg-color, var(--f7-range-bar-bg-color));--f7-range-scale-step-width:var(--f7-range-scale-substep-width);--f7-range-scale-step-height:var(--f7-range-scale-substep-height)}.ios .range-knob-label{margin-bottom:6px;transform:translateX(-50%) translateY(100%) scale(0)}.ios .range-knob-active-state .range-knob-label{transform:translateX(-50%) translateY(0%) scale(1)}.md .range-knob{transition-duration:.2s;transition-property:transform,background-color}.md .range-knob-active-state .range-knob{transform:scale(1.5)}.md .range-slider-min:not(.range-slider-dual) .range-knob{background:#fff!important;border:2px solid var(--f7-range-bar-bg-color)}.md .range-knob-label{width:var(--f7-range-label-size);margin-left:calc(-1 * var(--f7-range-label-size)/ 2);margin-bottom:8px}.md .range-knob-label:before{content:'';left:50%;top:0px;margin-left:calc(-1 * var(--f7-range-label-size)/ 2);position:absolute;z-index:-1;width:var(--f7-range-label-size);height:var(--f7-range-label-size);background:var(--f7-range-label-bg-color,var(--f7-theme-color));transform:rotate(-45deg);border-radius:50% 50% 50% 0}.md .range-knob-active-state .range-knob-label{transform:translateY(0%) scale(1)}.md .range-slider-label .range-knob-active-state .range-knob{transform:scale(0)}.aurora .range-knob-label{margin-bottom:6px;transform:translateX(-50%) translateY(100%) scale(0)}.aurora .range-knob-active-state .range-knob-label{transform:translateX(-50%) translateY(0%) scale(1)}:root{--f7-stepper-fill-button-text-color:#fff;--f7-stepper-raised-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12),0 1px 2px rgba(0, 0, 0, 0.24);--f7-stepper-value-font-weight:500;--f7-stepper-border-width:2px;--f7-stepper-small-border-width:2px}.ios{--f7-stepper-height:28px;--f7-stepper-border-radius:5px;--f7-stepper-large-height:44px;--f7-stepper-small-height:26px;--f7-stepper-value-font-size:17px}.md{--f7-stepper-height:36px;--f7-stepper-border-radius:4px;--f7-stepper-large-height:48px;--f7-stepper-small-height:28px;--f7-stepper-value-font-size:14px}.aurora{--f7-stepper-height:36px;--f7-stepper-border-radius:8px;--f7-stepper-large-height:48px;--f7-stepper-small-height:28px;--f7-stepper-value-font-size:14px}.stepper{--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.25);display:inline-flex;align-items:stretch;height:var(--f7-stepper-height);border-radius:var(--f7-stepper-border-radius)}.stepper-button,.stepper-button-minus,.stepper-button-plus{background-color:var(--f7-stepper-button-bg-color);width:40px;border-radius:var(--f7-stepper-border-radius);border:var(--f7-stepper-border-width) solid var(--f7-theme-color);color:var(--f7-stepper-button-text-color,var(--f7-theme-color));line-height:calc(var(--f7-stepper-height) - var(--f7-stepper-border-width, 0px));text-align:center;display:flex;justify-content:center;align-content:center;align-items:center;flex-shrink:0;box-sizing:border-box;position:relative;cursor:pointer}.stepper-button-minus.active-state,.stepper-button-plus.active-state,.stepper-button.active-state{background-color:var(--f7-stepper-button-pressed-bg-color,rgba(var(--f7-theme-color-rgb),.15));color:var(--f7-stepper-button-pressed-text-color,var(--f7-stepper-button-text-color,var(--f7-theme-color)))}.stepper-button-minus:first-child,.stepper-button-plus:first-child,.stepper-button:first-child{border-radius:var(--f7-stepper-border-radius) 0 0 var(--f7-stepper-border-radius)}.stepper-button-minus:last-child,.stepper-button-plus:last-child,.stepper-button:last-child{border-radius:0 var(--f7-stepper-border-radius) var(--f7-stepper-border-radius) 0}.stepper-button .icon,.stepper-button-minus .icon,.stepper-button-plus .icon{pointer-events:none}.stepper-button+.stepper-button,.stepper-button+.stepper-button-minus,.stepper-button+.stepper-button-plus,.stepper-button-minus+.stepper-button,.stepper-button-minus+.stepper-button-minus,.stepper-button-minus+.stepper-button-plus,.stepper-button-plus+.stepper-button,.stepper-button-plus+.stepper-button-minus,.stepper-button-plus+.stepper-button-plus{border-left:none}.stepper-button-minus,.stepper-button-plus{-webkit-user-select:none;-moz-user-select:none;user-select:none}.stepper-button-minus:after,.stepper-button-minus:before,.stepper-button-plus:after,.stepper-button-plus:before{content:'';position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background-color:var(--f7-stepper-button-text-color,var(--f7-theme-color));border-radius:2px}.stepper-button-minus:after,.stepper-button-plus:after{width:15px;height:2px}.stepper-button-plus:before{height:15px;width:2px}.stepper-value{display:flex;align-content:center;align-items:center;justify-content:center}.stepper-input-wrap,.stepper-value{flex-shrink:1;text-align:center;border-top:var(--f7-stepper-border-width) solid var(--f7-theme-color);border-bottom:var(--f7-stepper-border-width) solid var(--f7-theme-color)}.stepper .stepper-input-wrap input,.stepper-value{width:45px;color:var(--f7-stepper-value-text-color,var(--f7-theme-color));font-size:var(--f7-stepper-value-font-size);font-weight:var(--f7-stepper-value-font-weight);text-align:center}.stepper .stepper-input-wrap input{height:100%}.aurora .stepper-round-aurora,.ios .stepper-round-ios,.md .stepper-round-md,.stepper-round{--f7-stepper-border-radius:var(--f7-stepper-height)}.aurora .stepper-fill-aurora,.ios .stepper-fill-ios,.md .stepper-fill-md,.stepper-fill{--f7-stepper-button-bg-color:var(--f7-stepper-fill-button-bg-color, var(--f7-theme-color));--f7-stepper-button-text-color:var(--f7-stepper-fill-button-text-color);--f7-touch-ripple-color:var(--f7-touch-ripple-white)}.aurora .stepper-fill-aurora .stepper-button+.stepper-button,.aurora .stepper-fill-aurora .stepper-button-minus+.stepper-button-plus,.aurora .stepper-raised-aurora .stepper-button+.stepper-button,.aurora .stepper-raised-aurora .stepper-button-minus+.stepper-button-plus,.ios .stepper-fill-ios .stepper-button+.stepper-button,.ios .stepper-fill-ios .stepper-button-minus+.stepper-button-plus,.ios .stepper-raised-ios .stepper-button+.stepper-button,.ios .stepper-raised-ios .stepper-button-minus+.stepper-button-plus,.md .stepper-fill-md .stepper-button+.stepper-button,.md .stepper-fill-md .stepper-button-minus+.stepper-button-plus,.md .stepper-raised-md .stepper-button+.stepper-button,.md .stepper-raised-md .stepper-button-minus+.stepper-button-plus,.stepper-fill .stepper-button+.stepper-button,.stepper-fill .stepper-button-minus+.stepper-button-plus,.stepper-raised .stepper-button+.stepper-button,.stepper-raised .stepper-button-minus+.stepper-button-plus{border-left:1px solid rgba(0,0,0,.1)}.aurora .stepper-fill-aurora .stepper-button+.stepper-button.active-state,.aurora .stepper-fill-aurora .stepper-button-minus+.stepper-button-plus.active-state,.ios .stepper-fill-ios .stepper-button+.stepper-button.active-state,.ios .stepper-fill-ios .stepper-button-minus+.stepper-button-plus.active-state,.md .stepper-fill-md .stepper-button+.stepper-button.active-state,.md .stepper-fill-md .stepper-button-minus+.stepper-button-plus.active-state,.stepper-fill .stepper-button+.stepper-button.active-state,.stepper-fill .stepper-button-minus+.stepper-button-plus.active-state{border-left-color:var(--f7-stepper-button-pressed-bg-color)}.aurora .stepper-raised-aurora:not(.stepper-fill-aurora):not(.stepper-fill) .stepper-input-wrap,.aurora .stepper-raised-aurora:not(.stepper-fill-aurora):not(.stepper-fill) .stepper-value,.ios .stepper-raised-ios:not(.stepper-fill-ios):not(.stepper-fill) .stepper-input-wrap,.ios .stepper-raised-ios:not(.stepper-fill-ios):not(.stepper-fill) .stepper-value,.md .stepper-raised-md:not(.stepper-fill-md):not(.stepper-fill) .stepper-input-wrap,.md .stepper-raised-md:not(.stepper-fill-md):not(.stepper-fill) .stepper-value,.stepper-raised:not(.stepper-fill) .stepper-input-wrap,.stepper-raised:not(.stepper-fill) .stepper-value{border-left:1px solid rgba(0,0,0,.1);border-right:1px solid rgba(0,0,0,.1)}.aurora .stepper-large-aurora,.ios .stepper-large-ios,.md .stepper-large-md,.stepper-large{--f7-stepper-height:var(--f7-stepper-large-height)}.aurora .stepper-small-aurora,.ios .stepper-small-ios,.md .stepper-small-md,.stepper-small{--f7-stepper-border-width:var(--f7-stepper-small-border-width);--f7-stepper-height:var(--f7-stepper-small-height)}.ios .stepper-fill.stepper-small,.ios .stepper-fill.stepper-small-ios{--f7-stepper-button-pressed-bg-color:transparent;--f7-stepper-button-pressed-text-color:var(--f7-theme-color)}.aurora .stepper-raised-aurora,.ios .stepper-raised-ios,.md .stepper-raised-md,.stepper-raised{--f7-stepper-border-width:0;box-shadow:var(--f7-stepper-raised-box-shadow)}.ios .stepper-button .f7-icons,.ios .stepper-button-minus .f7-icons,.ios .stepper-button-plus .f7-icons{font-size:22px}.ios .stepper-fill,.ios .stepper-fill-ios{--f7-stepper-button-pressed-bg-color:var(--f7-stepper-fill-button-pressed-bg-color, var(--f7-theme-color-tint))}.ios .stepper-small-ios.stepper-raised,.ios .stepper-small-ios.stepper-raised-ios,.ios .stepper-small.stepper-raised,.ios .stepper-small.stepper-raised-ios{--f7-stepper-border-width:0px}.ios .stepper-small .stepper-button,.ios .stepper-small .stepper-button-minus,.ios .stepper-small .stepper-button-plus,.ios .stepper-small-ios .stepper-button,.ios .stepper-small-ios .stepper-button-minus,.ios .stepper-small-ios .stepper-button-plus{transition-duration:.2s}.ios .stepper-small .stepper-button-minus.active-state:after,.ios .stepper-small .stepper-button-minus.active-state:before,.ios .stepper-small .stepper-button-plus.active-state:after,.ios .stepper-small .stepper-button-plus.active-state:before,.ios .stepper-small .stepper-button.active-state:after,.ios .stepper-small .stepper-button.active-state:before,.ios .stepper-small-ios .stepper-button-minus.active-state:after,.ios .stepper-small-ios .stepper-button-minus.active-state:before,.ios .stepper-small-ios .stepper-button-plus.active-state:after,.ios .stepper-small-ios .stepper-button-plus.active-state:before,.ios .stepper-small-ios .stepper-button.active-state:after,.ios .stepper-small-ios .stepper-button.active-state:before{transition-duration:.2s;background-color:var(--f7-theme-color)}.md .stepper-button,.md .stepper-button-minus,.md .stepper-button-plus{transition-duration:.3s;transform:translate3d(0,0,0);overflow:hidden}.md .stepper-fill,.md .stepper-fill-md{--f7-stepper-button-pressed-bg-color:var(--f7-stepper-fill-button-pressed-bg-color, var(--f7-theme-color-shade))}.aurora .stepper-button,.aurora .stepper-button-minus,.aurora .stepper-button-plus{transition-duration:.1s;transform:translate3d(0,0,0);overflow:hidden}.aurora.device-desktop .stepper-button-minus:not(.active-state):not(.no-hover):hover,.aurora.device-desktop .stepper-button-plus:not(.active-state):not(.no-hover):hover,.aurora.device-desktop .stepper-button:not(.active-state):not(.no-hover):hover{background-color:var(--f7-stepper-button-hover-bg-color,rgba(var(--f7-theme-color-rgb),.07))}.aurora .stepper-fill,.aurora .stepper-fill-aurora{--f7-stepper-button-hover-bg-color:var(--f7-stepper-button-fill-hover-bg-color, var(--f7-theme-color-tint));--f7-stepper-button-pressed-bg-color:var(--f7-stepper-fill-button-pressed-bg-color, var(--f7-theme-color-shade))}.smart-select select{display:none}.smart-select .item-after{max-width:70%;overflow:hidden;text-overflow:ellipsis;position:relative;display:block}.smart-select-sheet .list ul,.smart-select-sheet .page,.smart-select-sheet .sheet-modal-inner{background:var(--f7-smart-select-sheet-bg,var(--f7-list-bg-color))}.smart-select-sheet .toolbar:after{content:'';position:absolute;background-color:var(--f7-smart-select-sheet-toolbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.smart-select-sheet .toolbar:after{display:block}.smart-select-sheet .list{margin:0}.smart-select-sheet .list ul:after,.smart-select-sheet .list ul:before{display:none!important}.smart-select-popover .popover-inner{max-height:40vh}:root{--f7-grid-gap:16px;--f7-grid-row-gap:0px;--f7-grid-resize-handler-bg-color:rgba(0, 0, 0, 0.35)}:root .theme-dark,:root.theme-dark{--f7-grid-resize-handler-bg-color:rgba(255, 255, 255, 0.35)}.row{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:flex-start;--f7-cols-per-row:1}.row+.row{margin-top:var(--f7-grid-row-gap)}.row>.col,.row>[class*=col-]{box-sizing:border-box;width:calc((100% - var(--f7-grid-gap) * (var(--f7-cols-per-row) - 1))/ var(--f7-cols-per-row))}.row>.col.resizable,.row>[class*=col-].resizable{position:relative}.row.resizable{position:relative}.row.no-gap{--f7-grid-gap:0px;--f7-grid-row-gap:0px}.row .col-5{--f7-cols-per-row:20}.row .col-10{--f7-cols-per-row:10}.row .col-15{--f7-cols-per-row:6.66666667}.row .col-20{--f7-cols-per-row:5}.row .col-25{--f7-cols-per-row:4}.row .col-30{--f7-cols-per-row:3.33333333}.row .col-33{--f7-cols-per-row:3}.row .col-35{--f7-cols-per-row:2.85714286}.row .col-40{--f7-cols-per-row:2.5}.row .col-45{--f7-cols-per-row:2.22222222}.row .col-50{--f7-cols-per-row:2}.row .col-55{--f7-cols-per-row:1.81818182}.row .col-60{--f7-cols-per-row:1.66666667}.row .col-65{--f7-cols-per-row:1.53846154}.row .col-66{--f7-cols-per-row:1.5}.row .col-70{--f7-cols-per-row:1.42857143}.row .col-75{--f7-cols-per-row:1.33333333}.row .col-80{--f7-cols-per-row:1.25}.row .col-85{--f7-cols-per-row:1.17647059}.row .col-90{--f7-cols-per-row:1.11111111}.row .col-95{--f7-cols-per-row:1.05263158}.row .col-100{--f7-cols-per-row:1}.row .col:nth-last-of-type(1),.row .col:nth-last-of-type(1)~.col{--f7-cols-per-row:1}.row .col:nth-last-of-type(2),.row .col:nth-last-of-type(2)~.col{--f7-cols-per-row:2}.row .col:nth-last-of-type(3),.row .col:nth-last-of-type(3)~.col{--f7-cols-per-row:3}.row .col:nth-last-of-type(4),.row .col:nth-last-of-type(4)~.col{--f7-cols-per-row:4}.row .col:nth-last-of-type(5),.row .col:nth-last-of-type(5)~.col{--f7-cols-per-row:5}.row .col:nth-last-of-type(6),.row .col:nth-last-of-type(6)~.col{--f7-cols-per-row:6}.row .col:nth-last-of-type(7),.row .col:nth-last-of-type(7)~.col{--f7-cols-per-row:7}.row .col:nth-last-of-type(8),.row .col:nth-last-of-type(8)~.col{--f7-cols-per-row:8}.row .col:nth-last-of-type(9),.row .col:nth-last-of-type(9)~.col{--f7-cols-per-row:9}.row .col:nth-last-of-type(10),.row .col:nth-last-of-type(10)~.col{--f7-cols-per-row:10}.row .col:nth-last-of-type(11),.row .col:nth-last-of-type(11)~.col{--f7-cols-per-row:11}.row .col:nth-last-of-type(12),.row .col:nth-last-of-type(12)~.col{--f7-cols-per-row:12}.row .col:nth-last-of-type(13),.row .col:nth-last-of-type(13)~.col{--f7-cols-per-row:13}.row .col:nth-last-of-type(14),.row .col:nth-last-of-type(14)~.col{--f7-cols-per-row:14}.row .col:nth-last-of-type(15),.row .col:nth-last-of-type(15)~.col{--f7-cols-per-row:15}.row .col:nth-last-of-type(16),.row .col:nth-last-of-type(16)~.col{--f7-cols-per-row:16}.row .col:nth-last-of-type(17),.row .col:nth-last-of-type(17)~.col{--f7-cols-per-row:17}.row .col:nth-last-of-type(18),.row .col:nth-last-of-type(18)~.col{--f7-cols-per-row:18}.row .col:nth-last-of-type(19),.row .col:nth-last-of-type(19)~.col{--f7-cols-per-row:19}.row .col:nth-last-of-type(20),.row .col:nth-last-of-type(20)~.col{--f7-cols-per-row:20}.row .col:nth-last-of-type(21),.row .col:nth-last-of-type(21)~.col{--f7-cols-per-row:21}.row .col:nth-last-of-type(22),.row .col:nth-last-of-type(22)~.col{--f7-cols-per-row:22}@media (min-width:480px){.row .xsmall-5{--f7-cols-per-row:20}.row .xsmall-10{--f7-cols-per-row:10}.row .xsmall-15{--f7-cols-per-row:6.66666667}.row .xsmall-20{--f7-cols-per-row:5}.row .xsmall-25{--f7-cols-per-row:4}.row .xsmall-30{--f7-cols-per-row:3.33333333}.row .xsmall-33{--f7-cols-per-row:3}.row .xsmall-35{--f7-cols-per-row:2.85714286}.row .xsmall-40{--f7-cols-per-row:2.5}.row .xsmall-45{--f7-cols-per-row:2.22222222}.row .xsmall-50{--f7-cols-per-row:2}.row .xsmall-55{--f7-cols-per-row:1.81818182}.row .xsmall-60{--f7-cols-per-row:1.66666667}.row .xsmall-65{--f7-cols-per-row:1.53846154}.row .xsmall-66{--f7-cols-per-row:1.5}.row .xsmall-70{--f7-cols-per-row:1.42857143}.row .xsmall-75{--f7-cols-per-row:1.33333333}.row .xsmall-80{--f7-cols-per-row:1.25}.row .xsmall-85{--f7-cols-per-row:1.17647059}.row .xsmall-90{--f7-cols-per-row:1.11111111}.row .xsmall-95{--f7-cols-per-row:1.05263158}.row .xsmall-100{--f7-cols-per-row:1}.row .xsmall-auto:nth-last-of-type(1),.row .xsmall-auto:nth-last-of-type(1)~.xsmall-auto{--f7-cols-per-row:1}.row .xsmall-auto:nth-last-of-type(2),.row .xsmall-auto:nth-last-of-type(2)~.xsmall-auto{--f7-cols-per-row:2}.row .xsmall-auto:nth-last-of-type(3),.row .xsmall-auto:nth-last-of-type(3)~.xsmall-auto{--f7-cols-per-row:3}.row .xsmall-auto:nth-last-of-type(4),.row .xsmall-auto:nth-last-of-type(4)~.xsmall-auto{--f7-cols-per-row:4}.row .xsmall-auto:nth-last-of-type(5),.row .xsmall-auto:nth-last-of-type(5)~.xsmall-auto{--f7-cols-per-row:5}.row .xsmall-auto:nth-last-of-type(6),.row .xsmall-auto:nth-last-of-type(6)~.xsmall-auto{--f7-cols-per-row:6}.row .xsmall-auto:nth-last-of-type(7),.row .xsmall-auto:nth-last-of-type(7)~.xsmall-auto{--f7-cols-per-row:7}.row .xsmall-auto:nth-last-of-type(8),.row .xsmall-auto:nth-last-of-type(8)~.xsmall-auto{--f7-cols-per-row:8}.row .xsmall-auto:nth-last-of-type(9),.row .xsmall-auto:nth-last-of-type(9)~.xsmall-auto{--f7-cols-per-row:9}.row .xsmall-auto:nth-last-of-type(10),.row .xsmall-auto:nth-last-of-type(10)~.xsmall-auto{--f7-cols-per-row:10}.row .xsmall-auto:nth-last-of-type(11),.row .xsmall-auto:nth-last-of-type(11)~.xsmall-auto{--f7-cols-per-row:11}.row .xsmall-auto:nth-last-of-type(12),.row .xsmall-auto:nth-last-of-type(12)~.xsmall-auto{--f7-cols-per-row:12}.row .xsmall-auto:nth-last-of-type(13),.row .xsmall-auto:nth-last-of-type(13)~.xsmall-auto{--f7-cols-per-row:13}.row .xsmall-auto:nth-last-of-type(14),.row .xsmall-auto:nth-last-of-type(14)~.xsmall-auto{--f7-cols-per-row:14}.row .xsmall-auto:nth-last-of-type(15),.row .xsmall-auto:nth-last-of-type(15)~.xsmall-auto{--f7-cols-per-row:15}.row .xsmall-auto:nth-last-of-type(16),.row .xsmall-auto:nth-last-of-type(16)~.xsmall-auto{--f7-cols-per-row:16}.row .xsmall-auto:nth-last-of-type(17),.row .xsmall-auto:nth-last-of-type(17)~.xsmall-auto{--f7-cols-per-row:17}.row .xsmall-auto:nth-last-of-type(18),.row .xsmall-auto:nth-last-of-type(18)~.xsmall-auto{--f7-cols-per-row:18}.row .xsmall-auto:nth-last-of-type(19),.row .xsmall-auto:nth-last-of-type(19)~.xsmall-auto{--f7-cols-per-row:19}.row .xsmall-auto:nth-last-of-type(20),.row .xsmall-auto:nth-last-of-type(20)~.xsmall-auto{--f7-cols-per-row:20}.row .xsmall-auto:nth-last-of-type(21),.row .xsmall-auto:nth-last-of-type(21)~.xsmall-auto{--f7-cols-per-row:21}.row .xsmall-auto:nth-last-of-type(22),.row .xsmall-auto:nth-last-of-type(22)~.xsmall-auto{--f7-cols-per-row:22}}@media (min-width:568px){.row .small-5{--f7-cols-per-row:20}.row .small-10{--f7-cols-per-row:10}.row .small-15{--f7-cols-per-row:6.66666667}.row .small-20{--f7-cols-per-row:5}.row .small-25{--f7-cols-per-row:4}.row .small-30{--f7-cols-per-row:3.33333333}.row .small-33{--f7-cols-per-row:3}.row .small-35{--f7-cols-per-row:2.85714286}.row .small-40{--f7-cols-per-row:2.5}.row .small-45{--f7-cols-per-row:2.22222222}.row .small-50{--f7-cols-per-row:2}.row .small-55{--f7-cols-per-row:1.81818182}.row .small-60{--f7-cols-per-row:1.66666667}.row .small-65{--f7-cols-per-row:1.53846154}.row .small-66{--f7-cols-per-row:1.5}.row .small-70{--f7-cols-per-row:1.42857143}.row .small-75{--f7-cols-per-row:1.33333333}.row .small-80{--f7-cols-per-row:1.25}.row .small-85{--f7-cols-per-row:1.17647059}.row .small-90{--f7-cols-per-row:1.11111111}.row .small-95{--f7-cols-per-row:1.05263158}.row .small-100{--f7-cols-per-row:1}.row .small-auto:nth-last-of-type(1),.row .small-auto:nth-last-of-type(1)~.small-auto{--f7-cols-per-row:1}.row .small-auto:nth-last-of-type(2),.row .small-auto:nth-last-of-type(2)~.small-auto{--f7-cols-per-row:2}.row .small-auto:nth-last-of-type(3),.row .small-auto:nth-last-of-type(3)~.small-auto{--f7-cols-per-row:3}.row .small-auto:nth-last-of-type(4),.row .small-auto:nth-last-of-type(4)~.small-auto{--f7-cols-per-row:4}.row .small-auto:nth-last-of-type(5),.row .small-auto:nth-last-of-type(5)~.small-auto{--f7-cols-per-row:5}.row .small-auto:nth-last-of-type(6),.row .small-auto:nth-last-of-type(6)~.small-auto{--f7-cols-per-row:6}.row .small-auto:nth-last-of-type(7),.row .small-auto:nth-last-of-type(7)~.small-auto{--f7-cols-per-row:7}.row .small-auto:nth-last-of-type(8),.row .small-auto:nth-last-of-type(8)~.small-auto{--f7-cols-per-row:8}.row .small-auto:nth-last-of-type(9),.row .small-auto:nth-last-of-type(9)~.small-auto{--f7-cols-per-row:9}.row .small-auto:nth-last-of-type(10),.row .small-auto:nth-last-of-type(10)~.small-auto{--f7-cols-per-row:10}.row .small-auto:nth-last-of-type(11),.row .small-auto:nth-last-of-type(11)~.small-auto{--f7-cols-per-row:11}.row .small-auto:nth-last-of-type(12),.row .small-auto:nth-last-of-type(12)~.small-auto{--f7-cols-per-row:12}.row .small-auto:nth-last-of-type(13),.row .small-auto:nth-last-of-type(13)~.small-auto{--f7-cols-per-row:13}.row .small-auto:nth-last-of-type(14),.row .small-auto:nth-last-of-type(14)~.small-auto{--f7-cols-per-row:14}.row .small-auto:nth-last-of-type(15),.row .small-auto:nth-last-of-type(15)~.small-auto{--f7-cols-per-row:15}.row .small-auto:nth-last-of-type(16),.row .small-auto:nth-last-of-type(16)~.small-auto{--f7-cols-per-row:16}.row .small-auto:nth-last-of-type(17),.row .small-auto:nth-last-of-type(17)~.small-auto{--f7-cols-per-row:17}.row .small-auto:nth-last-of-type(18),.row .small-auto:nth-last-of-type(18)~.small-auto{--f7-cols-per-row:18}.row .small-auto:nth-last-of-type(19),.row .small-auto:nth-last-of-type(19)~.small-auto{--f7-cols-per-row:19}.row .small-auto:nth-last-of-type(20),.row .small-auto:nth-last-of-type(20)~.small-auto{--f7-cols-per-row:20}.row .small-auto:nth-last-of-type(21),.row .small-auto:nth-last-of-type(21)~.small-auto{--f7-cols-per-row:21}.row .small-auto:nth-last-of-type(22),.row .small-auto:nth-last-of-type(22)~.small-auto{--f7-cols-per-row:22}}@media (min-width:768px){.row .medium-5{--f7-cols-per-row:20}.row .medium-10{--f7-cols-per-row:10}.row .medium-15{--f7-cols-per-row:6.66666667}.row .medium-20{--f7-cols-per-row:5}.row .medium-25{--f7-cols-per-row:4}.row .medium-30{--f7-cols-per-row:3.33333333}.row .medium-33{--f7-cols-per-row:3}.row .medium-35{--f7-cols-per-row:2.85714286}.row .medium-40{--f7-cols-per-row:2.5}.row .medium-45{--f7-cols-per-row:2.22222222}.row .medium-50{--f7-cols-per-row:2}.row .medium-55{--f7-cols-per-row:1.81818182}.row .medium-60{--f7-cols-per-row:1.66666667}.row .medium-65{--f7-cols-per-row:1.53846154}.row .medium-66{--f7-cols-per-row:1.5}.row .medium-70{--f7-cols-per-row:1.42857143}.row .medium-75{--f7-cols-per-row:1.33333333}.row .medium-80{--f7-cols-per-row:1.25}.row .medium-85{--f7-cols-per-row:1.17647059}.row .medium-90{--f7-cols-per-row:1.11111111}.row .medium-95{--f7-cols-per-row:1.05263158}.row .medium-100{--f7-cols-per-row:1}.row .medium-auto:nth-last-of-type(1),.row .medium-auto:nth-last-of-type(1)~.medium-auto{--f7-cols-per-row:1}.row .medium-auto:nth-last-of-type(2),.row .medium-auto:nth-last-of-type(2)~.medium-auto{--f7-cols-per-row:2}.row .medium-auto:nth-last-of-type(3),.row .medium-auto:nth-last-of-type(3)~.medium-auto{--f7-cols-per-row:3}.row .medium-auto:nth-last-of-type(4),.row .medium-auto:nth-last-of-type(4)~.medium-auto{--f7-cols-per-row:4}.row .medium-auto:nth-last-of-type(5),.row .medium-auto:nth-last-of-type(5)~.medium-auto{--f7-cols-per-row:5}.row .medium-auto:nth-last-of-type(6),.row .medium-auto:nth-last-of-type(6)~.medium-auto{--f7-cols-per-row:6}.row .medium-auto:nth-last-of-type(7),.row .medium-auto:nth-last-of-type(7)~.medium-auto{--f7-cols-per-row:7}.row .medium-auto:nth-last-of-type(8),.row .medium-auto:nth-last-of-type(8)~.medium-auto{--f7-cols-per-row:8}.row .medium-auto:nth-last-of-type(9),.row .medium-auto:nth-last-of-type(9)~.medium-auto{--f7-cols-per-row:9}.row .medium-auto:nth-last-of-type(10),.row .medium-auto:nth-last-of-type(10)~.medium-auto{--f7-cols-per-row:10}.row .medium-auto:nth-last-of-type(11),.row .medium-auto:nth-last-of-type(11)~.medium-auto{--f7-cols-per-row:11}.row .medium-auto:nth-last-of-type(12),.row .medium-auto:nth-last-of-type(12)~.medium-auto{--f7-cols-per-row:12}.row .medium-auto:nth-last-of-type(13),.row .medium-auto:nth-last-of-type(13)~.medium-auto{--f7-cols-per-row:13}.row .medium-auto:nth-last-of-type(14),.row .medium-auto:nth-last-of-type(14)~.medium-auto{--f7-cols-per-row:14}.row .medium-auto:nth-last-of-type(15),.row .medium-auto:nth-last-of-type(15)~.medium-auto{--f7-cols-per-row:15}.row .medium-auto:nth-last-of-type(16),.row .medium-auto:nth-last-of-type(16)~.medium-auto{--f7-cols-per-row:16}.row .medium-auto:nth-last-of-type(17),.row .medium-auto:nth-last-of-type(17)~.medium-auto{--f7-cols-per-row:17}.row .medium-auto:nth-last-of-type(18),.row .medium-auto:nth-last-of-type(18)~.medium-auto{--f7-cols-per-row:18}.row .medium-auto:nth-last-of-type(19),.row .medium-auto:nth-last-of-type(19)~.medium-auto{--f7-cols-per-row:19}.row .medium-auto:nth-last-of-type(20),.row .medium-auto:nth-last-of-type(20)~.medium-auto{--f7-cols-per-row:20}.row .medium-auto:nth-last-of-type(21),.row .medium-auto:nth-last-of-type(21)~.medium-auto{--f7-cols-per-row:21}.row .medium-auto:nth-last-of-type(22),.row .medium-auto:nth-last-of-type(22)~.medium-auto{--f7-cols-per-row:22}}@media (min-width:1024px){.row .large-5{--f7-cols-per-row:20}.row .large-10{--f7-cols-per-row:10}.row .large-15{--f7-cols-per-row:6.66666667}.row .large-20{--f7-cols-per-row:5}.row .large-25{--f7-cols-per-row:4}.row .large-30{--f7-cols-per-row:3.33333333}.row .large-33{--f7-cols-per-row:3}.row .large-35{--f7-cols-per-row:2.85714286}.row .large-40{--f7-cols-per-row:2.5}.row .large-45{--f7-cols-per-row:2.22222222}.row .large-50{--f7-cols-per-row:2}.row .large-55{--f7-cols-per-row:1.81818182}.row .large-60{--f7-cols-per-row:1.66666667}.row .large-65{--f7-cols-per-row:1.53846154}.row .large-66{--f7-cols-per-row:1.5}.row .large-70{--f7-cols-per-row:1.42857143}.row .large-75{--f7-cols-per-row:1.33333333}.row .large-80{--f7-cols-per-row:1.25}.row .large-85{--f7-cols-per-row:1.17647059}.row .large-90{--f7-cols-per-row:1.11111111}.row .large-95{--f7-cols-per-row:1.05263158}.row .large-100{--f7-cols-per-row:1}.row .large-auto:nth-last-of-type(1),.row .large-auto:nth-last-of-type(1)~.large-auto{--f7-cols-per-row:1}.row .large-auto:nth-last-of-type(2),.row .large-auto:nth-last-of-type(2)~.large-auto{--f7-cols-per-row:2}.row .large-auto:nth-last-of-type(3),.row .large-auto:nth-last-of-type(3)~.large-auto{--f7-cols-per-row:3}.row .large-auto:nth-last-of-type(4),.row .large-auto:nth-last-of-type(4)~.large-auto{--f7-cols-per-row:4}.row .large-auto:nth-last-of-type(5),.row .large-auto:nth-last-of-type(5)~.large-auto{--f7-cols-per-row:5}.row .large-auto:nth-last-of-type(6),.row .large-auto:nth-last-of-type(6)~.large-auto{--f7-cols-per-row:6}.row .large-auto:nth-last-of-type(7),.row .large-auto:nth-last-of-type(7)~.large-auto{--f7-cols-per-row:7}.row .large-auto:nth-last-of-type(8),.row .large-auto:nth-last-of-type(8)~.large-auto{--f7-cols-per-row:8}.row .large-auto:nth-last-of-type(9),.row .large-auto:nth-last-of-type(9)~.large-auto{--f7-cols-per-row:9}.row .large-auto:nth-last-of-type(10),.row .large-auto:nth-last-of-type(10)~.large-auto{--f7-cols-per-row:10}.row .large-auto:nth-last-of-type(11),.row .large-auto:nth-last-of-type(11)~.large-auto{--f7-cols-per-row:11}.row .large-auto:nth-last-of-type(12),.row .large-auto:nth-last-of-type(12)~.large-auto{--f7-cols-per-row:12}.row .large-auto:nth-last-of-type(13),.row .large-auto:nth-last-of-type(13)~.large-auto{--f7-cols-per-row:13}.row .large-auto:nth-last-of-type(14),.row .large-auto:nth-last-of-type(14)~.large-auto{--f7-cols-per-row:14}.row .large-auto:nth-last-of-type(15),.row .large-auto:nth-last-of-type(15)~.large-auto{--f7-cols-per-row:15}.row .large-auto:nth-last-of-type(16),.row .large-auto:nth-last-of-type(16)~.large-auto{--f7-cols-per-row:16}.row .large-auto:nth-last-of-type(17),.row .large-auto:nth-last-of-type(17)~.large-auto{--f7-cols-per-row:17}.row .large-auto:nth-last-of-type(18),.row .large-auto:nth-last-of-type(18)~.large-auto{--f7-cols-per-row:18}.row .large-auto:nth-last-of-type(19),.row .large-auto:nth-last-of-type(19)~.large-auto{--f7-cols-per-row:19}.row .large-auto:nth-last-of-type(20),.row .large-auto:nth-last-of-type(20)~.large-auto{--f7-cols-per-row:20}.row .large-auto:nth-last-of-type(21),.row .large-auto:nth-last-of-type(21)~.large-auto{--f7-cols-per-row:21}.row .large-auto:nth-last-of-type(22),.row .large-auto:nth-last-of-type(22)~.large-auto{--f7-cols-per-row:22}}@media (min-width:1200px){.row .xlarge-5{--f7-cols-per-row:20}.row .xlarge-10{--f7-cols-per-row:10}.row .xlarge-15{--f7-cols-per-row:6.66666667}.row .xlarge-20{--f7-cols-per-row:5}.row .xlarge-25{--f7-cols-per-row:4}.row .xlarge-30{--f7-cols-per-row:3.33333333}.row .xlarge-33{--f7-cols-per-row:3}.row .xlarge-35{--f7-cols-per-row:2.85714286}.row .xlarge-40{--f7-cols-per-row:2.5}.row .xlarge-45{--f7-cols-per-row:2.22222222}.row .xlarge-50{--f7-cols-per-row:2}.row .xlarge-55{--f7-cols-per-row:1.81818182}.row .xlarge-60{--f7-cols-per-row:1.66666667}.row .xlarge-65{--f7-cols-per-row:1.53846154}.row .xlarge-66{--f7-cols-per-row:1.5}.row .xlarge-70{--f7-cols-per-row:1.42857143}.row .xlarge-75{--f7-cols-per-row:1.33333333}.row .xlarge-80{--f7-cols-per-row:1.25}.row .xlarge-85{--f7-cols-per-row:1.17647059}.row .xlarge-90{--f7-cols-per-row:1.11111111}.row .xlarge-95{--f7-cols-per-row:1.05263158}.row .xlarge-100{--f7-cols-per-row:1}.row .xlarge-auto:nth-last-of-type(1),.row .xlarge-auto:nth-last-of-type(1)~.xlarge-auto{--f7-cols-per-row:1}.row .xlarge-auto:nth-last-of-type(2),.row .xlarge-auto:nth-last-of-type(2)~.xlarge-auto{--f7-cols-per-row:2}.row .xlarge-auto:nth-last-of-type(3),.row .xlarge-auto:nth-last-of-type(3)~.xlarge-auto{--f7-cols-per-row:3}.row .xlarge-auto:nth-last-of-type(4),.row .xlarge-auto:nth-last-of-type(4)~.xlarge-auto{--f7-cols-per-row:4}.row .xlarge-auto:nth-last-of-type(5),.row .xlarge-auto:nth-last-of-type(5)~.xlarge-auto{--f7-cols-per-row:5}.row .xlarge-auto:nth-last-of-type(6),.row .xlarge-auto:nth-last-of-type(6)~.xlarge-auto{--f7-cols-per-row:6}.row .xlarge-auto:nth-last-of-type(7),.row .xlarge-auto:nth-last-of-type(7)~.xlarge-auto{--f7-cols-per-row:7}.row .xlarge-auto:nth-last-of-type(8),.row .xlarge-auto:nth-last-of-type(8)~.xlarge-auto{--f7-cols-per-row:8}.row .xlarge-auto:nth-last-of-type(9),.row .xlarge-auto:nth-last-of-type(9)~.xlarge-auto{--f7-cols-per-row:9}.row .xlarge-auto:nth-last-of-type(10),.row .xlarge-auto:nth-last-of-type(10)~.xlarge-auto{--f7-cols-per-row:10}.row .xlarge-auto:nth-last-of-type(11),.row .xlarge-auto:nth-last-of-type(11)~.xlarge-auto{--f7-cols-per-row:11}.row .xlarge-auto:nth-last-of-type(12),.row .xlarge-auto:nth-last-of-type(12)~.xlarge-auto{--f7-cols-per-row:12}.row .xlarge-auto:nth-last-of-type(13),.row .xlarge-auto:nth-last-of-type(13)~.xlarge-auto{--f7-cols-per-row:13}.row .xlarge-auto:nth-last-of-type(14),.row .xlarge-auto:nth-last-of-type(14)~.xlarge-auto{--f7-cols-per-row:14}.row .xlarge-auto:nth-last-of-type(15),.row .xlarge-auto:nth-last-of-type(15)~.xlarge-auto{--f7-cols-per-row:15}.row .xlarge-auto:nth-last-of-type(16),.row .xlarge-auto:nth-last-of-type(16)~.xlarge-auto{--f7-cols-per-row:16}.row .xlarge-auto:nth-last-of-type(17),.row .xlarge-auto:nth-last-of-type(17)~.xlarge-auto{--f7-cols-per-row:17}.row .xlarge-auto:nth-last-of-type(18),.row .xlarge-auto:nth-last-of-type(18)~.xlarge-auto{--f7-cols-per-row:18}.row .xlarge-auto:nth-last-of-type(19),.row .xlarge-auto:nth-last-of-type(19)~.xlarge-auto{--f7-cols-per-row:19}.row .xlarge-auto:nth-last-of-type(20),.row .xlarge-auto:nth-last-of-type(20)~.xlarge-auto{--f7-cols-per-row:20}.row .xlarge-auto:nth-last-of-type(21),.row .xlarge-auto:nth-last-of-type(21)~.xlarge-auto{--f7-cols-per-row:21}.row .xlarge-auto:nth-last-of-type(22),.row .xlarge-auto:nth-last-of-type(22)~.xlarge-auto{--f7-cols-per-row:22}}.row .resize-handler{position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:100}.row .resize-handler:before{content:'';position:absolute}.row .resize-handler:after{content:'';position:absolute;border-radius:4px;background:var(--f7-grid-resize-handler-bg-color)}.row>.resize-handler{width:100%;height:var(--f7-grid-row-gap);left:0;top:100%;cursor:row-resize}.row>.resize-handler:before{left:0%;top:50%;height:12px;width:100%;min-height:var(--f7-grid-row-gap);transform:translateY(-50%)}.row>.resize-handler:after{height:4px;margin-top:-2px;width:80%;max-width:20px;left:50%;top:50%;transform:translateX(-50%)}.col>.resize-handler,[class*=col-]>.resize-handler{width:var(--f7-grid-gap);left:100%;top:0;height:100%;cursor:col-resize}.col>.resize-handler:before,[class*=col-]>.resize-handler:before{left:50%;top:0;height:100%;width:12px;min-width:var(--f7-grid-gap);transform:translateX(-50%)}.col>.resize-handler:after,[class*=col-]>.resize-handler:after{width:4px;margin-left:-2px;height:80%;max-height:20px;border-radius:4px;left:50%;top:50%;transform:translateY(-50%)}.row .col:last-child>.resize-handler,.row .col:last-of-type>.resize-handler,.row [class*=col-]:last-child>.resize-handler,.row [class*=col-]:last-of-type>.resize-handler,.row:last-child>.resize-handler,.row:last-of-type>.resize-handler{display:none}:root{--f7-calendar-height:340px;--f7-calendar-sheet-landscape-height:220px;--f7-calendar-popover-width:320px;--f7-calendar-popover-height:320px;--f7-calendar-modal-height:420px;--f7-calendar-modal-max-width:380px;--f7-calendar-modal-border-radius:4px;--f7-calendar-footer-padding:0 8px;--f7-calendar-week-header-font-size:11px;--f7-calendar-selected-text-color:#fff;--f7-calendar-prev-next-text-color:#b8b8b8;--f7-calendar-disabled-text-color:#d4d4d4;--f7-calendar-event-dot-size:4px;--f7-calendar-time-selector-height:28px;--f7-calendar-day-text-color:#000;--f7-calendar-sheet-bg-color:#fff;--f7-calendar-modal-bg-color:#fff;--f7-calendar-picker-bg-color:#fff;--f7-calendar-picker-pressed-bg-color:rgba(0, 0, 0, 0.1);--f7-calendar-picker-hover-bg-color:rgba(0, 0, 0, 0.03);--f7-calendar-time-selector-bg-color:rgba(0, 0, 0, 0.1)}:root .theme-dark,:root.theme-dark{--f7-calendar-sheet-border-color:var(--f7-bars-border-color);--f7-calendar-modal-bg-color:#121212;--f7-calendar-sheet-bg-color:#121212;--f7-calendar-picker-bg-color:#1c1c1d;--f7-calendar-picker-pressed-bg-color:rgba(255, 255, 255, 0.08);--f7-calendar-picker-hover-bg-color:rgba(255, 255, 255, 0.03);--f7-calendar-time-selector-bg-color:rgba(255, 255, 255, 0.1)}.ios{--f7-calendar-sheet-border-color:#929499;--f7-calendar-header-height:44px;--f7-calendar-header-font-size:17px;--f7-calendar-header-font-weight:600;--f7-calendar-header-padding:0 8px;--f7-calendar-footer-height:44px;--f7-calendar-footer-font-size:17px;--f7-calendar-week-header-height:18px;--f7-calendar-day-font-size:15px;--f7-calendar-day-size:30px;--f7-calendar-picker-font-size:17px;--f7-calendar-time-selector-font-size:17px;--f7-calendar-row-border-color:rgba(0, 0, 0, 0.25);--f7-calendar-today-text-color:#000;--f7-calendar-today-bg-color:#e3e3e3}.ios .theme-dark,.ios.theme-dark{--f7-calendar-row-border-color:var(--f7-bars-border-color);--f7-calendar-day-text-color:#fff;--f7-calendar-today-text-color:#fff;--f7-calendar-today-bg-color:#333}.md{--f7-calendar-sheet-border-color:#ccc;--f7-calendar-header-height:56px;--f7-calendar-header-font-size:20px;--f7-calendar-header-font-weight:400;--f7-calendar-header-padding:0 24px;--f7-calendar-footer-height:48px;--f7-calendar-footer-font-size:14px;--f7-calendar-week-header-height:24px;--f7-calendar-row-border-color:transparent;--f7-calendar-day-font-size:14px;--f7-calendar-today-bg-color:none;--f7-calendar-day-size:32px;--f7-calendar-picker-font-size:14px;--f7-calendar-time-selector-font-size:14px}.md .theme-dark,.md.theme-dark{--f7-calendar-day-text-color:rgba(255, 255, 255, 0.87)}.aurora{--f7-calendar-sheet-border-color:#ccc;--f7-calendar-header-height:56px;--f7-calendar-header-font-size:18px;--f7-calendar-header-font-weight:600;--f7-calendar-header-padding:0 16px;--f7-calendar-footer-height:48px;--f7-calendar-footer-font-size:14px;--f7-calendar-footer-padding:0 16px;--f7-calendar-week-header-height:24px;--f7-calendar-day-font-size:14px;--f7-calendar-day-size:32px;--f7-calendar-picker-font-size:16px;--f7-calendar-time-selector-font-size:14px;--f7-calendar-row-border-color:transparent;--f7-calendar-today-text-color:#000;--f7-calendar-today-bg-color:#e3e3e3}.aurora .theme-dark,.aurora.theme-dark{--f7-calendar-day-text-color:#fff;--f7-calendar-today-text-color:#fff;--f7-calendar-today-bg-color:#333}.calendar{overflow:hidden;height:var(--f7-calendar-height);width:100%;display:flex;flex-direction:column}.aurora .calendar{--f7-toolbar-border-color:transparent;--f7-bars-border-color:transparent}.calendar.modal-in{display:flex}@media (orientation:landscape) and (max-height:415px){.calendar.calendar-sheet{height:var(--f7-calendar-sheet-landscape-height)}.calendar.calendar-modal{height:calc(100vh - var(--f7-navbar-height))}}.calendar.calendar-inline,.calendar.calendar-popover .calendar{position:relative}.calendar-sheet{--f7-sheet-border-color:var(--f7-calendar-sheet-border-color);background:var(--f7-calendar-sheet-bg-color);padding-bottom:var(--f7-safe-area-bottom);height:calc(var(--f7-calendar-height) + var(--f7-safe-area-bottom))}.calendar-sheet:before{z-index:600}.calendar-modal .toolbar:before,.calendar-popover .toolbar:before,.calendar-sheet .toolbar:before{display:none}.calendar-popover{width:var(--f7-calendar-popover-width)}.calendar-popover .calendar-header,.calendar-popover .toolbar-top{border-radius:var(--f7-popover-border-radius) var(--f7-popover-border-radius) 0 0}.calendar-popover .calendar-header+.toolbar-top{border-radius:0}.calendar-popover .calendar-footer,.calendar-popover .toolbar-bottom{border-radius:0 0 var(--f7-popover-border-radius) var(--f7-popover-border-radius)}.calendar-popover .calendar{height:var(--f7-calendar-popover-height);position:relative;z-index:1}.calendar-popover .calendar-month-picker,.calendar-popover .calendar-time-picker,.calendar-popover .calendar-year-picker{border-radius:var(--f7-popover-border-radius)}.calendar-header{width:100%;position:relative;overflow:hidden;flex-shrink:0;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;padding:var(--f7-calendar-header-padding);background-color:var(--f7-calendar-header-bg-color,var(--f7-bars-bg-color));color:var(--f7-calendar-header-text-color,var(--f7-bars-text-color));height:var(--f7-calendar-header-height);line-height:var(--f7-calendar-header-height);font-size:var(--f7-calendar-header-font-size);font-weight:var(--f7-calendar-header-font-weight)}.calendar-header a{color:var(--f7-calendar-header-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.calendar-footer{width:100%;flex-shrink:0;padding:var(--f7-calendar-footer-padding);background-color:var(--f7-calendar-footer-bg-color,var(--f7-bars-bg-color));color:var(--f7-calendar-footer-text-color,var(--f7-bars-text-color));height:var(--f7-calendar-footer-height);font-size:var(--f7-calendar-header-font-size);display:flex;justify-content:flex-end;box-sizing:border-box;align-items:center;position:relative}.calendar-footer a{color:var(--f7-calendar-footer-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.calendar-footer:before{content:'';position:absolute;background-color:var(--f7-calendar-footer-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.calendar-modal{position:absolute;height:var(--f7-calendar-modal-height);overflow:hidden;top:50%;left:50%;min-width:300px;max-width:var(--f7-calendar-modal-max-width);transform:translate3d(-50%,100vh,0);transition-property:transform;display:flex;z-index:13500;background:var(--f7-calendar-modal-bg-color);width:90%;border-radius:var(--f7-calendar-modal-border-radius);box-shadow:var(--f7-elevation-24)}.calendar-modal.modal-in,.calendar-modal.modal-out{transition-duration:.4s}.calendar-modal.modal-in{transform:translate3d(-50%,-50%,0)}.calendar-modal.modal-out{transform:translate3d(-50%,100vh,0)}.calendar-week-header{display:flex;box-sizing:border-box;position:relative;font-size:var(--f7-calendar-week-header-font-size);background-color:var(--f7-calendar-week-header-bg-color,var(--f7-bars-bg-color));color:var(--f7-calendar-week-header-text-color,var(--f7-bars-text-color));height:var(--f7-calendar-week-header-height);padding-left:var(--f7-safe-area-left);padding-right:var(--f7-safe-area-right)}.calendar-week-header .calendar-week-day{flex-shrink:1;width:calc(100% / 7);text-align:center;line-height:var(--f7-calendar-week-header-height)}.calendar-months{width:100%;height:100%;overflow:hidden;position:relative;flex-shrink:10}.calendar-months-wrapper{position:relative;width:100%;height:100%;transition:.3s}.calendar-month{display:flex;flex-direction:column;width:100%;height:100%;position:absolute;left:0;top:0}.calendar-row{height:16.66666667%;display:flex;flex-shrink:1;width:100%;position:relative;box-sizing:border-box;padding-left:var(--f7-safe-area-left);padding-right:var(--f7-safe-area-right)}.calendar-row:before{content:'';position:absolute;background-color:var(--f7-calendar-row-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.calendar-modal .calendar-months:first-child .calendar-row:first-child:before,.calendar-popover .calendar-months:first-child .calendar-row:first-child:before{display:none!important}.calendar-day{flex-shrink:1;display:flex;justify-content:center;align-items:center;box-sizing:border-box;width:14.28571429%;text-align:center;cursor:pointer;z-index:20;color:var(--f7-calendar-day-text-color);height:100%;font-size:var(--f7-calendar-day-font-size)}.calendar-day-today .calendar-day-number{color:var(--f7-calendar-today-text-color,var(--f7-theme-color));background-color:var(--f7-calendar-today-bg-color)}.calendar-day-next,.calendar-day-prev{color:var(--f7-calendar-prev-next-text-color)}.calendar-day-disabled{color:var(--f7-calendar-disabled-text-color);cursor:auto}.calendar-day-selected .calendar-day-number{color:var(--f7-calendar-selected-text-color);background-color:var(--f7-calendar-selected-bg-color,var(--f7-theme-color))}.calendar-day-number{display:inline-block;border-radius:50%;position:relative;width:var(--f7-calendar-day-size);height:var(--f7-calendar-day-size);line-height:var(--f7-calendar-day-size)}.calendar-day-events{position:absolute;display:flex;left:0;width:100%;top:100%;align-items:center;justify-content:center;margin-top:1px}.calendar-day-event{width:var(--f7-calendar-event-dot-size);height:var(--f7-calendar-event-dot-size);border-radius:calc(var(--f7-calendar-event-dot-size)/ 2);background-color:var(--f7-calendar-event-bg-color)}.calendar-day-event+.calendar-day-event{margin-left:2px}.calendar-day-selected-left,.calendar-day-selected-range,.calendar-day-selected-right{position:relative}.calendar-day-selected-left:before,.calendar-day-selected-range:before,.calendar-day-selected-right:before{width:100%;height:var(--f7-calendar-day-size);content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);z-index:-1;background-color:var(--f7-calendar-selected-bg-color,var(--f7-theme-color));opacity:.2}.calendar-day-selected-left:before,.calendar-day-selected-range:first-child:before{left:auto;right:0;width:calc(50% + var(--f7-calendar-day-size)/ 2);border-radius:var(--f7-calendar-day-size) 0 0 var(--f7-calendar-day-size)}.calendar-day-selected-range:last-child:before,.calendar-day-selected-right:before{width:calc(50% + var(--f7-calendar-day-size)/ 2);border-radius:0 var(--f7-calendar-day-size) var(--f7-calendar-day-size) 0}.calendar-day-selected-left:last-child:before,.calendar-day-selected-right:first-child:before{display:none}.calendar-day-selected-range .calendar-day-number{background-color:transparent;color:inherit}.calendar-month-selector,.calendar-year-selector{display:flex;justify-content:space-between;align-items:center;width:50%;max-width:200px;flex-shrink:10;margin-left:auto;margin-right:auto}.calendar-month-selector .calendar-day-number,.calendar-year-selector .calendar-day-number{flex-shrink:1;position:relative;overflow:hidden;text-overflow:ellipsis}.calendar-month-selector a.icon-only,.calendar-year-selector a.icon-only{min-width:36px}.calendar-month-picker,.calendar-time-picker,.calendar-year-picker{position:absolute;width:100%;height:100%;left:0px;top:0px;background:var(--f7-calendar-picker-bg-color);z-index:1000;-webkit-user-select:none;-moz-user-select:none;user-select:none}.calendar-month-picker,.calendar-year-picker{flex-wrap:wrap;font-size:var(--f7-calendar-picker-font-size);display:flex}.calendar-month-picker-item,.calendar-year-picker-item{display:flex;justify-content:center;align-items:center;position:relative;overflow:hidden;cursor:pointer;transition-duration:.1s;box-sizing:border-box}.calendar-month-picker-item span,.calendar-year-picker-item span{white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;position:relative;overflow:hidden;pointer-events:none}.device-desktop.aurora .calendar-month-picker-item:hover,.device-desktop.aurora .calendar-year-picker-item:hover{background-color:var(--f7-calendar-picker-hover-bg-color)}.calendar-month-picker-item.active-state,.calendar-year-picker-item.active-state,.device-desktop.aurora .calendar-month-picker-item.active-state,.device-desktop.aurora .calendar-year-picker-item.active-state{background:var(--f7-calendar-picker-pressed-bg-color)}.calendar-month-picker-item{padding:5px}.calendar-month-picker-item:after{content:'';position:absolute;background-color:var(--f7-calendar-row-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.calendar-month-picker-item:before{content:'';position:absolute;background-color:var(--f7-calendar-row-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;width:1px;height:100%;transform-origin:0% 50%;transform:scaleX(calc(1 / var(--f7-device-pixel-ratio)))}.sheet-modal .calendar-month-picker-item{width:25%;height:33.33333333%}.sheet-modal .calendar-month-picker-item:nth-child(4n+1):before{display:none!important}.sheet-modal .calendar-month-picker-item:nth-child(n+9):after{display:none!important}.calendar-modal .calendar-month-picker-item,.popover .calendar-month-picker-item{width:33.33333333%;height:25%}.calendar-modal .calendar-month-picker-item:nth-child(3n+1):before,.popover .calendar-month-picker-item:nth-child(3n+1):before{display:none!important}.calendar-modal .calendar-month-picker-item:nth-child(n+10):after,.popover .calendar-month-picker-item:nth-child(n+10):after{display:none!important}.calendar-month-picker-item-current,.calendar-year-picker-item-current{color:var(--f7-calendar-picker-selected-text-color,var(--f7-theme-color))}.calendar-year-picker{overflow:auto;--webkit-overflow-scrolling:touch}.calendar-year-picker-item{height:34px;line-height:34px;width:100%}.calendar-year-picker-item:after{content:'';position:absolute;background-color:var(--f7-calendar-row-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.calendar-time-selector{flex-shrink:0;font-size:var(--f7-calendar-time-selector-font-size);position:relative;display:flex;justify-content:center;padding:12px 16px}.calendar-time-selector:before{content:'';position:absolute;background-color:var(--f7-calendar-row-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.calendar-time-selector a{overflow:hidden;position:relative;justify-content:center;align-items:center;display:flex;min-width:200px;box-sizing:border-box;height:var(--f7-calendar-time-selector-height);background-color:var(--f7-calendar-time-selector-bg-color);padding:0 10px;border-radius:8px}.calendar-time-selector .segmented{margin-left:8px}.calendar-time-picker{--f7-picker-popover-height:100%;--f7-picker-inline-height:100%}.calendar-time-picker .toolbar{flex-shrink:0;top:0!important}.calendar-time-picker .picker{height:100%;display:flex;flex-direction:column}:root{--f7-picker-height:260px;--f7-picker-inline-height:200px;--f7-picker-popover-height:260px;--f7-picker-popover-width:280px;--f7-picker-landscape-height:200px;--f7-picker-item-height:36px;--f7-picker-item-selected-bg-color:rgba(0, 0, 0, 0.12);--f7-picker-item-selected-text-color:#000}:root .theme-dark,:root.theme-dark{--f7-picker-item-selected-bg-color:rgba(255, 255, 255, 0.1);--f7-picker-item-selected-text-color:#fff}.ios{--f7-picker-column-font-size:20px;--f7-picker-divider-text-color:#000;--f7-picker-item-text-color:rgba(0, 0, 0, 0.45)}.ios .theme-dark,.ios.theme-dark{--f7-picker-divider-text-color:#fff;--f7-picker-item-text-color:rgba(255, 255, 255, 0.55)}.md{--f7-picker-column-font-size:20px;--f7-picker-divider-text-color:rgba(0, 0, 0, 0.87);--f7-picker-item-text-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-picker-item-text-color:rgba(255, 255, 255, 0.54);--f7-picker-divider-text-color:rgba(255, 255, 255, 0.87)}.aurora{--f7-picker-column-font-size:20px;--f7-picker-item-text-color:#888;--f7-picker-divider-text-color:#000}.aurora .theme-dark,.aurora.theme-dark{--f7-picker-divider-text-color:#fff}.picker{width:100%;height:var(--f7-picker-height)}.picker.picker-inline{height:var(--f7-picker-inline-height)}.popover .picker{height:var(--f7-picker-popover-height)}@media (orientation:landscape) and (max-height:415px){.picker:not(.picker-inline){height:var(--f7-picker-landscape-height)}}.picker.sheet-modal{background:var(--f7-picker-sheet-bg-color,var(--f7-sheet-bg-color))}.picker-popover{width:var(--f7-picker-popover-width)}.picker-popover .toolbar{background:0 0;border-radius:var(--f7-popover-border-radius) var(--f7-popover-border-radius) 0 0}.picker-popover .toolbar:before{display:none!important}.picker-popover .toolbar+.picker-columns{height:calc(100% - var(--f7-toolbar-height))}.picker-columns{display:flex;overflow:hidden;justify-content:center;padding:0;text-align:right;height:100%;position:relative;-webkit-mask-box-image:linear-gradient(to top,transparent,transparent 5%,white 20%,white 80%,transparent 95%,transparent);font-size:var(--f7-picker-column-font-size)}.picker-column{position:relative;max-height:100%}.picker-column.picker-column-first:before,.picker-column.picker-column-last:after{height:100%;width:100vw;position:absolute;content:'';top:0}.picker-column.picker-column-first:before{right:100%}.picker-column.picker-column-last:after{left:100%}.picker-column.picker-column-left{text-align:left}.picker-column.picker-column-center{text-align:center}.picker-column.picker-column-right{text-align:right}.picker-column.picker-column-divider{display:flex;align-items:center;color:var(--f7-picker-divider-text-color)}.picker-items{transition:.3s;transition-timing-function:ease-out}.picker-item{height:var(--f7-picker-item-height);line-height:var(--f7-picker-item-height);white-space:nowrap;position:relative;overflow:hidden;text-overflow:ellipsis;left:0;top:0;width:100%;box-sizing:border-box;transition:.3s;color:var(--f7-picker-item-text-color);cursor:pointer}.picker-item span{padding:0 10px}.picker-column-absolute .picker-item{position:absolute}.picker-item.picker-item-far{pointer-events:none}.picker-item.picker-item-selected{color:var(--f7-picker-item-selected-text-color);transform:translate3d(0,0,0) rotateX(0deg)}.picker-center-highlight{height:var(--f7-picker-item-height);box-sizing:border-box;position:absolute;left:16px;right:16px;top:50%;margin-top:calc(-1 * var(--f7-picker-item-height)/ 2);pointer-events:none;background-color:var(--f7-picker-item-selected-bg-color);border-radius:8px}.popover .picker-center-highlight{left:8px;right:8px}.picker-3d .picker-columns{overflow:hidden;perspective:1200px}.picker-3d .picker-column,.picker-3d .picker-item,.picker-3d .picker-items{transform-style:preserve-3d}.picker-3d .picker-column{overflow:visible}.picker-3d .picker-item{transform-origin:center center -110px;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-timing-function:ease-out}.infinite-scroll-preloader{margin-left:auto;margin-right:auto;text-align:center}.infinite-scroll-preloader.preloader{display:block}.ios .infinite-scroll-preloader{margin-top:35px;margin-bottom:35px}.ios .infinite-scroll-preloader .preloader,.ios .infinite-scroll-preloader.preloader{width:27px;height:27px}.md .infinite-scroll-preloader{margin-top:32px;margin-bottom:32px}.aurora .infinite-scroll-preloader{margin-top:16px;margin-bottom:16px}.ios{--f7-ptr-preloader-size:28px;--f7-ptr-size:44px}.md{--f7-ptr-preloader-size:22px;--f7-ptr-size:40px}.aurora{--f7-ptr-preloader-size:20px;--f7-ptr-size:38px}.ptr-preloader{position:relative;top:var(--f7-ptr-top,0);height:var(--f7-ptr-size)}.ptr-preloader .preloader{position:absolute;left:50%;width:var(--f7-ptr-preloader-size);height:var(--f7-ptr-preloader-size);margin-left:calc(-1 * var(--f7-ptr-preloader-size)/ 2);margin-top:calc(-1 * var(--f7-ptr-preloader-size)/ 2);top:50%;visibility:hidden}.ptr-bottom .ptr-preloader{top:auto;bottom:0;position:fixed}.ptr-with-navbar-large-transparent .ptr-preloader,.ptr-with-navbar-transparent .ptr-preloader{top:calc(-1 * var(--f7-page-navbar-offset,0px) + var(--f7-safe-area-top))}.ios .ptr-preloader{margin-top:calc(-1 * var(--f7-ptr-size));width:100%;left:0}.ios .ptr-arrow{position:absolute;left:50%;top:50%;background:no-repeat center;z-index:10;transform:rotate(0deg) translate3d(0,0,0);transition-duration:.3s;transition-property:transform,opacity;width:12px;height:20px;margin-left:-6px;margin-top:-10px;visibility:visible;color:var(--f7-preloader-color)}.ios .ptr-arrow:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;width:12px;height:20px;line-height:20px;font-size:10px;content:'ptr_arrow_ios'}.ios .ptr-content:not(.ptr-refreshing) .ptr-preloader .preloader,.ios .ptr-content:not(.ptr-refreshing) .ptr-preloader .preloader-inner{animation:none}.ios .ptr-refreshing,.ios .ptr-transitioning{transition-duration:.3s;transition-property:transform}.ios .ptr-refreshing{transform:translate3d(0,var(--f7-ptr-size),0)}.ios .ptr-refreshing .ptr-arrow{visibility:hidden}.ios .ptr-refreshing .ptr-preloader .preloader{visibility:visible}.ios .ptr-pull-up .ptr-arrow{transform:rotate(180deg) translate3d(0,0,0)}.ios .ptr-no-navbar,.ios .ptr-with-navbar-large-transparent,.ios .ptr-with-navbar-transparent{margin-top:calc(-1 * var(--f7-ptr-size));height:calc(100% + var(--f7-ptr-size))}.ios .ptr-no-navbar .ptr-preloader,.ios .ptr-with-navbar-large-transparent .ptr-preloader,.ios .ptr-with-navbar-transparent .ptr-preloader{margin-top:0}.ios .ptr-bottom .ptr-preloader{margin-top:0;margin-bottom:calc(-1 * var(--f7-ptr-size))}.ios .ptr-bottom.ptr-refreshing>*,.ios .ptr-bottom.ptr-transitioning>*{transition-duration:.3s;transition-property:transform}.ios .ptr-bottom.ptr-refreshing{transform:none}.ios .ptr-bottom.ptr-refreshing>*{transform:translate3d(0,calc(-1 * var(--f7-ptr-size)),0)}.ios .ptr-bottom .ptr-arrow{transform:rotate(180deg) translate3d(0,0,0)}.ios .ptr-bottom.ptr-pull-up .ptr-arrow{transform:rotate(0deg) translate3d(0,0,0)}.ios .ptr-with-navbar-large-transparent .ptr-preloader .preloader,.ios .ptr-with-navbar-large-transparent .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-transparent .ptr-preloader .preloader,.ios .ptr-with-navbar-transparent .ptr-preloader .ptr-arrow{opacity:0;transition-duration:.3s;transition-property:transform,opacity}.ios .ptr-with-navbar-large-transparent.ptr-pull-down .ptr-preloader .preloader,.ios .ptr-with-navbar-large-transparent.ptr-pull-down .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-large-transparent.ptr-pull-up .ptr-preloader .preloader,.ios .ptr-with-navbar-large-transparent.ptr-pull-up .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-large-transparent.ptr-refreshing .ptr-preloader .preloader,.ios .ptr-with-navbar-large-transparent.ptr-refreshing .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-transparent.ptr-pull-down .ptr-preloader .preloader,.ios .ptr-with-navbar-transparent.ptr-pull-down .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-transparent.ptr-pull-up .ptr-preloader .preloader,.ios .ptr-with-navbar-transparent.ptr-pull-up .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-transparent.ptr-refreshing .ptr-preloader .preloader,.ios .ptr-with-navbar-transparent.ptr-refreshing .ptr-preloader .ptr-arrow{opacity:1}.ios .ptr-with-navbar-large-transparent.ptr-closing .ptr-preloader .preloader,.ios .ptr-with-navbar-large-transparent.ptr-closing .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-transparent.ptr-closing .ptr-preloader .preloader,.ios .ptr-with-navbar-transparent.ptr-closing .ptr-preloader .ptr-arrow{opacity:0;transition-duration:.3s}.md{--f7-ptr-top:-4px}.md .ptr-preloader{width:var(--f7-ptr-size);border-radius:50%;background:#fff;margin-top:calc(-1 * var(--f7-ptr-size));z-index:100;box-shadow:var(--f7-elevation-1);left:50%;margin-left:calc(-1 * var(--f7-ptr-size)/ 2)}.md .ptr-preloader .preloader circle{stroke-width:4}.md .ptr-arrow{width:22px;height:22px;box-sizing:border-box;border:3px solid var(--f7-preloader-color);position:absolute;left:50%;top:50%;margin-left:-11px;margin-top:-11px;border-left-color:transparent;border-radius:50%;opacity:1;transform:rotate(150deg)}.md .ptr-arrow:after{content:'';width:0px;height:0px;position:absolute;left:-5px;bottom:0px;border-bottom-width:6px;border-bottom-style:solid;border-bottom-color:inherit;border-left:5px solid transparent;border-right:5px solid transparent;transform:rotate(-40deg)}.md .ptr-content:not(.ptr-refreshing):not(.ptr-pull-up) .ptr-preloader .preloader,.md .ptr-content:not(.ptr-refreshing):not(.ptr-pull-up) .ptr-preloader .preloader-inner,.md .ptr-content:not(.ptr-refreshing):not(.ptr-pull-up) .ptr-preloader circle{animation:none}.md .ptr-pull-up .ptr-preloader .preloader,.md .ptr-refreshing .ptr-preloader .preloader{visibility:visible}.md .ptr-pull-up .ptr-arrow,.md .ptr-refreshing .ptr-arrow{visibility:hidden}.md .ptr-refreshing .ptr-preloader{transform:translate3d(0,66px,0)}.md .ptr-transitioning .ptr-arrow{transition:.3s}.md .ptr-pull-up .ptr-arrow{transition:.4s;transform:rotate(620deg)!important;opacity:0}.md .ptr-refreshing .ptr-preloader,.md .ptr-transitioning .ptr-preloader{transition-duration:.3s;transition-property:transform,opacity}.md .ptr-bottom .ptr-preloader{margin-top:0;margin-bottom:calc(-1 * var(--f7-ptr-size) - 4px)}.md .ptr-bottom.ptr-refreshing .ptr-preloader{transform:translate3d(0,-66px,0)}.md .ptr-with-navbar-large-transparent .ptr-preloader,.md .ptr-with-navbar-transparent .ptr-preloader{opacity:0}.md .ptr-with-navbar-large-transparent.ptr-pull-down .ptr-preloader,.md .ptr-with-navbar-large-transparent.ptr-pull-up .ptr-preloader,.md .ptr-with-navbar-large-transparent.ptr-refreshing .ptr-preloader,.md .ptr-with-navbar-transparent.ptr-pull-down .ptr-preloader,.md .ptr-with-navbar-transparent.ptr-pull-up .ptr-preloader,.md .ptr-with-navbar-transparent.ptr-refreshing .ptr-preloader{opacity:1}.md .ptr-with-navbar-large-transparent.ptr-closing .ptr-preloader,.md .ptr-with-navbar-transparent.ptr-closing .ptr-preloader{opacity:0;transition-duration:.3s}.aurora .ptr-preloader{margin-top:calc(-1 * var(--f7-ptr-size));width:100%;left:0}.aurora .ptr-arrow{position:absolute;left:50%;top:50%;background:no-repeat center;z-index:10;transform:rotate(0deg) translate3d(0,0,0);transition-duration:.3s;transition-property:transform,opacity;width:12px;height:20px;margin-left:-6px;margin-top:-10px;visibility:visible;color:var(--f7-preloader-color)}.aurora .ptr-arrow:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;width:12px;height:20px;line-height:20px;font-size:8px;content:'ptr_arrow_ios'}.aurora .ptr-content:not(.ptr-refreshing) .ptr-preloader .preloader,.aurora .ptr-content:not(.ptr-refreshing) .ptr-preloader .preloader-inner{animation:none}.aurora .ptr-refreshing,.aurora .ptr-transitioning{transition-duration:.3s;transition-property:transform}.aurora .ptr-refreshing{transform:translate3d(0,var(--f7-ptr-size),0)}.aurora .ptr-refreshing .ptr-arrow{visibility:hidden}.aurora .ptr-refreshing .ptr-preloader .preloader{visibility:visible}.aurora .ptr-pull-up .ptr-arrow{transform:rotate(180deg) translate3d(0,0,0)}.aurora .ptr-no-navbar,.aurora .ptr-with-navbar-large-transparent,.aurora .ptr-with-navbar-transparent{margin-top:calc(-1 * var(--f7-ptr-size));height:calc(100% + var(--f7-ptr-size))}.aurora .ptr-no-navbar .ptr-preloader,.aurora .ptr-with-navbar-large-transparent .ptr-preloader,.aurora .ptr-with-navbar-transparent .ptr-preloader{margin-top:0}.aurora .ptr-bottom .ptr-preloader{margin-top:0;margin-bottom:calc(-1 * var(--f7-ptr-size))}.aurora .ptr-bottom.ptr-refreshing>*,.aurora .ptr-bottom.ptr-transitioning>*{transition-duration:.3s;transition-property:transform}.aurora .ptr-bottom.ptr-refreshing{transform:none}.aurora .ptr-bottom.ptr-refreshing>*{transform:translate3d(0,calc(-1 * var(--f7-ptr-size)),0)}.aurora .ptr-bottom .ptr-arrow{transform:rotate(180deg) translate3d(0,0,0)}.aurora .ptr-bottom.ptr-pull-up .ptr-arrow{transform:rotate(0deg) translate3d(0,0,0)}.aurora .ptr-with-navbar-large-transparent .ptr-preloader .preloader,.aurora .ptr-with-navbar-large-transparent .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-transparent .ptr-preloader .preloader,.aurora .ptr-with-navbar-transparent .ptr-preloader .ptr-arrow{opacity:0;transition-duration:.3s;transition-property:transform,opacity}.aurora .ptr-with-navbar-large-transparent.ptr-pull-down .ptr-preloader .preloader,.aurora .ptr-with-navbar-large-transparent.ptr-pull-down .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-large-transparent.ptr-pull-up .ptr-preloader .preloader,.aurora .ptr-with-navbar-large-transparent.ptr-pull-up .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-large-transparent.ptr-refreshing .ptr-preloader .preloader,.aurora .ptr-with-navbar-large-transparent.ptr-refreshing .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-transparent.ptr-pull-down .ptr-preloader .preloader,.aurora .ptr-with-navbar-transparent.ptr-pull-down .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-transparent.ptr-pull-up .ptr-preloader .preloader,.aurora .ptr-with-navbar-transparent.ptr-pull-up .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-transparent.ptr-refreshing .ptr-preloader .preloader,.aurora .ptr-with-navbar-transparent.ptr-refreshing .ptr-preloader .ptr-arrow{opacity:1}.aurora .ptr-with-navbar-large-transparent.ptr-closing .ptr-preloader .preloader,.aurora .ptr-with-navbar-large-transparent.ptr-closing .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-transparent.ptr-closing .ptr-preloader .preloader,.aurora .ptr-with-navbar-transparent.ptr-closing .ptr-preloader .ptr-arrow{opacity:0;transition-duration:.3s}.lazy-loaded.lazy-fade-in{animation:lazyFadeIn .6s}@keyframes lazyFadeIn{from{opacity:0}to{opacity:1}}:root{--f7-table-head-font-size:12px;--f7-table-body-font-size:14px;--f7-table-footer-font-size:12px;--f7-table-input-height:24px;--f7-table-input-font-size:14px;--f7-table-collapsible-cell-padding:16px;--f7-table-link-icon-only-icon-size:20px;--f7-table-head-bg-color:transparent;--f7-table-card-header-bg-color:transparent;--f7-table-card-header-height:64px;--f7-table-cell-padding-vertical:0px;--f7-table-sortable-icon-color:#000}:root .theme-dark,:root.theme-dark{--f7-table-cell-border-color:rgba(255, 255, 255, 0.15);--f7-table-sortable-icon-color:#fff;--f7-table-input-text-color:#fff}.ios{--f7-table-head-font-weight:600;--f7-table-head-cell-height:44px;--f7-table-head-icon-size:18px;--f7-table-body-cell-height:44px;--f7-table-cell-padding-horizontal:16px;--f7-table-edge-cell-padding-horizontal:16px;--f7-table-label-cell-padding-horizontal:16px;--f7-table-checkbox-cell-width:22px;--f7-table-title-font-size:17px;--f7-table-title-font-weight:600;--f7-table-footer-height:44px;--f7-table-head-text-color:rgba(0, 0, 0, 0.45);--f7-table-cell-border-color:rgba(0, 0, 0, 0.22);--f7-table-selected-row-bg-color:rgba(0, 0, 0, 0.03);--f7-table-footer-text-color:rgba(0, 0, 0, 0.45);--f7-table-input-text-color:#000}.ios .theme-dark,.ios.theme-dark{--f7-table-head-text-color:rgba(255, 255, 255, 0.55);--f7-table-footer-text-color:rgba(255, 255, 255, 0.55);--f7-table-selected-row-bg-color:rgba(255, 255, 255, 0.08)}.md{--f7-table-head-font-weight:500;--f7-table-head-cell-height:56px;--f7-table-head-icon-size:16px;--f7-table-body-cell-height:48px;--f7-table-cell-padding-horizontal:28px;--f7-table-edge-cell-padding-horizontal:24px;--f7-table-label-cell-padding-horizontal:24px;--f7-table-checkbox-cell-width:18px;--f7-table-title-font-size:20px;--f7-table-title-font-weight:400;--f7-table-footer-height:56px;--f7-table-head-text-color:rgba(0, 0, 0, 0.54);--f7-table-cell-border-color:rgba(0, 0, 0, 0.12);--f7-table-actions-cell-link-color:rgba(0, 0, 0, 0.54);--f7-table-selected-row-bg-color:#f5f5f5;--f7-table-actions-link-color:rgba(0, 0, 0, 0.54);--f7-table-footer-text-color:rgba(0, 0, 0, 0.54);--f7-table-input-text-color:#212121}.md .theme-dark,.md.theme-dark{--f7-table-head-text-color:rgba(255, 255, 255, 0.54);--f7-table-footer-text-color:rgba(255, 255, 255, 0.54);--f7-table-selected-row-bg-color:rgba(255, 255, 255, 0.05);--f7-table-actions-cell-link-color:rgba(255, 255, 255, 0.54);--f7-table-actions-link-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-table-input-height:32px;--f7-table-head-font-weight:600;--f7-table-head-cell-height:56px;--f7-table-head-icon-size:18px;--f7-table-body-cell-height:48px;--f7-table-cell-padding-horizontal:16px;--f7-table-edge-cell-padding-horizontal:16px;--f7-table-label-cell-padding-horizontal:16px;--f7-table-checkbox-cell-width:22px;--f7-table-title-font-size:20px;--f7-table-title-font-weight:600;--f7-table-footer-height:56px;--f7-table-head-text-color:rgba(0, 0, 0, 0.6);--f7-table-cell-border-color:rgba(0, 0, 0, 0.12);--f7-table-selected-row-bg-color:rgba(0, 0, 0, 0.03);--f7-table-footer-text-color:rgba(0, 0, 0, 0.5);--f7-table-input-text-color:#000;--f7-table-head-bg-color:#f6f6f7;--f7-table-card-header-bg-color:#f6f6f7}.aurora .theme-dark,.aurora.theme-dark{--f7-table-selected-row-bg-color:rgba(255, 255, 255, 0.03);--f7-table-head-text-color:rgba(255, 255, 255, 0.54);--f7-table-footer-text-color:rgba(255, 255, 255, 0.54);--f7-table-head-bg-color:rgba(255, 255, 255, 0.05);--f7-table-card-header-bg-color:rgba(255, 255, 255, 0.05)}.data-table{overflow-x:auto}.data-table table,table.data-table{width:100%;border:none;padding:0;margin:0;border-collapse:collapse;text-align:left}.data-table thead td,.data-table thead th{font-size:var(--f7-table-head-font-size);font-weight:var(--f7-table-head-font-weight);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;line-height:16px;height:var(--f7-table-head-cell-height);background-color:var(--f7-table-head-bg-color)}.data-table thead td:not(.sortable-cell-active),.data-table thead th:not(.sortable-cell-active){color:var(--f7-table-head-text-color)}.data-table thead i.f7-icons,.data-table thead i.icon,.data-table thead i.material-icons{vertical-align:top;font-size:var(--f7-table-head-icon-size)}.data-table tbody{font-size:var(--f7-table-body-font-size)}.data-table tbody td,.data-table tbody th{height:var(--f7-table-body-cell-height)}.data-table tbody tr.data-table-row-selected,.device-desktop .data-table tbody tr:hover{background:var(--f7-table-selected-row-bg-color)}.data-table tbody td:before,.data-table tbody th:before{content:'';position:absolute;background-color:var(--f7-table-cell-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.data-table td,.data-table th{--f7-table-cell-padding-left:var(--f7-table-cell-padding-horizontal);--f7-table-cell-padding-right:var(--f7-table-cell-padding-horizontal);padding-top:var(--f7-table-cell-padding-vertical);padding-bottom:var(--f7-table-cell-padding-vertical);padding-left:var(--f7-table-cell-padding-left);padding-right:var(--f7-table-cell-padding-right);position:relative;box-sizing:border-box}.data-table td:first-child,.data-table th:first-child{--f7-table-cell-padding-left:var(--f7-table-edge-cell-padding-horizontal)}.data-table td:last-child,.data-table th:last-child{--f7-table-cell-padding-right:var(--f7-table-edge-cell-padding-horizontal)}.data-table td.label-cell,.data-table th.label-cell{--f7-table-cell-padding-left:var(--f7-table-label-cell-padding-horizontal);--f7-table-cell-padding-right:var(--f7-table-label-cell-padding-horizontal)}.data-table td.numeric-cell,.data-table th.numeric-cell{text-align:right}.data-table td.checkbox-cell,.data-table th.checkbox-cell{overflow:visible;width:var(--f7-table-checkbox-cell-width)}.data-table td.checkbox-cell label+span,.data-table th.checkbox-cell label+span{margin-left:8px}.data-table td.checkbox-cell:first-child,.data-table th.checkbox-cell:first-child{padding-right:calc(var(--f7-table-cell-padding-right)/ 2)}.data-table td.checkbox-cell:first-child+td,.data-table td.checkbox-cell:first-child+th,.data-table th.checkbox-cell:first-child+td,.data-table th.checkbox-cell:first-child+th{padding-left:calc(var(--f7-table-cell-padding-left)/ 2)}.data-table td.checkbox-cell:last-child,.data-table th.checkbox-cell:last-child{padding-left:calc(var(--f7-table-cell-padding-left)/ 2)}.data-table td.actions-cell,.data-table th.actions-cell{text-align:right;white-space:nowrap}.data-table td.actions-cell a.link,.data-table th.actions-cell a.link{color:var(--f7-table-actions-cell-link-color,var(--f7-theme-color))}.card .data-table td a.icon-only,.card .data-table th a.icon-only,.card.data-table td a.icon-only,.card.data-table th a.icon-only,.data-table td a.icon-only,.data-table th a.icon-only{display:inline-block;vertical-align:middle;text-align:center;font-size:0;min-width:0}.card .data-table td a.icon-only i,.card .data-table th a.icon-only i,.card.data-table td a.icon-only i,.card.data-table th a.icon-only i,.data-table td a.icon-only i,.data-table th a.icon-only i{font-size:var(--f7-table-link-icon-only-icon-size);vertical-align:middle}.data-table .sortable-cell:not(.input-cell){cursor:pointer;position:relative}.data-table .sortable-cell.input-cell .table-head-label{cursor:pointer;position:relative}.data-table .sortable-cell.numeric-cell.input-cell>.table-head-label:before,.data-table .sortable-cell.numeric-cell:not(.input-cell):before,.data-table .sortable-cell:not(.numeric-cell).input-cell>.table-head-label:after,.data-table .sortable-cell:not(.numeric-cell):not(.input-cell):after{content:'arrow_bottom_md';font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;display:inline-block;vertical-align:top;width:16px;height:16px;color:var(--f7-table-sortable-icon-color);font-size:13px;line-height:16px;transition-duration:.3s;transform:rotate(0);opacity:0}.device-desktop .data-table .sortable-cell:not(.sortable-cell-active) .table-head-label:hover:after,.device-desktop .data-table .sortable-cell:not(.sortable-cell-active) .table-head-label:hover:before,.device-desktop .data-table .sortable-cell:not(.sortable-cell-active):hover:after,.device-desktop .data-table .sortable-cell:not(.sortable-cell-active):hover:before{opacity:.54}.data-table .sortable-cell.sortable-cell-active .table-head-label:after,.data-table .sortable-cell.sortable-cell-active .table-head-label:before,.data-table .sortable-cell.sortable-cell-active:after,.data-table .sortable-cell.sortable-cell-active:before{opacity:.87!important}.data-table .sortable-cell.sortable-desc:after,.data-table .sortable-cell.sortable-desc:before,.data-table .table-head-label:after,.data-table .table-head-label:before{transform:rotate(180deg)!important}.card .data-table .card-footer,.card .data-table .card-header,.data-table.card .card-footer,.data-table.card .card-header{padding-left:var(--f7-table-edge-cell-padding-horizontal);padding-right:var(--f7-table-edge-cell-padding-horizontal)}.card .data-table .card-header,.data-table.card .card-header{min-height:var(--f7-table-card-header-height);background-color:var(--f7-table-card-header-bg-color)}.card .data-table .card-content,.data-table.card .card-content{overflow-x:auto}.card .data-table .card-footer,.data-table.card .card-footer{min-height:var(--f7-table-footer-height)}.data-table .data-table-title{font-size:var(--f7-table-title-font-size);font-weight:var(--f7-table-title-font-weight)}.data-table .data-table-actions,.data-table .data-table-links{display:flex}.data-table .data-table-links .button{min-width:64px}.data-table .data-table-actions{margin-left:auto;align-items:center}.data-table .data-table-actions a.link{color:var(--f7-table-actions-link-color,var(--f7-theme-color));min-width:0}.data-table .data-table-actions a.link.icon-only{line-height:1;justify-content:center;padding:0}.data-table .data-table-header,.data-table .data-table-header-selected{display:flex;justify-content:space-between;align-items:center;width:100%}.data-table .card-header>.data-table-header,.data-table .card-header>.data-table-header-selected{padding-top:var(--f7-card-header-padding-vertical);padding-bottom:var(--f7-card-header-padding-vertical);height:100%;margin-top:calc(-1 * var(--f7-card-header-padding-vertical));margin-bottom:calc(-1 * var(--f7-card-header-padding-vertical));min-height:var(--f7-table-card-header-height);padding-left:var(--f7-table-edge-cell-padding-horizontal);padding-right:var(--f7-table-edge-cell-padding-horizontal);margin-left:calc(-1 * var(--f7-table-edge-cell-padding-horizontal));margin-right:calc(-1 * var(--f7-table-edge-cell-padding-horizontal))}.data-table .data-table-header-selected{background:rgba(var(--f7-theme-color-rgb),.1);display:none}.data-table.data-table-has-checked .data-table-header{display:none}.data-table.data-table-has-checked .data-table-header-selected{display:flex}.data-table .data-table-title-selected{font-size:14px;color:var(--f7-theme-color)}.data-table .data-table-footer{display:flex;align-items:center;box-sizing:border-box;position:relative;font-size:var(--f7-table-footer-font-size);overflow:hidden;min-height:var(--f7-table-footer-height);color:var(--f7-table-footer-text-color);justify-content:flex-end}.data-table .data-table-footer:before{content:'';position:absolute;background-color:var(--f7-table-cell-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.data-table .data-table-pagination,.data-table .data-table-rows-select{display:flex;align-items:center}.data-table .input-cell{padding-top:8px;padding-bottom:8px;height:auto;vertical-align:top}.data-table .input-cell .table-head-label+.input{margin-top:4px}.data-table .input-cell .input{height:var(--f7-table-input-height)}.data-table .input-cell .input input,.data-table .input-cell .input select,.data-table .input-cell .input textarea{height:var(--f7-table-input-height);color:var(--f7-table-input-text-color);font-size:var(--f7-table-input-font-size)}@media (max-width:480px) and (orientation:portrait){.data-table.data-table-collapsible thead{display:none}.data-table.data-table-collapsible tbody,.data-table.data-table-collapsible td,.data-table.data-table-collapsible tr{display:block}.data-table.data-table-collapsible tr{position:relative}.data-table.data-table-collapsible tr:before{content:'';position:absolute;background-color:var(--f7-table-cell-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.data-table.data-table-collapsible tr:hover{background-color:inherit}.data-table.data-table-collapsible td{--f7-table-cell-padding-left:var(--f7-table-collapsible-cell-padding);--f7-table-cell-padding-right:var(--f7-table-collapsible-cell-padding);height:auto;min-height:var(--f7-table-body-cell-height);display:flex;align-content:center;align-items:center;justify-content:flex-start;text-align:left}.data-table.data-table-collapsible td:before{display:none!important}.data-table.data-table-collapsible td:not(.checkbox-cell):before{width:40%;display:block!important;content:attr(data-collapsible-title);position:relative;height:auto;background:0 0!important;transform:none!important;font-size:var(--f7-table-head-font-size);font-weight:var(--f7-table-head-font-weight);color:var(--f7-table-head-text-color);margin-right:16px;flex-shrink:0}.data-table.data-table-collapsible td.checkbox-cell{position:absolute;top:0;left:0}.data-table.data-table-collapsible td.checkbox-cell+td{padding-left:16px}.data-table.data-table-collapsible td.checkbox-cell~td{margin-left:32px}}.data-table .xsmall-landscape-only,.data-table .xsmall-only{display:none}@media (min-width:480px){.data-table .xsmall-only{display:table-cell}}@media (min-width:480px) and (orientation:landscape){.data-table .xsmall-landscape-only{display:table-cell}}.data-table .small-landscape-only,.data-table .small-only{display:none}@media (min-width:568px){.data-table .small-only{display:table-cell}}@media (min-width:568px) and (orientation:landscape){.data-table .small-landscape-only{display:table-cell}}.data-table .medium-landscape-only,.data-table .medium-only{display:none}@media (min-width:768px){.data-table .medium-only{display:table-cell}}@media (min-width:768px) and (orientation:landscape){.data-table .medium-landscape-only{display:table-cell}}.data-table .large-landscape-only,.data-table .large-only{display:none}@media (min-width:1024px){.data-table .large-only{display:table-cell}}@media (min-width:1024px) and (orientation:landscape){.data-table .large-landscape-only{display:table-cell}}.data-table .xlarge-landscape-only,.data-table .xlarge-only{display:none}@media (min-width:1200px){.data-table .xlarge-only{display:table-cell}}@media (min-width:1200px) and (orientation:landscape){.data-table .xlarge-landscape-only{display:table-cell}}.ios .data-table td.actions-cell a.link+a.link,.ios .data-table th.actions-cell a.link+a.link{margin-left:16px}.ios .sortable-cell:not(.numeric-cell):after{margin-left:5px}.ios .sortable-cell.numeric-cell:before{margin-right:5px}.ios .data-table-actions .button+.button,.ios .data-table-actions a.link+a.link,.ios .data-table-links .button+.button,.ios .data-table-links a.link+a.link{margin-left:16px}.ios .data-table-actions a.link.icon-only{width:44px;height:44px}.ios .data-table-pagination a.link,.ios .data-table-rows-select a.link{width:44px;height:44px}.ios .data-table-rows-select+.data-table-pagination{margin-left:30px}.ios .data-table-rows-select .input{margin-left:20px}.ios .data-table-pagination-label{margin-right:16px}.md .data-table td.actions-cell a.link+a.link,.md .data-table th.actions-cell a.link+a.link{margin-left:24px}.md .data-table td.actions-cell a.icon-only,.md .data-table th.actions-cell a.icon-only{width:24px;height:24px;line-height:24px}.md .sortable-cell:not(.numeric-cell):after{margin-left:8px}.md .sortable-cell.numeric-cell:before{margin-right:8px}.md .data-table-actions .button+.button,.md .data-table-actions a.link+a.link,.md .data-table-links .button+.button,.md .data-table-links a.link+a.link{margin-left:24px}.md .data-table-actions a.link.icon-only{width:24px;height:24px;overflow:visible}.md .data-table-actions a.link.icon-only.active-state{background:0 0}.md .data-table-pagination a.link,.md .data-table-rows-select a.link{width:48px;height:48px}.md .data-table-pagination a.link:before,.md .data-table-rows-select a.link:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .data-table-pagination a.link.icon-only:before,.md .data-table-pagination a.link.input-clear-button:before,.md .data-table-pagination a.link.notification-close-button:before,.md .data-table-pagination a.link.ripple-inset:before,.md .data-table-pagination a.link.searchbar-disable-button:before,.md .data-table-rows-select a.link.icon-only:before,.md .data-table-rows-select a.link.input-clear-button:before,.md .data-table-rows-select a.link.notification-close-button:before,.md .data-table-rows-select a.link.ripple-inset:before,.md .data-table-rows-select a.link.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .data-table-pagination a.link.active-state:before,.md .data-table-rows-select a.link.active-state:before{opacity:1;transition-duration:150ms}.md .data-table-rows-select+.data-table-pagination{margin-left:32px}.md .data-table-rows-select .input{margin-left:24px}.md .data-table-pagination-label{margin-right:20px}.md .input-cell .input-clear-button{transform:scale(.8)}.aurora .data-table td.actions-cell a.link+a.link,.aurora .data-table th.actions-cell a.link+a.link{margin-left:8px}.aurora .sortable-cell:not(.numeric-cell):after{margin-left:8px}.aurora .sortable-cell.numeric-cell:before{margin-right:8px}.aurora .data-table-actions .button+.button,.aurora .data-table-actions a.link+a.link,.aurora .data-table-links .button+.button,.aurora .data-table-links a.link+a.link{margin-left:16px}.aurora .data-table-pagination a.link,.aurora .data-table-rows-select a.link{width:48px;height:48px}.aurora .data-table-rows-select+.data-table-pagination{margin-left:16px}.aurora .data-table-rows-select .input{margin-left:16px}.aurora .data-table-pagination-label{margin-right:16px}:root{--f7-fab-margin:16px;--f7-fab-text-color:#fff;--f7-fab-extended-text-font-size:14px;--f7-fab-extended-text-padding:0 20px;--f7-fab-label-bg-color:#fff;--f7-fab-label-text-color:#333;--f7-fab-label-border-radius:4px;--f7-fab-label-padding:4px 12px;--f7-fab-label-font-size:inherit;--f7-fab-button-size:40px}.ios{--f7-fab-size:50px;--f7-fab-box-shadow:0px 2px 4px rgba(0, 0, 0, 0.4);--f7-fab-extended-size:50px;--f7-fab-extended-text-font-weight:600;--f7-fab-extended-text-letter-spacing:0;--f7-fab-label-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.4)}.md{--f7-fab-size:56px;--f7-fab-box-shadow:var(--f7-elevation-6);--f7-fab-extended-size:48px;--f7-fab-extended-text-font-weight:500;--f7-fab-extended-text-letter-spacing:0.05em;--f7-fab-label-box-shadow:var(--f7-elevation-3)}.aurora{--f7-fab-size:56px;--f7-fab-box-shadow:var(--f7-elevation-6);--f7-fab-extended-size:48px;--f7-fab-extended-text-font-weight:600;--f7-fab-extended-text-letter-spacing:0;--f7-fab-label-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.4)}.fab-backdrop{z-index:1400}.fab{position:absolute;z-index:1500}.fab a{--f7-touch-ripple-color:var(--f7-touch-ripple-white)}.fab-left-bottom,.fab-left-center,.fab-left-top{left:calc(var(--f7-fab-margin) + var(--f7-safe-area-left))}.fab-right-bottom,.fab-right-center,.fab-right-top{right:calc(var(--f7-fab-margin) + var(--f7-safe-area-right))}.fab-center-top,.fab-left-top,.fab-right-top{top:var(--f7-fab-margin)}.fab-center-bottom,.fab-left-bottom,.fab-right-bottom{bottom:calc(var(--f7-fab-margin) + var(--f7-safe-area-bottom))}.fab-center-bottom,.fab-center-center,.fab-center-top{left:50%;transform:translateX(-50%)}.fab-center-center,.fab-left-center,.fab-right-center{top:50%;transform:translateY(-50%)}.fab-center-center{top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}.fab-buttons a,.fab>a{background-color:var(--f7-fab-bg-color,var(--f7-theme-color));width:var(--f7-fab-size);height:var(--f7-fab-size);box-shadow:var(--f7-fab-box-shadow);border-radius:calc(var(--f7-fab-size)/ 2);position:relative;transition-duration:.3s;display:flex;align-items:center;justify-content:center;overflow:hidden;z-index:1;color:var(--f7-fab-text-color)}.fab-buttons a.active-state,.fab>a.active-state{background-color:var(--f7-fab-pressed-bg-color,var(--f7-theme-color-shade))}.fab>a i{position:absolute;left:50%;top:50%;transform:translate3d(-50%,-50%,0) rotate(0deg) scale(1);transition:.3s}.fab>a i+i{transform:translate3d(-50%,-50%,0) rotate(-90deg) scale(.5);opacity:0}.fab-buttons a{border-radius:calc(var(--f7-fab-button-size)/ 2);width:var(--f7-fab-button-size);height:var(--f7-fab-button-size)}.fab-buttons{display:flex;visibility:hidden;pointer-events:none;position:absolute}.fab-buttons a{opacity:0}.fab-opened:not(.fab-morph)>a i{transform:translate3d(-50%,-50%,0) rotate(90deg) scale(.5);opacity:0}.fab-opened:not(.fab-morph)>a i+i{transform:translate3d(-50%,-50%,0) rotate(0deg) scale(1);opacity:1}.fab-opened .fab-buttons{visibility:visible;pointer-events:auto}.fab-opened .fab-buttons a{opacity:1;transform:translate3d(0,0px,0) scale(1)!important}.fab-opened .fab-buttons a:nth-child(2){transition-delay:50ms}.fab-opened .fab-buttons a:nth-child(3){transition-delay:0.1s}.fab-opened .fab-buttons a:nth-child(4){transition-delay:150ms}.fab-opened .fab-buttons a:nth-child(5){transition-delay:0.2s}.fab-opened .fab-buttons a:nth-child(6){transition-delay:250ms}.fab-buttons-bottom,.fab-buttons-top{left:50%;width:var(--f7-fab-button-size);margin-left:calc(-1 * var(--f7-fab-button-size)/ 2)}.fab-buttons-top{bottom:100%;margin-bottom:16px;flex-direction:column-reverse}.fab-buttons-top a{transform:translate3d(0,8px,0) scale(.3);transform-origin:center bottom}.fab-buttons-top a+a{margin-bottom:16px}.fab-buttons-bottom{top:100%;margin-top:16px;flex-direction:column}.fab-buttons-bottom a{transform:translate3d(0,-8px,0) scale(.3);transform-origin:center top}.fab-buttons-bottom a+a{margin-top:16px}.fab-buttons-left,.fab-buttons-right{top:50%;height:var(--f7-fab-button-size);margin-top:calc(-1 * var(--f7-fab-button-size)/ 2)}.fab-buttons-left{right:100%;margin-right:16px;flex-direction:row-reverse}.fab-buttons-left a{transform:translate3d(8px,0px,0) scale(.3);transform-origin:right center}.fab-buttons-left a+a{margin-right:16px}.fab-buttons-right{left:100%;margin-left:16px}.fab-buttons-right a{transform:translate3d(-8px,0,0) scale(.3);transform-origin:left center}.fab-buttons-right a+a{margin-left:16px}.fab-buttons-center{left:0%;top:0%;width:100%;height:100%}.fab-buttons-center a{position:absolute}.fab-buttons-center a:nth-child(1){left:50%;margin-left:calc(-1 * var(--f7-fab-button-size)/ 2);bottom:100%;margin-bottom:16px;transform:translateY(-8px) scale(.3);transform-origin:center bottom}.fab-buttons-center a:nth-child(2){left:100%;margin-top:calc(-1 * var(--f7-fab-button-size)/ 2);top:50%;margin-left:16px;transform:translateX(-8px) scale(.3);transform-origin:left center}.fab-buttons-center a:nth-child(3){left:50%;margin-left:calc(-1 * var(--f7-fab-button-size)/ 2);top:100%;margin-top:16px;transform:translateY(8px) scale(.3);transform-origin:center top}.fab-buttons-center a:nth-child(4){right:100%;margin-top:calc(-1 * var(--f7-fab-button-size)/ 2);top:50%;margin-right:16px;transform:translateX(8px) scale(.3);transform-origin:right center}.fab-morph{border-radius:calc(var(--f7-fab-size)/ 2);background:var(--f7-fab-bg-color,var(--f7-theme-color));box-shadow:var(--f7-fab-box-shadow)}.fab-morph>a{box-shadow:none;background:0 0!important}.fab-opened.fab-morph>a i{opacity:0}.fab-morph,.fab-morph-target,.fab-morph>a{transition-duration:250ms}.fab-morph-target:not(.fab-morph-target-visible){display:none}.fab-extended{width:auto;min-width:var(--f7-fab-extended-size)}.fab-extended>a{width:100%;height:var(--f7-fab-extended-size)}.fab-extended>a i{left:calc(var(--f7-fab-extended-size)/ 2)}.fab-extended i~.fab-text{padding-left:var(--f7-fab-extended-size)}.fab-extended>a{width:100%!important}.fab-text{box-sizing:border-box;font-size:var(--f7-fab-extended-text-font-size);padding:var(--f7-fab-extended-text-padding);font-weight:var(--f7-fab-extended-text-font-weight);letter-spacing:var(--f7-fab-extended-text-letter-spacing);text-transform:uppercase}.fab-label-button{overflow:visible!important}.fab-label{position:absolute;top:50%;padding:var(--f7-fab-label-padding);border-radius:var(--f7-fab-label-border-radius);background:var(--f7-fab-label-bg-color);color:var(--f7-fab-label-text-color);box-shadow:var(--f7-fab-label-box-shadow);white-space:nowrap;transform:translateY(-50%);pointer-events:none;font-size:var(--f7-fab-label-font-size)}.fab-right-bottom .fab-label,.fab-right-center .fab-label,.fab-right-top .fab-label{right:100%;margin-right:8px}.fab-left-bottom .fab-label,.fab-left-center .fab-label,.fab-left-top .fab-label{left:100%;margin-left:8px}.navbars~* .fab-center-top,.navbars~* .fab-left-top,.navbars~* .fab-right-top,.navbars~.fab-center-top,.navbars~.fab-left-top,.navbars~.fab-right-top,.navbar~* .fab-center-top,.navbar~* .fab-left-top,.navbar~* .fab-right-top,.navbar~.fab-center-top,.navbar~.fab-left-top,.navbar~.fab-right-top{margin-top:calc(var(--f7-navbar-height) + var(--f7-safe-area-top))}.ios .toolbar-top-ios~* .fab-center-top,.ios .toolbar-top-ios~* .fab-left-top,.ios .toolbar-top-ios~* .fab-right-top,.ios .toolbar-top-ios~.fab-center-top,.ios .toolbar-top-ios~.fab-left-top,.ios .toolbar-top-ios~.fab-right-top,.md .toolbar-top-md~* .fab-center-top,.md .toolbar-top-md~* .fab-left-top,.md .toolbar-top-md~* .fab-right-top,.md .toolbar-top-md~.fab-center-top,.md .toolbar-top-md~.fab-left-top,.md .toolbar-top-md~.fab-right-top,.toolbar-top~* .fab-center-top,.toolbar-top~* .fab-left-top,.toolbar-top~* .fab-right-top,.toolbar-top~.fab-center-top,.toolbar-top~.fab-left-top,.toolbar-top~.fab-right-top{margin-top:var(--f7-toolbar-height)}.ios .toolbar-bottom-ios~* .fab-center-bottom,.ios .toolbar-bottom-ios~* .fab-left-bottom,.ios .toolbar-bottom-ios~* .fab-right-bottom,.ios .toolbar-bottom-ios~.fab-center-bottom,.ios .toolbar-bottom-ios~.fab-left-bottom,.ios .toolbar-bottom-ios~.fab-right-bottom,.md .toolbar-bottom-md~* .fab-center-bottom,.md .toolbar-bottom-md~* .fab-left-bottom,.md .toolbar-bottom-md~* .fab-right-bottom,.md .toolbar-bottom-md~.fab-center-bottom,.md .toolbar-bottom-md~.fab-left-bottom,.md .toolbar-bottom-md~.fab-right-bottom,.toolbar-bottom~* .fab-center-bottom,.toolbar-bottom~* .fab-left-bottom,.toolbar-bottom~* .fab-right-bottom,.toolbar-bottom~.fab-center-bottom,.toolbar-bottom~.fab-left-bottom,.toolbar-bottom~.fab-right-bottom{margin-bottom:var(--f7-toolbar-height)}.ios .tabbar-labels.toolbar-bottom-ios~* .fab-center-bottom,.ios .tabbar-labels.toolbar-bottom-ios~* .fab-left-bottom,.ios .tabbar-labels.toolbar-bottom-ios~* .fab-right-bottom,.ios .tabbar-labels.toolbar-bottom-ios~.fab-center-bottom,.ios .tabbar-labels.toolbar-bottom-ios~.fab-left-bottom,.ios .tabbar-labels.toolbar-bottom-ios~.fab-right-bottom,.md .tabbar-labels.toolbar-bottom-md~* .fab-center-bottom,.md .tabbar-labels.toolbar-bottom-md~* .fab-left-bottom,.md .tabbar-labels.toolbar-bottom-md~* .fab-right-bottom,.md .tabbar-labels.toolbar-bottom-md~.fab-center-bottom,.md .tabbar-labels.toolbar-bottom-md~.fab-left-bottom,.md .tabbar-labels.toolbar-bottom-md~.fab-right-bottom,.tabbar-labels.toolbar-bottom~* .fab-center-bottom,.tabbar-labels.toolbar-bottom~* .fab-left-bottom,.tabbar-labels.toolbar-bottom~* .fab-right-bottom,.tabbar-labels.toolbar-bottom~.fab-center-bottom,.tabbar-labels.toolbar-bottom~.fab-left-bottom,.tabbar-labels.toolbar-bottom~.fab-right-bottom{margin-bottom:var(--f7-tabbar-labels-height)}.ios .tabbar-labels.toolbar-top-ios~* .fab-center-bottom,.ios .tabbar-labels.toolbar-top-ios~* .fab-left-bottom,.ios .tabbar-labels.toolbar-top-ios~* .fab-right-bottom,.ios .tabbar-labels.toolbar-top-ios~.fab-center-bottom,.ios .tabbar-labels.toolbar-top-ios~.fab-left-bottom,.ios .tabbar-labels.toolbar-top-ios~.fab-right-bottom,.md .tabbar-labels.toolbar-top-md~* .fab-center-bottom,.md .tabbar-labels.toolbar-top-md~* .fab-left-bottom,.md .tabbar-labels.toolbar-top-md~* .fab-right-bottom,.md .tabbar-labels.toolbar-top-md~.fab-center-bottom,.md .tabbar-labels.toolbar-top-md~.fab-left-bottom,.md .tabbar-labels.toolbar-top-md~.fab-right-bottom,.tabbar-labels.toolbar-top~* .fab-center-bottom,.tabbar-labels.toolbar-top~* .fab-left-bottom,.tabbar-labels.toolbar-top~* .fab-right-bottom,.tabbar-labels.toolbar-top~.fab-center-bottom,.tabbar-labels.toolbar-top~.fab-left-bottom,.tabbar-labels.toolbar-top~.fab-right-bottom{margin-top:var(--f7-tabbar-labels-height)}.messagebar~* .fab-center-bottom,.messagebar~* .fab-left-bottom,.messagebar~* .fab-right-bottom,.messagebar~.fab-center-bottom,.messagebar~.fab-left-bottom,.messagebar~.fab-right-bottom{margin-bottom:var(--f7-messagebar-height)}.ios .navbar+.toolbar-top-ios~* .fab-center-top,.ios .navbar+.toolbar-top-ios~* .fab-left-top,.ios .navbar+.toolbar-top-ios~* .fab-right-top,.ios .navbar+.toolbar-top-ios~.fab-center-top,.ios .navbar+.toolbar-top-ios~.fab-left-top,.ios .navbar+.toolbar-top-ios~.fab-right-top,.md .navbar+.toolbar-top-ios~* .fab-center-top,.md .navbar+.toolbar-top-ios~* .fab-left-top,.md .navbar+.toolbar-top-ios~* .fab-right-top,.md .navbar+.toolbar-top-ios~.fab-center-top,.md .navbar+.toolbar-top-ios~.fab-left-top,.md .navbar+.toolbar-top-ios~.fab-right-top,.navbar+.toolbar-top~* .fab-center-top,.navbar+.toolbar-top~* .fab-left-top,.navbar+.toolbar-top~* .fab-right-top,.navbar+.toolbar-top~.fab-center-top,.navbar+.toolbar-top~.fab-left-top,.navbar+.toolbar-top~.fab-right-top{margin-top:calc(var(--f7-toolbar-height) + var(--f7-navbar-height) + var(--f7-safe-area-top))}.ios .navbar+.toolbar-top-ios.tabbar-labels~* .fab-center-top,.ios .navbar+.toolbar-top-ios.tabbar-labels~* .fab-left-top,.ios .navbar+.toolbar-top-ios.tabbar-labels~* .fab-right-top,.ios .navbar+.toolbar-top-ios.tabbar-labels~.fab-center-top,.ios .navbar+.toolbar-top-ios.tabbar-labels~.fab-left-top,.ios .navbar+.toolbar-top-ios.tabbar-labels~.fab-right-top,.md .navbar+.toolbar-top-ios.tabbar-labels~* .fab-center-top,.md .navbar+.toolbar-top-ios.tabbar-labels~* .fab-left-top,.md .navbar+.toolbar-top-ios.tabbar-labels~* .fab-right-top,.md .navbar+.toolbar-top-ios.tabbar-labels~.fab-center-top,.md .navbar+.toolbar-top-ios.tabbar-labels~.fab-left-top,.md .navbar+.toolbar-top-ios.tabbar-labels~.fab-right-top,.navbar+.toolbar-top.tabbar-labels~* .fab-center-top,.navbar+.toolbar-top.tabbar-labels~* .fab-left-top,.navbar+.toolbar-top.tabbar-labels~* .fab-right-top,.navbar+.toolbar-top.tabbar-labels~.fab-center-top,.navbar+.toolbar-top.tabbar-labels~.fab-left-top,.navbar+.toolbar-top.tabbar-labels~.fab-right-top{margin-top:calc(var(--f7-tabbar-labels-height) + var(--f7-navbar-height) + var(--f7-safe-area-top))}.ios .navbars+.toolbar-top-ios~* .fab-center-top,.ios .navbars+.toolbar-top-ios~* .fab-left-top,.ios .navbars+.toolbar-top-ios~* .fab-right-top,.ios .navbars+.toolbar-top-ios~.fab-center-top,.ios .navbars+.toolbar-top-ios~.fab-left-top,.ios .navbars+.toolbar-top-ios~.fab-right-top,.navbars+.toolbar-top~* .fab-center-top,.navbars+.toolbar-top~* .fab-left-top,.navbars+.toolbar-top~* .fab-right-top,.navbars+.toolbar-top~.fab-center-top,.navbars+.toolbar-top~.fab-left-top,.navbars+.toolbar-top~.fab-right-top{margin-top:calc(var(--f7-toolbar-height) + var(--f7-navbar-height) + var(--f7-safe-area-top))}.ios .navbars+.toolbar-top-ios.tabbar-labels~* .fab-center-top,.ios .navbars+.toolbar-top-ios.tabbar-labels~* .fab-left-top,.ios .navbars+.toolbar-top-ios.tabbar-labels~* .fab-right-top,.ios .navbars+.toolbar-top-ios.tabbar-labels~.fab-center-top,.ios .navbars+.toolbar-top-ios.tabbar-labels~.fab-left-top,.ios .navbars+.toolbar-top-ios.tabbar-labels~.fab-right-top,.navbars+.toolbar-top.tabbar-labels~* .fab-center-top,.navbars+.toolbar-top.tabbar-labels~* .fab-left-top,.navbars+.toolbar-top.tabbar-labels~* .fab-right-top,.navbars+.toolbar-top.tabbar-labels~.fab-center-top,.navbars+.toolbar-top.tabbar-labels~.fab-left-top,.navbars+.toolbar-top.tabbar-labels~.fab-right-top{margin-top:calc(var(--f7-tabbar-labels-height) + var(--f7-navbar-height) + var(--f7-safe-area-top))}.ios .fab-buttons a.active-state,.ios .fab>a.active-state{transition-duration:0s}:root{--f7-searchbar-input-border-width:0px;--f7-searchbar-input-border-color:transparent;--f7-searchbar-input-text-color:#000;--f7-searchbar-placeholder-color:rgba(0, 0, 0, 0.4)}:root .theme-dark,:root.theme-dark{--f7-searchbar-input-text-color:#fff;--f7-searchbar-placeholder-color:rgba(255, 255, 255, 0.4)}.ios{--f7-searchbar-height:44px;--f7-searchbar-inner-padding-left:8px;--f7-searchbar-inner-padding-right:8px;--f7-searchbar-input-font-size:17px;--f7-searchbar-input-border-radius:8px;--f7-searchbar-input-height:32px;--f7-searchbar-inline-input-height:32px;--f7-searchbar-input-padding-horizontal:28px;--f7-searchbar-backdrop-bg-color:rgba(0, 0, 0, 0.4);--f7-searchbar-shadow-image:none;--f7-searchbar-in-page-content-margin:0px;--f7-searchbar-in-page-content-box-shadow:none;--f7-searchbar-in-page-content-border-radius:0;--f7-searchbar-in-page-content-input-border-radius:0;--f7-searchbar-search-icon-color:rgba(0, 0, 0, 0.4);--f7-searchbar-input-bg-color:#e4e4e4}.ios .theme-dark,.ios.theme-dark{--f7-searchbar-search-icon-color:rgba(255, 255, 255, 0.4);--f7-searchbar-input-bg-color:#2a2a2a}.md{--f7-searchbar-border-color:transparent;--f7-searchbar-height:48px;--f7-searchbar-inner-padding-left:0px;--f7-searchbar-inner-padding-right:0px;--f7-searchbar-link-color:#737373;--f7-searchbar-search-icon-color:#737373;--f7-searchbar-input-font-size:20px;--f7-searchbar-input-border-radius:0px;--f7-searchbar-input-height:100%;--f7-searchbar-inline-input-height:32px;--f7-searchbar-inline-input-border-radius:4px;--f7-searchbar-input-padding-horizontal:48px;--f7-searchbar-inline-input-padding-horizontal:24px;--f7-searchbar-input-clear-button-color:#737373;--f7-searchbar-backdrop-bg-color:rgba(0, 0, 0, 0.25);--f7-searchbar-shadow-image:var(--f7-bars-shadow-bottom-image);--f7-searchbar-in-page-content-margin:8px;--f7-searchbar-in-page-content-box-shadow:var(--f7-elevation-1);--f7-searchbar-in-page-content-border-radius:4px;--f7-searchbar-in-page-content-input-border-radius:4px;--f7-searchbar-bg-color:#fff;--f7-searchbar-input-bg-color:#fff}.md .theme-dark,.md.theme-dark{--f7-searchbar-bg-color:#202020;--f7-searchbar-input-bg-color:#202020}.aurora{--f7-searchbar-height:56px;--f7-searchbar-inner-padding-left:16px;--f7-searchbar-inner-padding-right:16px;--f7-searchbar-input-font-size:16px;--f7-searchbar-input-border-radius:8px;--f7-searchbar-input-height:38px;--f7-searchbar-inline-input-height:38px;--f7-searchbar-input-padding-horizontal:34px;--f7-searchbar-backdrop-bg-color:rgba(0, 0, 0, 0.4);--f7-searchbar-shadow-image:none;--f7-searchbar-in-page-content-margin:0px;--f7-searchbar-in-page-content-box-shadow:none;--f7-searchbar-in-page-content-border-radius:0;--f7-searchbar-search-icon-color:rgba(0, 0, 0, 0.4);--f7-searchbar-input-bg-color:#e4e4e4}.aurora .theme-dark,.aurora.theme-dark{--f7-searchbar-search-icon-color:rgba(255, 255, 255, 0.4);--f7-searchbar-input-bg-color:#2a2a2a}.searchbar{--f7-link-highlight-color:var(--f7-link-highlight-black);width:100%;position:relative;z-index:200;height:var(--f7-searchbar-height);background-image:var(--f7-searchbar-bg-image,var(--f7-bars-bg-image));background-color:var(--f7-searchbar-bg-color,var(--f7-bars-bg-color))}.theme-dark .searchbar{--f7-link-highlight-color:var(--f7-link-highlight-white)}.searchbar input[type=search]::-webkit-search-decoration{display:none}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .searchbar{background-color:rgba(var(--f7-searchbar-bg-color-rgb,var(--f7-bars-bg-color-rgb)),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.ios .subnavbar .searchbar{background-color:transparent;-webkit-backdrop-filter:none;backdrop-filter:none}.ios .subnavbar .searchbar:after{display:none!important}.searchbar.no-border:after,.searchbar.no-hairline:after{display:none!important}.searchbar.no-shadow:before{display:none!important}.searchbar:after{content:'';position:absolute;background-color:var(--f7-searchbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.page>.searchbar:not(.searchbar-inline){z-index:600}.page>.searchbar:not(.searchbar-inline):before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-searchbar-shadow-image)}.searchbar input[type=search],.searchbar input[type=text]{box-sizing:border-box;width:100%;height:100%;display:block;border:var(--f7-searchbar-input-border-width) solid var(--f7-searchbar-input-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:inherit;font-weight:400;color:var(--f7-searchbar-input-text-color);font-size:var(--f7-searchbar-input-font-size);background-color:var(--f7-searchbar-input-bg-color);border-radius:var(--f7-searchbar-input-border-radius);position:relative;padding:0;padding-left:calc(var(--f7-searchbar-input-padding-horizontal) + var(--f7-searchbar-input-extra-padding-left,0px));padding-right:calc(var(--f7-searchbar-input-padding-horizontal) + var(--f7-searchbar-input-extra-padding-right,0px))}.searchbar input[type=search]::-webkit-input-placeholder,.searchbar input[type=text]::-webkit-input-placeholder{color:var(--f7-searchbar-placeholder-color);opacity:1}.searchbar input[type=search]::placeholder,.searchbar input[type=text]::placeholder{color:var(--f7-searchbar-placeholder-color);opacity:1}.searchbar input::-webkit-search-cancel-button{-webkit-appearance:none;appearance:none}.searchbar .searchbar-input-wrap{flex-shrink:1;width:100%;height:var(--f7-searchbar-input-height);position:relative}.searchbar a{color:var(--f7-searchbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.page>.searchbar:not(.searchbar-inline){position:absolute;left:0;top:0}.page-content .searchbar:not(.searchbar-inline){border-radius:var(--f7-searchbar-in-page-content-border-radius);margin:var(--f7-searchbar-in-page-content-margin);width:auto;box-shadow:var(--f7-searchbar-in-page-content-box-shadow)}.page-content .searchbar:not(.searchbar-inline) .searchbar-inner,.page-content .searchbar:not(.searchbar-inline) input[type=search],.page-content .searchbar:not(.searchbar-inline) input[type=text]{border-radius:var(--f7-searchbar-in-page-content-input-border-radius,var(--f7-searchbar-input-border-radius))}.searchbar .input-clear-button{color:var(--f7-searchbar-input-clear-button-color,var(--f7-input-clear-button-color))}.searchbar-expandable{--f7-searchbar-expandable-size:var(--f7-searchbar-height);position:absolute;transition-duration:.3s;pointer-events:none}.navbar .searchbar-expandable{background:0 0}.navbar .searchbar-expandable:after{display:none!important}.navbar .searchbar.searchbar-expandable{--f7-searchbar-expandable-size:var(--f7-navbar-height)}.toolbar .searchbar.searchbar-expandable{--f7-searchbar-expandable-size:var(--f7-toolbar-height)}.subnavbar .searchbar.searchbar-expandable{--f7-searchbar-expandable-size:var(--f7-subnavbar-height)}.tabbar-labels .searchbar.searchbar-expandable{--f7-searchbar-expandable-size:var(--f7-tabbar-labels-height)}.searchbar-inner{position:absolute;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;box-sizing:border-box;padding:0 calc(var(--f7-searchbar-inner-padding-right) + var(--f7-safe-area-right)) 0 calc(var(--f7-searchbar-inner-padding-left) + var(--f7-safe-area-left))}.searchbar-disable-button{cursor:pointer;pointer-events:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;outline:0;padding:0;margin:0;width:auto;opacity:0}.searchbar-icon{pointer-events:none;background-position:center;background-repeat:no-repeat}.searchbar-icon:after{color:var(--f7-searchbar-search-icon-color);font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px}.searchbar-backdrop{position:absolute;left:0;top:0;width:100%;height:100%;z-index:100;opacity:0;pointer-events:none;transition-duration:.3s;transform:translate3d(0,0,0);background:var(--f7-searchbar-backdrop-bg-color)}.searchbar-backdrop.searchbar-backdrop-in{opacity:1;pointer-events:auto}.page-content>.searchbar-backdrop{position:fixed}.searchbar-not-found{display:none}.hidden-by-searchbar,.list .hidden-by-searchbar,.list li.hidden-by-searchbar,.list.li.hidden-by-searchbar{display:none!important}.navbar.with-searchbar-expandable-enabled-no-transition{--f7-navbar-large-collapse-progress:1}.navbar.with-searchbar-expandable-enabled{--f7-navbar-large-collapse-progress:1}.navbar.with-searchbar-expandable-enabled .navbar-bg,.navbar.with-searchbar-expandable-enabled .title-large,.navbar.with-searchbar-expandable-enabled .title-large-text{transition-duration:.3s}.navbar.with-searchbar-expandable-closing .navbar-bg,.navbar.with-searchbar-expandable-closing .title-large,.navbar.with-searchbar-expandable-closing .title-large-text{transition-duration:.3s}.page-content.with-searchbar-expandable-enabled{height:calc(100% + var(--f7-navbar-large-title-height));transform:translateY(calc(-1 * var(--f7-navbar-large-title-height)));transition-duration:.3s;transition-property:transform}.page-content.with-searchbar-expandable-closing{transition-duration:.3s}.navbars~.page:not(.no-navbar)>.searchbar,.navbar~.page:not(.no-navbar)>.searchbar,.page>.navbar~.searchbar{top:calc(var(--f7-navbar-height) + var(--f7-safe-area-top))}.navbars~.page-with-navbar-large:not(.no-navbar) .searchbar,.navbar~.page-with-navbar-large:not(.no-navbar) .searchbar,.page-with-navbar-large .navbar~* .searchbar,.page-with-navbar-large .navbar~.searchbar{top:calc(var(--f7-navbar-height) + var(--f7-navbar-large-title-height) + var(--f7-safe-area-top));transform:translate3d(0,calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)),0)}.navbars~.page-with-navbar-large:not(.no-navbar) .page-content .searchbar,.page-with-navbar-large .page-content .searchbar{top:0;transform:none}.searchbar~*{--f7-page-searchbar-offset:var(--f7-searchbar-height)}.aurora .page>.toolbar-top-aurora~.searchbar,.ios .page>.toolbar-top-ios~.searchbar,.md .page>.toolbar-top-md~.searchbar,.page>.toolbar-top~.searchbar{top:var(--f7-toolbar-height)}.aurora .page>.tabbar-labels.toolbar-top-aurora~.searchbar,.ios .page>.tabbar-labels.toolbar-top-ios~.searchbar,.md .page>.tabbar-labels.toolbar-top-md~.searchbar,.page>.tabbar-labels.toolbar-top~.searchbar{top:var(--f7-tabbar-labels-height)}.aurora .page>.navbar~.toolbar-top-aurora~.searchbar,.ios .page>.navbar~.toolbar-top-ios~.searchbar,.md .page>.navbar~.toolbar-top-md~.searchbar,.page>.navbar~.toolbar-top~.searchbar{top:calc(var(--f7-navbar-height) + var(--f7-toolbar-height) + var(--f7-safe-area-top))}.aurora .page>.navbar~.tabbar-labels.toolbar-top-aurora~.searchbar,.ios .page>.navbar~.tabbar-labels.toolbar-top-ios~.searchbar,.md .page>.navbar~.tabbar-labels.toolbar-top-md~.searchbar,.page>.navbar~.tabbar-labels.toolbar-top~.searchbar{top:calc(var(--f7-navbar-height) + var(--f7-tabbar-labels-height) + var(--f7-safe-area-top))}.searchbar.searchbar-inline{width:auto;height:auto;background-color:transparent;background-image:none}.searchbar.searchbar-inline:after,.searchbar.searchbar-inline:before{display:none!important}.searchbar.searchbar-inline .searchbar-input-wrap{height:var(--f7-searchbar-inline-input-height,var(--f7-searchbar-input-height))}.searchbar.searchbar-inline .searchbar-inner{padding:0;position:static;width:auto;height:auto}.searchbar.searchbar-inline input[type=search],.searchbar.searchbar-inline input[type=text]{font-size:var(--f7-searchbar-inline-input-font-size, var(--f7-searchbar-input-font-size));border-radius:var(--f7-searchbar-inline-input-border-radius,var(--f7-searchbar-input-border-radius));padding-left:calc(var(--f7-searchbar-inline-input-padding-horizontal,var(--f7-searchbar-input-padding-horizontal)) + var(--f7-searchbar-input-extra-padding-left,0px));padding-right:calc(var(--f7-searchbar-inline-input-padding-horizontal,var(--f7-searchbar-input-padding-horizontal)) + var(--f7-searchbar-input-extra-padding-right,0px))}.ios .searchbar input[type=search],.ios .searchbar input[type=text]{z-index:30}.ios .searchbar .input-clear-button{z-index:40;right:7px}.ios .searchbar-icon{width:13px;height:13px;position:absolute;top:50%;margin-top:-6px;z-index:40;left:8px}.ios .searchbar-icon:after{content:'search_ios';line-height:13px}.ios .searchbar-disable-button{font-size:17px;flex-shrink:0;transform:translate3d(0,0,0);transition-duration:.3s;color:var(--f7-searchbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)));display:none}.ios .searchbar-disable-button.active-state{transition-duration:0s;opacity:.3!important}.ios .searchbar-enabled .searchbar-disable-button{pointer-events:auto;opacity:1;margin-left:8px}.ios .searchbar:not(.searchbar-enabled) .searchbar-disable-button{transition-duration:.3s!important}.ios .searchbar-expandable{left:0;bottom:0;opacity:1;width:100%;height:0%;transform:translate3d(0,0,0);overflow:hidden}.ios .searchbar-expandable .searchbar-disable-button{margin-left:8px;opacity:1;display:block}.ios .searchbar-expandable .searchbar-inner{height:var(--f7-searchbar-expandable-size)}.ios .navbar.with-searchbar-expandable-closing .navbar-bg,.ios .navbar.with-searchbar-expandable-enabled .navbar-bg{transition-property:transform,opacity}.ios .navbar.with-searchbar-expandable-closing .left,.ios .navbar.with-searchbar-expandable-closing .navbar-bg,.ios .navbar.with-searchbar-expandable-closing .right,.ios .navbar.with-searchbar-expandable-closing .title,.ios .navbar.with-searchbar-expandable-enabled .left,.ios .navbar.with-searchbar-expandable-enabled .navbar-bg,.ios .navbar.with-searchbar-expandable-enabled .right,.ios .navbar.with-searchbar-expandable-enabled .title{transition-duration:.3s}.ios .navbar.with-searchbar-expandable-enabled .left,.ios .navbar.with-searchbar-expandable-enabled .right,.ios .navbar.with-searchbar-expandable-enabled .title,.ios .navbar.with-searchbar-expandable-enabled-no-transition .left,.ios .navbar.with-searchbar-expandable-enabled-no-transition .right,.ios .navbar.with-searchbar-expandable-enabled-no-transition .title{transform:translateY(calc(-1 * var(--f7-navbar-height)));opacity:0!important}.ios .searchbar-expandable.searchbar-enabled{opacity:1;height:var(--f7-searchbar-expandable-size);pointer-events:auto}.md .searchbar-disable-button,.md .searchbar-icon{position:absolute;left:calc(-4px + var(--f7-safe-area-left));top:50%;transition-duration:.3s}.md .searchbar-icon{width:24px;height:24px;margin-left:12px;margin-top:-12px}.md .searchbar-icon:after{content:'search_md';line-height:1.2}.md .searchbar-disable-button{width:48px;height:48px;transform:rotate(-90deg) scale(.5);font-size:0!important;display:block;margin-top:-24px;color:var(--f7-searchbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.md .searchbar-disable-button:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .searchbar-disable-button.icon-only:before,.md .searchbar-disable-button.input-clear-button:before,.md .searchbar-disable-button.notification-close-button:before,.md .searchbar-disable-button.ripple-inset:before,.md .searchbar-disable-button.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .searchbar-disable-button.active-state:before{opacity:1;transition-duration:150ms}.md .searchbar-disable-button:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;line-height:48px;content:'arrow_left_md'}.md .searchbar-enabled:not(.searchbar-enabled-no-disable-button) .searchbar-disable-button{transform:rotate(0deg) scale(1);pointer-events:auto;opacity:1}.md .searchbar-enabled:not(.searchbar-enabled-no-disable-button) .searchbar-icon{opacity:0;transform:rotate(90deg) scale(.5)}.md .searchbar{--f7-searchbar-input-extra-padding-left:16px}.md .searchbar .input-clear-button{width:48px;height:48px;margin-top:-24px;right:0}.md .searchbar .input-clear-button:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .searchbar .input-clear-button.icon-only:before,.md .searchbar .input-clear-button.input-clear-button:before,.md .searchbar .input-clear-button.notification-close-button:before,.md .searchbar .input-clear-button.ripple-inset:before,.md .searchbar .input-clear-button.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .searchbar .input-clear-button.active-state:before{opacity:1;transition-duration:150ms}.md .searchbar .input-clear-button:after{line-height:48px;content:'delete_md';opacity:1}.md .searchbar .input-clear-button:before{margin-left:0;margin-top:0}.md .page>.searchbar,.md .searchbar-expandable,.md .subnavbar .searchbar{--f7-searchbar-input-extra-padding-left:24px}.md .page>.searchbar .searchbar-disable-button,.md .page>.searchbar .searchbar-icon,.md .searchbar-expandable .searchbar-disable-button,.md .searchbar-expandable .searchbar-icon,.md .subnavbar .searchbar .searchbar-disable-button,.md .subnavbar .searchbar .searchbar-icon{left:calc(-4px + 8px + var(--f7-safe-area-left))}.md .searchbar-expandable{height:var(--f7-searchbar-expandable-size);opacity:0;bottom:0;border-radius:calc(var(--f7-searchbar-expandable-size));width:calc(var(--f7-searchbar-expandable-size));margin-top:calc(var(--f7-searchbar-expandable-size) * -1 / 2);transform:translate3d(0px,0px,0px);background-color:var(--f7-searchbar-input-bg-color);left:100%;margin-left:calc(var(--f7-searchbar-expandable-size) * -1)}.md .searchbar-expandable.searchbar-enabled{width:100%;border-radius:0;opacity:1;pointer-events:auto;margin-top:0;left:0;margin-left:0}.aurora .searchbar input[type=search],.aurora .searchbar input[type=text]{z-index:30}.aurora .searchbar .input-clear-button{z-index:40;right:8px}.aurora .searchbar-icon{width:24px;height:24px;position:absolute;top:50%;margin-top:-12px;z-index:40;left:5px}.aurora .searchbar-icon:after{content:'search_md';line-height:24px}.aurora .searchbar-disable-button{font-size:14px;flex-shrink:0;transform:translate3d(0,0,0);transition-duration:.3s;color:var(--f7-searchbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)));display:none}.aurora .searchbar-disable-button.active-state{transition-duration:0s;opacity:.3!important}.aurora .searchbar-enabled .searchbar-disable-button{pointer-events:auto;opacity:1;margin-left:8px}.aurora .searchbar:not(.searchbar-enabled) .searchbar-disable-button{transition-duration:.3s!important}.aurora .searchbar-expandable{left:0;top:auto;bottom:0;opacity:0;width:100%;transform:translate3d(0,0,0);overflow:hidden}.aurora .searchbar-expandable .searchbar-disable-button{margin-left:8px;opacity:1;display:block}.aurora .searchbar-expandable .searchbar-inner{height:var(--f7-searchbar-expandable-size)}.aurora .searchbar-expandable.searchbar-enabled{opacity:1;pointer-events:auto}:root{--f7-message-text-header-text-color:inherit;--f7-message-text-header-opacity:0.65;--f7-message-text-header-font-size:12px;--f7-message-text-footer-text-color:inherit;--f7-message-text-footer-opacity:0.65;--f7-message-text-footer-font-size:12px;--f7-message-bubble-line-height:1.2;--f7-message-header-font-size:12px;--f7-message-footer-font-size:11px;--f7-message-name-font-size:12px;--f7-message-name-font-weight:inherit;--f7-message-avatar-border-radius:50%;--f7-messages-title-font-weight:inherit;--f7-message-sent-text-color:#fff;--f7-messages-content-bg-color:#fff;--f7-message-typing-indicator-bg-color:#000;--f7-message-received-bg-color:#e5e5ea;--f7-message-received-text-color:#000}:root .theme-dark,:root.theme-dark{--f7-messages-title-text-color:rgba(255, 255, 255, 0.54);--f7-message-header-text-color:rgba(255, 255, 255, 0.54);--f7-message-name-text-color:rgba(255, 255, 255, 0.54);--f7-message-footer-text-color:rgba(255, 255, 255, 0.54);--f7-messages-content-bg-color:transparent;--f7-message-received-bg-color:#252525;--f7-message-received-text-color:#fff;--f7-message-typing-indicator-bg-color:#fff}.ios{--f7-messages-title-text-color:rgba(0, 0, 0, 0.45);--f7-messages-title-font-size:11px;--f7-message-header-text-color:rgba(0, 0, 0, 0.45);--f7-message-footer-text-color:rgba(0, 0, 0, 0.45);--f7-message-name-text-color:rgba(0, 0, 0, 0.45);--f7-message-avatar-size:29px;--f7-message-margin:10px;--f7-message-bubble-min-height:32px;--f7-message-bubble-font-size:17px;--f7-message-bubble-border-radius:16px;--f7-message-bubble-padding-vertical:6px;--f7-message-bubble-padding-horizontal:16px;--f7-message-typing-indicator-opacity:0.35}.md{--f7-messages-title-font-size:12px;--f7-message-avatar-size:32px;--f7-message-margin:16px;--f7-message-bubble-min-height:32px;--f7-message-bubble-font-size:16px;--f7-message-bubble-border-radius:4px;--f7-message-bubble-padding-vertical:6px;--f7-message-bubble-padding-horizontal:8px;--f7-message-typing-indicator-opacity:0.6;--f7-messages-title-text-color:rgba(0, 0, 0, 0.51);--f7-message-header-text-color:rgba(0, 0, 0, 0.51);--f7-message-footer-text-color:rgba(0, 0, 0, 0.51);--f7-message-name-text-color:rgba(0, 0, 0, 0.51)}.aurora{--f7-messages-title-font-size:14px;--f7-message-avatar-size:32px;--f7-message-margin:16px;--f7-message-bubble-min-height:34px;--f7-message-bubble-font-size:16px;--f7-message-bubble-line-height:1.4;--f7-message-bubble-border-radius:16px;--f7-message-bubble-padding-vertical:6px;--f7-message-bubble-padding-horizontal:10px;--f7-message-typing-indicator-opacity:0.5;--f7-message-header-font-size:14px;--f7-message-footer-font-size:12px;--f7-message-name-font-size:14px;--f7-messages-title-text-color:rgba(0, 0, 0, 0.51);--f7-message-header-text-color:rgba(0, 0, 0, 0.51);--f7-message-footer-text-color:rgba(0, 0, 0, 0.51);--f7-message-name-text-color:rgba(0, 0, 0, 0.51)}.messages,.messages-content{background:var(--f7-messages-content-bg-color)}.messages{display:flex;flex-direction:column;min-height:100%;position:relative;z-index:1}.message,.messages-title{margin-top:var(--f7-message-margin)}.message:last-child,.messages-title:last-child{margin-bottom:var(--f7-message-margin)}.messages-title{text-align:center;width:100%;line-height:1;color:var(--f7-messages-title-text-color);font-size:var(--f7-messages-title-font-size);font-weight:var(--f7-messages-title-font-weight)}.message{max-width:70%;box-sizing:border-box;display:flex;align-items:flex-end;position:relative;z-index:1;transform:translate3d(0,0,0)}.message-avatar{border-radius:var(--f7-message-avatar-border-radius);position:relative;background-size:cover;align-self:flex-end;flex-shrink:0;width:var(--f7-message-avatar-size);height:var(--f7-message-avatar-size)}.message-content{position:relative;display:flex;flex-direction:column}.message-footer,.message-header,.message-name{line-height:1}.message-header{color:var(--f7-message-header-text-color);font-size:var(--f7-message-header-font-size)}.message-footer{color:var(--f7-message-footer-text-color);font-size:var(--f7-message-footer-font-size);margin-bottom:-1em}.message-name{color:var(--f7-message-name-text-color);font-size:var(--f7-message-name-font-size);font-weight:var(--f7-message-name-font-weight)}.message-bubble{box-sizing:border-box;word-break:break-word;display:flex;flex-direction:column;position:relative;line-height:var(--f7-message-bubble-line-height);font-size:var(--f7-message-bubble-font-size);border-radius:var(--f7-message-bubble-border-radius);padding:var(--f7-message-bubble-padding-vertical) var(--f7-message-bubble-padding-horizontal);min-height:var(--f7-message-bubble-min-height)}.message-image img{display:block;max-width:100%;height:auto;width:auto}.message-text-footer,.message-text-header{line-height:1}.message-text-header{color:var(--f7-message-text-header-text-color);opacity:var(--f7-message-text-header-opacity);font-size:var(--f7-message-text-header-font-size)}.message-text-footer{color:var(--f7-message-text-footer-text-color);opacity:var(--f7-message-text-footer-opacity);font-size:var(--f7-message-text-footer-font-size)}.message-text{text-align:left}.message-sent{text-align:right;flex-direction:row-reverse;align-self:flex-end}.message-sent .message-bubble{color:var(--f7-message-sent-text-color);background:var(--f7-message-sent-bg-color,var(--f7-theme-color))}.message-sent .message-content{align-items:flex-end}.message-sent.message-tail .message-bubble{border-radius:var(--f7-message-bubble-border-radius) var(--f7-message-bubble-border-radius) 0 var(--f7-message-bubble-border-radius)}.message-received{flex-direction:row}.message-received .message-bubble{color:var(--f7-message-received-text-color);background:var(--f7-message-received-bg-color)}.message-received .message-content{align-items:flex-start}.message-received.message-tail .message-bubble{border-radius:var(--f7-message-bubble-border-radius) var(--f7-message-bubble-border-radius) var(--f7-message-bubble-border-radius) 0}.message:not(.message-last) .message-avatar{opacity:0}.message:not(.message-first) .message-name{display:none}.message.message-same-name .message-name{display:none}.message.message-same-header .message-header{display:none}.message.message-same-footer .message-footer{display:none}.message-appear-from-bottom{animation:message-appear-from-bottom .3s}.message-appear-from-top{animation:message-appear-from-top .3s}.message-typing-indicator{display:inline-block;font-size:0;vertical-align:middle}.message-typing-indicator>div{display:inline-block;position:relative;background:var(--f7-message-typing-indicator-bg-color);opacity:var(--f7-message-typing-indicator-opacity);vertical-align:middle;border-radius:50%}@keyframes message-appear-from-bottom{from{transform:translate3d(0,100%,0)}to{transform:translate3d(0,0,0)}}@keyframes message-appear-from-top{from{transform:translate3d(0,-100%,0)}to{transform:translate3d(0,0,0)}}.ios .message-footer b,.ios .message-header b,.ios .message-name b,.ios .messages-title b{font-weight:600}.ios .message-header,.ios .message-name{margin-bottom:3px}.ios .message-footer{margin-top:3px}.ios .message-bubble{min-width:48px}.ios .message-image{margin:var(--f7-message-bubble-padding-vertical) calc(-1 * var(--f7-message-bubble-padding-horizontal))}.ios .message-image:first-child{margin-top:calc(-1 * var(--f7-message-bubble-padding-vertical))}.ios .message-image:first-child img{border-top-left-radius:var(--f7-message-bubble-border-radius);border-top-right-radius:var(--f7-message-bubble-border-radius)}.ios .message-image:last-child{margin-bottom:calc(-1 * var(--f7-message-bubble-padding-vertical))}.ios .message-image:last-child img{border-bottom-left-radius:var(--f7-message-bubble-border-radius);border-bottom-right-radius:var(--f7-message-bubble-border-radius)}.ios .message-text-header{margin-bottom:3px}.ios .message-text-footer{margin-top:3px}.ios .message-received{margin-left:calc(10px + var(--f7-safe-area-left))}.ios .message-received .message-footer,.ios .message-received .message-header,.ios .message-received .message-name{margin-left:var(--f7-message-bubble-padding-horizontal)}.ios .message-received .message-bubble{padding-left:calc(var(--f7-message-bubble-padding-horizontal) + 6px);-webkit-mask-box-image:url(\"data:image/svg+xml;charset=utf-8,\") 50% 42% 46% 56%}.ios .message-received .message-image{margin-left:calc(-1 * (var(--f7-message-bubble-padding-horizontal) + 6px))}.ios .message-received.message-tail:not(.message-typing) .message-bubble{-webkit-mask-box-image:url(\"data:image/svg+xml;charset=utf-8,\") 50% 42% 46% 56%}.ios .message-received.message-tail:not(.message-typing) .message-bubble .message-image:last-child img{border-bottom-left-radius:0px}.ios .message-sent{margin-right:calc(10px + var(--f7-safe-area-right))}.ios .message-sent .message-footer,.ios .message-sent .message-header,.ios .message-sent .message-name{margin-right:var(--f7-message-bubble-padding-horizontal)}.ios .message-sent .message-bubble{padding-right:calc(var(--f7-message-bubble-padding-horizontal) + 6px);-webkit-mask-box-image:url(\"data:image/svg+xml;charset=utf-8,\") 50% 56% 46% 42%}.ios .message-sent .message-image{margin-right:calc(-1 * (var(--f7-message-bubble-padding-horizontal) + 6px))}.ios .message-sent.message-tail .message-bubble{-webkit-mask-box-image:url(\"data:image/svg+xml;charset=utf-8,\") 50% 56% 46% 42%}.ios .message-sent.message-tail .message-bubble .message-image:last-child img{border-bottom-right-radius:0px}.ios .message+.message:not(.message-first){margin-top:1px}.ios .message-received.message-typing .message-content:after,.ios .message-received.message-typing .message-content:before{content:'';position:absolute;background:var(--f7-message-received-bg-color);border-radius:50%}.ios .message-received.message-typing .message-content:after{width:11px;height:11px;left:4px;bottom:0px}.ios .message-received.message-typing .message-content:before{width:6px;height:6px;left:-1px;bottom:-4px}.ios .message-typing-indicator>div{width:9px;height:9px}.ios .message-typing-indicator>div+div{margin-left:4px}.ios .message-typing-indicator>div:nth-child(1){animation:ios-message-typing-indicator .9s infinite}.ios .message-typing-indicator>div:nth-child(2){animation:ios-message-typing-indicator .9s 150ms infinite}.ios .message-typing-indicator>div:nth-child(3){animation:ios-message-typing-indicator .9s .3s infinite}@keyframes ios-message-typing-indicator{0%{opacity:.35}25%{opacity:.2}50%{opacity:.2}}.md .message-footer b,.md .message-header b,.md .message-name b,.md .messages-title b{font-weight:500}.md .message-header,.md .message-name{margin-bottom:2px}.md .message-footer{margin-top:2px}.md .message-text-header{margin-bottom:4px}.md .message-text-footer{margin-top:4px}.md .message-received.message-tail .message-bubble:before,.md .message-sent.message-tail .message-bubble:before{position:absolute;content:'';bottom:0;width:0;height:0}.md .message-received{margin-left:calc(8px + var(--f7-safe-area-left))}.md .message-received .message-avatar+.message-content{margin-left:var(--f7-message-bubble-padding-horizontal)}.md .message-received.message-tail .message-bubble:before{border-left:8px solid transparent;border-right:0 solid transparent;border-bottom:8px solid var(--f7-message-received-bg-color);right:100%}.md .message-sent{margin-right:calc(8px + var(--f7-safe-area-right))}.md .message-sent .message-avatar+.message-content{margin-right:var(--f7-message-bubble-padding-horizontal)}.md .message-sent.message-tail .message-bubble:before{border-left:0 solid transparent;border-right:8px solid transparent;border-bottom:8px solid var(--f7-message-sent-bg-color,var(--f7-theme-color));left:100%}.md .message+.message:not(.message-first){margin-top:8px}.md .message-typing-indicator>div{width:6px;height:6px}.md .message-typing-indicator>div+div{margin-left:6px}.md .message-typing-indicator>div:nth-child(1){animation:md-message-typing-indicator .9s infinite}.md .message-typing-indicator>div:nth-child(2){animation:md-message-typing-indicator .9s 150ms infinite}.md .message-typing-indicator>div:nth-child(3){animation:md-message-typing-indicator .9s .3s infinite}@keyframes md-message-typing-indicator{0%{transform:translateY(0%)}25%{transform:translateY(-5px)}50%{transform:translateY(0%)}}.aurora .message-footer b,.aurora .message-header b,.aurora .message-name b,.aurora .messages-title b{font-weight:500}.aurora .message-header,.aurora .message-name{margin-bottom:2px}.aurora .message-footer{margin-top:2px}.aurora .message-text-header{margin-bottom:2px}.aurora .message-text-footer{margin-top:2px}.aurora .message-received.message-tail .message-bubble:before,.aurora .message-sent.message-tail .message-bubble:before{position:absolute;content:'';bottom:0;width:0;height:0}.aurora .message-image{margin:var(--f7-message-bubble-padding-vertical) calc(-1 * var(--f7-message-bubble-padding-horizontal) + 4px)}.aurora .message-image:first-child{margin-top:calc(-1 * var(--f7-message-bubble-padding-vertical) + 4px)}.aurora .message-image:first-child img{border-top-left-radius:var(--f7-message-bubble-border-radius);border-top-right-radius:var(--f7-message-bubble-border-radius)}.aurora .message-image:last-child{margin-bottom:calc(-1 * var(--f7-message-bubble-padding-vertical) + 4px)}.aurora .message-image:last-child img{border-bottom-left-radius:var(--f7-message-bubble-border-radius);border-bottom-right-radius:var(--f7-message-bubble-border-radius)}.aurora .message-received{margin-left:calc(16px + var(--f7-safe-area-left))}.aurora .message-received .message-avatar+.message-content{margin-left:5px}.aurora .message-received .message-footer,.aurora .message-received .message-header,.aurora .message-received .message-name{margin-left:var(--f7-message-bubble-padding-horizontal)}.aurora .message-received.message-tail .message-bubble:before{border-left:6px solid transparent;border-right:0 solid transparent;border-bottom:6px solid var(--f7-message-received-bg-color);right:100%;transform:translate(2px,0px) rotate(-15deg);transform-origin:right bottom}.aurora .message-sent{margin-right:calc(16px + var(--f7-safe-area-right))}.aurora .message-sent .message-avatar+.message-content{margin-right:5px}.aurora .message-sent .message-footer,.aurora .message-sent .message-header,.aurora .message-sent .message-name{margin-right:var(--f7-message-bubble-padding-horizontal)}.aurora .message-sent.message-tail .message-bubble:before{border-left:0 solid transparent;border-right:6px solid transparent;border-bottom:6px solid var(--f7-message-sent-bg-color,var(--f7-theme-color));left:100%;transform:translate(-2px,0px) rotate(15deg);transform-origin:left bottom}.aurora .message+.message:not(.message-first){margin-top:5px}.aurora .message-typing-indicator>div{width:6px;height:6px}.aurora .message-typing-indicator>div+div{margin-left:4px}.aurora .message-typing-indicator>div:nth-child(1){animation:aurora-message-typing-indicator .9s infinite}.aurora .message-typing-indicator>div:nth-child(2){animation:aurora-message-typing-indicator .9s 150ms infinite}.aurora .message-typing-indicator>div:nth-child(3){animation:aurora-message-typing-indicator .9s .3s infinite}@keyframes aurora-message-typing-indicator{0%{transform:translateY(0%)}50%{transform:translateY(-5px)}100%{transform:translateY(0%)}}:root{--f7-messagebar-shadow-image:none;--f7-messagebar-textarea-bg-color:transparent;--f7-messagebar-attachments-height:155px;--f7-messagebar-attachment-height:155px;--f7-messagebar-attachment-landscape-height:120px;--f7-messagebar-sheet-height:252px;--f7-messagebar-sheet-landscape-height:192px;--f7-messagebar-bg-color:#fff;--f7-messagebar-bg-color-rgb:255,255,255}:root .theme-dark,:root.theme-dark{--f7-messagebar-bg-color:var(--f7-bars-bg-color);--f7-messagebar-bg-color-rgb:var(--f7-bars-bg-color-rgb)}.ios{--f7-messagebar-height:44px;--f7-messagebar-font-size:17px;--f7-messagebar-border-color:transparent;--f7-messagebar-textarea-border-radius:17px;--f7-messagebar-textarea-padding:6px 16px;--f7-messagebar-textarea-height:34px;--f7-messagebar-textarea-font-size:17px;--f7-messagebar-textarea-line-height:20px;--f7-messagebar-sheet-bg-color:#d1d5da;--f7-messagebar-attachment-border-radius:12px;--f7-messagebar-textarea-text-color:#000;--f7-messagebar-textarea-border:1px solid #c8c8cd;--f7-messagebar-attachments-border-color:#c8c8cd}.ios .theme-dark,.ios.theme-dark{--f7-messagebar-textarea-text-color:#fff;--f7-messagebar-textarea-border:1px solid var(--f7-bars-border-color);--f7-messagebar-attachments-border-color:var(--f7-bars-border-color)}.md{--f7-messagebar-height:48px;--f7-messagebar-font-size:16px;--f7-messagebar-textarea-border-radius:0px;--f7-messagebar-textarea-padding:5px 8px;--f7-messagebar-textarea-height:32px;--f7-messagebar-textarea-font-size:16px;--f7-messagebar-textarea-line-height:22px;--f7-messagebar-textarea-border:1px solid transparent;--f7-messagebar-sheet-bg-color:#fff;--f7-messagebar-attachment-border-radius:4px;--f7-messagebar-link-color:#333;--f7-messagebar-border-color:#d1d1d1;--f7-messagebar-textarea-text-color:#333;--f7-messagebar-attachments-border-color:#ddd}.md .theme-dark,.md.theme-dark{--f7-messagebar-border-color:transparent;--f7-messagebar-link-color:rgba(255, 255, 255, 0.87);--f7-messagebar-textarea-text-color:rgba(255, 255, 255, 0.87);--f7-messagebar-attachments-border-color:rgba(255, 255, 255, 0.2)}.aurora{--f7-messagebar-height:48px;--f7-messagebar-font-size:16px;--f7-messagebar-border-color:transparent;--f7-messagebar-textarea-border-radius:8px;--f7-messagebar-textarea-padding:4px 8px;--f7-messagebar-textarea-height:32px;--f7-messagebar-textarea-font-size:16px;--f7-messagebar-textarea-line-height:22px;--f7-messagebar-sheet-bg-color:#fff;--f7-messagebar-attachment-border-radius:8px;--f7-messagebar-textarea-text-color:#000;--f7-messagebar-textarea-border:1px solid #c8c8cd;--f7-messagebar-attachments-border-color:#c8c8cd}.aurora .theme-dark,.aurora.theme-dark{--f7-messagebar-textarea-text-color:#fff;--f7-messagebar-textarea-border:1px solid var(--f7-bars-border-color);--f7-messagebar-attachments-border-color:var(--f7-bars-border-color)}.messagebar{transform:translate3d(0,0,0);background:var(--f7-messagebar-bg-color);height:auto;min-height:var(--f7-messagebar-height);font-size:var(--f7-messagebar-font-size);padding-bottom:var(--f7-safe-area-bottom);bottom:0}.messagebar:before{content:'';position:absolute;background-color:var(--f7-messagebar-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.messagebar:after{content:'';position:absolute;right:0;width:100%;bottom:100%;height:8px;top:auto;pointer-events:none;background:var(--f7-messagebar-shadow-image);transform:translate3d(0,0,0)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .messagebar{background-color:rgba(var(--f7-messagebar-bg-color-rgb),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.messagebar.no-border:before,.messagebar.no-hairline:before{display:none!important}.messagebar.no-shadow:after,.messagebar.toolbar-hidden:after{display:none!important}.messagebar .toolbar-inner{top:auto;position:relative;height:auto;bottom:auto;padding-left:calc(var(--f7-messagebar-inner-padding-left,var(--f7-toolbar-inner-padding-left)) + var(--f7-safe-area-left));padding-right:calc(var(--f7-messagebar-inner-padding-right,var(--f7-toolbar-inner-padding-right)) + var(--f7-safe-area-right))}.messagebar.messagebar-sheet-visible>.toolbar-inner{bottom:0}.messagebar .messagebar-area{width:100%;flex-shrink:1;overflow:hidden;position:relative}.messagebar textarea{width:100%;flex-shrink:1;background-color:var(--f7-messagebar-textarea-bg-color);border-radius:var(--f7-messagebar-textarea-border-radius);padding:var(--f7-messagebar-textarea-padding);height:var(--f7-messagebar-textarea-height);color:var(--f7-messagebar-textarea-text-color);font-size:var(--f7-messagebar-textarea-font-size);line-height:var(--f7-messagebar-textarea-line-height);border:var(--f7-messagebar-textarea-border)}.messagebar a.link{align-self:flex-end;flex-shrink:0;color:var(--f7-messagebar-link-color,var(--f7-theme-color))}.messagebar-attachments{width:100%;overflow:auto;-webkit-overflow-scrolling:touch;font-size:0;white-space:nowrap;box-sizing:border-box;position:relative}.messagebar:not(.messagebar-attachments-visible) .messagebar-attachments{display:none}.messagebar-attachment{background-size:cover;background-position:center;background-repeat:no-repeat;display:inline-block;vertical-align:middle;white-space:normal;height:var(--f7-messagebar-attachment-height);position:relative;border-radius:var(--f7-messagebar-attachment-border-radius)}@media (orientation:landscape){.messagebar-attachment{height:var(--f7-messagebar-attachment-landscape-height)}}.messagebar-attachment img{display:block;width:auto;height:100%;border-radius:var(--f7-messagebar-attachment-border-radius)}.messagebar-attachment+.messagebar-attachment{margin-left:8px}.messagebar-sheet{overflow:auto;-webkit-overflow-scrolling:touch;display:flex;flex-wrap:wrap;flex-direction:column;align-content:flex-start;height:var(--f7-messagebar-sheet-height);background-color:var(--f7-messagebar-sheet-bg-color);padding-left:var(--f7-safe-area-left);padding-right:var(--f7-safe-area-right)}@media (orientation:landscape){.messagebar-sheet{height:var(--f7-messagebar-sheet-landscape-height)}}.messagebar-sheet-image,.messagebar-sheet-item{box-sizing:border-box;flex-shrink:0;margin-top:1px;position:relative;overflow:hidden;height:calc((var(--f7-messagebar-sheet-height) - 2px)/ 2);width:calc((var(--f7-messagebar-sheet-height) - 2px)/ 2);margin-left:1px}@media (orientation:landscape){.messagebar-sheet-image,.messagebar-sheet-item{width:calc((var(--f7-messagebar-sheet-landscape-height) - 2px)/ 2);height:calc((var(--f7-messagebar-sheet-landscape-height) - 2px)/ 2)}}.messagebar-sheet-image .icon-checkbox,.messagebar-sheet-image .icon-radio,.messagebar-sheet-item .icon-checkbox,.messagebar-sheet-item .icon-radio{position:absolute;right:8px;bottom:8px}.messagebar-sheet-image{background-size:cover;background-position:center;background-repeat:no-repeat}.messagebar-attachment-delete{display:block;position:absolute;border-radius:50%;box-sizing:border-box;cursor:pointer;box-shadow:0px 0px 2px rgba(0,0,0,.2)}.messagebar-attachment-delete:after,.messagebar-attachment-delete:before{position:absolute;content:'';left:50%;top:50%}.messagebar-attachment-delete:after{transform:rotate(45deg)}.messagebar-attachment-delete:before{transform:rotate(-45deg)}.messagebar:not(.messagebar-sheet-visible) .messagebar-sheet{display:none}.messagebar~*{--f7-page-toolbar-bottom-offset:var(--f7-messagebar-height)}.ios .messagebar a.link.icon-only:first-child{margin-left:-8px}.ios .messagebar a.link.icon-only:last-child{margin-right:-8px}.ios .messagebar a.link:not(.icon-only)+.messagebar-area{margin-left:8px}.ios .messagebar .messagebar-area+a.link:not(.icon-only){margin-left:8px}.ios .messagebar-area{margin-top:5px;margin-bottom:5px}.ios .messagebar-attachments{padding:5px;border-radius:var(--f7-messagebar-textarea-border-radius) var(--f7-messagebar-textarea-border-radius) 0 0;border:1px solid var(--f7-messagebar-attachments-border-color);border-bottom:none}.ios .messagebar-attachments-visible .messagebar-attachments+textarea{border-radius:0 0 var(--f7-messagebar-textarea-border-radius) var(--f7-messagebar-textarea-border-radius)}.ios .messagebar-attachment{font-size:14px}.ios .messagebar-attachment-delete{right:5px;top:5px;width:20px;height:20px;background:#7d7e80;border:2px solid #fff}.ios .messagebar-attachment-delete:after,.ios .messagebar-attachment-delete:before{width:10px;height:2px;background:#fff;margin-left:-5px;margin-top:-1px}.md .messagebar-attachments{padding:8px;border-bottom:1px solid var(--f7-messagebar-attachments-border-color)}.md .messagebar-area{margin-top:8px;margin-bottom:8px}.md .messagebar-sheet-image .icon-checkbox,.md .messagebar-sheet-item .icon-checkbox{border-color:#fff;background:rgba(255,255,255,.25);box-shadow:0px 0px 10px rgba(0,0,0,.5)}.md .messagebar-attachment-delete{right:8px;top:8px;width:24px;height:24px;background-color:var(--f7-theme-color);border-radius:4px}.md .messagebar-attachment-delete:after,.md .messagebar-attachment-delete:before{width:14px;height:2px;background:#fff;margin-left:-7px;margin-top:-1px}.aurora .messagebar a.link+.messagebar-area{margin-left:8px}.aurora .messagebar .messagebar-area+a.link{margin-left:8px}.aurora .messagebar-area{margin-top:8px;margin-bottom:8px}.aurora .messagebar-sheet-image .icon-checkbox,.aurora .messagebar-sheet-item .icon-checkbox{border-color:#fff;background:rgba(255,255,255,.25);box-shadow:0px 0px 10px rgba(0,0,0,.5)}.aurora .messagebar-attachments{padding:8px;border-radius:var(--f7-messagebar-textarea-border-radius) var(--f7-messagebar-textarea-border-radius) 0 0;border:1px solid var(--f7-messagebar-attachments-border-color);border-bottom:none}.aurora .messagebar-attachments-visible .messagebar-attachments+textarea{border-radius:0 0 var(--f7-messagebar-textarea-border-radius) var(--f7-messagebar-textarea-border-radius)}.aurora .messagebar-attachment{font-size:14px}.aurora .messagebar-attachment-delete{right:8px;top:8px;width:24px;height:24px;background-color:var(--f7-theme-color)}.aurora .messagebar-attachment-delete:after,.aurora .messagebar-attachment-delete:before{width:14px;height:2px;background:#fff;margin-left:-7px;margin-top:-1px}@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}:root{--swiper-theme-color:var(--f7-theme-color)}.color-theme-red{--swiper-theme-color:#ff3b30}.color-theme-green{--swiper-theme-color:#4cd964}.color-theme-blue{--swiper-theme-color:#2196f3}.color-theme-pink{--swiper-theme-color:#ff2d55}.color-theme-yellow{--swiper-theme-color:#ffcc00}.color-theme-orange{--swiper-theme-color:#ff9500}.color-theme-purple{--swiper-theme-color:#9c27b0}.color-theme-deeppurple{--swiper-theme-color:#673ab7}.color-theme-lightblue{--swiper-theme-color:#5ac8fa}.color-theme-teal{--swiper-theme-color:#009688}.color-theme-lime{--swiper-theme-color:#cddc39}.color-theme-deeporange{--swiper-theme-color:#ff6b22}.color-theme-gray{--swiper-theme-color:#8e8e93}.color-theme-white{--swiper-theme-color:#ffffff}.color-theme-black{--swiper-theme-color:#000000}.color-red{--swiper-theme-color:#ff3b30}.color-green{--swiper-theme-color:#4cd964}.color-blue{--swiper-theme-color:#2196f3}.color-pink{--swiper-theme-color:#ff2d55}.color-yellow{--swiper-theme-color:#ffcc00}.color-orange{--swiper-theme-color:#ff9500}.color-purple{--swiper-theme-color:#9c27b0}.color-deeppurple{--swiper-theme-color:#673ab7}.color-lightblue{--swiper-theme-color:#5ac8fa}.color-teal{--swiper-theme-color:#009688}.color-lime{--swiper-theme-color:#cddc39}.color-deeporange{--swiper-theme-color:#ff6b22}.color-gray{--swiper-theme-color:#8e8e93}.color-white{--swiper-theme-color:#ffffff}.color-black{--swiper-theme-color:#000000}:root{--f7-photobrowser-bg-color:#fff;--f7-photobrowser-bars-bg-image:none;--f7-photobrowser-caption-font-size:14px;--f7-photobrowser-caption-light-text-color:#000;--f7-photobrowser-caption-light-bg-color:rgba(255, 255, 255, 0.8);--f7-photobrowser-caption-dark-text-color:#fff;--f7-photobrowser-caption-dark-bg-color:rgba(0, 0, 0, 0.8);--f7-photobrowser-exposed-bg-color:#000;--f7-photobrowser-dark-bg-color:#000;--f7-photobrowser-dark-bars-bg-color:rgba(27, 27, 27, 0.8);--f7-photobrowser-dark-bars-text-color:#fff;--f7-photobrowser-dark-bars-link-color:#fff}.photo-browser{position:absolute;left:0;top:0;width:100%;height:100%;z-index:400}.photo-browser-standalone.modal-in{transition-duration:0s;animation:photo-browser-in .4s}.photo-browser-standalone.modal-out{transition-duration:0s;animation:photo-browser-out .4s!important}.photo-browser-standalone.modal-out.swipe-close-to-bottom,.photo-browser-standalone.modal-out.swipe-close-to-top{animation:none!important}.photo-browser-standalone.photo-browser-transitioning{transition:.4s;transition-property:transform;animation:none!important}.photo-browser-popup.modal-out.swipe-close-to-bottom,.photo-browser-popup.modal-out.swipe-close-to-top{transition-duration:.3s}.photo-browser-popup.modal-out.swipe-close-to-bottom{transform:translate3d(0,100vh,0)}.photo-browser-popup.modal-out.swipe-close-to-top{transform:translate3d(0,-100vh,0)}.photo-browser-page{background:0 0}.photo-browser-page .toolbar{transform:none}.photo-browser-popup{background:0 0}.photo-browser-of{margin:0 5px}.photo-browser-captions{pointer-events:none;position:absolute;left:0;width:100%;bottom:var(--f7-safe-area-bottom);z-index:10;opacity:1;transition:.4s}.photo-browser-captions.photo-browser-captions-exposed{opacity:0}.toolbar~.photo-browser-captions{bottom:calc(var(--f7-toolbar-height) + var(--f7-safe-area-bottom));transform:translate3d(0,0px,0)}.toolbar~.photo-browser-captions.photo-browser-captions-exposed{transform:translate3d(0,0px,0)}.photo-browser-caption{box-sizing:border-box;transition:.3s;position:absolute;bottom:0;left:0;opacity:0;padding:4px 5px;width:100%;text-align:center;font-size:var(--f7-photobrowser-caption-font-size)}.photo-browser-caption:empty{display:none}.photo-browser-caption.photo-browser-caption-active{opacity:1}.photo-browser-captions-light .photo-browser-caption{color:var(--f7-photobrowser-caption-light-text-color);background:var(--f7-photobrowser-caption-light-bg-color)}.photo-browser-captions-dark .photo-browser-caption{color:var(--f7-photobrowser-caption-dark-text-color);background:var(--f7-photobrowser-caption-dark-bg-color)}.photo-browser-swiper-container{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;background:var(--f7-photobrowser-bg-color);transition:.4s;transition-property:background-color}.photo-browser-next.swiper-button-disabled,.photo-browser-prev.swiper-button-disabled{opacity:.3;pointer-events:none}.photo-browser-slide{width:100%;height:100%;position:relative;overflow:hidden;display:flex;justify-content:center;align-items:center;flex-shrink:0;box-sizing:border-box}.photo-browser-slide span.swiper-zoom-container{display:none}.photo-browser-slide img{width:auto;height:auto;max-width:100%;max-height:100%;display:none}.photo-browser-slide.swiper-slide-active span.swiper-zoom-container,.photo-browser-slide.swiper-slide-next span.swiper-zoom-container,.photo-browser-slide.swiper-slide-prev span.swiper-zoom-container{display:flex}.photo-browser-slide.swiper-slide-active img,.photo-browser-slide.swiper-slide-next img,.photo-browser-slide.swiper-slide-prev img{display:inline}.photo-browser-slide.swiper-slide-active.photo-browser-slide-lazy .preloader,.photo-browser-slide.swiper-slide-next.photo-browser-slide-lazy .preloader,.photo-browser-slide.swiper-slide-prev.photo-browser-slide-lazy .preloader{display:block}.photo-browser-slide iframe{width:100%;height:100%}.photo-browser-slide .preloader{display:none;position:absolute;width:42px;height:42px;margin-left:-21px;margin-top:-21px;left:50%;top:50%}.navbar-photo-browser .navbar-bg,.photo-browser-page .navbar-bg,.photo-browser-page .toolbar{background-color:var(--f7-photobrowser-bars-bg-color,rgba(var(--f7-bars-bg-color-rgb),.95));background-image:var(--f7-photobrowser-bars-bg-image)}.photo-browser-page .navbar,.photo-browser-page .toolbar{transform:translate3d(0,0,0);transition:.4s;color:var(--f7-photobrowser-bars-text-color,var(--f7-bars-text-color))}.photo-browser-page .navbar a,.photo-browser-page .toolbar a{color:var(--f7-photobrowser-bars-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.photo-browser-exposed .navbar,.photo-browser-exposed .toolbar{opacity:0;visibility:hidden;pointer-events:none}.photo-browser-exposed .toolbar~.photo-browser-captions{transform:translate3d(0,var(--f7-toolbar-height),0)}.photo-browser-exposed .photo-browser-swiper-container{background:var(--f7-photobrowser-exposed-bg-color)}.photo-browser-exposed .photo-browser-caption{color:var(--f7-photobrowser-caption-dark-text-color);background:var(--f7-photobrowser-caption-dark-bg-color)}.view.with-photo-browser-page-exposed .navbar{opacity:0;pointer-events:none}.navbar-photo-browser-dark .navbar-bg,.photo-browser-page-dark .navbar-bg,.photo-browser-page-dark .toolbar{background:var(--f7-photobrowser-dark-bars-bg-color)}.navbar-photo-browser-dark .navbar-bg:after,.navbar-photo-browser-dark .navbar-bg:before,.photo-browser-page-dark .navbar-bg:after,.photo-browser-page-dark .navbar-bg:before,.photo-browser-page-dark .toolbar:after,.photo-browser-page-dark .toolbar:before{display:none!important}.navbar-photo-browser-dark,.photo-browser-dark .navbar,.photo-browser-dark .toolbar,.photo-browser-page-dark .navbar,.photo-browser-page-dark .toolbar{color:var(--f7-photobrowser-dark-bars-text-color)}.navbar-photo-browser-dark a,.photo-browser-dark .navbar a,.photo-browser-dark .toolbar a,.photo-browser-page-dark .navbar a,.photo-browser-page-dark .toolbar a{color:var(--f7-photobrowser-dark-bars-link-color)}.photo-browser-dark .photo-browser-swiper-container,.photo-browser-page-dark .photo-browser-swiper-container{background:var(--f7-photobrowser-dark-bg-color)}@keyframes photo-browser-in{0%{transform:translate3d(0,0,0) scale(.5);opacity:0}50%{transform:translate3d(0,0,0) scale(1.05);opacity:1}100%{transform:translate3d(0,0,0) scale(1);opacity:1}}@keyframes photo-browser-out{0%{transform:translate3d(0,0,0) scale(1);opacity:1}50%{transform:translate3d(0,0,0) scale(1.05);opacity:1}100%{transform:translate3d(0,0,0) scale(.5);opacity:0}}:root{--f7-notification-max-width:568px;--f7-notification-subtitle-text-transform:none;--f7-notification-subtitle-line-height:1.35;--f7-notification-text-text-transform:none;--f7-notification-text-font-weight:400}:root .theme-dark,:root.theme-dark{--f7-notification-subtitle-color:#fff}.ios{--f7-notification-margin:8px;--f7-notification-padding:10px;--f7-notification-border-radius:12px;--f7-notification-box-shadow:0px 5px 25px -10px rgba(0, 0, 0, 0.7);--f7-notification-icon-size:20px;--f7-notification-title-font-size:13px;--f7-notification-title-text-transform:uppercase;--f7-notification-title-line-height:1.4;--f7-notification-title-font-weight:400;--f7-notification-title-letter-spacing:0.02em;--f7-notification-title-right-font-size:13px;--f7-notification-subtitle-font-size:15px;--f7-notification-subtitle-font-weight:600;--f7-notification-text-font-size:15px;--f7-notification-text-line-height:1.2;--f7-notification-bg-color:rgba(250, 250, 250, 0.95);--f7-notification-bg-color-rgb:255,255,255;--f7-notification-title-color:#000;--f7-notification-title-right-color:rgba(0, 0, 0, 0.45);--f7-notification-subtitle-color:#000;--f7-notification-text-color:#000}.ios .theme-dark,.ios.theme-dark{--f7-notification-bg-color:rgba(30, 30, 30, 0.95);--f7-notification-bg-color-rgb:30,30,30;--f7-notification-title-color:#fff;--f7-notification-text-color:#fff;--f7-notification-title-right-color:rgba(255, 255, 255, 0.55)}.md{--f7-notification-margin:0px;--f7-notification-padding:16px;--f7-notification-border-radius:0px;--f7-notification-box-shadow:0 2px 4px rgba(0, 0, 0, 0.22),0 1px 2px rgba(0, 0, 0, 0.24);--f7-notification-icon-size:16px;--f7-notification-title-color:var(--f7-theme-color);--f7-notification-title-font-size:12px;--f7-notification-title-text-transform:none;--f7-notification-title-line-height:1;--f7-notification-title-font-weight:400;--f7-notification-title-right-font-size:12px;--f7-notification-subtitle-font-size:14px;--f7-notification-subtitle-font-weight:400;--f7-notification-text-font-size:14px;--f7-notification-text-line-height:1.35;--f7-notification-bg-color:#fff;--f7-notification-title-right-color:rgba(0, 0, 0, 0.54);--f7-notification-subtitle-color:#212121;--f7-notification-text-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-notification-bg-color:#242424;--f7-notification-title-right-color:rgba(255, 255, 255, 0.54);--f7-notification-text-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-notification-margin:16px;--f7-notification-padding:16px;--f7-notification-border-radius:8px;--f7-notification-box-shadow:0px 5px 25px -10px rgba(0, 0, 0, 0.7);--f7-notification-icon-size:24px;--f7-notification-title-font-size:16px;--f7-notification-title-text-transform:none;--f7-notification-title-line-height:1.4;--f7-notification-title-font-weight:600;--f7-notification-title-letter-spacing:0.02em;--f7-notification-title-right-font-size:14px;--f7-notification-subtitle-font-size:14px;--f7-notification-subtitle-font-weight:600;--f7-notification-text-font-size:14px;--f7-notification-text-line-height:1.35;--f7-notification-bg-color:#fff;--f7-notification-title-color:#000;--f7-notification-title-right-color:rgba(0, 0, 0, 0.6);--f7-notification-subtitle-color:#000;--f7-notification-text-color:#000}.aurora .theme-dark,.aurora.theme-dark{--f7-notification-bg-color:#242424;--f7-notification-title-color:#fff;--f7-notification-text-color:#fff;--f7-notification-title-right-color:rgba(255, 255, 255, 0.54)}.notification{--f7-link-highlight-color:var(--f7-link-highlight-black);--f7-touch-ripple-color:var(--f7-touch-ripple-black);position:absolute;left:var(--f7-notification-margin);top:var(--f7-notification-margin);width:calc(100% - var(--f7-notification-margin) * 2);z-index:20000;font-size:14px;margin:0;border:none;display:none;box-sizing:border-box;transition-property:transform;direction:ltr;max-width:var(--f7-notification-max-width);padding:var(--f7-notification-padding);border-radius:var(--f7-notification-border-radius);box-shadow:var(--f7-notification-box-shadow);background:var(--f7-notification-bg-color);margin-top:var(--f7-safe-area-top)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .notification{background-color:rgba(var(--f7-notification-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}@media (min-width:568px){.notification{left:50%;width:var(--f7-notification-max-width);margin-left:calc(-1 * var(--f7-notification-max-width)/ 2)}}.notification-title{color:var(--f7-notification-title-color,var(--f7-theme-color));font-size:var(--f7-notification-title-font-size);text-transform:var(--f7-notification-title-text-transform);line-height:var(--f7-notification-title-line-height);font-weight:var(--f7-notification-title-font-weight);letter-spacing:var(--f7-notification-title-letter-spacing)}.notification-subtitle{color:var(--f7-notification-subtitle-color);font-size:var(--f7-notification-subtitle-font-size);text-transform:var(--f7-notification-subtitle-text-transform);line-height:var(--f7-notification-subtitle-line-height);font-weight:var(--f7-notification-subtitle-font-weight)}.notification-text{color:var(--f7-notification-text-color);font-size:var(--f7-notification-text-font-size);text-transform:var(--f7-notification-text-text-transform);line-height:var(--f7-notification-text-line-height);font-weight:var(--f7-notification-text-font-weight)}.notification-title-right-text{color:var(--f7-notification-title-right-color);font-size:var(--f7-notification-title-right-font-size)}.notification-icon{font-size:0;line-height:var(--f7-notification-icon-size)}.notification-icon,.notification-icon i{width:var(--f7-notification-icon-size)!important;height:var(--f7-notification-icon-size)!important}.notification-icon i{font-size:var(--f7-notification-icon-size)}.notification-icon img{height:var(--f7-notification-icon-size)}.notification-header{display:flex;justify-content:flex-start;align-items:center}.notification-close-button{margin-left:auto;cursor:pointer;position:relative}.notification-close-button:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';display:block;width:100%;height:100%;font-size:20px;position:absolute;left:50%;top:50%;text-align:center}.ios .notification{transition-duration:450ms;transform:translate3d(0%,-200%,0)}.ios .notification.modal-in{transform:translate3d(0%,0%,0);opacity:1}.ios .notification.modal-out{transform:translate3d(0%,-200%,0)}.ios .notification-icon{margin-right:8px}.ios .notification-header+.notification-content{margin-top:10px}.ios .notification-title-right-text{margin-right:6px;margin-left:auto}.ios .notification-title-right-text+.notification-close-button{margin-left:10px}.ios .notification-close-button{font-size:14px;width:20px;height:20px;opacity:.3;transition-duration:.3s}.ios .notification-close-button.active-state{transition-duration:0s;opacity:.1}.ios .notification-close-button:after{color:#000;content:'notification_close_ios';font-size:.65em;line-height:44px;width:44px;height:44px;margin-left:-22px;margin-top:-22px}.ios .theme-dark .notification-close-button:after,.ios.theme-dark .notification-close-button:after{color:#fff}.md .notification{transform:translate3d(0,-150%,0)}.md .notification.modal-in{transition-duration:0s;animation:notification-md-in .4s ease-out;transform:translate3d(0,0%,0)}.md .notification.modal-in.notification-transitioning{transition-duration:.2s}.md .notification.modal-out{animation:none;transition-duration:.2s;transition-timing-function:ease-in;transform:translate3d(0,-150%,0)}.md .notification-icon{margin-right:8px}.md .notification-subtitle+.notification-text{margin-top:2px}.md .notification-header+.notification-content{margin-top:6px}.md .notification-title-right-text{margin-left:4px}.md .notification-title-right-text:before{content:'';width:3px;height:3px;border-radius:50%;display:inline-block;vertical-align:middle;margin-right:4px;background:var(--f7-notification-title-right-color)}.md .notification-close-button{width:16px;height:16px;transition-duration:.3s}.md .notification-close-button:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .notification-close-button.icon-only:before,.md .notification-close-button.input-clear-button:before,.md .notification-close-button.notification-close-button:before,.md .notification-close-button.ripple-inset:before,.md .notification-close-button.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .notification-close-button.active-state:before{opacity:1;transition-duration:150ms}.md .notification-close-button:after,.md .notification-close-button:before{width:48px;height:48px;left:50%;top:50%;margin-left:-24px;margin-top:-24px}.md .notification-close-button:after{color:#737373;content:'delete_md';line-height:48px;font-size:14px}@keyframes notification-md-in{0%{transform:translate3d(0,-150%,0)}50%{transform:translate3d(0,10%,0)}100%{transform:translate3d(0,0%,0)}}.aurora .notification{transition-duration:450ms;transform:translate3d(0%,-200%,0)}.aurora .notification.modal-in{transform:translate3d(0%,0%,0);opacity:1}.aurora .notification.modal-out{transform:translate3d(0%,-200%,0)}.aurora .notification-icon{margin-right:8px}.aurora .notification-header+.notification-content{margin-top:8px}.aurora .notification-title-right-text{margin-right:0px;margin-left:auto}.aurora .notification-title-right-text+.notification-close-button{margin-left:8px}.aurora .notification-close-button{font-size:14px;width:20px;height:20px;opacity:.4;transition-duration:.3s}.aurora .notification-close-button:hover{transition-duration:0s;opacity:.5}.aurora .notification-close-button.active-state{transition-duration:0s;opacity:.6}.aurora .notification-close-button:after{color:#000;content:'notification_close_ios';font-size:.65em;line-height:44px;width:44px;height:44px;margin-left:-22px;margin-top:-22px}.aurora .theme-dark .notification-close-button:after,.aurora.theme-dark .notification-close-button:after{color:#fff}:root{--f7-autocomplete-dropdown-placeholder-color:#a9a9a9;--f7-autocomplete-dropdown-preloader-size:20px;--f7-autocomplete-dropdown-font-size:var(--f7-list-font-size);--f7-autocomplete-dropdown-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-autocomplete-dropdown-bg-color:#1c1c1d}.ios{--f7-autocomplete-dropdown-box-shadow:0px 3px 3px rgba(0, 0, 0, 0.2);--f7-autocomplete-dropdown-text-matching-font-weight:600;--f7-autocomplete-dropdown-text-color:#000;--f7-autocomplete-dropdown-text-matching-color:#000}.ios .theme-dark,.ios.theme-dark{--f7-autocomplete-dropdown-text-color:#fff;--f7-autocomplete-dropdown-text-matching-color:#fff}.md{--f7-autocomplete-dropdown-box-shadow:0 2px 2px rgba(0, 0, 0, 0.25);--f7-autocomplete-dropdown-text-matching-font-weight:400;--f7-autocomplete-dropdown-text-color:rgba(0, 0, 0, 0.54);--f7-autocomplete-dropdown-text-matching-color:#212121}.md .theme-dark,.md.theme-dark{--f7-autocomplete-dropdown-text-color:rgba(255, 255, 255, 0.54);--f7-autocomplete-dropdown-text-matching-color:rgba(255, 255, 255, 0.87)}.aurora{--f7-autocomplete-dropdown-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.2);--f7-autocomplete-dropdown-text-matching-font-weight:700;--f7-autocomplete-dropdown-text-color:#000;--f7-autocomplete-dropdown-text-matching-color:#000}.aurora .theme-dark,.aurora.theme-dark{--f7-autocomplete-dropdown-text-color:#fff;--f7-autocomplete-dropdown-text-matching-color:#fff}.autocomplete-page .autocomplete-found{display:block}.autocomplete-page .autocomplete-not-found{display:none}.autocomplete-page .autocomplete-values{display:block}.autocomplete-page .list ul:empty{display:none}.autocomplete-preloader:not(.autocomplete-preloader-visible){visibility:hidden}.autocomplete-preloader:not(.autocomplete-preloader-visible),.autocomplete-preloader:not(.autocomplete-preloader-visible) *{animation:none}.autocomplete-dropdown{background:var(--f7-autocomplete-dropdown-bg-color);box-shadow:var(--f7-autocomplete-dropdown-box-shadow);box-sizing:border-box;position:absolute;z-index:500;width:100%;left:0}.autocomplete-dropdown .autocomplete-dropdown-inner{position:relative;overflow:auto;-webkit-overflow-scrolling:touch;height:100%;z-index:1}.autocomplete-dropdown .autocomplete-preloader{display:none;position:absolute;bottom:100%;width:var(--f7-autocomplete-dropdown-preloader-size);height:var(--f7-autocomplete-dropdown-preloader-size)}.autocomplete-dropdown .autocomplete-preloader-visible{display:block}.autocomplete-dropdown .autocomplete-dropdown-placeholder{color:var(--f7-autocomplete-dropdown-placeholder-color)}.autocomplete-dropdown .list{margin:0;color:var(--f7-autocomplete-dropdown-text-color);font-size:var(--f7-autocomplete-dropdown-font-size)}.autocomplete-dropdown .list b{color:var(--f7-autocomplete-dropdown-text-matching-color);font-weight:var(--f7-autocomplete-dropdown-text-matching-font-weight)}.autocomplete-dropdown .list ul{background:0 0!important}.autocomplete-dropdown .list ul:after,.autocomplete-dropdown .list ul:before{display:none!important}.autocomplete-dropdown .autocomplete-dropdown-selected{background:var(--f7-autocomplete-dropdown-selected-bg-color,rgba(var(--f7-theme-color-rgb),.2))}.searchbar-input-wrap .autocomplete-dropdown{background-color:var(--f7-searchbar-input-bg-color,var(--f7-searchbar-bg-color));border-radius:var(--f7-searchbar-input-border-radius)}.searchbar-input-wrap .autocomplete-dropdown .autocomplete-dropdown-placeholder{color:var(--f7-searchbar-placeholder-color)}.searchbar-input-wrap .autocomplete-dropdown li:last-child{border-radius:0 0 var(--f7-searchbar-input-border-radius) var(--f7-searchbar-input-border-radius);position:relative;overflow:hidden}.searchbar-input-wrap .autocomplete-dropdown .item-content{padding-left:calc(var(--f7-searchbar-input-padding-horizontal) + var(--f7-searchbar-input-extra-padding-left,0px))}.list .item-content-dropdown-expanded .item-title.item-label{width:0;flex-shrink:10;overflow:hidden}.list .item-content-dropdown-expanded .item-title.item-label+.item-input-wrap{margin-left:0}.list .item-content-dropdown-expanded .item-input-wrap{width:100%}.ios .autocomplete-dropdown .autocomplete-preloader{right:16px;margin-bottom:12px}.ios .searchbar-input-wrap .autocomplete-dropdown{margin-top:calc(-1 * var(--f7-searchbar-input-height));top:100%;z-index:20}.ios .searchbar-input-wrap .autocomplete-dropdown .autocomplete-dropdown-inner{padding-top:var(--f7-searchbar-input-height)}.md .autocomplete-page .navbar .autocomplete-preloader{margin-right:8px}.md .autocomplete-popup .navbar .autocomplete-preloader{margin-left:8px;margin-right:16px}.md .autocomplete-dropdown .autocomplete-preloader{right:16px;margin-bottom:8px}.md .autocomplete-dropdown .autocomplete-preloader circle{stroke-width:3}.aurora .autocomplete-dropdown .autocomplete-preloader{right:16px;margin-bottom:2px}.aurora .searchbar-input-wrap .autocomplete-dropdown{margin-top:calc(-1 * var(--f7-searchbar-input-height));top:100%;z-index:20}.aurora .searchbar-input-wrap .autocomplete-dropdown .autocomplete-dropdown-inner{padding-top:var(--f7-searchbar-input-height)}:root{--f7-tooltip-bg-color:rgba(0, 0, 0, 0.87);--f7-tooltip-text-color:#fff;--f7-tooltip-border-radius:4px;--f7-tooltip-padding:8px 16px;--f7-tooltip-font-size:14px;--f7-tooltip-font-weight:500;--f7-tooltip-desktop-padding:6px 8px;--f7-tooltip-desktop-font-size:12px}.tooltip{position:absolute;z-index:20000;background:var(--f7-tooltip-bg-color);border-radius:var(--f7-tooltip-border-radius);padding:var(--f7-tooltip-padding);color:var(--f7-tooltip-text-color);font-size:var(--f7-tooltip-font-size);font-weight:var(--f7-tooltip-font-weight);box-sizing:border-box;line-height:1.2;opacity:0;transform:scale(.9);transition-duration:150ms;transition-property:opacity,transform;z-index:99000}.tooltip.tooltip-in{transform:scale(1);opacity:1}.tooltip.tooltip-out{opacity:0;transform:scale(1)}.device-desktop .tooltip{font-size:var(--f7-tooltip-desktop-font-size);padding:var(--f7-tooltip-desktop-padding)}.gauge{position:relative;text-align:center;margin-left:auto;margin-right:auto;display:inline-block}.gauge svg,.gauge-svg{max-width:100%;height:auto}.gauge svg circle,.gauge svg path,.gauge-svg circle,.gauge-svg path{transition-duration:.4s}:root{--skeleton-color:#ccc;--skeleton-icon-color:rgba(0, 0, 0, 0.25)}.skeleton-block{height:1em;background:var(--skeleton-color)!important;width:100%;display:block}@font-face{font-family:skeleton;src:url(\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAYEAA0AAAAAEUAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABMAAAABoAAAAcjvRG2U9TLzIAAAFMAAAASwAAAGBRtV1jY21hcAAAAZgAAAC9AAABamglddJjdnQgAAACWAAAAAQAAAAEABEBRGdhc3AAAAJcAAAACAAAAAj//wADZ2x5ZgAAAmQAAACXAAAJjHCzhiRoZWFkAAAC/AAAAC4AAAA2FrNd6WhoZWEAAAMsAAAAGgAAACQC8ADFaG10eAAAA0gAAAATAAAAtAMAABFsb2NhAAADXAAAAK4AAACuaNBmhG1heHAAAAQMAAAAHwAAACAAmgA5bmFtZQAABCwAAAE5AAACNKfxxURwb3N0AAAFaAAAAJkAAADOCKMIc3icY2BgYGQAghsJmjkg+rYX3zYYDQA7wwWhAAB4nGNgYWRgnMDAysDA6MOYxsDA4A6lvzJIMrQwMDAxsHIywAAjAxIISHNNYWhgUGCoZTzw/wCDHuMBBgeYGsYDQB4DUI4RAOnYC70AeJxjYGBgZoBgGQZGBhBIAfIYwXwWBg8gzcfAwcDEwMagxKDFYM0QyxDPUPv/P1BcgUGNQYfBEchP/P///+P/D/7f/3/r/83/N6DmIAFGNga4ICMTkGBCVwB0AgsrkMHGzsHJxcDNw8vHLyAoJCwiKiYuISkFViMtIysnr6CopKyiqqauoamlraOrp29gaGRsYmpmzmDBYGllbWNrZ+/g6OTs4urm7uHp5e3j6+cfEBgUHBKK7iL6AwBJLiG7AAAAABEBRAAAAAH//wACeJxjYGIQZGBgmMkYysDMwM6gt5GRQd9mEzsLw1ujjWysd2w2MTMBmQwbmUHCrCDhTexsjH9sNjGCxI0FjQXVjQWVBTvK09IYQ/+tFmQ0BprGyMDw/wAjA+MBoJkMooKKgowMDkwM/xgYRuVwyjEhybFDZBXBKv4zQFVBVA4mN4/KjcqNyo2WGaNyo3LDRW4A8xQAx51w5gB4nGNgZGBgAOItPD1s8fw2Xxm4mRhA4LYX3zYE/f8AIwPjASCXgwEsDQAA0AleAAB4nGNgZGBgPPD/AIMekAEEjGCEAlgAUGYCtwAAeJxjZGAQZAACRigeCgAADn0AFQAAAAAqACoAKgA4AEYAVABiAHAAfgCMAJoAqAC2AMQA2ADmAPQBAgEQAR4BLAE6AUgBVgFkAXIBgAGOAZwBqgG4AcYB1AHiAfAB/gIMAhoCKAI2AkQCUgJgAm4CfAKKApgCpgK0AsIC0ALeAvIDAAMOAxwDKgM4A0YDVANiA3ADfgOMA5oDqAO2A8QD0gPgA+4D/AQKBBgEJgQ0BEIEUAReBGwEegSIBJwEqgS4BMYAAHicY2BkYGAIY+BgYGIAARDJyAASc2DQAwkAAA0nANQAeJx9j7FuwjAYhM8QKF0qXqCShw4gQeqEgYoVCVViQQwZukVgJVYSgkwYUNVH6NpH6Njn69jDmKUDjn758+X8/2cAD/iBwGUNsPYs0MOn5xbu8O25jSf8eg7QE8+eO+iLN89d6h90iuCep5W7dWaBPt49tzj3y3Mbr8xw4YB9Hj13IMWL5y71AnPU2OMEC4MMORpIZt5gyD2GcjUiJyiRYktXxbJUlnSnpLNesYdxfzGv9ydrsryRg81QxipWI5mU6dZUxsplntoyrfZmS+cBBTSvaw6tsaNQ6FI3NWlNMcPR9bY86uxYpoSFMzZut3RolzJkRokZ63/LizpBhDGmrOuLsKh3zaK2mZZxqORMXkcTJ9F4Oj7nvpkwoWhpMH6O4he5JMqlQaLtwbChUlGolJK3uv0ByyBbWAAAAHicXc5ZM4IBAEbhp9RF1FhCRbmyVNYskSXG0CaEQvaf2j/LN112bt6Zc/HOETZiOJAJJmSc15ENmxARFTNpSlzCtBmz5iTNW7AoJR08LFmWlbNi1Zp1G/IKijZt2bZj156SfQcOHSk7dqLi1JlzF6ouXbl241ZNXUNTy522ew8edTx59qKrF3S9edf34dOXbz9+/f0DgycTFgAAAA==\") format(\"woff\");font-weight:100,200,300,400,500,600,700,800,900;font-style:normal,italic;font-display:block}.skeleton-text{font-family:skeleton!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.skeleton-text,.skeleton-text *{color:var(--skeleton-color)!important;letter-spacing:-.03em!important}.skeleton-image{display:inline-block}.skeleton-image svg{max-width:100%;height:auto}.skeleton-image polygon{fill:var(--skeleton-color)}.skeleton-image path{fill:var(--skeleton-icon-color)}.skeleton-avatar{display:inline-block}.skeleton-avatar svg{max-width:100%;height:auto}.skeleton-avatar rect{fill:var(--skeleton-color)}.skeleton-avatar path{fill:var(--skeleton-icon-color)}.skeleton-effect-blink,.skeleton-effect-wave{-webkit-mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-position:50% top;mask-position:50% top;animation:skeleton-effect-wave 1s infinite}.skeleton-effect-fade{animation:skeleton-effect-fade 1s infinite}.skeleton-effect-pulse{animation:skeleton-effect-pulse 1s infinite}@keyframes skeleton-effect-fade{0%{opacity:1}50%{opacity:.2}100%{opacity:1}}@keyframes skeleton-effect-wave{0%{-webkit-mask-position:50% top;mask-position:50% top}100%{-webkit-mask-position:-150% top;mask-position:-150% top}}@keyframes skeleton-effect-pulse{0%{transform:scale(1)}40%{transform:scale(1)}50%{transform:scale(.975)}100%{transform:scale(1)}}:root{--skeleton-color:#ccc;--skeleton-icon-color:rgba(0, 0, 0, 0.25)}.theme-dark{--skeleton-color:#515151;--skeleton-icon-color:rgba(255, 255, 255, 0.25)}:root{--f7-menu-text-color:#fff;--f7-menu-font-size:16px;--f7-menu-font-weight:500;--f7-menu-line-height:1.2;--f7-menu-bg-color:rgba(0, 0, 0, 0.9);--f7-menu-item-pressed-bg-color:rgba(20, 20, 20, 0.9);--f7-menu-item-padding-horizontal:12px;--f7-menu-item-spacing:6px;--f7-menu-item-height:40px;--f7-menu-item-dropdown-icon-color:rgba(255, 255, 255, 0.4);--f7-menu-item-border-radius:8px;--f7-menu-dropdown-item-height:32px;--f7-menu-dropdown-divider-color:rgba(255, 255, 255, 0.2);--f7-menu-dropdown-padding-vertical:6px}.menu{z-index:1000;position:relative;transform:translate3d(0,0,0);--f7-touch-ripple-color:var(--f7-touch-ripple-white)}.menu-inner{display:flex;justify-content:flex-start;align-items:flex-start;padding-left:var(--f7-menu-item-spacing);padding-right:var(--f7-menu-item-spacing)}.menu-inner:after{content:'';width:var(--f7-menu-item-spacing);height:100%;flex-shrink:0}.menu-item{height:var(--f7-menu-item-height);min-width:var(--f7-menu-item-height);flex-shrink:0;background:var(--f7-menu-bg-color);color:var(--f7-menu-text-color);border-radius:var(--f7-menu-item-border-radius);position:relative;box-sizing:border-box;font-size:var(--f7-menu-font-size);font-weight:var(--f7-menu-font-weight);cursor:pointer;margin-left:var(--f7-menu-item-spacing)}.menu-item:first-child{margin-left:0}.menu-item.active-state:not(.menu-item-dropdown-opened){background-color:rgba(0,0,0,.7)}.menu-item.icon-only{padding-left:0;padding-right:0}.menu-item-content{display:flex;justify-content:center;align-items:center;padding:0 var(--f7-menu-item-padding-horizontal);height:100%;box-sizing:border-box;width:100%;overflow:hidden;border-radius:var(--f7-menu-item-border-radius);position:relative}.icon-only .menu-item-content,.menu-item-content.icon-only{padding-left:0;padding-right:0}.menu-item-dropdown .menu-item-content:after{content:'';position:absolute;width:20px;height:2px;left:50%;transform:translateX(-50%);bottom:4px;background:var(--f7-menu-item-dropdown-icon-color);border-radius:4px}.menu-dropdown{opacity:0;visibility:hidden;pointer-events:none;cursor:auto;height:10px;background:var(--f7-menu-bg-color);position:relative}.menu-dropdown-content{position:absolute;top:100%;border-radius:var(--f7-menu-dropdown-border-radius,var(--f7-menu-item-border-radius));padding-top:var(--f7-menu-dropdown-padding-vertical);padding-bottom:var(--f7-menu-dropdown-padding-vertical);box-sizing:border-box;background:var(--f7-menu-bg-color);overflow:auto;-webkit-overflow-scrolling:touch;min-width:calc(100% + 24px)}.menu-dropdown-item,.menu-dropdown-link{display:flex;position:relative;justify-content:space-between;align-items:center;padding-left:var(--f7-menu-item-padding-horizontal);padding-right:var(--f7-menu-item-padding-horizontal);min-height:var(--f7-menu-dropdown-item-height);line-height:var(--f7-menu-line-height);font-size:var(--f7-menu-font-size);color:var(--f7-menu-text-color);font-weight:var(--f7-menu-font-weight);white-space:nowrap;min-width:100px;z-index:1}.menu-dropdown-item i,.menu-dropdown-item i.f7-icons,.menu-dropdown-item i.icon,.menu-dropdown-item i.material-icons,.menu-dropdown-link i,.menu-dropdown-link i.f7-icons,.menu-dropdown-link i.icon,.menu-dropdown-link i.material-icons{font-size:20px}.menu-dropdown-link:before{content:'';position:absolute;left:4px;top:2px;right:4px;bottom:2px;border-radius:4px;background:var(--f7-menu-dropdown-pressed-bg-color,var(--f7-theme-color));z-index:-1;opacity:0;pointer-events:none}.menu-dropdown-link.active-state{color:var(--f7-menu-text-color)}.menu-dropdown-link.active-state:before{opacity:1}.menu-dropdown-divider{height:1px;margin-top:2px;margin-bottom:2px;background:var(--f7-menu-dropdown-divider-color)}.menu-item-dropdown-opened{border-bottom-left-radius:0px;border-bottom-right-radius:0px}.menu-item-dropdown-opened .menu-item-content:after{opacity:0}.menu-item-dropdown-opened .menu-dropdown{opacity:1;visibility:visible;pointer-events:auto}.menu-dropdown-center:after,.menu-dropdown-left:after,.menu-item-dropdown-center .menu-dropdown:after,.menu-item-dropdown-left .menu-dropdown:after{content:'';position:absolute;left:100%;bottom:0;width:var(--f7-menu-item-border-radius);height:var(--f7-menu-item-border-radius);background-image:radial-gradient(ellipse at 100% 0%,transparent 0%,transparent 70%,var(--f7-menu-bg-color) 72%)}.menu-dropdown-center:before,.menu-dropdown-right:before,.menu-item-dropdown-center .menu-dropdown:before,.menu-item-dropdown-right .menu-dropdown:before{content:'';position:absolute;right:100%;bottom:0;width:var(--f7-menu-item-border-radius);height:var(--f7-menu-item-border-radius);background-image:radial-gradient(ellipse at 0% 0%,transparent 0%,transparent 70%,var(--f7-menu-bg-color) 72%)}.menu-dropdown-left .menu-dropdown-content,.menu-item-dropdown-left .menu-dropdown-content{left:0;border-top-left-radius:0px}.menu-dropdown-right .menu-dropdown-content,.menu-item-dropdown-right .menu-dropdown-content{right:0;border-top-right-radius:0px}.menu-dropdown-center .menu-dropdown-content,.menu-item-dropdown-center .menu-dropdown-content{left:50%;min-width:calc(100% + 24px + 24px);transform:translateX(-50%)}.aurora.device-desktop .menu-dropdown-link:not(.no-hover):not(.active-state):hover:before{background:var(--f7-menu-dropdown-hover-bg-color,rgba(255,255,255,.15));opacity:1}:root{--f7-color-picker-popover-width:350px;--f7-color-picker-slider-size:6px;--f7-color-picker-slider-knob-size:16px;--f7-color-picker-bar-size:50px;--f7-color-picker-bar-min-height:260px;--f7-color-picker-value-width:64px;--f7-color-picker-value-height:32px;--f7-color-picker-value-font-size:16px;--f7-color-picker-value-border-radius:4px;--f7-color-picker-hex-value-width:84px;--f7-color-picker-label-font-size:14px;--f7-color-picker-label-width:10px;--f7-color-picker-label-height:14px;--f7-color-picker-sb-spectrum-height:260px;--f7-color-picker-sb-spectrum-handle-size:16px;--f7-color-picker-wheel-width:330px;--f7-color-picker-palette-value-width:36px;--f7-color-picker-palette-value-height:36px;--f7-color-picker-initial-current-color-height:40px;--f7-color-picker-initial-current-color-border-radius:4px;--f7-color-picker-sheet-bg-color:#fff;--f7-color-picker-popup-bg-color:#fff;--f7-color-picker-value-bg-color:rgba(0, 0, 0, 0.05);--f7-color-picker-group-bg-color:rgba(0, 0, 0, 0.05);--f7-color-picker-group-value-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-color-picker-sheet-bg-color:#121212;--f7-color-picker-popup-bg-color:#121212;--f7-color-picker-value-bg-color:rgba(255, 255, 255, 0.1);--f7-color-picker-group-bg-color:#000;--f7-color-picker-group-value-bg-color:rgba(255, 255, 255, 0.12)}.color-picker{overflow:hidden;width:100%;display:flex;flex-direction:column}.color-picker-popover .color-picker,.color-picker-popup .color-picker,.color-picker.color-picker-inline{position:relative}.color-picker-sheet-modal{background:var(--f7-color-picker-sheet-bg-color)}.color-picker-sheet-modal:before{z-index:600}.color-picker-sheet-modal .sheet-modal-inner{margin-bottom:var(--f7-safe-area-bottom)}.color-picker-popup .page{background:var(--f7-color-picker-popup-bg-color)}.color-picker-popup .page-content{padding-bottom:var(--f7-safe-area-bottom)}.color-picker-page .color-picker,.color-picker-popover .color-picker,.color-picker-popup .color-picker{height:100%}.color-picker-page .color-picker .toolbar,.color-picker-popover .color-picker .toolbar,.color-picker-popup .color-picker .toolbar{position:absolute}.color-picker-popover{width:var(--f7-color-picker-popover-width);max-width:90vw;max-height:80vh}.color-picker-popover .color-picker{max-height:80vh}.color-picker-popover .toolbar-top{border-top-left-radius:var(--f7-popover-border-radius);border-top-right-radius:var(--f7-popover-border-radius)}.color-picker-popover .color-picker-module-palette{overflow:hidden;flex-shrink:0}.color-picker-popover .color-picker-module-palette:first-child{border-top-left-radius:var(--f7-popover-border-radius);border-top-right-radius:var(--f7-popover-border-radius)}.color-picker-popover .color-picker-module-palette:last-child{border-bottom-left-radius:var(--f7-popover-border-radius);border-bottom-right-radius:var(--f7-popover-border-radius)}.color-picker-popover .color-picker-module-palette:first-child:last-child{border-radius:var(--f7-popover-border-radius)}.color-picker-popover .toolbar~.page-content .color-picker-module-palette:first-child{border-top-left-radius:0;border-top-right-radius:0}.color-picker-page .page-content,.color-picker-popover .page-content,.color-picker-popup .page-content,.color-picker-sheet-modal .page-content{display:flex;justify-content:flex-start;align-items:stretch;flex-direction:column;overflow-x:hidden}.color-picker-module{margin-top:5px}.color-picker-module:last-child{margin-bottom:5px}.color-picker-module-hs-spectrum,.color-picker-module-sb-spectrum{margin-left:10px;margin-right:10px}.color-picker-module-hs-spectrum:first-child,.color-picker-module-sb-spectrum:first-child{margin-top:10px}.color-picker-module-hs-spectrum .color-picker-hs-spectrum,.color-picker-module-hs-spectrum .color-picker-sb-spectrum,.color-picker-module-sb-spectrum .color-picker-hs-spectrum,.color-picker-module-sb-spectrum .color-picker-sb-spectrum{border-radius:4px;height:var(--f7-color-picker-sb-spectrum-height)}.color-picker-sb-spectrum{background-color:#000;background-image:linear-gradient(to bottom,rgba(0,0,0,0) 0%,#000 100%),linear-gradient(to left,rgba(255,255,255,0) 0%,#fff 100%);position:relative}.color-picker-hs-spectrum{position:relative;background-image:linear-gradient(to right,red,#feff00,#0f0,#00feff,#00f,#ff00fe,red)}.color-picker-hs-spectrum:after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background-image:linear-gradient(to bottom,rgba(255,255,255,0),#fff)}.color-picker-hs-spectrum-handle,.color-picker-sb-spectrum-handle{width:4px;height:4px;position:absolute;left:-2px;top:-2px;z-index:1}.color-picker-hs-spectrum-handle:after,.color-picker-sb-spectrum-handle:after{background-color:inherit;content:'';position:absolute;width:var(--f7-color-picker-sb-spectrum-handle-size);height:var(--f7-color-picker-sb-spectrum-handle-size);border:1px solid #fff;border-radius:50%;box-shadow:0px 0px 2px rgba(0,0,0,.5);box-sizing:border-box;left:50%;top:50%;transform:translate(-50%,-50%);transition:150ms;transition-property:transform;transform-origin:center}.color-picker-hs-spectrum-handle.color-picker-hs-spectrum-handle-pressed:after,.color-picker-hs-spectrum-handle.color-picker-sb-spectrum-handle-pressed:after,.color-picker-sb-spectrum-handle.color-picker-hs-spectrum-handle-pressed:after,.color-picker-sb-spectrum-handle.color-picker-sb-spectrum-handle-pressed:after{transform:scale(1.5) translate(-33.333%,-33.333%)}.color-picker-module-wheel{margin-left:10px;margin-right:10px}.color-picker-wheel{position:relative;width:var(--f7-color-picker-wheel-width);max-width:100%;height:auto;font-size:0;margin-left:auto;margin-right:auto}.color-picker-wheel svg{width:100%;height:auto}.color-picker-wheel .color-picker-wheel-handle{width:16.66666667%;height:16.66666667%;position:absolute;box-sizing:border-box;border:2px solid #fff;box-shadow:0px 0px 5px rgba(0,0,0,.5);background:red;border-radius:50%;left:0;top:0}.color-picker-wheel .color-picker-sb-spectrum{width:45%;height:45%;left:50%;top:50%;transform:translate3d(-50%,-50%,0);position:absolute}.color-picker-slider-wrap{display:flex;align-items:center;margin-bottom:2px}.color-picker-slider-wrap+.color-picker-slider-wrap{margin-top:5px}.color-picker-hex-wrap{justify-content:space-between;display:flex;align-items:center}.color-picker-hex-label,.color-picker-slider-label{font-size:var(--f7-color-picker-label-font-size);width:var(--f7-color-picker-label-size);flex-shrink:0;margin-right:12px}.color-picker-hex-label{width:auto}.color-picker-bar-value,.color-picker-hex-value,.color-picker-slider-value{width:var(--f7-color-picker-value-width);height:var(--f7-color-picker-value-height);background:var(--f7-color-picker-value-bg-color);border-radius:var(--f7-color-picker-value-border-radius);text-align:center;font-size:var(--f7-color-picker-value-font-size);display:flex;justify-content:center;align-items:center;flex-shrink:0;margin-left:10px}.color-picker-bar-value input,.color-picker-hex-value input,.color-picker-slider-value input{width:100%;height:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:0;background:0 0;color:inherit;font-family:inherit;font-size:inherit;text-align:center;display:block;border-radius:4px}.color-picker-bar-value input::-webkit-inner-spin-button,.color-picker-bar-value input::-webkit-outer-spin-button,.color-picker-hex-value input::-webkit-inner-spin-button,.color-picker-hex-value input::-webkit-outer-spin-button,.color-picker-slider-value input::-webkit-inner-spin-button,.color-picker-slider-value input::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0;display:none}.color-picker-hex-value{width:var(--f7-color-picker-hex-value-width)}.color-picker-hex-value:first-child{margin-left:auto}.color-picker-slider{--f7-range-bar-active-bg-color:transparent;--f7-range-bar-size:var(--f7-color-picker-slider-size);--f7-range-bar-border-radius:var(--f7-color-picker-slider-size);--f7-range-knob-size:var(--f7-color-picker-slider-knob-size);--f7-range-knob-box-shadow:0 1px 2px rgba(0, 0, 0, 0.3)}.color-picker-slider .range-knob{transition-duration:.2s;transition-property:transform}.color-picker-slider .range-knob:after{width:30px;height:30px;margin-left:-16px;margin-top:-16px}.color-picker-slider .range-knob-active-state .range-knob{transform:scale(1.5)}.md .color-picker-slider.range-slider-min:not(.range-slider-dual) .range-knob{background:var(--f7-range-knob-color)!important;border:none}.color-picker-module-rgb-bars{display:flex;justify-content:space-around;justify-content:space-evenly;align-items:stretch;height:100%;min-height:var(--f7-color-picker-bar-min-height);padding-bottom:10px;padding-top:10px;box-sizing:border-box}.color-picker-bar-wrap{display:flex;align-items:center;flex-direction:column-reverse}.color-picker-bar{--f7-range-bar-active-bg-color:transparent;--f7-range-bar-size:var(--f7-color-picker-bar-size);--f7-range-bar-border-radius:2px;--f7-range-knob-size:6px;--f7-range-knob-box-shadow:0 0px 3px rgba(0, 0, 0, 0.3);--f7-range-knob-color:#fff}.color-picker-bar .range-knob{transition-duration:0s;transition-property:transform;border-radius:3px}.color-picker-bar .range-knob-wrap{height:6px;width:calc(var(--f7-color-picker-bar-size) - 4px);margin-left:calc(-.5 * (var(--f7-color-picker-bar-size) - 4px))}.color-picker-bar .range-knob-active-state .range-knob{transform:scale(1)}.md .color-picker-bar.range-slider-min:not(.range-slider-dual) .range-knob{background:var(--f7-range-knob-color)!important;border:none}.color-picker-bar-label{font-size:var(--f7-color-picker-label-size);margin-top:12px;line-height:1;height:var(--f7-color-picker-label-height);flex-shrink:0}.color-picker-bar-value{margin-left:0;margin-bottom:10px}.color-picker-slider-alpha{--f7-range-knob-color:#fff}.color-picker-slider-alpha .range-bar{background-image:linear-gradient(to right,rgba(0,0,0,0),#000),linear-gradient(to right,rgba(255,255,255,.2) 50%,rgba(0,0,0,.2) 50%),linear-gradient(to left,rgba(255,255,255,.2) 50%,rgba(0,0,0,.2) 50%);background-size:100% 100%,6px 3px,6px 3px;background-position:0 0,0px 3px,0 0;background-repeat:repeat-y,repeat-x,repeat-x}.color-picker-slider-hue .range-bar{background-image:linear-gradient(to right,red,#feff00,#0f0,#00feff,#00f,#ff00fe,red)}.color-picker-slider-brightness .range-bar{background-image:linear-gradient(to right,#000,#fff)}.color-picker-module-palette{margin-top:16px}.color-picker-module-palette:first-child{margin-top:0}.color-picker-module-palette:last-child{margin-bottom:0}.color-picker-module-palette:first-child:last-child{margin:0}.color-picker-palette{display:flex;flex-wrap:wrap}.color-picker-palette-row{width:100%;display:flex;flex-wrap:nowrap}.color-picker-palette-row .color-picker-palette-value{width:100%}.color-picker-palette-value{width:var(--f7-color-picker-palette-value-width);height:var(--f7-color-picker-palette-value-height);cursor:pointer}.color-picker-module-current-color,.color-picker-module-initial-current-colors{margin-left:10px;margin-right:10px;border-radius:var(--f7-color-picker-initial-current-color-border-radius);overflow:hidden;flex-shrink:0}.color-picker-current-color,.color-picker-initial-color{height:var(--f7-color-picker-initial-current-color-height)}.color-picker-initial-current-colors{display:flex}.color-picker-initial-current-colors .color-picker-current-color,.color-picker-initial-current-colors .color-picker-initial-color{width:50%}.color-picker-module-alpha-slider,.color-picker-module-brightness-slider,.color-picker-module-hex,.color-picker-module-hsb-sliders,.color-picker-module-hue-slider,.color-picker-module-rgb-sliders{margin-left:10px;margin-right:10px}.color-picker-grouped-modules .color-picker-module-alpha-slider,.color-picker-grouped-modules .color-picker-module-brightness-slider,.color-picker-grouped-modules .color-picker-module-hex,.color-picker-grouped-modules .color-picker-module-hsb-sliders,.color-picker-grouped-modules .color-picker-module-hue-slider,.color-picker-grouped-modules .color-picker-module-rgb-sliders{background:var(--f7-color-picker-group-bg-color);padding:5px;border-radius:4px;margin-top:16px;margin-left:5px;margin-right:5px}.color-picker-grouped-modules .color-picker-module-alpha-slider:last-child,.color-picker-grouped-modules .color-picker-module-brightness-slider:last-child,.color-picker-grouped-modules .color-picker-module-hex:last-child,.color-picker-grouped-modules .color-picker-module-hsb-sliders:last-child,.color-picker-grouped-modules .color-picker-module-hue-slider:last-child,.color-picker-grouped-modules .color-picker-module-rgb-sliders:last-child{margin-bottom:16px}.color-picker-grouped-modules .color-picker-hex-value,.color-picker-grouped-modules .color-picker-slider-value{background:var(--f7-color-picker-group-value-bg-color)}.color-picker-grouped-modules .color-picker-hex-label,.color-picker-grouped-modules .color-picker-slider-label{margin-left:5px}.color-picker-grouped-modules .color-picker-module-alpha-slider .range-slider:first-child,.color-picker-grouped-modules .color-picker-module-brightness-slider .range-slider:first-child,.color-picker-grouped-modules .color-picker-module-hsb-sliders .range-slider:first-child,.color-picker-grouped-modules .color-picker-module-hue-slider .range-slider:first-child,.color-picker-grouped-modules .color-picker-module-rgb-sliders .range-slider:first-child{margin-left:5px}.color-picker-grouped-modules .color-picker-module-alpha-slider .range-slider:last-child,.color-picker-grouped-modules .color-picker-module-brightness-slider .range-slider:last-child,.color-picker-grouped-modules .color-picker-module-hsb-sliders .range-slider:last-child,.color-picker-grouped-modules .color-picker-module-hue-slider .range-slider:last-child,.color-picker-grouped-modules .color-picker-module-rgb-sliders .range-slider:last-child{margin-right:5px}:root{--f7-treeview-item-height:34px;--f7-treeview-item-padding-left:16px;--f7-treeview-item-padding-right:16px;--f7-treeview-toggle-size:24px;--f7-treeview-children-offset:29px;--f7-treeview-label-font-weight:400;--f7-treeview-label-text-color:inherit;--f7-treeview-icon-size:24px;--f7-treeview-toggle-color:rgba(0, 0, 0, 0.5);--f7-treeview-toggle-hover-bg-color:rgba(0, 0, 0, 0.1);--f7-treeview-toggle-pressed-bg-color:rgba(0, 0, 0, 0.15);--f7-treeview-icon-color:rgba(0, 0, 0, 0.5);--f7-treeview-selectable-hover-bg-color:rgba(0, 0, 0, 0.1);--f7-treeview-link-hover-bg-color:rgba(0, 0, 0, 0.1);--f7-treeview-link-pressed-bg-color:rgba(0, 0, 0, 0.15)}:root .theme-dark,:root.theme-dark{--f7-treeview-toggle-color:rgba(255, 255, 255, 0.5);--f7-treeview-toggle-hover-bg-color:rgba(255, 255, 255, 0.03);--f7-treeview-toggle-pressed-bg-color:rgba(255, 255, 255, 0.1);--f7-treeview-icon-color:rgba(255, 255, 255, 0.75);--f7-treeview-selectable-hover-bg-color:rgba(255, 255, 255, 0.03);--f7-treeview-link-hover-bg-color:rgba(255, 255, 255, 0.03);--f7-treeview-link-pressed-bg-color:rgba(255, 255, 255, 0.11)}.ios{--f7-treeview-label-font-size:17px}.md{--f7-treeview-label-font-size:16px}.aurora{--f7-treeview-label-font-size:16px}.treeview-item-root{padding-left:var(--f7-treeview-item-padding-left);padding-right:var(--f7-treeview-item-padding-right);min-height:var(--f7-treeview-item-height);display:flex;align-items:center;justify-content:flex-start}.treeview-item-content{display:flex;justify-content:flex-start;align-items:center}.treeview-item-content>.f7-icons,.treeview-item-content>.material-icons,.treeview-item-content>i{font-size:var(--f7-treeview-icon-size);color:var(--f7-treeview-icon-color)}.treeview-item-content:first-child{margin-left:calc(var(--f7-treeview-toggle-size) + 5px)}.treeview-item-content>*+*{margin-left:5px}.treeview-item-label{font-size:var(--f7-treeview-label-font-size);font-weight:var(--f7-treeview-label-font-weight);color:var(--f7-treeview-label-text-color)}.treeview-toggle{width:var(--f7-treeview-toggle-size);height:var(--f7-treeview-toggle-size);cursor:pointer;border-radius:4px;background-color:rgba(0,0,0,0);transition-duration:.2s;position:relative;margin-right:5px}.treeview-toggle.active-state{background-color:var(--f7-treeview-toggle-pressed-bg-color)}.treeview-toggle:after{transition-duration:.2s;content:'';position:absolute;left:50%;top:50%;width:0;height:0;border-top:5px solid transparent;border-bottom:5px solid transparent;transform:translate(-50%,-50%);border-left:6px solid var(--f7-treeview-toggle-color)}.treeview-toggle-hidden{opacity:0;pointer-events:none;visibility:hidden}.treeview-preloader{--f7-preloader-size:var(--f7-treeview-toggle-size);margin-right:calc(-1 * var(--f7-treeview-toggle-size))}.treeview-item-children{display:none}.treeview-item-opened>.treeview-item-children{display:block}.treeview-item-opened>.treeview-item-root .treeview-toggle:after{transform:translate(-50%,-50%) rotate(90deg)}a.treeview-item-root{color:var(--f7-treeview-label-text-color)}.treeview-item-selectable.treeview-item-root,.treeview-item-selectable>.treeview-item-root{cursor:pointer;transition-duration:150ms}a.treeview-item-root{transition-duration:150ms}a.treeview-item-root.active-state{background:var(--f7-treeview-link-pressed-bg-color)}.treeview-item-toggle.treeview-item-root,.treeview-item-toggle>.treeview-item-root{cursor:pointer}.treeview-item-selected.treeview-item-root,.treeview-item-selected>.treeview-item-root{background:var(--f7-treeview-selectable-selected-bg-color,rgba(var(--f7-theme-color-rgb),.2))}.treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 1)}.treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 2)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 3)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 4)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 5)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 6)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 7)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 8)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 9)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 10)}.aurora .treeview-toggle:hover{background-color:var(--f7-treeview-toggle-hover-bg-color)}.aurora .treeview-toggle.active-state{background-color:var(--f7-treeview-toggle-pressed-bg-color)}.aurora .treeview-item-selectable.treeview-item-root:hover,.aurora .treeview-item-selectable>.treeview-item-root:hover{background:var(--f7-treeview-selectable-hover-bg-color)}.aurora a.treeview-item-root:hover{background:var(--f7-treeview-link-hover-bg-color)}.aurora a.treeview-item-root.active-state{background:var(--f7-treeview-link-pressed-bg-color)}.aurora .treeview-item-selected.treeview-item-root:hover,.aurora .treeview-item-selected>.treeview-item-root:hover{background:var(--f7-treeview-selectable-selected-bg-color,rgba(var(--f7-theme-color-rgb),.2))}:root{--f7-text-editor-font-size:inherit;--f7-text-editor-font-weight:inherit;--f7-text-editor-border-width:1px;--f7-text-editor-height:250px;--f7-text-editor-margin:16px;--f7-text-editor-padding:8px;--f7-text-editor-button-bg-color:transparent;--f7-text-editor-button-size:28px;--f7-text-editor-button-icon-size:20px;--f7-text-editor-button-margin:2px;--f7-text-editor-button-border-radius:2px;--f7-text-editor-text-color:#000;--f7-text-editor-bg-color:#fff;--f7-text-editor-border-color:rgba(0, 0, 0, 0.1);--f7-text-editor-toolbar-bg-color:#fff;--f7-text-editor-button-text-color:#333;--f7-text-editor-button-divider-color:rgba(0, 0, 0, 0.15);--f7-text-editor-placeholder-color:rgba(0, 0, 0, 0.35)}:root .theme-dark,:root.theme-dark{--f7-text-editor-bg-color:#121212;--f7-text-editor-border-color:rgba(255, 255, 255, 0.1);--f7-text-editor-toolbar-bg-color:#202020;--f7-text-editor-text-color:#fff;--f7-text-editor-placeholder-color:rgba(255, 255, 255, 0.35);--f7-text-editor-button-text-color:#fff;--f7-text-editor-button-divider-color:rgba(255, 255, 255, 0.15)}.ios{--f7-text-editor-toolbar-padding:6px;--f7-text-editor-toolbar-border-color:rgba(0, 0, 0, 0.25)}.ios .theme-dark,.ios.theme-dark{--f7-text-editor-toolbar-bg-color:#121212;--f7-text-editor-toolbar-border-color:rgba(255, 255, 255, 0.1)}.md{--f7-text-editor-toolbar-padding:8px;--f7-text-editor-toolbar-box-shadow:0px 2px 3px -1px rgba(0, 0, 0, 0.25)}.aurora{--f7-text-editor-toolbar-padding:8px;--f7-text-editor-toolbar-border-color:rgba(0, 0, 0, 0.25)}.aurora .theme-dark,.aurora.theme-dark{--f7-text-editor-toolbar-border-color:rgba(255, 255, 255, 0.1)}.text-editor{margin:var(--f7-text-editor-margin);background-color:var(--f7-text-editor-bg-color);display:block;position:relative;border:var(--f7-text-editor-border-width) solid var(--f7-text-editor-border-color);display:flex;flex-direction:column;align-items:stretch;height:var(--f7-text-editor-height);box-sizing:border-box}.text-editor.text-editor-resizable{height:auto}.text-editor-toolbar{display:flex;flex-wrap:wrap;background:var(--f7-text-editor-toolbar-bg-color);z-index:100;position:relative;position:-webkit-sticky;position:sticky;left:0;top:0;padding:var(--f7-text-editor-toolbar-padding);flex-shrink:0;box-shadow:var(--f7-text-editor-toolbar-box-shadow);box-sizing:border-box}.text-editor-toolbar:after{content:'';position:absolute;background-color:var(--f7-text-editor-toolbar-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}button.text-editor-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;padding:0;margin:0;outline:0;font-family:inherit;background:0 0;cursor:pointer;box-shadow:none;border-radius:var(--f7-text-editor-button-border-radius);position:relative;z-index:1;display:flex;width:auto;overflow:hidden;width:var(--f7-text-editor-button-size);height:var(--f7-text-editor-button-size);align-items:center;justify-content:center;margin:var(--f7-text-editor-button-margin);box-sizing:border-box;color:var(--f7-text-editor-button-text-color);background-color:var(--f7-text-editor-button-bg-color);flex-shrink:0}button.text-editor-button .f7-icons,button.text-editor-button .material-icons,button.text-editor-button i{font-size:var(--f7-text-editor-button-icon-size);font-style:normal}button.text-editor-button .f7-icons sub,button.text-editor-button .f7-icons sup,button.text-editor-button .material-icons sub,button.text-editor-button .material-icons sup,button.text-editor-button i sub,button.text-editor-button i sup{font-size:60%}.text-editor-button-divider{width:1px;background:var(--f7-text-editor-button-divider-color);margin:0 2px;flex-shrink:0}.text-editor-content{-webkit-user-modify:read-write;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:0;height:100%;-webkit-user-select:text;-moz-user-select:text;user-select:text;padding:var(--f7-text-editor-padding);overflow:auto;flex-shrink:10;box-sizing:border-box;color:var(--f7-text-editor-text-color);font-size:var(--f7-text-editor-font-size);font-weight:var(--f7-text-editor-font-weight)}.text-editor-content .text-editor-placeholder{pointer-events:none;color:var(--f7-text-editor-placeholder-color)}.text-editor-content img{max-width:100%}.text-editor-content a{pointer-events:none}.text-editor-popover{z-index:12500;width:auto;max-width:80vw}.text-editor-popover .popover-inner{display:flex;flex-wrap:wrap;padding:3px}.text-editor-keyboard-toolbar{position:absolute;z-index:6000;--f7-safe-area-bottom:0px}.text-editor-keyboard-toolbar .toolbar-inner{justify-content:flex-start!important;overflow:auto;-webkit-overflow-scrolling:touch}.text-editor-keyboard-toolbar .toolbar-inner::-webkit-scrollbar{display:none}.text-editor-keyboard-toolbar .toolbar-inner .text-editor-button-divider{height:100%}.item-input .text-editor{border:none;margin:0;background-color:var(--f7-input-bg-color,transparent)}.item-input .text-editor-content{padding-top:var(--f7-textarea-padding-vertical);padding-bottom:var(--f7-textarea-padding-vertical);padding-left:var(--f7-input-padding-left);padding-right:var(--f7-input-padding-right);color:var(--f7-input-text-color);font-size:var(--f7-input-font-size)}.item-input .text-editor-toolbar{box-shadow:none}.item-input .text-editor-toolbar:after{display:none!important}.item-input-outline .text-editor-content{border-radius:var(--f7-input-outline-border-radius);padding-left:var(--f7-input-outline-padding-horizontal);padding-right:var(--f7-input-outline-padding-horizontal)}.ios button.text-editor-button{transition:opacity .3s}.ios button.text-editor-button.active-state{opacity:.3;transition-duration:0s}.md button.text-editor-button{--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.25)}.md button.text-editor-button:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md button.text-editor-button.icon-only:before,.md button.text-editor-button.input-clear-button:before,.md button.text-editor-button.notification-close-button:before,.md button.text-editor-button.ripple-inset:before,.md button.text-editor-button.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md button.text-editor-button.active-state:before{opacity:1;transition-duration:150ms}.md .text-editor-keyboard-toolbar .toolbar-inner{padding-left:8px;padding-right:8px}.aurora button.text-editor-button{transition:opacity .3s}.aurora button.text-editor-button.active-state{opacity:.3;transition-duration:0s}.pie-chart{position:relative}.pie-chart svg{display:block;width:100%;font-size:0;height:auto;margin:0 auto}.pie-chart path{transition-duration:150ms}.pie-chart-hidden{opacity:.4}.pie-chart-tooltip{pointer-events:none;text-align:left;font-size:12px;line-height:1.4;white-space:nowrap;width:auto;max-width:none}.pie-chart-tooltip-label{display:flex;align-items:center}.pie-chart-tooltip-color{display:inline-block;width:10px;height:10px;border-radius:50%;margin-right:4px}:root{--f7-area-chart-current-line-stroke-width:2px;--f7-area-chart-current-line-stroke:rgba(0, 0, 0, 0.15);--f7-area-chart-axis-text-color:inherit;--f7-area-chart-axis-height:1px;--f7-area-chart-axis-font-size:10px;--f7-area-chart-axis-font-weight:500;--f7-area-chart-tooltip-font-size:12px;--f7-area-chart-tooltip-total-label-text-color:rgba(255, 255, 255, 0.75);--f7-area-chart-tooltip-total-font-size:16px;--f7-area-chart-tooltip-total-font-weight:bold;--f7-area-chart-tooltip-color-size:10px;--f7-area-chart-legend-font-size:14px;--f7-area-chart-legend-font-weight:500;--f7-area-chart-legend-text-color:inherit;--f7-area-chart-legend-padding:4px 8px;--f7-area-chart-legend-border-radius:4px;--f7-area-chart-legend-color-size:14px;--f7-area-chart-line-stroke-width:2px;--f7-area-chart-axis-bg-color:rgba(0, 0, 0, 0.15);--f7-area-chart-legend-disabled-text-color:rgba(0, 0, 0, 0.22)}:root .theme-dark,:root.theme-dark{--f7-area-chart-axis-bg-color:rgba(255, 255, 255, 0.15);--f7-area-chart-legend-disabled-text-color:rgba(255, 255, 255, 0.22)}.area-chart{position:relative}.area-chart svg{display:block;width:100%;font-size:0;height:auto;margin:0 auto}.area-chart path{fill:none;stroke-width:var(--f7-area-chart-line-stroke-width)}.area-chart-current-line{stroke:var(--f7-area-chart-current-line-stroke);stroke-width:var(--f7-area-chart-current-line-stroke-width)}.area-chart-axis{height:var(--f7-area-chart-axis-height);background:var(--f7-area-chart-axis-bg-color);color:var(--f7-area-chart-axis-text-color);display:flex;font-size:var(--f7-area-chart-axis-font-size);font-weight:var(--f7-area-chart-axis-font-weight);justify-content:space-between;line-height:1;margin-bottom:2em}.area-chart-axis>span{padding-top:10px;width:0;display:flex;align-items:flex-start;justify-content:center;white-space:nowrap}.area-chart-axis>span:first-child{justify-content:flex-start}.area-chart-axis>span:last-child{justify-content:flex-end}.area-chart-tooltip{pointer-events:none;text-align:left;font-size:var(--f7-area-chart-tooltip-font-size);line-height:1.4}.area-chart-tooltip-label{color:var(--f7-area-chart-tooltip-total-label-text-color)}.area-chart-tooltip-total{font-size:var(--f7-area-chart-tooltip-total-font-size);font-weight:var(--f7-area-chart-tooltip-total-font-weight)}.area-chart-tooltip-list{list-style:none;margin:0;padding:0}.area-chart-tooltip-list li{white-space:nowrap}.area-chart-tooltip-list span{display:inline-block;width:var(--f7-area-chart-tooltip-color-size);height:var(--f7-area-chart-tooltip-color-size);border-radius:50%;margin-right:4px}.area-chart-axis~.area-chart-legend{margin-top:2em}.area-chart-legend{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:var(--f7-area-chart-legend-font-size);width:100%;margin-top:1em}.area-chart-legend-button{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;background-color:transparent;border-radius:0;border:none;outline:0!important;cursor:pointer;font-family:inherit;font-size:inherit;box-shadow:none!important}.area-chart-legend-item{position:relative;color:var(--f7-area-chart-legend-text-color);width:auto;display:flex;align-items:center;font-weight:var(--f7-area-chart-legend-font-weight);transition-duration:.2s;padding:var(--f7-area-chart-legend-padding);border-radius:var(--f7-area-chart-legend-border-radius);overflow:hidden}.area-chart-legend-item span{width:var(--f7-area-chart-legend-color-size);height:var(--f7-area-chart-legend-color-size);margin-right:4px;border-radius:50%;transition-duration:.2s}.area-chart-legend-item-hidden{color:var(--f7-area-chart-legend-disabled-text-color)}.area-chart-legend-item-hidden span{background-color:var(--f7-area-chart-legend-disabled-text-color)!important}:root{--f7-elevation-0:0px 0px 0px 0px rgba(0, 0, 0, 0);--f7-elevation-1:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12);--f7-elevation-2:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12);--f7-elevation-3:0px 3px 3px -2px rgba(0, 0, 0, 0.2),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 1px 8px 0px rgba(0, 0, 0, 0.12);--f7-elevation-4:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12);--f7-elevation-5:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 5px 8px 0px rgba(0, 0, 0, 0.14),0px 1px 14px 0px rgba(0, 0, 0, 0.12);--f7-elevation-6:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12);--f7-elevation-7:0px 4px 5px -2px rgba(0, 0, 0, 0.2),0px 7px 10px 1px rgba(0, 0, 0, 0.14),0px 2px 16px 1px rgba(0, 0, 0, 0.12);--f7-elevation-8:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12);--f7-elevation-9:0px 5px 6px -3px rgba(0, 0, 0, 0.2),0px 9px 12px 1px rgba(0, 0, 0, 0.14),0px 3px 16px 2px rgba(0, 0, 0, 0.12);--f7-elevation-10:0px 6px 6px -3px rgba(0, 0, 0, 0.2),0px 10px 14px 1px rgba(0, 0, 0, 0.14),0px 4px 18px 3px rgba(0, 0, 0, 0.12);--f7-elevation-11:0px 6px 7px -4px rgba(0, 0, 0, 0.2),0px 11px 15px 1px rgba(0, 0, 0, 0.14),0px 4px 20px 3px rgba(0, 0, 0, 0.12);--f7-elevation-12:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 12px 17px 2px rgba(0, 0, 0, 0.14),0px 5px 22px 4px rgba(0, 0, 0, 0.12);--f7-elevation-13:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px 4px rgba(0, 0, 0, 0.12);--f7-elevation-14:0px 7px 9px -4px rgba(0, 0, 0, 0.2),0px 14px 21px 2px rgba(0, 0, 0, 0.14),0px 5px 26px 4px rgba(0, 0, 0, 0.12);--f7-elevation-15:0px 8px 9px -5px rgba(0, 0, 0, 0.2),0px 15px 22px 2px rgba(0, 0, 0, 0.14),0px 6px 28px 5px rgba(0, 0, 0, 0.12);--f7-elevation-16:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12);--f7-elevation-17:0px 8px 11px -5px rgba(0, 0, 0, 0.2),0px 17px 26px 2px rgba(0, 0, 0, 0.14),0px 6px 32px 5px rgba(0, 0, 0, 0.12);--f7-elevation-18:0px 9px 11px -5px rgba(0, 0, 0, 0.2),0px 18px 28px 2px rgba(0, 0, 0, 0.14),0px 7px 34px 6px rgba(0, 0, 0, 0.12);--f7-elevation-19:0px 9px 12px -6px rgba(0, 0, 0, 0.2),0px 19px 29px 2px rgba(0, 0, 0, 0.14),0px 7px 36px 6px rgba(0, 0, 0, 0.12);--f7-elevation-20:0px 10px 13px -6px rgba(0, 0, 0, 0.2),0px 20px 31px 3px rgba(0, 0, 0, 0.14),0px 8px 38px 7px rgba(0, 0, 0, 0.12);--f7-elevation-21:0px 10px 13px -6px rgba(0, 0, 0, 0.2),0px 21px 33px 3px rgba(0, 0, 0, 0.14),0px 8px 40px 7px rgba(0, 0, 0, 0.12);--f7-elevation-22:0px 10px 14px -6px rgba(0, 0, 0, 0.2),0px 22px 35px 3px rgba(0, 0, 0, 0.14),0px 8px 42px 7px rgba(0, 0, 0, 0.12);--f7-elevation-23:0px 11px 14px -7px rgba(0, 0, 0, 0.2),0px 23px 36px 3px rgba(0, 0, 0, 0.14),0px 9px 44px 8px rgba(0, 0, 0, 0.12);--f7-elevation-24:0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0, 0, 0, 0.12)}.elevation-0{box-shadow:var(--f7-elevation-0)!important}.elevation-1{box-shadow:var(--f7-elevation-1)!important}.elevation-2{box-shadow:var(--f7-elevation-2)!important}.elevation-3{box-shadow:var(--f7-elevation-3)!important}.elevation-4{box-shadow:var(--f7-elevation-4)!important}.elevation-5{box-shadow:var(--f7-elevation-5)!important}.elevation-6{box-shadow:var(--f7-elevation-6)!important}.elevation-7{box-shadow:var(--f7-elevation-7)!important}.elevation-8{box-shadow:var(--f7-elevation-8)!important}.elevation-9{box-shadow:var(--f7-elevation-9)!important}.elevation-10{box-shadow:var(--f7-elevation-10)!important}.elevation-11{box-shadow:var(--f7-elevation-11)!important}.elevation-12{box-shadow:var(--f7-elevation-12)!important}.elevation-13{box-shadow:var(--f7-elevation-13)!important}.elevation-14{box-shadow:var(--f7-elevation-14)!important}.elevation-15{box-shadow:var(--f7-elevation-15)!important}.elevation-16{box-shadow:var(--f7-elevation-16)!important}.elevation-17{box-shadow:var(--f7-elevation-17)!important}.elevation-18{box-shadow:var(--f7-elevation-18)!important}.elevation-19{box-shadow:var(--f7-elevation-19)!important}.elevation-20{box-shadow:var(--f7-elevation-20)!important}.elevation-21{box-shadow:var(--f7-elevation-21)!important}.elevation-22{box-shadow:var(--f7-elevation-22)!important}.elevation-23{box-shadow:var(--f7-elevation-23)!important}.elevation-24{box-shadow:var(--f7-elevation-24)!important}.device-desktop .elevation-hover-0:hover{box-shadow:var(--f7-elevation-0)!important}.device-desktop .elevation-hover-1:hover{box-shadow:var(--f7-elevation-1)!important}.device-desktop .elevation-hover-2:hover{box-shadow:var(--f7-elevation-2)!important}.device-desktop .elevation-hover-3:hover{box-shadow:var(--f7-elevation-3)!important}.device-desktop .elevation-hover-4:hover{box-shadow:var(--f7-elevation-4)!important}.device-desktop .elevation-hover-5:hover{box-shadow:var(--f7-elevation-5)!important}.device-desktop .elevation-hover-6:hover{box-shadow:var(--f7-elevation-6)!important}.device-desktop .elevation-hover-7:hover{box-shadow:var(--f7-elevation-7)!important}.device-desktop .elevation-hover-8:hover{box-shadow:var(--f7-elevation-8)!important}.device-desktop .elevation-hover-9:hover{box-shadow:var(--f7-elevation-9)!important}.device-desktop .elevation-hover-10:hover{box-shadow:var(--f7-elevation-10)!important}.device-desktop .elevation-hover-11:hover{box-shadow:var(--f7-elevation-11)!important}.device-desktop .elevation-hover-12:hover{box-shadow:var(--f7-elevation-12)!important}.device-desktop .elevation-hover-13:hover{box-shadow:var(--f7-elevation-13)!important}.device-desktop .elevation-hover-14:hover{box-shadow:var(--f7-elevation-14)!important}.device-desktop .elevation-hover-15:hover{box-shadow:var(--f7-elevation-15)!important}.device-desktop .elevation-hover-16:hover{box-shadow:var(--f7-elevation-16)!important}.device-desktop .elevation-hover-17:hover{box-shadow:var(--f7-elevation-17)!important}.device-desktop .elevation-hover-18:hover{box-shadow:var(--f7-elevation-18)!important}.device-desktop .elevation-hover-19:hover{box-shadow:var(--f7-elevation-19)!important}.device-desktop .elevation-hover-20:hover{box-shadow:var(--f7-elevation-20)!important}.device-desktop .elevation-hover-21:hover{box-shadow:var(--f7-elevation-21)!important}.device-desktop .elevation-hover-22:hover{box-shadow:var(--f7-elevation-22)!important}.device-desktop .elevation-hover-23:hover{box-shadow:var(--f7-elevation-23)!important}.device-desktop .elevation-hover-24:hover{box-shadow:var(--f7-elevation-24)!important}.active-state.elevation-pressed-0,.device-desktop .active-state.elevation-pressed-0{box-shadow:var(--f7-elevation-0)!important}.active-state.elevation-pressed-1,.device-desktop .active-state.elevation-pressed-1{box-shadow:var(--f7-elevation-1)!important}.active-state.elevation-pressed-2,.device-desktop .active-state.elevation-pressed-2{box-shadow:var(--f7-elevation-2)!important}.active-state.elevation-pressed-3,.device-desktop .active-state.elevation-pressed-3{box-shadow:var(--f7-elevation-3)!important}.active-state.elevation-pressed-4,.device-desktop .active-state.elevation-pressed-4{box-shadow:var(--f7-elevation-4)!important}.active-state.elevation-pressed-5,.device-desktop .active-state.elevation-pressed-5{box-shadow:var(--f7-elevation-5)!important}.active-state.elevation-pressed-6,.device-desktop .active-state.elevation-pressed-6{box-shadow:var(--f7-elevation-6)!important}.active-state.elevation-pressed-7,.device-desktop .active-state.elevation-pressed-7{box-shadow:var(--f7-elevation-7)!important}.active-state.elevation-pressed-8,.device-desktop .active-state.elevation-pressed-8{box-shadow:var(--f7-elevation-8)!important}.active-state.elevation-pressed-9,.device-desktop .active-state.elevation-pressed-9{box-shadow:var(--f7-elevation-9)!important}.active-state.elevation-pressed-10,.device-desktop .active-state.elevation-pressed-10{box-shadow:var(--f7-elevation-10)!important}.active-state.elevation-pressed-11,.device-desktop .active-state.elevation-pressed-11{box-shadow:var(--f7-elevation-11)!important}.active-state.elevation-pressed-12,.device-desktop .active-state.elevation-pressed-12{box-shadow:var(--f7-elevation-12)!important}.active-state.elevation-pressed-13,.device-desktop .active-state.elevation-pressed-13{box-shadow:var(--f7-elevation-13)!important}.active-state.elevation-pressed-14,.device-desktop .active-state.elevation-pressed-14{box-shadow:var(--f7-elevation-14)!important}.active-state.elevation-pressed-15,.device-desktop .active-state.elevation-pressed-15{box-shadow:var(--f7-elevation-15)!important}.active-state.elevation-pressed-16,.device-desktop .active-state.elevation-pressed-16{box-shadow:var(--f7-elevation-16)!important}.active-state.elevation-pressed-17,.device-desktop .active-state.elevation-pressed-17{box-shadow:var(--f7-elevation-17)!important}.active-state.elevation-pressed-18,.device-desktop .active-state.elevation-pressed-18{box-shadow:var(--f7-elevation-18)!important}.active-state.elevation-pressed-19,.device-desktop .active-state.elevation-pressed-19{box-shadow:var(--f7-elevation-19)!important}.active-state.elevation-pressed-20,.device-desktop .active-state.elevation-pressed-20{box-shadow:var(--f7-elevation-20)!important}.active-state.elevation-pressed-21,.device-desktop .active-state.elevation-pressed-21{box-shadow:var(--f7-elevation-21)!important}.active-state.elevation-pressed-22,.device-desktop .active-state.elevation-pressed-22{box-shadow:var(--f7-elevation-22)!important}.active-state.elevation-pressed-23,.device-desktop .active-state.elevation-pressed-23{box-shadow:var(--f7-elevation-23)!important}.active-state.elevation-pressed-24,.device-desktop .active-state.elevation-pressed-24{box-shadow:var(--f7-elevation-24)!important}.elevation-transition-100{transition-duration:.1s;transition-property:box-shadow}.elevation-transition,.elevation-transition-200{transition-duration:.2s;transition-property:box-shadow}.elevation-transition-300{transition-duration:.3s;transition-property:box-shadow}.elevation-transition-400{transition-duration:.4s;transition-property:box-shadow}.elevation-transition-500{transition-duration:.5s;transition-property:box-shadow}:root{--f7-typography-padding:16px;--f7-typography-margin:16px}.display-flex{display:flex!important}.display-block{display:block!important}.display-inline-flex{display:inline-flex!important}.display-inline-block{display:inline-block!important}.display-inline{display:inline!important}.display-none{display:none!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-shrink-2{flex-shrink:2!important}.flex-shrink-3{flex-shrink:3!important}.flex-shrink-4{flex-shrink:4!important}.flex-shrink-5{flex-shrink:5!important}.flex-shrink-6{flex-shrink:6!important}.flex-shrink-7{flex-shrink:7!important}.flex-shrink-8{flex-shrink:8!important}.flex-shrink-9{flex-shrink:9!important}.flex-shrink-10{flex-shrink:10!important}.flex-direction-row{flex-direction:row!important}.flex-direction-row-reverse{flex-direction:row-reverse!important}.flex-direction-column{flex-direction:column!important}.flex-direction-column-reverse{flex-direction:column-reverse!important}.justify-content-flex-start{justify-content:flex-start!important}.justify-content-center{justify-content:center!important}.justify-content-flex-end{justify-content:flex-end!important}.justify-content-space-between{justify-content:space-between!important}.justify-content-space-around{justify-content:space-around!important}.justify-content-space-evenly{justify-content:space-evenly!important}.justify-content-stretch{justify-content:stretch!important}.justify-content-start{justify-content:start!important}.justify-content-end{justify-content:end!important}.justify-content-left{justify-content:left!important}.justify-content-right{justify-content:right!important}.align-content-flex-start{align-content:flex-start!important}.align-content-flex-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-space-between{align-content:space-between!important}.align-content-space-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-items-baseline{align-items:baseline!important}.align-items-flex-start{align-items:flex-start!important}.align-items-flex-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-stretch{align-items:stretch!important}.align-self-flex-start{align-self:flex-start!important}.align-self-flex-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.text-align-left{text-align:left!important}.text-align-center{text-align:center!important}.text-align-right{text-align:right!important}.text-align-justify{text-align:justify!important}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-top{vertical-align:top!important}.no-padding{padding:0!important}.no-padding-left{padding-left:0!important}.no-padding-right{padding-right:0!important}.no-padding-horizontal{padding-left:0!important;padding-right:0!important}.no-padding-top{padding-top:0!important}.no-padding-bottom{padding-bottom:0!important}.no-padding-vertical{padding-top:0!important;padding-bottom:0!important}.no-margin{margin:0!important}.no-margin-left{margin-left:0!important}.no-margin-right{margin-right:0!important}.no-margin-horizontal{margin-left:0!important;margin-right:0!important}.no-margin-top{margin-top:0!important}.no-margin-bottom{margin-bottom:0!important}.no-margin-vertical{margin-top:0!important;margin-bottom:0!important}.width-auto{width:auto!important}.width-100{width:100%!important}.padding{padding:var(--f7-typography-padding)!important}.padding-half{padding:calc(var(--f7-typography-padding)/ 2)!important}.padding-top{padding-top:var(--f7-typography-padding)!important}.padding-top-half{padding-top:calc(var(--f7-typography-padding)/ 2)!important}.padding-bottom{padding-bottom:var(--f7-typography-padding)!important}.padding-bottom-half{padding-bottom:calc(var(--f7-typography-padding)/ 2)!important}.padding-left{padding-left:var(--f7-typography-padding)!important}.padding-left-half{padding-left:calc(var(--f7-typography-padding)/ 2)!important}.padding-right{padding-right:var(--f7-typography-padding)!important}.padding-right-half{padding-right:calc(var(--f7-typography-padding)/ 2)!important}.padding-vertical{padding-top:var(--f7-typography-padding)!important;padding-bottom:var(--f7-typography-padding)!important}.padding-vertical-half{padding-top:calc(var(--f7-typography-padding)/ 2)!important;padding-bottom:calc(var(--f7-typography-padding)/ 2)!important}.padding-horizontal{padding-left:var(--f7-typography-padding)!important;padding-right:var(--f7-typography-padding)!important}.padding-horizontal-half{padding-left:calc(var(--f7-typography-padding)/ 2)!important;padding-right:calc(var(--f7-typography-padding)/ 2)!important}.margin{margin:var(--f7-typography-margin)!important}.margin-half{margin:calc(var(--f7-typography-margin)/ 2)!important}.margin-top{margin-top:var(--f7-typography-margin)!important}.margin-top-half{margin-top:calc(var(--f7-typography-margin)/ 2)!important}.margin-bottom{margin-bottom:var(--f7-typography-margin)!important}.margin-bottom-half{margin-bottom:calc(var(--f7-typography-margin)/ 2)!important}.margin-left{margin-left:var(--f7-typography-margin)!important}.margin-left-half{margin-left:calc(var(--f7-typography-margin)/ 2)!important}.margin-right{margin-right:var(--f7-typography-margin)!important}.margin-right-half{margin-right:calc(var(--f7-typography-margin)/ 2)!important}.margin-vertical{margin-top:var(--f7-typography-margin)!important;margin-bottom:var(--f7-typography-margin)!important}.margin-vertical-half{margin-top:calc(var(--f7-typography-margin)/ 2)!important;margin-bottom:calc(var(--f7-typography-margin)/ 2)!important}.margin-horizontal{margin-left:var(--f7-typography-margin)!important;margin-right:var(--f7-typography-margin)!important}.margin-horizontal-half{margin-left:calc(var(--f7-typography-margin)/ 2)!important;margin-right:calc(var(--f7-typography-margin)/ 2)!important}[class*=text-color-]{color:var(--f7-theme-color-text-color)!important}[class*=bg-color-]{background-color:var(--f7-theme-color-bg-color)!important}[class*=border-color-]{border-color:var(--f7-theme-color-border-color)!important}","/*\n Note: The content of this file must be manually minified and added to\n f7.welcomescreen.js and assign the result to the variable \"css\".\n*/\n.welcomescreen-container {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: #fff;\n z-index: 10500;\n color: #666;\n font-size: 16px;\n}\n\n.welcomescreen-closebtn{\n top: 5px;\n right: 5px;\n position: absolute;\n text-align: right;\n z-index: 9998;\n font-size: 14px;\n padding: 15px;\n cursor: pointer;\n}\n\n.welcomescreen-swiper {\n position:relative;\n width: 100%;\n height: 100%;\n}\n\n.welcomescreen-title{\n width: 100%;\n text-align: center;\n margin-top: 20%;\n}\n\n.welcomescreen-picture{\n width: 100%;\n text-align: center;\n margin-top: 20%;\n}\n\n.welcomescreen-text {\n position:absolute;\n bottom: 65px;\n left: 0;\n right: 0;\n padding-left: 20px;\n padding-right: 20px;\n text-align:center;\n}\n.welcomescreen-content {\n padding: 15px;\n}\n\n.welcomescreen-container .swiper-pagination-bullet{\n background: rgba(255, 255, 255, 0.9) !important;\n}\n\n.welcomescreen-container .swiper-pagination-bullet-active{\n background: #fff;\n}\n\n.swiper-container-horizontal>.swiper-pagination{\n bottom: 20px;\n}\n\nhtml.with-statusbar-overlay .welcomescreen-container{\n top: 20px;\n}\n\n/*\n Parallax Background Effect\n*/\n.parallax-bg {\n position: absolute;\n left: 0;\n top: 0;\n width: 130%;\n height: 100%;\n -webkit-background-size: cover;\n background-size: cover;\n background-position: center;\n}\n\n.hide-title {\n opacity: 0;\n}","@import '~framework7/framework7-bundle.min.css';\n@import '~f7-welcomescreen/dist/main.css';\n\n#app {\n height: 100%;\n}\n\n.page-content {\n padding: 64px 20px 20px 20px;\n}\n\n.tutorialicon {\n font-size: 250px;\n line-height: 170px;\n}\n\n.tutorial-close-btn {\n background: #fff;\n padding: 10px;\n border-radius: 10px;\n color: #0da6ec;\n}\n\n.welcomescreen-container .welcomescreen-text a {\n color: #fff;\n text-decoration: underline;\n}\n\n.tutorial-close-btn {\n background: #fff;\n padding: 10px;\n border-radius: 10px;\n color: #0da6ec !important;\n text-decoration: none !important;\n}\n"],"names":[],"sourceRoot":""}
\ No newline at end of file
+{"version":3,"file":"main.css","mappings":"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","sources":["webpack://f7-welcomescreen-demo/./node_modules/framework7/framework7-bundle.min.css","webpack://f7-welcomescreen-demo/./node_modules/f7-welcomescreen/dist/main.css","webpack://f7-welcomescreen-demo/./src/main.css"],"sourcesContent":["/**\n * Framework7 6.2.0\n * Full featured mobile HTML framework for building iOS & Android apps\n * https://framework7.io/\n *\n * Copyright 2014-2021 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: August 2, 2021\n */\n\n:root{--f7-theme-color:#007aff;--f7-theme-color-rgb:0,122,255;--f7-theme-color-shade:#0066d6;--f7-theme-color-tint:#298fff;--f7-safe-area-left:0px;--f7-safe-area-right:0px;--f7-safe-area-top:0px;--f7-safe-area-bottom:0px;--f7-safe-area-outer-left:0px;--f7-safe-area-outer-right:0px;--f7-device-pixel-ratio:1}@supports (left:env(safe-area-inset-left)){:root{--f7-safe-area-top:env(safe-area-inset-top);--f7-safe-area-bottom:env(safe-area-inset-bottom)}:root .ios-edges,:root .ios-left-edge,:root .panel-left,:root .popup,:root .safe-area-left,:root .safe-areas,:root .sheet-modal{--f7-safe-area-left:env(safe-area-inset-left);--f7-safe-area-outer-left:env(safe-area-inset-left)}:root .ios-edges,:root .ios-right-edge,:root .panel-right,:root .popup,:root .safe-area-right,:root .safe-areas,:root .sheet-modal{--f7-safe-area-right:env(safe-area-inset-right);--f7-safe-area-outer-right:env(safe-area-inset-right)}:root .no-ios-edges,:root .no-ios-left-edge,:root .no-safe-area-left,:root .no-safe-areas{--f7-safe-area-left:0px;--f7-safe-area-outer-left:0px}:root .no-ios-edges,:root .no-ios-right-edge,:root .no-safe-area-right,:root .no-safe-areas{--f7-safe-area-right:0px;--f7-safe-area-outer-right:0px}}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx){:root{--f7-device-pixel-ratio:2}}@media (-webkit-min-device-pixel-ratio:3),(min-resolution:3dppx){:root{--f7-device-pixel-ratio:3}}:root{--f7-font-size:14px;--f7-bars-bg-image:none;--f7-bars-translucent-opacity:0.8;--f7-bars-translucent-blur:20px;--f7-bars-shadow-bottom-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);--f7-bars-shadow-top-image:linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);--f7-bars-text-color:#000;--f7-bars-bg-color:#f7f7f8;--f7-bars-bg-color-rgb:247,247,248}:root .theme-dark,:root.theme-dark{--f7-bars-text-color:#fff}.ios{--f7-font-family:-apple-system,SF Pro Text,SF UI Text,system-ui,Helvetica Neue,Helvetica,Arial,sans-serif;--f7-line-height:1.4;--f7-text-color:#000;--f7-bars-border-color:rgba(0, 0, 0, 0.25)}.ios .theme-dark,.ios.theme-dark{--f7-text-color:#fff;--f7-bars-bg-color:#121212;--f7-bars-bg-color-rgb:22,22,22;--f7-bars-border-color:rgba(255, 255, 255, 0.16)}.md{--f7-font-family:Roboto,system-ui,Noto,Helvetica,Arial,sans-serif;--f7-line-height:1.5;--f7-bars-border-color:transparent;--f7-text-color:#212121}.md .theme-dark,.md.theme-dark{--f7-text-color:rgba(255, 255, 255, 0.87);--f7-bars-bg-color:#202020}.aurora{--f7-font-family:-apple-system,system-ui,Helvetica,Arial,sans-serif;--f7-line-height:1.5;--f7-text-color:#000;--f7-bars-border-color:rgba(0, 0, 0, 0.2)}.aurora .theme-dark,.aurora.theme-dark{--f7-text-color:#fff;--f7-bars-bg-color:#202020;--f7-bars-border-color:rgba(255, 255, 255, 0.1)}.text-color-primary{--f7-theme-color-text-color:var(--f7-theme-color)}.bg-color-primary{--f7-theme-color-bg-color:var(--f7-theme-color)}.border-color-primary{--f7-theme-color-border-color:var(--f7-theme-color)}.ripple-color-primary{--f7-theme-color-ripple-color:rgba(var(--f7-theme-color-rgb), 0.3)}:root{--f7-color-red:#ff3b30;--f7-color-red-rgb:255,59,48;--f7-color-red-shade:#ff1407;--f7-color-red-tint:#ff6259;--f7-color-green:#4cd964;--f7-color-green-rgb:76,217,100;--f7-color-green-shade:#2cd048;--f7-color-green-tint:#6ee081;--f7-color-blue:#2196f3;--f7-color-blue-rgb:33,150,243;--f7-color-blue-shade:#0c82df;--f7-color-blue-tint:#48a8f5;--f7-color-pink:#ff2d55;--f7-color-pink-rgb:255,45,85;--f7-color-pink-shade:#ff0434;--f7-color-pink-tint:#ff5676;--f7-color-yellow:#ffcc00;--f7-color-yellow-rgb:255,204,0;--f7-color-yellow-shade:#d6ab00;--f7-color-yellow-tint:#ffd429;--f7-color-orange:#ff9500;--f7-color-orange-rgb:255,149,0;--f7-color-orange-shade:#d67d00;--f7-color-orange-tint:#ffa629;--f7-color-purple:#9c27b0;--f7-color-purple-rgb:156,39,176;--f7-color-purple-shade:#7e208f;--f7-color-purple-tint:#b92fd1;--f7-color-deeppurple:#673ab7;--f7-color-deeppurple-rgb:103,58,183;--f7-color-deeppurple-shade:#563098;--f7-color-deeppurple-tint:#7c52c8;--f7-color-lightblue:#5ac8fa;--f7-color-lightblue-rgb:90,200,250;--f7-color-lightblue-shade:#32bbf9;--f7-color-lightblue-tint:#82d5fb;--f7-color-teal:#009688;--f7-color-teal-rgb:0,150,136;--f7-color-teal-shade:#006d63;--f7-color-teal-tint:#00bfad;--f7-color-lime:#cddc39;--f7-color-lime-rgb:205,220,57;--f7-color-lime-shade:#bac923;--f7-color-lime-tint:#d6e25c;--f7-color-deeporange:#ff6b22;--f7-color-deeporange-rgb:255,107,34;--f7-color-deeporange-shade:#f85200;--f7-color-deeporange-tint:#ff864b;--f7-color-gray:#8e8e93;--f7-color-gray-rgb:142,142,147;--f7-color-gray-shade:#79797f;--f7-color-gray-tint:#a3a3a7;--f7-color-white:#ffffff;--f7-color-white-rgb:255,255,255;--f7-color-white-shade:#ebebeb;--f7-color-white-tint:#ffffff;--f7-color-black:#000000;--f7-color-black-rgb:0,0,0;--f7-color-black-shade:#000000;--f7-color-black-tint:#141414}.color-theme-red{--f7-theme-color:#ff3b30;--f7-theme-color-rgb:255,59,48;--f7-theme-color-shade:#ff1407;--f7-theme-color-tint:#ff6259}.color-theme-green{--f7-theme-color:#4cd964;--f7-theme-color-rgb:76,217,100;--f7-theme-color-shade:#2cd048;--f7-theme-color-tint:#6ee081}.color-theme-blue{--f7-theme-color:#2196f3;--f7-theme-color-rgb:33,150,243;--f7-theme-color-shade:#0c82df;--f7-theme-color-tint:#48a8f5}.color-theme-pink{--f7-theme-color:#ff2d55;--f7-theme-color-rgb:255,45,85;--f7-theme-color-shade:#ff0434;--f7-theme-color-tint:#ff5676}.color-theme-yellow{--f7-theme-color:#ffcc00;--f7-theme-color-rgb:255,204,0;--f7-theme-color-shade:#d6ab00;--f7-theme-color-tint:#ffd429}.color-theme-orange{--f7-theme-color:#ff9500;--f7-theme-color-rgb:255,149,0;--f7-theme-color-shade:#d67d00;--f7-theme-color-tint:#ffa629}.color-theme-purple{--f7-theme-color:#9c27b0;--f7-theme-color-rgb:156,39,176;--f7-theme-color-shade:#7e208f;--f7-theme-color-tint:#b92fd1}.color-theme-deeppurple{--f7-theme-color:#673ab7;--f7-theme-color-rgb:103,58,183;--f7-theme-color-shade:#563098;--f7-theme-color-tint:#7c52c8}.color-theme-lightblue{--f7-theme-color:#5ac8fa;--f7-theme-color-rgb:90,200,250;--f7-theme-color-shade:#32bbf9;--f7-theme-color-tint:#82d5fb}.color-theme-teal{--f7-theme-color:#009688;--f7-theme-color-rgb:0,150,136;--f7-theme-color-shade:#006d63;--f7-theme-color-tint:#00bfad}.color-theme-lime{--f7-theme-color:#cddc39;--f7-theme-color-rgb:205,220,57;--f7-theme-color-shade:#bac923;--f7-theme-color-tint:#d6e25c}.color-theme-deeporange{--f7-theme-color:#ff6b22;--f7-theme-color-rgb:255,107,34;--f7-theme-color-shade:#f85200;--f7-theme-color-tint:#ff864b}.color-theme-gray{--f7-theme-color:#8e8e93;--f7-theme-color-rgb:142,142,147;--f7-theme-color-shade:#79797f;--f7-theme-color-tint:#a3a3a7}.color-theme-white{--f7-theme-color:#ffffff;--f7-theme-color-rgb:255,255,255;--f7-theme-color-shade:#ebebeb;--f7-theme-color-tint:#ffffff}.color-theme-black{--f7-theme-color:#000000;--f7-theme-color-rgb:0,0,0;--f7-theme-color-shade:#000000;--f7-theme-color-tint:#141414}.color-red{--f7-theme-color:#ff3b30;--f7-theme-color-rgb:255,59,48;--f7-theme-color-shade:#ff1407;--f7-theme-color-tint:#ff6259}.text-color-red{--f7-theme-color-text-color:#ff3b30}.bg-color-red{--f7-theme-color-bg-color:#ff3b30}.border-color-red{--f7-theme-color-border-color:#ff3b30}.ripple-color-red,.ripple-red{--f7-theme-color-ripple-color:rgba(255, 59, 48, 0.3)}.color-green{--f7-theme-color:#4cd964;--f7-theme-color-rgb:76,217,100;--f7-theme-color-shade:#2cd048;--f7-theme-color-tint:#6ee081}.text-color-green{--f7-theme-color-text-color:#4cd964}.bg-color-green{--f7-theme-color-bg-color:#4cd964}.border-color-green{--f7-theme-color-border-color:#4cd964}.ripple-color-green,.ripple-green{--f7-theme-color-ripple-color:rgba(76, 217, 100, 0.3)}.color-blue{--f7-theme-color:#2196f3;--f7-theme-color-rgb:33,150,243;--f7-theme-color-shade:#0c82df;--f7-theme-color-tint:#48a8f5}.text-color-blue{--f7-theme-color-text-color:#2196f3}.bg-color-blue{--f7-theme-color-bg-color:#2196f3}.border-color-blue{--f7-theme-color-border-color:#2196f3}.ripple-blue,.ripple-color-blue{--f7-theme-color-ripple-color:rgba(33, 150, 243, 0.3)}.color-pink{--f7-theme-color:#ff2d55;--f7-theme-color-rgb:255,45,85;--f7-theme-color-shade:#ff0434;--f7-theme-color-tint:#ff5676}.text-color-pink{--f7-theme-color-text-color:#ff2d55}.bg-color-pink{--f7-theme-color-bg-color:#ff2d55}.border-color-pink{--f7-theme-color-border-color:#ff2d55}.ripple-color-pink,.ripple-pink{--f7-theme-color-ripple-color:rgba(255, 45, 85, 0.3)}.color-yellow{--f7-theme-color:#ffcc00;--f7-theme-color-rgb:255,204,0;--f7-theme-color-shade:#d6ab00;--f7-theme-color-tint:#ffd429}.text-color-yellow{--f7-theme-color-text-color:#ffcc00}.bg-color-yellow{--f7-theme-color-bg-color:#ffcc00}.border-color-yellow{--f7-theme-color-border-color:#ffcc00}.ripple-color-yellow,.ripple-yellow{--f7-theme-color-ripple-color:rgba(255, 204, 0, 0.3)}.color-orange{--f7-theme-color:#ff9500;--f7-theme-color-rgb:255,149,0;--f7-theme-color-shade:#d67d00;--f7-theme-color-tint:#ffa629}.text-color-orange{--f7-theme-color-text-color:#ff9500}.bg-color-orange{--f7-theme-color-bg-color:#ff9500}.border-color-orange{--f7-theme-color-border-color:#ff9500}.ripple-color-orange,.ripple-orange{--f7-theme-color-ripple-color:rgba(255, 149, 0, 0.3)}.color-purple{--f7-theme-color:#9c27b0;--f7-theme-color-rgb:156,39,176;--f7-theme-color-shade:#7e208f;--f7-theme-color-tint:#b92fd1}.text-color-purple{--f7-theme-color-text-color:#9c27b0}.bg-color-purple{--f7-theme-color-bg-color:#9c27b0}.border-color-purple{--f7-theme-color-border-color:#9c27b0}.ripple-color-purple,.ripple-purple{--f7-theme-color-ripple-color:rgba(156, 39, 176, 0.3)}.color-deeppurple{--f7-theme-color:#673ab7;--f7-theme-color-rgb:103,58,183;--f7-theme-color-shade:#563098;--f7-theme-color-tint:#7c52c8}.text-color-deeppurple{--f7-theme-color-text-color:#673ab7}.bg-color-deeppurple{--f7-theme-color-bg-color:#673ab7}.border-color-deeppurple{--f7-theme-color-border-color:#673ab7}.ripple-color-deeppurple,.ripple-deeppurple{--f7-theme-color-ripple-color:rgba(103, 58, 183, 0.3)}.color-lightblue{--f7-theme-color:#5ac8fa;--f7-theme-color-rgb:90,200,250;--f7-theme-color-shade:#32bbf9;--f7-theme-color-tint:#82d5fb}.text-color-lightblue{--f7-theme-color-text-color:#5ac8fa}.bg-color-lightblue{--f7-theme-color-bg-color:#5ac8fa}.border-color-lightblue{--f7-theme-color-border-color:#5ac8fa}.ripple-color-lightblue,.ripple-lightblue{--f7-theme-color-ripple-color:rgba(90, 200, 250, 0.3)}.color-teal{--f7-theme-color:#009688;--f7-theme-color-rgb:0,150,136;--f7-theme-color-shade:#006d63;--f7-theme-color-tint:#00bfad}.text-color-teal{--f7-theme-color-text-color:#009688}.bg-color-teal{--f7-theme-color-bg-color:#009688}.border-color-teal{--f7-theme-color-border-color:#009688}.ripple-color-teal,.ripple-teal{--f7-theme-color-ripple-color:rgba(0, 150, 136, 0.3)}.color-lime{--f7-theme-color:#cddc39;--f7-theme-color-rgb:205,220,57;--f7-theme-color-shade:#bac923;--f7-theme-color-tint:#d6e25c}.text-color-lime{--f7-theme-color-text-color:#cddc39}.bg-color-lime{--f7-theme-color-bg-color:#cddc39}.border-color-lime{--f7-theme-color-border-color:#cddc39}.ripple-color-lime,.ripple-lime{--f7-theme-color-ripple-color:rgba(205, 220, 57, 0.3)}.color-deeporange{--f7-theme-color:#ff6b22;--f7-theme-color-rgb:255,107,34;--f7-theme-color-shade:#f85200;--f7-theme-color-tint:#ff864b}.text-color-deeporange{--f7-theme-color-text-color:#ff6b22}.bg-color-deeporange{--f7-theme-color-bg-color:#ff6b22}.border-color-deeporange{--f7-theme-color-border-color:#ff6b22}.ripple-color-deeporange,.ripple-deeporange{--f7-theme-color-ripple-color:rgba(255, 107, 34, 0.3)}.color-gray{--f7-theme-color:#8e8e93;--f7-theme-color-rgb:142,142,147;--f7-theme-color-shade:#79797f;--f7-theme-color-tint:#a3a3a7}.text-color-gray{--f7-theme-color-text-color:#8e8e93}.bg-color-gray{--f7-theme-color-bg-color:#8e8e93}.border-color-gray{--f7-theme-color-border-color:#8e8e93}.ripple-color-gray,.ripple-gray{--f7-theme-color-ripple-color:rgba(142, 142, 147, 0.3)}.color-white{--f7-theme-color:#ffffff;--f7-theme-color-rgb:255,255,255;--f7-theme-color-shade:#ebebeb;--f7-theme-color-tint:#ffffff}.text-color-white{--f7-theme-color-text-color:#ffffff}.bg-color-white{--f7-theme-color-bg-color:#ffffff}.border-color-white{--f7-theme-color-border-color:#ffffff}.ripple-color-white,.ripple-white{--f7-theme-color-ripple-color:rgba(255, 255, 255, 0.3)}.color-black{--f7-theme-color:#000000;--f7-theme-color-rgb:0,0,0;--f7-theme-color-shade:#000000;--f7-theme-color-tint:#141414}.text-color-black{--f7-theme-color-text-color:#000000}.bg-color-black{--f7-theme-color-bg-color:#000000}.border-color-black{--f7-theme-color-border-color:#000000}.ripple-black,.ripple-color-black{--f7-theme-color-ripple-color:rgba(0, 0, 0, 0.3)}@font-face{font-family:framework7-core-icons;src:url('data:application/font-woff;charset=utf-8;base64, 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') format('woff');font-weight:400;font-style:normal}.framework7-root,body,html{position:relative;height:100%;width:100%;overflow-x:hidden}body{margin:0;padding:0;width:100%;background:#fff;overflow:hidden;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;font-family:var(--f7-font-family);font-size:var(--f7-font-size);line-height:var(--f7-line-height);color:var(--f7-text-color)}.theme-dark body,body.theme-dark{background:#000}.theme-dark{color:var(--f7-text-color)}.framework7-root{overflow:hidden;box-sizing:border-box}.framework7-initializing *,.framework7-initializing :after,.framework7-initializing :before{transition-duration:0s!important}.device-android,.device-ios{cursor:pointer}.device-ios{touch-action:manipulation}@media (width:1024px) and (height:691px) and (orientation:landscape){.framework7-root,body,html{height:671px}}@media (width:1024px) and (height:692px) and (orientation:landscape){.framework7-root,body,html{height:672px}}*{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}a,input,select,textarea{outline:0}a{cursor:pointer;text-decoration:none;color:var(--f7-theme-color)}.item-link,.link{cursor:pointer}p{margin:1em 0}.disabled{opacity:.55!important;pointer-events:none!important}html.device-full-viewport,html.device-full-viewport body{height:100vh}.ios .aurora-only,.ios .if-aurora,.ios .if-md,.ios .if-not-ios,.ios .md-only,.ios .not-ios{display:none!important}@media (width:1024px) and (height:691px) and (orientation:landscape){.ios,.ios .framework7-root,.ios body{height:671px}}@media (width:1024px) and (height:692px) and (orientation:landscape){.ios,.ios .framework7-root,.ios body{height:672px}}.md .aurora-only,.md .if-aurora,.md .if-ios,.md .if-not-md,.md .ios-only,.md .not-md{display:none!important}.aurora .if-ios,.aurora .if-md,.aurora .if-not-aurora,.aurora .ios-only,.aurora .md-only,.aurora .not-aurora{display:none!important}.view,.views{position:relative;height:100%;z-index:5000;overflow:hidden;box-sizing:border-box}.framework7-root>.view,.framework7-root>.views{height:calc(100% - var(--f7-appbar-app-offset,0px))}.view-resize-handler{width:6px;height:100%;position:absolute;left:var(--f7-page-master-width);margin-left:-3px;top:0;cursor:col-resize;z-index:1000;display:none}.view-master-detail .view-resize-handler{display:block}:root{--f7-page-master-width:320px;--f7-page-master-border-color:rgba(0, 0, 0, 0.1);--f7-page-master-border-width:1px;--f7-page-swipeback-transition-duration:300ms;--f7-page-parallax-transition-duration:500ms;--f7-page-cover-transition-duration:450ms;--f7-page-dive-transition-duration:500ms;--f7-page-fade-transition-duration:500ms;--f7-page-flip-transition-duration:700ms;--f7-page-push-transition-duration:500ms;--f7-page-title-line-height:1.2;--f7-page-title-text-color:inherit;--f7-page-title-padding-left:16px;--f7-page-title-padding-right:16px}.ios{--f7-page-transition-duration:400ms;--f7-page-title-font-size:34px;--f7-page-title-font-weight:700;--f7-page-title-letter-spacing:-0.03em;--f7-page-title-padding-vertical:6px;--f7-page-bg-color:#efeff4}.ios .theme-dark,.ios.theme-dark{--f7-page-bg-color:#000}.md{--f7-page-transition-duration:250ms;--f7-page-title-font-size:34px;--f7-page-title-font-weight:500;--f7-page-title-letter-spacing:0;--f7-page-title-padding-vertical:8px;--f7-page-bg-color:#fff}.md .theme-dark,.md.theme-dark{--f7-page-bg-color:#121212}.aurora{--f7-page-transition-duration:250ms;--f7-page-title-font-size:28px;--f7-page-title-font-weight:bold;--f7-page-title-letter-spacing:0;--f7-page-title-padding-vertical:7px;--f7-page-bg-color:#f3f4f6}.aurora .theme-dark,.aurora.theme-dark{--f7-page-bg-color:#121212}.theme-dark{--f7-page-master-border-color:rgba(255, 255, 255, 0.2)}.pages{position:relative;width:100%;height:100%;overflow:hidden}.page{box-sizing:border-box;position:absolute;left:0;top:0;width:100%;height:100%;transform:none;background-color:var(--f7-page-bg-color);z-index:1}.page.stacked{display:none}.page-with-navbar-large-collapsed{--f7-navbar-large-collapse-progress:1}.page-previous{pointer-events:none}.page-content{overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box;height:100%;position:relative;z-index:1;padding-top:calc(var(--f7-page-navbar-offset,0px) + var(--f7-page-toolbar-top-offset,0px) + var(--f7-page-subnavbar-offset,0px) + var(--f7-page-searchbar-offset,0px) + var(--f7-page-content-extra-padding-top,0px));padding-bottom:calc(var(--f7-page-toolbar-bottom-offset,0px) + var(--f7-safe-area-bottom) + var(--f7-page-content-extra-padding-bottom,0px))}.page-transitioning,.page-transitioning .page-opacity-effect,.page-transitioning .page-shadow-effect{transition-duration:var(--f7-page-transition-duration)}.page-transitioning-swipeback,.page-transitioning-swipeback .page-opacity-effect,.page-transitioning-swipeback .page-shadow-effect{transition-duration:var(--f7-page-swipeback-transition-duration)}.router-transition-backward .page-current,.router-transition-backward .page-next,.router-transition-backward .page-previous:not(.stacked),.router-transition-forward .page-current,.router-transition-forward .page-next,.router-transition-forward .page-previous:not(.stacked){pointer-events:none}.page-shadow-effect{position:absolute;top:0;width:16px;bottom:0;z-index:-1;content:'';opacity:0;right:100%;background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,.01) 50%,rgba(0,0,0,.2) 100%)}.page-opacity-effect{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;bottom:0;content:'';opacity:0;z-index:10000}.ios .page-previous{transform:translate3d(-20%,0,0)}.ios .page-next{transform:translate3d(100%,0,0)}.ios .page-previous .page-opacity-effect{opacity:1}.ios .page-previous:after{opacity:1}.ios .page-current .page-shadow-effect{opacity:1}.ios .router-transition-forward .page-next{animation:ios-page-next-to-current var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .page-next:before{position:absolute;top:0;width:16px;bottom:0;z-index:-1;content:'';opacity:0;right:100%;background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,.01) 50%,rgba(0,0,0,.2) 100%);animation:ios-page-element-fade-in var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .page-current{animation:ios-page-current-to-previous var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .page-current:after{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;bottom:0;content:'';opacity:0;z-index:10000;animation:ios-page-element-fade-in var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .page-previous{animation:ios-page-previous-to-current var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .page-previous:after{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;bottom:0;content:'';opacity:0;z-index:10000;animation:ios-page-element-fade-out var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .page-current{animation:ios-page-current-to-next var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .page-current:before{position:absolute;top:0;width:16px;bottom:0;z-index:-1;content:'';opacity:0;right:100%;background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,.01) 50%,rgba(0,0,0,.2) 100%);animation:ios-page-element-fade-out var(--f7-page-transition-duration) forwards}@keyframes ios-page-next-to-current{from{transform:translate3d(100%,0,0)}to{transform:translate3d(0%,0,0)}}@keyframes ios-page-previous-to-current{from{transform:translate3d(-20%,0,0)}to{transform:translate3d(0%,0,0)}}@keyframes ios-page-current-to-previous{from{transform:translate3d(0,0,0)}to{transform:translate3d(-20%,0,0)}}@keyframes ios-page-current-to-next{from{transform:translate3d(0,0,0)}to{transform:translate3d(100%,0,0)}}@keyframes ios-page-element-fade-in{from{opacity:0}to{opacity:1}}@keyframes ios-page-element-fade-out{from{opacity:1}to{opacity:0}}.md .page-next{opacity:0;pointer-events:none;transform:translate3d(0,56px,0)}.md .page-next.page-next-on-right{transform:translate3d(100%,0,0)}.md .router-transition-forward .page-next{animation:md-page-next-to-current var(--f7-page-transition-duration) forwards}.md .router-transition-forward .page-current{animation:none}.md .router-transition-backward .page-current{animation:md-page-current-to-next var(--f7-page-transition-duration) forwards}.md .router-transition-backward .page-previous{animation:none}@keyframes md-page-next-to-current{from{transform:translate3d(0,56px,0);opacity:0}to{transform:translate3d(0,0px,0);opacity:1}}@keyframes md-page-current-to-next{from{transform:translate3d(0,0,0);opacity:1}to{transform:translate3d(0,56px,0);opacity:0}}.aurora .page-next{opacity:0;pointer-events:none;transform:translate3d(0,0px,0)}.aurora .page-next.page-next-on-right{transform:translate3d(100%,0,0)}.aurora .router-transition-forward .page-next{animation:aurora-page-next-to-current var(--f7-page-transition-duration) forwards}.aurora .router-transition-forward .page-current{animation:none}.aurora .router-transition-backward .page-current{animation:aurora-page-current-to-next var(--f7-page-transition-duration) forwards}.aurora .router-transition-backward .page-previous{animation:none}@keyframes aurora-page-next-to-current{from{opacity:0}to{opacity:1}}@keyframes aurora-page-current-to-next{from{opacity:1}to{opacity:0}}.view:not(.view-master-detail) .page-master-stacked{display:none}.view:not(.view-master-detail) .navbar-master-stacked{display:none}.view-master-detail .navbar-master,.view-master-detail .page-master{width:var(--f7-page-master-width);--f7-safe-area-right:0px;--f7-safe-area-outer-right:0px;border-right:var(--f7-page-master-border-width) solid var(--f7-page-master-border-color)}.view-master-detail .navbar-master-detail,.view-master-detail .page-master-detail{width:calc(100% - var(--f7-page-master-width));--f7-safe-area-left:0px;--f7-safe-area-outer-left:0px;left:var(--f7-page-master-width)}.view-master-detail .page-master-detail>.navbar-master-detail{left:0;right:0;width:100%}.view-master-detail .page-master{z-index:2;transform:none;pointer-events:auto}.view-master-detail .page-master:after,.view-master-detail .page-master:before{display:none}.view-master-detail.router-transition .page-master{animation:none}.aurora .router-transition-custom .page-next,.aurora .router-transition-custom .page-previous,.ios .router-transition-custom .page-next,.ios .router-transition-custom .page-previous,.md .router-transition-custom .page-next,.md .router-transition-custom .page-previous{opacity:1;transform:none}.aurora .router-transition-custom.view-master-detail .page-master,.ios .router-transition-custom.view-master-detail .page-master,.md .router-transition-custom.view-master-detail .page-master{animation:none}.page-title{position:relative;z-index:10;text-overflow:ellipsis;white-space:nowrap;color:var(--f7-page-title-text-color);letter-spacing:var(--f7-page-title-letter-spacing);font-size:var(--f7-page-title-font-size);font-weight:var(--f7-page-title-font-weight);line-height:var(--f7-page-title-line-height);padding-left:calc(var(--f7-page-title-padding-left) + var(--f7-safe-area-left));padding-right:calc(var(--f7-page-title-padding-right) + var(--f7-safe-area-right));padding-top:var(--f7-page-title-padding-vertical);padding-bottom:var(--f7-page-title-padding-vertical);box-sizing:border-box;overflow:hidden;width:100%}.router-transition-f7-circle-backward:after,.router-transition-f7-circle-forward:after{content:'';position:absolute;left:50%;top:50%;width:100vmax;height:100vmax;margin-left:-50vmax;margin-top:-50vmax;background:var(--f7-page-bg-color);z-index:100}.router-transition-f7-circle-forward:after{transform:scale(0);border-radius:50%;animation:f7-circle-circle-in .4s forwards}.router-transition-f7-circle-forward .page-next{opacity:0!important;transform:scale(.9)!important;animation:f7-circle-next-to-current .3s forwards;animation-delay:.3s;z-index:150}.router-transition-f7-circle-backward:after{animation:f7-circle-circle-out .3s forwards;animation-delay:350ms}.router-transition-f7-circle-backward .page-current{animation:f7-circle-current-to-next .7s forwards;z-index:150}@keyframes f7-circle-circle-in{from{transform:scale(0);border-radius:50%}50%{border-radius:50%}to{transform:scale(1);border-radius:0%}}@keyframes f7-circle-circle-out{from{transform:scale(1);border-radius:0%}50%{border-radius:50%}to{transform:scale(0);border-radius:50%}}@keyframes f7-circle-next-to-current{from{transform:scale(.9);opacity:0}40%{transform:scale(1.035);opacity:1}to{transform:scale(1);opacity:1}}@keyframes f7-circle-current-to-next{from{transform:scale(1);opacity:1}34%{transform:scale(1.035);opacity:1}57%{transform:scale(.9);opacity:0}to{transform:scale(.9);opacity:0}}.router-transition-f7-cover-v-backward,.router-transition-f7-cover-v-forward{background:#000;perspective:1200px}.router-transition-f7-cover-v-forward .page-next{animation:f7-cover-v-next-to-current var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-v-forward .page-current{animation:f7-cover-v-current-to-prev var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-v-backward .page-current{animation:f7-cover-v-current-to-next var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-v-backward .page-previous{animation:f7-cover-v-prev-to-current var(--f7-page-cover-transition-duration) forwards}@keyframes f7-cover-v-next-to-current{from{transform:translateY(100%)}to{transform:translateY(0%)}}@keyframes f7-cover-v-current-to-next{from{transform:translateY(0%)}to{transform:translateY(100%)}}@keyframes f7-cover-v-current-to-prev{from{transform:translateZ(0);opacity:1}to{transform:translateZ(-300px);opacity:.5}}@keyframes f7-cover-v-prev-to-current{from{transform:translateZ(-300px);opacity:.5}to{transform:translateZ(0);opacity:1}}.router-transition-f7-cover-backward,.router-transition-f7-cover-forward{background:#000;perspective:1200px}.router-transition-f7-cover-forward .page-next{animation:f7-cover-next-to-current var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-forward .page-current{animation:f7-cover-current-to-prev var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-backward .page-current{animation:f7-cover-current-to-next var(--f7-page-cover-transition-duration) forwards}.router-transition-f7-cover-backward .page-previous{animation:f7-cover-prev-to-current var(--f7-page-cover-transition-duration) forwards}@keyframes f7-cover-next-to-current{from{transform:translateX(100%)}to{transform:translateX(0%)}}@keyframes f7-cover-current-to-next{from{transform:translateX(0%)}to{transform:translateX(100%)}}@keyframes f7-cover-current-to-prev{from{transform:translateZ(0);opacity:1}to{transform:translateZ(-300px);opacity:.5}}@keyframes f7-cover-prev-to-current{from{transform:translateZ(-300px);opacity:.5}to{transform:translateZ(0);opacity:1}}.router-transition-f7-dive-backward,.router-transition-f7-dive-forward{background:var(--f7-page-bg-color);perspective:1200px}.router-transition-f7-dive-forward .page-next{animation:f7-dive-next-to-current var(--f7-page-dive-transition-duration) forwards}.router-transition-f7-dive-forward .page-current{animation:f7-dive-current-to-prev var(--f7-page-dive-transition-duration) forwards}.router-transition-f7-dive-backward .page-current{animation:f7-dive-current-to-next var(--f7-page-dive-transition-duration) forwards}.router-transition-f7-dive-backward .page-previous{animation:f7-dive-prev-to-current var(--f7-page-dive-transition-duration) forwards}@keyframes f7-dive-next-to-current{from{opacity:0;transform:translateZ(-150px)}50%{opacity:0}to{opacity:1;transform:translateZ(0px)}}@keyframes f7-dive-current-to-next{from{opacity:1;transform:translateZ(0px)}50%{opacity:0}to{opacity:0;transform:translateZ(-150px)}}@keyframes f7-dive-current-to-prev{from{transform:translateZ(0px);opacity:1}50%{opacity:0}to{opacity:0;transform:translateZ(150px)}}@keyframes f7-dive-prev-to-current{from{opacity:0;transform:translateZ(150px)}50%{opacity:0}to{opacity:1;transform:translateZ(0px)}}.router-transition-f7-fade-backward,.router-transition-f7-fade-forward{background:var(--f7-page-bg-color)}.router-transition-f7-fade-forward .page-next{opacity:0!important;animation:f7-fade-in var(--f7-page-fade-transition-duration) forwards}.router-transition-f7-fade-forward .page-current{animation:f7-fade-out var(--f7-page-fade-transition-duration) forwards}.router-transition-f7-fade-backward .page-current{animation:f7-fade-out var(--f7-page-fade-transition-duration) forwards}.router-transition-f7-fade-backward .page-previous{animation:f7-fade-in var(--f7-page-fade-transition-duration) forwards}@keyframes f7-fade-in{from{opacity:0}50%{opacity:0}to{opacity:1}}@keyframes f7-fade-out{from{opacity:1}50%{opacity:0}to{opacity:0}}.router-transition-f7-flip-backward,.router-transition-f7-flip-forward{background:#000;perspective:1200px}.router-transition-f7-flip-backward .page,.router-transition-f7-flip-forward .page{-webkit-backface-visibility:hidden;backface-visibility:hidden}.router-transition-f7-flip-forward .page-next{animation:f7-flip-next-to-current var(--f7-page-flip-transition-duration) forwards}.router-transition-f7-flip-forward .page-current{animation:f7-flip-current-to-prev var(--f7-page-flip-transition-duration) forwards}.router-transition-f7-flip-backward .page-current{animation:f7-flip-current-to-next var(--f7-page-flip-transition-duration) forwards}.router-transition-f7-flip-backward .page-previous{animation:f7-flip-prev-to-current var(--f7-page-flip-transition-duration) forwards}@keyframes f7-flip-next-to-current{from{border-radius:30px;transform:translateZ(-100vmax) rotateY(180deg)}to{border-radius:0;transform:translateZ(0px) rotateY(0deg)}}@keyframes f7-flip-current-to-next{from{border-radius:0px;transform:translateZ(0px) rotateY(0deg)}to{border-radius:30px;transform:translateZ(-100vmax) rotateY(180deg)}}@keyframes f7-flip-current-to-prev{from{border-radius:0px;transform:translateZ(0px) rotateY(0deg)}to{border-radius:30px;transform:translateZ(-100vmax) rotateY(-180deg)}}@keyframes f7-flip-prev-to-current{from{border-radius:30px;transform:translateZ(-100vmax) rotateY(-180deg)}to{border-radius:0px;transform:translateZ(0px) rotateY(0deg)}}.router-transition-f7-parallax-forward .page-next{animation:f7-parallax-next-to-current var(--f7-page-parallax-transition-duration) forwards}.router-transition-f7-parallax-forward .page-current{animation:f7-parallax-current-to-prev var(--f7-page-parallax-transition-duration) forwards}.router-transition-f7-parallax-backward .page-current{animation:f7-parallax-current-to-next var(--f7-page-parallax-transition-duration) forwards}.router-transition-f7-parallax-backward .page-previous{animation:f7-parallax-prev-to-current var(--f7-page-parallax-transition-duration) forwards}@keyframes f7-parallax-next-to-current{from{transform:translateX(100%)}to{transform:translateX(0%)}}@keyframes f7-parallax-current-to-next{from{transform:translateX(0%)}to{transform:translateX(100%)}}@keyframes f7-parallax-current-to-prev{from{transform:translateX(0%)}to{transform:translateX(-20%)}}@keyframes f7-parallax-prev-to-current{from{transform:translateX(-20%)}to{transform:translateX(0%)}}.router-transition-f7-push-forward .page-next{animation:f7-push-next-to-current var(--f7-page-push-transition-duration) forwards}.router-transition-f7-push-forward .page-current{animation:f7-push-current-to-prev var(--f7-page-push-transition-duration) forwards}.router-transition-f7-push-backward .page-current{animation:f7-push-current-to-next var(--f7-page-push-transition-duration) forwards}.router-transition-f7-push-backward .page-previous{animation:f7-push-prev-to-current var(--f7-page-push-transition-duration) forwards}@keyframes f7-push-next-to-current{from{transform:translateX(100%)}to{transform:translateX(0%)}}@keyframes f7-push-current-to-next{from{transform:translateX(0%)}to{transform:translateX(100%)}}@keyframes f7-push-current-to-prev{from{transform:translateX(0%)}to{transform:translateX(-100%)}}@keyframes f7-push-prev-to-current{from{transform:translateX(-100%)}to{transform:translateX(0%)}}:root{--f7-link-highlight-black:rgba(0, 0, 0, 0.1);--f7-link-highlight-white:rgba(255, 255, 255, 0.15);--f7-link-highlight-color:rgba(var(--f7-theme-color-rgb), 0.15)}.ios{--f7-link-pressed-opacity:0.3}.aurora{--f7-link-pressed-opacity:0.3;--f7-link-hover-opacity:0.65}.link,.tab-link{display:inline-flex;align-items:center;align-content:center;justify-content:center;position:relative;box-sizing:border-box;z-index:1;--f7-touch-ripple-color:var(--f7-link-touch-ripple-color, rgba(var(--f7-theme-color-rgb), 0.25))}.link i+i,.link i+span,.link span+i,.link span+span{margin-left:4px}.ios .link{transition:opacity .3s}.ios .link.active-state{opacity:var(--f7-link-pressed-opacity);transition-duration:0s}.aurora .link{transition:opacity .3s}.aurora .link.active-state{opacity:var(--f7-link-pressed-opacity);transition-duration:0s}.aurora.device-desktop .link:not(.active-state):not(.no-hover):hover{opacity:var(--f7-link-hover-opacity);transition-duration:0s}:root{--f7-navbar-hide-show-transition-duration:400ms;--f7-navbar-title-line-height:1.2;--f7-navbar-title-font-size:inherit;--f7-navbar-subtitle-text-align:inherit;--f7-navbar-large-title-line-height:1.2;--f7-navbar-large-title-text-color:inherit;--f7-navbar-large-title-padding-left:16px;--f7-navbar-large-title-padding-right:16px}.ios{--f7-navbar-height:44px;--f7-navbar-tablet-height:44px;--f7-navbar-font-size:17px;--f7-navbar-inner-padding-left:8px;--f7-navbar-inner-padding-right:8px;--f7-navbar-title-font-weight:600;--f7-navbar-title-margin-left:0;--f7-navbar-title-margin-right:0;--f7-navbar-title-text-align:center;--f7-navbar-subtitle-font-size:10px;--f7-navbar-subtitle-line-height:1;--f7-navbar-shadow-image:none;--f7-navbar-large-title-height:52px;--f7-navbar-large-title-font-size:34px;--f7-navbar-large-title-font-weight:700;--f7-navbar-large-title-letter-spacing:-0.03em;--f7-navbar-large-title-padding-vertical:6px;--f7-navbar-subtitle-text-color:rgba(0, 0, 0, 0.55)}.ios .theme-dark,.ios.theme-dark{--f7-navbar-subtitle-text-color:rgba(255, 255, 255, 0.55)}.md{--f7-navbar-height:56px;--f7-navbar-tablet-height:64px;--f7-navbar-font-size:20px;--f7-navbar-inner-padding-left:4px;--f7-navbar-inner-padding-right:4px;--f7-navbar-title-font-weight:500;--f7-navbar-title-margin-left:20px;--f7-navbar-title-margin-right:16px;--f7-navbar-title-text-align:left;--f7-navbar-subtitle-font-size:14px;--f7-navbar-subtitle-line-height:1.2;--f7-navbar-shadow-image:var(--f7-bars-shadow-bottom-image);--f7-navbar-large-title-font-size:34px;--f7-navbar-large-title-height:56px;--f7-navbar-large-title-font-weight:500;--f7-navbar-large-title-letter-spacing:0;--f7-navbar-large-title-padding-vertical:8px;--f7-navbar-link-height:48px;--f7-navbar-link-line-height:48px;--f7-navbar-subtitle-text-color:rgba(0, 0, 0, 0.85)}.md .theme-dark,.md.theme-dark{--f7-navbar-subtitle-text-color:rgba(255, 255, 255, 0.85)}.aurora{--f7-navbar-height:56px;--f7-navbar-tablet-height:56px;--f7-navbar-font-size:18px;--f7-navbar-inner-padding-left:16px;--f7-navbar-inner-padding-right:16px;--f7-navbar-title-font-weight:bold;--f7-navbar-title-margin-left:0;--f7-navbar-title-margin-right:0;--f7-navbar-title-text-align:center;--f7-navbar-subtitle-font-size:14px;--f7-navbar-subtitle-line-height:1;--f7-navbar-shadow-image:none;--f7-navbar-large-title-height:48px;--f7-navbar-large-title-font-size:28px;--f7-navbar-large-title-font-weight:bold;--f7-navbar-large-title-letter-spacing:0;--f7-navbar-large-title-padding-vertical:7px;--f7-navbar-link-height:auto;--f7-navbar-link-line-height:inherit;--f7-navbar-subtitle-text-color:rgba(0, 0, 0, 0.6)}.aurora .theme-dark,.aurora.theme-dark{--f7-navbar-subtitle-text-color:rgba(255, 255, 255, 0.5)}.navbar,.navbars{z-index:500;left:0;top:0;width:100%}.navbars{position:absolute}.navbars .navbar{z-index:auto}.navbars .navbar-transitioning{z-index:500}.navbar{--f7-navbar-large-collapse-progress:0;position:relative;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box;margin:0;height:calc(var(--f7-navbar-height) + var(--f7-safe-area-top));color:var(--f7-navbar-text-color,var(--f7-bars-text-color));font-size:var(--f7-navbar-font-size)}.navbar.stacked{display:none}.navbar b{font-weight:500}.navbar a{color:var(--f7-navbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.navbar a.link{display:flex;justify-content:flex-start;line-height:var(--f7-navbar-link-line-height, var(--f7-navbar-height));height:var(--f7-navbar-link-height,var(--f7-navbar-height))}.navbar .left,.navbar .right,.navbar .title{position:relative;z-index:10}.navbar .title{position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;flex-shrink:10;font-weight:var(--f7-navbar-title-font-weight);display:inline-block;line-height:var(--f7-navbar-title-line-height);text-align:var(--f7-navbar-title-text-align);font-size:var(--f7-navbar-title-font-size);margin-left:var(--f7-navbar-title-margin-left);margin-right:var(--f7-navbar-title-margin-left)}.navbar .subtitle{display:block;color:var(--f7-navbar-subtitle-text-color);font-weight:400;font-size:var(--f7-navbar-subtitle-font-size);line-height:var(--f7-navbar-subtitle-line-height);text-align:var(--f7-navbar-subtitle-text-align)}.navbar .left,.navbar .right{flex-shrink:0;display:flex;justify-content:flex-start;align-items:center}.navbar .right:first-child{position:absolute;height:100%}.navbar .no-border .navbar-bg:after,.navbar .no-hairline .navbar-bg:after,.navbar.no-border .navbar-bg:after,.navbar.no-hairline .navbar-bg:after{display:none!important}.navbar .no-border .title-large:after,.navbar .no-hairline .title-large:after,.navbar.no-border .title-large:after,.navbar.no-hairline .title-large:after{display:none!important}.navbar .no-shadow .navbar-bg:before,.navbar.no-shadow .navbar-bg:before{display:none!important}.navbar-hidden .navbar .navbar-bg:before,.navbar.navbar-hidden .navbar-bg:before{opacity:0!important}.navbar-bg{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:0;background:var(--f7-navbar-bg-color);background-image:var(--f7-navbar-bg-image,var(--f7-bars-bg-image));background-color:var(--f7-navbar-bg-color,var(--f7-bars-bg-color));transition-property:transform}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .navbar-bg{background-color:rgba(var(--f7-navbar-bg-color-rgb,var(--f7-bars-bg-color-rgb)),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.navbar-bg:after,.navbar-bg:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}.navbar-bg:after{content:'';position:absolute;background-color:var(--f7-navbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.navbar-bg:before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-navbar-shadow-image)}.navbar-bg:after{z-index:1}@media (min-width:768px) and (min-height:600px){:root{--f7-navbar-height:var(--f7-navbar-tablet-height)}}.navbar-transitioning,.navbar-transitioning .left,.navbar-transitioning .navbar-bg,.navbar-transitioning .navbar-bg:before,.navbar-transitioning .right,.navbar-transitioning .subnavbar,.navbar-transitioning .title,.navbar-transitioning .title-large-text{transition-duration:var(--f7-navbar-hide-show-transition-duration)}.navbar-page-transitioning{transition-duration:var(--f7-page-swipeback-transition-duration)!important}.navbar-page-transitioning .navbar-bg,.navbar-page-transitioning .title-large-text{transition-duration:var(--f7-page-swipeback-transition-duration)!important}.navbar-hidden{transform:translate3d(0,calc(-1 * var(--f7-navbar-height)),0)}.navbar-hidden .navbar-inner{pointer-events:none}.navbar-hidden .navbar-inner>.left,.navbar-hidden .navbar-inner>.right,.navbar-hidden .navbar-inner>.title{opacity:0!important}.navbar-hidden .subnavbar{pointer-events:auto}.navbar-hidden-statusbar{transform:translate3d(0,calc(-1 * var(--f7-navbar-height) - var(--f7-safe-area-top)),0)}.navbar-large-hidden .navbar-large{--f7-navbar-large-collapse-progress:1}.navbar-inner{position:absolute;left:0;bottom:0;width:100%;height:100%;display:flex;align-items:center;box-sizing:border-box;padding:var(--f7-safe-area-top) calc(var(--f7-navbar-inner-padding-right) + var(--f7-safe-area-right)) 0 calc(var(--f7-navbar-inner-padding-left) + var(--f7-safe-area-left));transform:translate3d(0,0,0);z-index:10}.navbars>.navbar,.page>.navbar,.view>.navbar,.views>.navbar{position:absolute}.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible):not(.with-searchbar-expandable-enabled) .navbar-bg,.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible):not(.with-searchbar-expandable-enabled) .title{opacity:0}.navbar-large .navbar-bg{height:calc(100% + var(--f7-navbar-large-title-height));transform:translate3d(0px,calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)),0)}.navbar-large-transparent .navbar-bg,.navbar-large.navbar-transparent .navbar-bg{opacity:var(--f7-navbar-large-collapse-progress);height:100%;transform:none}.ios .router-navbar-transition-from-large .navbar-bg,.ios .router-navbar-transition-to-large .navbar-bg,.navbar-bg.ios-swipeback-navbar-bg-large,.navbar-large-transparent .navbar-bg.ios-swipeback-navbar-bg-large,.navbar-large.navbar-transparent .navbar-bg.ios-swipeback-navbar-bg-large{height:calc(100% + var(--f7-navbar-large-title-height));transform:translate3d(0px,calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)),0)}.ios .navbar:not(.navbar-large) .navbar-bg{--f7-navbar-large-collapse-progress:1}.navbar-large .title{opacity:var(--f7-navbar-large-collapse-progress)}.navbar-large-collapsed{--f7-navbar-large-collapse-progress:1}.navbar-large-collapsed .title-large{pointer-events:none}.navbar .title-large{box-sizing:border-box;position:absolute;left:0;right:0;top:100%;display:flex;align-items:flex-end;white-space:nowrap;overflow:hidden;height:var(--f7-navbar-large-title-height);z-index:5}.navbar .title-large-text{text-overflow:ellipsis;white-space:nowrap;color:var(--f7-navbar-large-title-text-color);letter-spacing:var(--f7-navbar-large-title-letter-spacing);font-size:var(--f7-navbar-large-title-font-size);font-weight:var(--f7-navbar-large-title-font-weight);line-height:var(--f7-navbar-large-title-line-height);padding-left:calc(var(--f7-navbar-large-title-padding-left) + var(--f7-safe-area-left));padding-right:calc(var(--f7-navbar-large-title-padding-right) + var(--f7-safe-area-right));padding-top:var(--f7-navbar-large-title-padding-vertical);padding-bottom:var(--f7-navbar-large-title-padding-vertical);box-sizing:border-box;overflow:hidden;width:100%;transform:translate3d(0px,calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)),0);transform-origin:calc(var(--f7-navbar-large-title-padding-left) + var(--f7-safe-area-left)) center}.navbar-no-title-large-transition .title-large-text{transition-duration:0s}.navbars~*,.navbar~*{--f7-page-navbar-offset:calc(var(--f7-navbar-height) + var(--f7-safe-area-top))}.navbars~* .page-with-navbar-large,.navbars~.page-with-navbar-large,.navbar~* .page-with-navbar-large,.navbar~.page-with-navbar-large,.page-with-navbar-large .navbar~*{--f7-page-navbar-offset:calc(var(--f7-navbar-height) + var(--f7-navbar-large-title-height) + var(--f7-safe-area-top))}.page.no-navbar,.page.no-navbar .navbar~*{--f7-page-navbar-offset:var(--f7-safe-area-top)}.ios{--f7-navbarLeftTextOffset:calc(4px + 12px + var(--f7-navbar-inner-padding-left));--f7-navbarTitleLargeOffset:var(--f7-navbar-large-title-padding-left);--f7-navbar-large-transparent-bg-center:translateX(0);--f7-navbar-large-bg-center-top:translateX(0) translateY(calc(-1 * var(--f7-navbar-large-title-height)));--f7-navbar-large-bg-center-bottom:translateX(0) translateY(0);--f7-navbar-large-transparent-bg-left:translateX(-100%);--f7-navbar-large-bg-left-top:translateX(-100%) translateY(calc(-1 * var(--f7-navbar-large-title-height)));--f7-navbar-large-bg-left-bottom:translateX(-100%) translateY(0);--f7-navbar-large-bg-right-top:translateX(100%) translateY(calc(-1 * var(--f7-navbar-large-title-height)));--f7-navbar-large-bg-right-bottom:translateX(100%) translateY(0)}.ios .navbar a.icon-only{width:44px;margin:0;justify-content:center}.ios .navbar .left a+a,.ios .navbar .right a+a{margin-left:16px}.ios .navbar b{font-weight:600}.ios .navbar .left{margin-right:10px}.ios .navbar .right{margin-left:10px}.ios .navbar .right:first-child{right:calc(8px + var(--f7-safe-area-right))}.ios .navbar-inner{justify-content:space-between}.ios .navbar-inner-left-title{justify-content:flex-start}.ios .navbar-inner-left-title .right{margin-left:auto}.ios .navbar-inner-left-title .title{text-align:left;margin-right:10px}.ios .navbar-next .fading,.ios .navbar-next .left,.ios .navbar-next .right,.ios .navbar-next .subnavbar,.ios .navbar-next .title,.ios .view-master-detail .navbar-previous:not(.navbar-master) .fading,.ios .view-master-detail .navbar-previous:not(.navbar-master) .left,.ios .view-master-detail .navbar-previous:not(.navbar-master) .right,.ios .view-master-detail .navbar-previous:not(.navbar-master) .subnavbar,.ios .view-master-detail .navbar-previous:not(.navbar-master) .title,.ios .view:not(.view-master-detail) .navbar-previous .fading,.ios .view:not(.view-master-detail) .navbar-previous .left,.ios .view:not(.view-master-detail) .navbar-previous .right,.ios .view:not(.view-master-detail) .navbar-previous .subnavbar,.ios .view:not(.view-master-detail) .navbar-previous .title{opacity:0}.ios .view-master-detail .navbar-previous:not(.navbar-master),.ios .view:not(.view-master-detail) .navbar-previous{pointer-events:none}.ios .view-master-detail .navbar-previous:not(.navbar-master) .title-large,.ios .view:not(.view-master-detail) .navbar-previous .title-large{opacity:0;transition-duration:0s}.ios .view-master-detail .navbar-previous:not(.navbar-master) .title-large .title-large-text,.ios .view:not(.view-master-detail) .navbar-previous .title-large .title-large-text{transform:scale(.5);transition-duration:0s}.ios .view-master-detail .navbar-previous:not(.navbar-master) .sliding .subnavbar,.ios .view-master-detail .navbar-previous:not(.navbar-master) .subnavbar.sliding,.ios .view:not(.view-master-detail) .navbar-previous .sliding .subnavbar,.ios .view:not(.view-master-detail) .navbar-previous .subnavbar.sliding{opacity:1;transform:translate3d(-100%,0,0)}.ios .view-master-detail .navbar-previous:not(.navbar-master) .navbar-bg,.ios .view:not(.view-master-detail) .navbar-previous .navbar-bg{transform:translateX(-100%)}.ios .navbar-next{pointer-events:none}.ios .navbar-next .navbar-bg{transform:translateX(100%)}.ios .navbar-next .title-large .title-large-text{transition-duration:0s;transform:translateX(100%) translateY(calc(-1 * var(--f7-navbar-large-title-height)))}.ios .navbar-next .sliding .subnavbar,.ios .navbar-next .subnavbar.sliding{opacity:1;transform:translate3d(100%,0,0)}.ios .router-transition .navbar,.ios .router-transition .navbar-bg{transition-duration:var(--f7-page-transition-duration)}.ios .router-transition .navbar-bg{animation-duration:var(--f7-page-transition-duration);animation-fill-mode:forwards}.ios .router-transition .title-large,.ios .router-transition .title-large-text{transition-duration:0s}.ios .router-transition .navbar-current .left,.ios .router-transition .navbar-current .right,.ios .router-transition .navbar-current .subnavbar,.ios .router-transition .navbar-current .title{animation:ios-navbar-element-fade-out var(--f7-page-transition-duration) forwards}.ios .router-transition .navbar-current .sliding .left,.ios .router-transition .navbar-current .sliding .left .icon+span,.ios .router-transition .navbar-current .sliding .right,.ios .router-transition .navbar-current .sliding .title,.ios .router-transition .navbar-current .sliding.left,.ios .router-transition .navbar-current .sliding.left .icon+span,.ios .router-transition .navbar-current .sliding.right,.ios .router-transition .navbar-current .sliding.title{transition-duration:var(--f7-page-transition-duration);opacity:0!important;animation:none}.ios .router-transition .navbar-current .sliding .subnavbar,.ios .router-transition .navbar-current .sliding.subnavbar{transition-duration:var(--f7-page-transition-duration);animation:none;opacity:1}.ios .router-transition-backward .navbar-previous .left,.ios .router-transition-backward .navbar-previous .right,.ios .router-transition-backward .navbar-previous .subnavbar,.ios .router-transition-backward .navbar-previous .title,.ios .router-transition-forward .navbar-next .left,.ios .router-transition-forward .navbar-next .right,.ios .router-transition-forward .navbar-next .subnavbar,.ios .router-transition-forward .navbar-next .title{animation:ios-navbar-element-fade-in var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .navbar-previous .sliding .left,.ios .router-transition-backward .navbar-previous .sliding .left .icon+span,.ios .router-transition-backward .navbar-previous .sliding .right,.ios .router-transition-backward .navbar-previous .sliding .subnavbar,.ios .router-transition-backward .navbar-previous .sliding .title,.ios .router-transition-backward .navbar-previous .sliding.left,.ios .router-transition-backward .navbar-previous .sliding.left .icon+span,.ios .router-transition-backward .navbar-previous .sliding.right,.ios .router-transition-backward .navbar-previous .sliding.title,.ios .router-transition-forward .navbar-next .sliding .left,.ios .router-transition-forward .navbar-next .sliding .left .icon+span,.ios .router-transition-forward .navbar-next .sliding .right,.ios .router-transition-forward .navbar-next .sliding .subnavbar,.ios .router-transition-forward .navbar-next .sliding .title,.ios .router-transition-forward .navbar-next .sliding.left,.ios .router-transition-forward .navbar-next .sliding.left .icon+span,.ios .router-transition-forward .navbar-next .sliding.right,.ios .router-transition-forward .navbar-next .sliding.title{transition-duration:var(--f7-page-transition-duration);animation:none;transform:translate3d(0,0,0)!important;opacity:1!important}.ios .router-transition-backward .navbar-previous.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .title,.ios .router-transition-forward .navbar-next.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .title{animation:none}.ios .router-transition-backward .navbar-previous.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding .title,.ios .router-transition-backward .navbar-previous.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding.title,.ios .router-transition-forward .navbar-next.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding .title,.ios .router-transition-forward .navbar-next.navbar-transparent:not(.navbar-large):not(.navbar-transparent-visible) .sliding.title{opacity:0!important}.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .left,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .right,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .subnavbar,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled .title,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .left,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .right,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .subnavbar,.ios .router-transition-backward .navbar-previous.with-searchbar-expandable-enabled-no-transition .title{animation:none}.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large,.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .title-large{overflow:visible}.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text,.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-up var(--f7-page-transition-duration) forwards,ios-navbar-large-title-text-fade-out var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .navbar-next.router-navbar-transition-from-large .left .back span{animation:ios-navbar-back-text-next-to-current var(--f7-page-transition-duration) forwards;transition:none;transform-origin:left center}.ios .router-transition-forward .navbar-next.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large{overflow:visible}.ios .router-transition-forward .navbar-next.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-left var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .navbar-next.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-left var(--f7-page-transition-duration) forwards}.ios .router-transition-forward .navbar-current.navbar-large:not(.navbar-large-collapsed) .title,.ios .router-transition-forward .navbar-next.navbar-large:not(.navbar-large-collapsed) .title{animation:none;opacity:0!important;transition-duration:0}.ios .router-transition-backward .navbar-current.router-navbar-transition-to-large .left .back span{animation:ios-navbar-back-text-current-to-previous var(--f7-page-transition-duration) forwards;transition:none;transform-origin:left center}.ios .router-transition-backward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large{overflow:visible}.ios .router-transition-backward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-right var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-right var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .navbar-current.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large{opacity:0}.ios .router-transition-backward .navbar-previous.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large,.ios .router-transition-backward .navbar-previous.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large{overflow:visible;opacity:1}.ios .router-transition-backward .navbar-previous.router-navbar-transition-from-large.router-navbar-transition-to-large .title-large .title-large-text,.ios .router-transition-backward .navbar-previous.router-navbar-transition-to-large:not(.router-navbar-transition-from-large) .title-large .title-large-text{animation:ios-navbar-large-title-text-slide-down var(--f7-page-transition-duration) forwards,ios-navbar-large-title-text-fade-in var(--f7-page-transition-duration) forwards}.ios .router-transition-backward .navbar-current.navbar-large:not(.navbar-large-collapsed) .title,.ios .router-transition-backward .navbar-previous.navbar-large:not(.navbar-large-collapsed) .title{animation:none;opacity:0!important;transition-duration:0}.ios .router-transition-forward .navbar-current .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-lb}.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large.router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-lb}.ios .router-transition-forward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-lt}.ios .router-transition-forward .navbar-current:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-ct-to-lb}.ios .router-transition-forward .navbar-current.navbar-large-collapsed:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-bg-from-ct-to-lt}.ios .router-transition-forward .navbar-current.navbar-large-collapsed.navbar-large-transparent:not(.router-navbar-transition-to-large) .navbar-bg,.ios .router-transition-forward .navbar-current.navbar-large-collapsed.navbar-large.navbar-transparent:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-transparent-bg-from-c-to-l}.ios .router-transition-forward .navbar-next .navbar-bg{animation-name:ios-navbar-bg-from-rb-to-cb}.ios .router-transition-forward .navbar-next.router-navbar-transition-from-large.router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-rb-to-cb}.ios .router-transition-forward .navbar-next.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-bg-from-rb-to-ct}.ios .router-transition-forward .navbar-next:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-rt-to-cb}.ios .router-transition-backward .navbar-current .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-rb}.ios .router-transition-backward .navbar-current:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-ct-to-rb}.ios .router-transition-backward .navbar-current.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-rt}.ios .router-transition-backward .navbar-current.navbar-large-collapsed .navbar-bg{animation-name:ios-navbar-bg-from-ct-to-rt}.ios .router-transition-backward .navbar-current.navbar-large-collapsed.navbar-large-transparent .navbar-bg,.ios .router-transition-backward .navbar-current.navbar-large-collapsed.navbar-large.navbar-transparent .navbar-bg{animation-name:ios-navbar-bg-from-cb-to-rb}.ios .router-transition-backward .navbar-current.navbar-large-collapsed.router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-ct-to-rb}.ios .router-transition-backward .navbar-previous .navbar-bg{animation-name:ios-navbar-bg-from-lb-to-cb}.ios .router-transition-backward .navbar-previous:not(.router-navbar-transition-from-large).router-navbar-transition-to-large .navbar-bg{animation-name:ios-navbar-bg-from-lt-to-cb}.ios .router-transition-backward .navbar-previous.router-navbar-transition-from-large:not(.router-navbar-transition-to-large) .navbar-bg{animation-name:ios-navbar-bg-from-lb-to-ct}.ios .router-transition-backward .navbar-previous.navbar-large-collapsed .navbar-bg{animation-name:ios-navbar-bg-from-lt-to-ct}.ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large-transparent .navbar-bg,.ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large.navbar-transparent .navbar-bg{animation-name:ios-navbar-transparent-bg-from-l-to-c}.ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large-transparent.router-navbar-transition-from-large .navbar-bg,.ios .router-transition-backward .navbar-previous.navbar-large-collapsed.navbar-large.navbar-transparent.router-navbar-transition-from-large .navbar-bg{animation-name:ios-navbar-bg-from-lb-to-ct}.view-master-detail .navbars{z-index:auto}.view-master-detail .page-master{z-index:525}.view-master-detail .navbar-master .navbar-bg,.view-master-detail .navbar-master .navbar-inner{z-index:550}.view-master-detail .navbar-master-detail .navbar-bg,.view-master-detail .navbar-master-detail .navbar-inner{z-index:500}.view-master-detail .navbar-master.navbar-previous{pointer-events:auto}.view-master-detail .navbar-master.navbar-previous .left,.view-master-detail .navbar-master.navbar-previous .right,.view-master-detail .navbar-master.navbar-previous .subnavbar,.view-master-detail .navbar-master.navbar-previous:not(.navbar-large) .title{opacity:1}.view-master-detail.router-transition .navbar-master .fading,.view-master-detail.router-transition .navbar-master .left,.view-master-detail.router-transition .navbar-master .left .icon+span,.view-master-detail.router-transition .navbar-master .right,.view-master-detail.router-transition .navbar-master .subnavbar,.view-master-detail.router-transition .navbar-master:not(.navbar-large) .title{opacity:1!important;transition-duration:0s;transform:none!important;animation:none!important}.view-master-detail.router-transition .navbar-master .navbar-bg{transition-duration:0s;animation:none!important}.view-master-detail.router-transition .navbar-master.navbar-large .title{opacity:calc(-1 + 2 * var(--f7-navbar-large-collapse-progress))!important;transition-duration:0s;transform:none!important;animation:none!important}.view-master-detail.router-transition .navbar-master.navbar-large .title-large,.view-master-detail.router-transition .navbar-master.navbar-large .title-large-text{transition-duration:0s;animation:none!important}.view-master-detail.router-transition .navbar-master.navbar-large-transparent .navbar-bg,.view-master-detail.router-transition .navbar-master.navbar-large.navbar-transparent .navbar-bg{height:100%!important;opacity:var(--f7-navbar-large-collapse-progress)!important}@keyframes ios-navbar-element-fade-in{0%{opacity:0}25%{opacity:0}to{opacity:1}}@keyframes ios-navbar-element-fade-out{from{opacity:1}75%{opacity:0}to{opacity:0}}@keyframes ios-navbar-large-title-text-slide-up{0%{transform:translateX(0px) translateY(0%) scale(1)}100%{transform:translateX(calc(var(--f7-navbarLeftTextOffset) - var(--f7-navbarTitleLargeOffset))) translateY(calc(-1 * var(--f7-navbar-large-title-height) + var(--f7-navbar-large-title-padding-vertical))) scale(.5)}}@keyframes ios-navbar-large-title-text-slide-down{0%{transform:translateX(calc(var(--f7-navbarLeftTextOffset) - var(--f7-navbarTitleLargeOffset))) translateY(calc(-1 * var(--f7-navbar-large-title-height) + var(--f7-navbar-large-title-padding-vertical)/ 2)) scale(.5)}100%{transform:translateX(0px) translateY(0%) scale(1)}}@keyframes ios-navbar-large-title-text-slide-left{0%{transform:translateX(100%)}100%{transform:translateX(0%)}}@keyframes ios-navbar-large-title-text-slide-right{0%{transform:translateX(0%)}100%{transform:translateX(100%)}}@keyframes ios-navbar-large-title-text-fade-out{0%{opacity:1}80%{opacity:0}100%{opacity:0}}@keyframes ios-navbar-large-title-text-fade-in{0%{opacity:0}20%{opacity:0}100%{opacity:1}}@keyframes ios-navbar-back-text-current-to-previous{0%{opacity:1;transform:translateY(0px) translateX(0px) scale(1)}80%{opacity:0}100%{opacity:0;transform:translateX(calc(var(--f7-navbarTitleLargeOffset) - var(--f7-navbarLeftTextOffset))) translateY(calc(1 * var(--f7-navbar-large-title-height) - var(--f7-navbar-large-title-padding-vertical)/ 2)) scale(2)}}@keyframes ios-navbar-back-text-next-to-current{0%{opacity:0;transform:translateX(calc(var(--f7-navbarTitleLargeOffset) - var(--f7-navbarLeftTextOffset))) translateY(calc(1 * var(--f7-navbar-large-title-height) + var(--f7-navbar-large-title-padding-vertical)/ 2)) scale(2)}20%{opacity:0}100%{opacity:1;transform:translateX(0px) translateY(0px) scale(1)}}@keyframes ios-navbar-bg-from-cb-to-lb{from{transform:var(--f7-navbar-large-bg-center-bottom)}to{transform:var(--f7-navbar-large-bg-left-bottom)}}@keyframes ios-navbar-bg-from-cb-to-lt{from{transform:var(--f7-navbar-large-bg-center-bottom)}to{transform:var(--f7-navbar-large-bg-left-top)}}@keyframes ios-navbar-bg-from-ct-to-lb{from{transform:var(--f7-navbar-large-bg-center-top)}to{transform:var(--f7-navbar-large-bg-left-bottom)}}@keyframes ios-navbar-bg-from-ct-to-lt{from{transform:var(--f7-navbar-large-bg-center-top)}to{transform:var(--f7-navbar-large-bg-left-top)}}@keyframes ios-navbar-bg-from-rb-to-cb{from{transform:var(--f7-navbar-large-bg-right-bottom)}to{transform:var(--f7-navbar-large-bg-center-bottom)}}@keyframes ios-navbar-bg-from-rb-to-ct{from{transform:var(--f7-navbar-large-bg-right-bottom)}to{transform:var(--f7-navbar-large-bg-center-top)}}@keyframes ios-navbar-bg-from-rt-to-cb{from{transform:var(--f7-navbar-large-bg-right-top)}to{transform:var(--f7-navbar-large-bg-center-bottom)}}@keyframes ios-navbar-bg-from-cb-to-rb{from{transform:var(--f7-navbar-large-bg-center-bottom)}to{transform:var(--f7-navbar-large-bg-right-bottom)}}@keyframes ios-navbar-bg-from-ct-to-rb{from{transform:var(--f7-navbar-large-bg-center-top)}to{transform:var(--f7-navbar-large-bg-right-bottom)}}@keyframes ios-navbar-bg-from-cb-to-rt{from{transform:var(--f7-navbar-large-bg-center-bottom)}to{transform:var(--f7-navbar-large-bg-right-top)}}@keyframes ios-navbar-bg-from-ct-to-rt{from{transform:var(--f7-navbar-large-bg-center-top)}to{transform:var(--f7-navbar-large-bg-right-top)}}@keyframes ios-navbar-bg-from-lb-to-cb{from{transform:var(--f7-navbar-large-bg-left-bottom)}to{transform:var(--f7-navbar-large-bg-center-bottom)}}@keyframes ios-navbar-bg-from-lt-to-cb{from{transform:var(--f7-navbar-large-bg-left-top)}to{transform:var(--f7-navbar-large-bg-center-bottom)}}@keyframes ios-navbar-bg-from-lb-to-ct{from{transform:var(--f7-navbar-large-bg-left-bottom)}to{transform:var(--f7-navbar-large-bg-center-top)}}@keyframes ios-navbar-bg-from-lt-to-ct{from{transform:var(--f7-navbar-large-bg-left-top)}to{transform:var(--f7-navbar-large-bg-center-top)}}@keyframes ios-navbar-transparent-bg-from-l-to-c{from{transform:var(--f7-navbar-large-transparent-bg-left)}to{transform:var(--f7-navbar-large-transparent-bg-center)}}@keyframes ios-navbar-transparent-bg-from-c-to-l{from{transform:var(--f7-navbar-large-transparent-bg-center)}to{transform:var(--f7-navbar-large-transparent-bg-left)}}.md .navbar a.link{padding:0 12px;min-width:48px}.md .navbar a.link:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .navbar a.link.icon-only:before,.md .navbar a.link.input-clear-button:before,.md .navbar a.link.notification-close-button:before,.md .navbar a.link.ripple-inset:before,.md .navbar a.link.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .navbar a.link.active-state:before{opacity:1;transition-duration:150ms}.md .navbar a.icon-only{min-width:0;flex-shrink:0;width:48px}.md .navbar .right{margin-left:auto}.md .navbar .right:first-child{right:var(--f7-safe-area-right)}.md .navbar-inner{justify-content:flex-start;overflow:hidden}.md .navbar-large:not(.navbar-large-collapsed) .navbar-inner{overflow:visible}.md .page.page-with-subnavbar .navbar-inner{overflow:visible}.md .navbar-inner-centered-title{justify-content:space-between}.md .navbar-inner-centered-title .right{margin-left:0}.md .navbar-inner-centered-title .title{text-align:center}.aurora .navbar a.icon-only{margin:0;justify-content:center}.aurora .navbar .left a+a,.aurora .navbar .right a+a{margin-left:10px}.aurora .navbar b{font-weight:700}.aurora .navbar .left{margin-right:16px}.aurora .navbar .right{margin-left:16px}.aurora .navbar .right:first-child{right:calc(16px + var(--f7-safe-area-right))}.aurora .navbar-inner{justify-content:space-between}.aurora .navbar-inner-left-title{justify-content:flex-start}.aurora .navbar-inner-left-title .right{margin-left:auto}.aurora .navbar-inner-left-title .title{text-align:left;margin-right:16px}:root{--f7-tabbar-link-active-bg-color:transparent;--f7-tabbar-label-text-transform:none;--f7-toolbar-hide-show-transition-duration:400ms}.ios{--f7-toolbar-height:44px;--f7-toolbar-font-size:17px;--f7-toolbar-inner-padding-left:8px;--f7-toolbar-inner-padding-right:8px;--f7-tabbar-labels-height:50px;--f7-tabbar-labels-tablet-height:50px;--f7-toolbar-top-shadow-image:none;--f7-toolbar-bottom-shadow-image:none;--f7-tabbar-icon-size:28px;--f7-tabbar-link-text-transform:none;--f7-tabbar-link-font-weight:400;--f7-tabbar-link-letter-spacing:0;--f7-tabbar-label-font-size:12px;--f7-tabbar-label-tablet-font-size:14px;--f7-tabbar-label-font-weight:500;--f7-tabbar-label-letter-spacing:0.01;--f7-tabbar-link-inactive-color:rgba(0, 0, 0, 0.4)}.ios .theme-dark,.ios.theme-dark{--f7-tabbar-link-inactive-color:rgba(255, 255, 255, 0.54)}.md{--f7-toolbar-height:48px;--f7-toolbar-font-size:14px;--f7-toolbar-inner-padding-left:0px;--f7-toolbar-inner-padding-right:0px;--f7-tabbar-labels-height:56px;--f7-tabbar-labels-tablet-height:56px;--f7-toolbar-top-shadow-image:var(--f7-bars-shadow-bottom-image);--f7-toolbar-bottom-shadow-image:var(--f7-bars-shadow-top-image);--f7-tabbar-icon-size:24px;--f7-tabbar-link-text-transform:uppercase;--f7-tabbar-link-font-weight:500;--f7-tabbar-link-letter-spacing:0.05em;--f7-tabbar-label-font-size:14px;--f7-tabbar-label-tablet-font-size:14px;--f7-tabbar-label-font-weight:400;--f7-tabbar-label-letter-spacing:0;--f7-tabbar-link-inactive-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-tabbar-link-inactive-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-toolbar-height:48px;--f7-toolbar-font-size:16px;--f7-toolbar-inner-padding-left:16px;--f7-toolbar-inner-padding-right:16px;--f7-toolbar-link-height:auto;--f7-toolbar-link-line-height:inherit;--f7-tabbar-labels-height:52px;--f7-tabbar-labels-tablet-height:52px;--f7-toolbar-top-shadow-image:none;--f7-toolbar-bottom-shadow-image:none;--f7-tabbar-icon-size:24px;--f7-tabbar-link-text-transform:none;--f7-tabbar-link-font-weight:500;--f7-tabbar-link-letter-spacing:0;--f7-tabbar-label-font-size:14px;--f7-tabbar-label-tablet-font-size:14px;--f7-tabbar-label-font-weight:500;--f7-tabbar-label-letter-spacing:0;--f7-tabbar-link-inactive-color:rgba(0, 0, 0, 0.5)}.aurora .theme-dark,.aurora.theme-dark{--f7-tabbar-link-inactive-color:rgba(255, 255, 255, 0.5)}.toolbar{width:100%;position:relative;margin:0;transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:600;box-sizing:border-box;left:0;height:var(--f7-toolbar-height);background-image:var(--f7-toolbar-bg-image,var(--f7-bars-bg-image));background-color:var(--f7-toolbar-bg-color,var(--f7-bars-bg-color));color:var(--f7-toolbar-text-color,var(--f7-bars-text-color));font-size:var(--f7-toolbar-font-size)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .toolbar{background-color:rgba(var(--f7-toolbar-bg-color-rgb,var(--f7-bars-bg-color-rgb)),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.toolbar b{font-weight:600}.toolbar a{color:var(--f7-toolbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)));box-sizing:border-box;flex-shrink:1;position:relative;white-space:nowrap;text-overflow:ellipsis}.toolbar .link{display:flex;line-height:var(--f7-toolbar-link-line-height, var(--f7-toolbar-height));height:var(--f7-toolbar-link-height,var(--f7-toolbar-height))}.toolbar i.icon{display:block}.toolbar:after,.toolbar:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}.page>.toolbar,.view>.toolbar,.views>.toolbar{position:absolute}.aurora .toolbar-top-aurora,.ios .toolbar-top-ios,.md .toolbar-top-md,.toolbar-top{top:0}.aurora .toolbar-top-aurora .tab-link-highlight,.ios .toolbar-top-ios .tab-link-highlight,.md .toolbar-top-md .tab-link-highlight,.toolbar-top .tab-link-highlight{bottom:0}.aurora .toolbar-top-aurora.no-border:after,.aurora .toolbar-top-aurora.no-hairline:after,.ios .toolbar-top-ios.no-border:after,.ios .toolbar-top-ios.no-hairline:after,.md .toolbar-top-md.no-border:after,.md .toolbar-top-md.no-hairline:after,.toolbar-top.no-border:after,.toolbar-top.no-hairline:after{display:none!important}.aurora .toolbar-top-aurora.no-shadow:before,.aurora .toolbar-top-aurora.toolbar-hidden:before,.ios .toolbar-top-ios.no-shadow:before,.ios .toolbar-top-ios.toolbar-hidden:before,.md .toolbar-top-md.no-shadow:before,.md .toolbar-top-md.toolbar-hidden:before,.toolbar-top.no-shadow:before,.toolbar-top.toolbar-hidden:before{display:none!important}.aurora .toolbar-top-aurora:after,.aurora .toolbar-top-aurora:before,.ios .toolbar-top-ios:after,.ios .toolbar-top-ios:before,.md .toolbar-top-md:after,.md .toolbar-top-md:before,.toolbar-top:after,.toolbar-top:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}.aurora .toolbar-top-aurora:after,.ios .toolbar-top-ios:after,.md .toolbar-top-md:after,.toolbar-top:after{content:'';position:absolute;background-color:var(--f7-toolbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.aurora .toolbar-top-aurora:before,.ios .toolbar-top-ios:before,.md .toolbar-top-md:before,.toolbar-top:before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-toolbar-top-shadow-image)}.aurora .toolbar-bottom-aurora,.ios .toolbar-bottom-ios,.md .toolbar-bottom-md,.toolbar-bottom{bottom:0;height:calc(var(--f7-toolbar-height) + var(--f7-safe-area-bottom))}.aurora .toolbar-bottom-aurora .tab-link-highlight,.ios .toolbar-bottom-ios .tab-link-highlight,.md .toolbar-bottom-md .tab-link-highlight,.toolbar-bottom .tab-link-highlight{top:0}.aurora .toolbar-bottom-aurora .toolbar-inner,.ios .toolbar-bottom-ios .toolbar-inner,.md .toolbar-bottom-md .toolbar-inner,.toolbar-bottom .toolbar-inner{height:auto;top:0;bottom:var(--f7-safe-area-bottom)}.aurora .toolbar-bottom-aurora.no-border:before,.aurora .toolbar-bottom-aurora.no-hairline:before,.ios .toolbar-bottom-ios.no-border:before,.ios .toolbar-bottom-ios.no-hairline:before,.md .toolbar-bottom-md.no-border:before,.md .toolbar-bottom-md.no-hairline:before,.toolbar-bottom.no-border:before,.toolbar-bottom.no-hairline:before{display:none!important}.aurora .toolbar-bottom-aurora.no-shadow:after,.aurora .toolbar-bottom-aurora.toolbar-hidden:after,.ios .toolbar-bottom-ios.no-shadow:after,.ios .toolbar-bottom-ios.toolbar-hidden:after,.md .toolbar-bottom-md.no-shadow:after,.md .toolbar-bottom-md.toolbar-hidden:after,.toolbar-bottom.no-shadow:after,.toolbar-bottom.toolbar-hidden:after{display:none!important}.aurora .toolbar-bottom-aurora:before,.ios .toolbar-bottom-ios:before,.md .toolbar-bottom-md:before,.toolbar-bottom:before{content:'';position:absolute;background-color:var(--f7-toolbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.aurora .toolbar-bottom-aurora:after,.ios .toolbar-bottom-ios:after,.md .toolbar-bottom-md:after,.toolbar-bottom:after{content:'';position:absolute;right:0;width:100%;bottom:100%;height:8px;top:auto;pointer-events:none;background:var(--f7-toolbar-bottom-shadow-image);transform:translate3d(0,0,0)}.toolbar-inner{position:absolute;left:0;top:0;width:100%;height:100%;display:flex;justify-content:space-between;box-sizing:border-box;align-items:center;align-content:center;overflow:hidden;padding:0 calc(var(--f7-toolbar-inner-padding-right) + var(--f7-safe-area-right)) 0 calc(var(--f7-toolbar-inner-padding-left) + var(--f7-safe-area-left))}.views>.tabbar,.views>.tabbar-labels{z-index:5001}.tabbar a,.tabbar-labels a{color:var(--f7-tabbar-link-inactive-color)}.tabbar .link,.tabbar-labels .link{line-height:1.4}.tabbar .link,.tabbar .tab-link,.tabbar-labels .link,.tabbar-labels .tab-link{height:100%;width:100%;box-sizing:border-box;display:flex;justify-content:center;align-items:center;flex-direction:column;text-transform:var(--f7-tabbar-link-text-transform);font-weight:var(--f7-tabbar-link-font-weight);letter-spacing:var(--f7-tabbar-link-letter-spacing);overflow:hidden}.tabbar .tab-link-active,.tabbar-labels .tab-link-active{color:var(--f7-tabbar-link-active-color,var(--f7-theme-color));background-color:var(--f7-tabbar-link-active-bg-color,transparent)}.tabbar i.icon,.tabbar-labels i.icon{font-size:var(--f7-tabbar-icon-size);height:var(--f7-tabbar-icon-size);line-height:var(--f7-tabbar-icon-size)}.tabbar-labels{--f7-toolbar-height:var(--f7-tabbar-labels-height)}.tabbar-labels .link,.tabbar-labels .tab-link{height:100%;justify-content:space-between;align-items:center}.tabbar-labels .tabbar-label{display:block;line-height:1;margin:0;position:relative;text-overflow:ellipsis;white-space:nowrap;font-size:var(--f7-tabbar-label-font-size);text-transform:var(--f7-tabbar-label-text-transform);font-weight:var(--f7-tabbar-label-font-weight);letter-spacing:var(--f7-tabbar-label-letter-spacing)}@media (min-width:768px) and (min-height:600px){:root{--f7-tabbar-labels-height:var(--f7-tabbar-labels-tablet-height);--f7-tabbar-label-font-size:var(--f7-tabbar-label-tablet-font-size)}}.tabbar-scrollable .toolbar-inner{justify-content:flex-start;overflow:auto;-webkit-overflow-scrolling:touch}.tabbar-scrollable .toolbar-inner::-webkit-scrollbar{display:none!important;width:0!important;height:0!important;-webkit-appearance:none;opacity:0!important}.tabbar-scrollable .link,.tabbar-scrollable .tab-link{width:auto;flex-shrink:0}.navbar-transitioning+.toolbar,.navbar-transitioning~* .toolbar,.toolbar-transitioning{transition-duration:var(--f7-toolbar-hide-show-transition-duration)}.aurora .toolbar-bottom-aurora~*,.ios .toolbar-bottom-ios~*,.md .toolbar-bottom-md~*,.toolbar-bottom~*{--f7-page-toolbar-bottom-offset:var(--f7-toolbar-height)}.aurora .toolbar-bottom-aurora.tabbar-labels~*,.ios .toolbar-bottom-ios.tabbar-labels~*,.md .toolbar-bottom-md.tabbar-labels~*,.toolbar-bottom.tabbar-labels~*{--f7-page-toolbar-bottom-offset:var(--f7-tabbar-labels-height)}.aurora .toolbar-bottom-aurora.toolbar-hidden,.ios .toolbar-bottom-ios.toolbar-hidden,.md .toolbar-bottom-md.toolbar-hidden,.toolbar-bottom.toolbar-hidden{transform:translate3d(0,100%,0)}.aurora .toolbar-top-aurora~*,.ios .toolbar-top-ios~*,.md .toolbar-top-md~*,.toolbar-top~*{--f7-page-toolbar-top-offset:var(--f7-toolbar-height)}.aurora .toolbar-top-aurora.tabbar-labels~*,.ios .toolbar-top-ios.tabbar-labels~*,.md .toolbar-top-md.tabbar-labels~*,.toolbar-top.tabbar-labels~*{--f7-page-toolbar-top-offset:var(--f7-tabbar-labels-height)}.aurora .toolbar-top-aurora.toolbar-hidden,.ios .toolbar-top-ios.toolbar-hidden,.md .toolbar-top-md.toolbar-hidden,.toolbar-top.toolbar-hidden{transform:translate3d(0,-100%,0)}.aurora .navbar~* .toolbar-top-aurora,.aurora .navbar~.page:not(.no-navbar) .toolbar-top-aurora,.aurora .navbar~.toolbar-top-aurora,.ios .navbars~* .toolbar-top-ios,.ios .navbars~.page:not(.no-navbar) .toolbar-top-ios,.ios .navbars~.toolbar-top-ios,.ios .navbar~* .toolbar-top-ios,.ios .navbar~.page:not(.no-navbar) .toolbar-top-ios,.ios .navbar~.toolbar-top-ios,.md .navbar~* .toolbar-top-md,.md .navbar~.page:not(.no-navbar) .toolbar-top-md,.md .navbar~.toolbar-top-md,.navbars~* .toolbar-top,.navbars~.page:not(.no-navbar) .toolbar-top,.navbars~.toolbar-top,.navbar~* .toolbar-top,.navbar~.page:not(.no-navbar) .toolbar-top,.navbar~.toolbar-top{top:calc(var(--f7-navbar-height) + var(--f7-safe-area-top))}.aurora .navbar~* .toolbar-top-aurora.toolbar-hidden,.aurora .navbar~.page:not(.no-navbar) .toolbar-top-aurora.toolbar-hidden,.aurora .navbar~.toolbar-top-aurora.toolbar-hidden,.ios .navbars~* .toolbar-top-ios.toolbar-hidden,.ios .navbars~.page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden,.ios .navbars~.toolbar-top-ios.toolbar-hidden,.ios .navbar~* .toolbar-top-ios.toolbar-hidden,.ios .navbar~.page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden,.ios .navbar~.toolbar-top-ios.toolbar-hidden,.md .navbar~* .toolbar-top-md.toolbar-hidden,.md .navbar~.page:not(.no-navbar) .toolbar-top-md.toolbar-hidden,.md .navbar~.toolbar-top-md.toolbar-hidden,.navbars~* .toolbar-top.toolbar-hidden,.navbars~.page:not(.no-navbar) .toolbar-top.toolbar-hidden,.navbars~.toolbar-top.toolbar-hidden,.navbar~* .toolbar-top.toolbar-hidden,.navbar~.page:not(.no-navbar) .toolbar-top.toolbar-hidden,.navbar~.toolbar-top.toolbar-hidden{transform:translate3d(0,calc(-1 * (var(--f7-navbar-height) + var(--f7-toolbar-height) + var(--f7-safe-area-top))),0)}.aurora .navbar~* .toolbar-top-aurora.toolbar-hidden.tabbar-labels,.aurora .navbar~.page:not(.no-navbar) .toolbar-top-aurora.toolbar-hidden.tabbar-labels,.aurora .navbar~.toolbar-top-aurora.toolbar-hidden.tabbar-labels,.ios .navbars~* .toolbar-top-ios.toolbar-hidden.tabbar-labels,.ios .navbars~.page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden.tabbar-labels,.ios .navbars~.toolbar-top-ios.toolbar-hidden.tabbar-labels,.ios .navbar~* .toolbar-top-ios.toolbar-hidden.tabbar-labels,.ios .navbar~.page:not(.no-navbar) .toolbar-top-ios.toolbar-hidden.tabbar-labels,.ios .navbar~.toolbar-top-ios.toolbar-hidden.tabbar-labels,.md .navbar~* .toolbar-top-md.toolbar-hidden.tabbar-labels,.md .navbar~.page:not(.no-navbar) .toolbar-top-md.toolbar-hidden.tabbar-labels,.md .navbar~.toolbar-top-md.toolbar-hidden.tabbar-labels,.navbars~* .toolbar-top.toolbar-hidden.tabbar-labels,.navbars~.page:not(.no-navbar) .toolbar-top.toolbar-hidden.tabbar-labels,.navbars~.toolbar-top.toolbar-hidden.tabbar-labels,.navbar~* .toolbar-top.toolbar-hidden.tabbar-labels,.navbar~.page:not(.no-navbar) .toolbar-top.toolbar-hidden.tabbar-labels,.navbar~.toolbar-top.toolbar-hidden.tabbar-labels{transform:translate3d(0,calc(-1 * (var(--f7-navbar-height) + var(--f7-tabbar-labels-height) + var(--f7-safe-area-top))),0)}.aurora .navbar-hidden+.toolbar-top-aurora:not(.toolbar-hidden),.aurora .navbar-hidden~* .toolbar-top-aurora:not(.toolbar-hidden),.ios .navbar-hidden+.toolbar-top-ios:not(.toolbar-hidden),.ios .navbar-hidden~* .toolbar-top-ios:not(.toolbar-hidden),.md .navbar-hidden+.toolbar-top-md:not(.toolbar-hidden),.md .navbar-hidden~* .toolbar-top-md:not(.toolbar-hidden),.navbar-hidden+.toolbar-top:not(.toolbar-hidden),.navbar-hidden~* .toolbar-top:not(.toolbar-hidden){transform:translate3d(0,calc(0px - var(--f7-navbar-height)),0)}.aurora .navbar-large-hidden~* .toolbar-top-aurora:not(.toolbar-hidden),.ios .navbar-large-hidden+.toolbar-top-ios:not(.toolbar-hidden),.ios .navbar-large-hidden~* .toolbar-top-ios:not(.toolbar-hidden),.md .navbar-large-hidden+.toolbar-top-md:not(.toolbar-hidden),.md .navbar-large-hidden~* .toolbar-top-md:not(.toolbar-hidden),.navbar-large-hidden+.toolbar-top:not(.toolbar-hidden),.navbar-large-hidden~* .toolbar-top:not(.toolbar-hidden){transform:translate3d(0,calc(0px - var(--f7-navbar-height) - var(--f7-navbar-large-title-height)),0)}.ios .toolbar a.icon-only{min-height:var(--f7-toolbar-height);display:flex;justify-content:center;align-items:center;margin:0;min-width:44px}.ios .tabbar-labels .link,.ios .tabbar-labels .tab-link{padding-top:4px;padding-bottom:4px}.ios .tabbar-labels .link i+span,.ios .tabbar-labels .tab-link i+span{margin:0}@media (min-width:768px) and (min-height:600px){.ios .tabbar .link,.ios .tabbar .tab-link,.ios .tabbar-labels .link,.ios .tabbar-labels .tab-link{justify-content:center;flex-direction:row}.ios .tabbar .link i+span,.ios .tabbar .tab-link i+span,.ios .tabbar-labels .link i+span,.ios .tabbar-labels .tab-link i+span{margin-left:5px}}.ios .tabbar-scrollable .toolbar-inner{justify-content:flex-start}.ios .tabbar-scrollable .link,.ios .tabbar-scrollable .tab-link{padding:0 8px}.md .toolbar .link{justify-content:center;padding:0 12px;min-width:48px}.md .toolbar .link:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .toolbar .link.icon-only:before,.md .toolbar .link.input-clear-button:before,.md .toolbar .link.notification-close-button:before,.md .toolbar .link.ripple-inset:before,.md .toolbar .link.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .toolbar .link.active-state:before{opacity:1;transition-duration:150ms}.md .toolbar a.icon-only{min-width:0;flex-shrink:0}.md .tabbar .link,.md .tabbar .tab-link,.md .tabbar-labels .link,.md .tabbar-labels .tab-link{padding-left:0;padding-right:0}.md .tabbar a.icon-only,.md .tabbar-labels a.icon-only{flex-shrink:initial}.md .tabbar .tab-link,.md .tabbar-labels .tab-link{transition-duration:.3s;overflow:hidden;position:relative}.md .tabbar .tab-link-highlight,.md .tabbar-labels .tab-link-highlight{position:absolute;height:2px;background:var(--f7-tabbar-link-active-border-color,var(--f7-theme-color));transition-duration:.3s;left:0}.md .tabbar-labels .link,.md .tabbar-labels .tab-link{padding-top:7px;padding-bottom:7px}.md .tabbar-label{max-width:100%;overflow:hidden;line-height:1.2}.md .tabbar-scrollable .toolbar-inner{overflow:auto}.md .tabbar-scrollable .link,.md .tabbar-scrollable .tab-link{padding:0 12px}.aurora .toolbar a.icon-only{min-height:var(--f7-toolbar-height);display:flex;justify-content:center;align-items:center;margin:0}.aurora .tabbar .tab-link-highlight,.aurora .tabbar-labels .tab-link-highlight{position:absolute;height:2px;background:var(--f7-tabbar-link-active-border-color,var(--f7-theme-color));transition-duration:.3s;left:0}.aurora .tabbar .toolbar-inner,.aurora .tabbar-labels .toolbar-inner{padding-left:0;padding-right:0}.aurora .tabbar .link,.aurora .tabbar .tab-link,.aurora .tabbar-labels .link,.aurora .tabbar-labels .tab-link{transition-duration:.2s}.aurora .tabbar-labels .link,.aurora .tabbar-labels .tab-link{padding-top:5px;padding-bottom:5px}.aurora .tabbar-labels .link i+span,.aurora .tabbar-labels .tab-link i+span{margin:0}.aurora .tabbar-scrollable .toolbar-inner{justify-content:flex-start}.aurora .tabbar-scrollable .link,.aurora .tabbar-scrollable .tab-link{padding:0 16px}:root{--f7-subnavbar-title-line-height:1.2}.ios{--f7-subnavbar-height:44px;--f7-subnavbar-inner-padding-left:8px;--f7-subnavbar-inner-padding-right:8px;--f7-subnavbar-title-font-size:34px;--f7-subnavbar-title-font-weight:700;--f7-subnavbar-title-letter-spacing:-0.03em;--f7-subnavbar-title-margin-left:8px;--f7-subnavbar-shadow-image:none}.md{--f7-subnavbar-height:48px;--f7-subnavbar-inner-padding-left:16px;--f7-subnavbar-inner-padding-right:16px;--f7-subnavbar-title-font-size:20px;--f7-subnavbar-title-font-weight:500;--f7-subnavbar-title-letter-spacing:0;--f7-subnavbar-title-margin-left:0px;--f7-subnavbar-shadow-image:var(--f7-bars-shadow-bottom-image)}.aurora{--f7-subnavbar-height:48px;--f7-subnavbar-inner-padding-left:16px;--f7-subnavbar-inner-padding-right:16px;--f7-subnavbar-title-font-size:28px;--f7-subnavbar-title-font-weight:bold;--f7-subnavbar-title-letter-spacing:0em;--f7-subnavbar-title-margin-left:0px;--f7-subnavbar-shadow-image:none;--f7-subnavbar-link-height:auto;--f7-subnavbar-link-line-height:inherit}.subnavbar{width:100%;position:absolute;left:0;top:0;z-index:600;box-sizing:border-box;display:flex;justify-content:space-between;align-items:center;background-image:var(--f7-subnavbar-bg-image,var(--f7-bars-bg-image));background-color:var(--f7-subnavbar-bg-color,var(--f7-bars-bg-color));color:var(--f7-subnavbar-text-color,var(--f7-bars-text-color))}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .subnavbar{background-color:rgba(var(--f7-subnavbar-bg-color-rgb,var(--f7-bars-bg-color-rgb)),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.subnavbar .subnavbar-title{position:relative;overflow:hidden;text-overflow:ellpsis;white-space:nowrap;font-size:var(--f7-subnavbar-title-font-size);font-weight:var(--f7-subnavbar-title-font-weight);text-align:left;display:inline-block;line-height:var(--f7-subnavbar-title-line-height);letter-spacing:var(--f7-subnavbar-title-letter-spacing);margin-left:var(--f7-subnavbar-title-margin-left)}.subnavbar .left,.subnavbar .right{flex-shrink:0;display:flex;justify-content:flex-start;align-items:center}.subnavbar .right:first-child{position:absolute;height:100%}.subnavbar a{color:var(--f7-subnavbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.subnavbar a.link{line-height:var(--f7-subnavbar-link-line-height, var(--f7-subnavbar-height));height:var(--f7-subnavbar-link-height,var(--f7-subnavbar-height))}.subnavbar a.icon-only{min-width:var(--f7-subnavbar-height)}.subnavbar.no-border:after,.subnavbar.no-hairline:after{display:none!important}.subnavbar.navbar-hidden:before,.subnavbar.no-shadow:before{display:none!important}.subnavbar:after,.subnavbar:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}.subnavbar:after{content:'';position:absolute;background-color:var(--f7-subnavbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.subnavbar:before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-subnavbar-shadow-image)}.subnavbar-inner{width:100%;height:100%;display:flex;align-items:center;box-sizing:border-box;justify-content:space-between;overflow:hidden;padding:0 calc(var(--f7-subnavbar-inner-padding-left) + var(--f7-safe-area-right)) 0 calc(var(--f7-subnavbar-inner-padding-right) + var(--f7-safe-area-left))}.subnavbar-inner.stacked{display:none}.navbar .subnavbar{top:100%}.page>.subnavbar,.view>.subnavbar,.views>.subnavbar{position:absolute}.navbars~* .subnavbar,.navbars~.page-with-subnavbar:not(.no-navbar) .subnavbar,.navbars~.subnavbar,.navbar~* .subnavbar,.navbar~.page-with-subnavbar:not(.no-navbar) .subnavbar,.navbar~.subnavbar,.page-with-subnavbar .navbar~* .subnavbar,.page-with-subnavbar .navbar~.subnavbar{top:calc(var(--f7-navbar-height) + var(--f7-safe-area-top))}.navbar .title-large~.subnavbar,.navbars~.page-with-navbar-large:not(.no-navbar) .subnavbar,.navbar~.page-with-navbar-large:not(.no-navbar) .subnavbar,.page-with-subnavbar.page-with-navbar-large .navbar~* .subnavbar,.page-with-subnavbar.page-with-navbar-large .navbar~.subnavbar{top:calc(var(--f7-navbar-height) + var(--f7-navbar-large-title-height) + var(--f7-safe-area-top));transform:translate3d(0,calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)),0)}.page-with-subnavbar,.subnavbar~*{--f7-page-subnavbar-offset:var(--f7-subnavbar-height)}.ios .subnavbar{height:calc(var(--f7-subnavbar-height) + 1px);margin-top:-1px;padding-top:1px}.ios .subnavbar .title{align-self:flex-start;flex-shrink:10}.ios .subnavbar .left a+a,.ios .subnavbar .right a+a{margin-left:16px}.ios .subnavbar .left{margin-right:10px}.ios .subnavbar .right{margin-left:10px}.ios .subnavbar .right:first-child{right:8px}.ios .subnavbar a.link{justify-content:flex-start}.ios .subnavbar a.icon-only{justify-content:center;margin:0}.md .subnavbar{height:var(--f7-subnavbar-height)}.md .subnavbar .right{margin-left:auto}.md .subnavbar .right:first-child{right:16px}.md .subnavbar a.link{justify-content:center;padding:0 12px}.md .subnavbar a.link:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .subnavbar a.link.icon-only:before,.md .subnavbar a.link.input-clear-button:before,.md .subnavbar a.link.notification-close-button:before,.md .subnavbar a.link.ripple-inset:before,.md .subnavbar a.link.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .subnavbar a.link.active-state:before{opacity:1;transition-duration:150ms}.md .subnavbar a.icon-only{flex-shrink:0;padding:0 12px}.md .subnavbar-inner>a.link:first-child{margin-left:calc(-1 * var(--f7-subnavbar-inner-padding-left))}.md .subnavbar-inner>a.link:last-child{margin-right:calc(-1 * var(--f7-subnavbar-inner-padding-right))}.aurora .subnavbar{height:calc(var(--f7-subnavbar-height) + 1px);margin-top:-1px;padding-top:1px}.aurora .subnavbar .title{align-self:flex-start;flex-shrink:10}.aurora .subnavbar .left a+a,.aurora .subnavbar .right a+a{margin-left:10px}.aurora .subnavbar .left{margin-right:10px}.aurora .subnavbar .right{margin-left:10px}.aurora .subnavbar .right:first-child{right:16px}.aurora .subnavbar a.link{justify-content:flex-start}.aurora .subnavbar a.icon-only{justify-content:center;margin:0}:root{--f7-block-padding-horizontal:16px;--f7-block-padding-vertical:16px;--f7-block-font-size:inherit;--f7-block-text-color:inherit;--f7-block-header-margin:10px;--f7-block-footer-margin:10px;--f7-block-header-font-size:14px;--f7-block-footer-font-size:14px;--f7-block-title-text-transform:none;--f7-block-title-white-space:nowrap;--f7-block-title-medium-text-transform:none;--f7-block-title-large-text-transform:none;--f7-block-inset-side-margin:16px;--f7-block-title-medium-text-color:#000;--f7-block-title-large-text-color:#000;--f7-block-strong-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-block-title-text-color:#fff;--f7-block-strong-border-color:rgba(255, 255, 255, 0.15);--f7-block-title-medium-text-color:#fff;--f7-block-title-large-text-color:#fff;--f7-block-strong-bg-color:#1c1c1d}.ios{--f7-block-margin-vertical:35px;--f7-block-strong-border-color:rgba(0, 0, 0, 0.22);--f7-block-title-text-color:#000;--f7-block-title-font-size:16px;--f7-block-title-font-weight:600;--f7-block-title-line-height:20px;--f7-block-title-margin-bottom:10px;--f7-block-title-medium-font-size:22px;--f7-block-title-medium-font-weight:bold;--f7-block-title-medium-line-height:1.4;--f7-block-title-large-font-size:30px;--f7-block-title-large-font-weight:bold;--f7-block-title-large-line-height:1.3;--f7-block-inset-border-radius:8px;--f7-block-strong-text-color:#000;--f7-block-header-text-color:rgba(0, 0, 0, 0.45);--f7-block-footer-text-color:rgba(0, 0, 0, 0.45)}.ios .theme-dark,.ios.theme-dark{--f7-block-header-text-color:rgba(255, 255, 255, 0.55);--f7-block-footer-text-color:rgba(255, 255, 255, 0.55);--f7-block-strong-text-color:#fff}.md{--f7-block-margin-vertical:32px;--f7-block-strong-text-color:inherit;--f7-block-strong-border-color:rgba(0, 0, 0, 0.12);--f7-block-title-font-size:inherit;--f7-block-title-text-color:rgba(0, 0, 0, 0.54);--f7-block-title-font-weight:500;--f7-block-title-line-height:16px;--f7-block-title-margin-bottom:16px;--f7-block-title-medium-font-size:24px;--f7-block-title-medium-font-weight:500;--f7-block-title-medium-line-height:1.3;--f7-block-title-large-font-size:34px;--f7-block-title-large-font-weight:500;--f7-block-title-large-line-height:1.2;--f7-block-inset-border-radius:4px;--f7-block-header-text-color:rgba(0, 0, 0, 0.54);--f7-block-footer-text-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-block-header-text-color:rgba(255, 255, 255, 0.54);--f7-block-footer-text-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-block-margin-vertical:32px;--f7-block-strong-border-color:rgba(0, 0, 0, 0.12);--f7-block-title-font-size:16px;--f7-block-title-text-color:#000;--f7-block-title-font-weight:600;--f7-block-title-line-height:1.5;--f7-block-title-margin-bottom:10px;--f7-block-title-medium-font-size:22px;--f7-block-title-medium-font-weight:bold;--f7-block-title-medium-line-height:1.4;--f7-block-title-large-font-size:28px;--f7-block-title-large-font-weight:bold;--f7-block-title-large-line-height:1.3;--f7-block-inset-border-radius:8px;--f7-block-strong-text-color:inherit;--f7-block-header-text-color:rgba(0, 0, 0, 0.6);--f7-block-footer-text-color:rgba(0, 0, 0, 0.6)}.aurora .theme-dark,.aurora.theme-dark{--f7-block-header-text-color:rgba(255, 255, 255, 0.54);--f7-block-footer-text-color:rgba(255, 255, 255, 0.54);--f7-block-strong-text-color:#fff}.block{box-sizing:border-box;position:relative;z-index:1;color:var(--f7-block-text-color);margin:var(--f7-block-margin-vertical) 0;padding-top:0;padding-bottom:0;padding-left:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-right));font-size:var(--f7-block-font-size)}.aurora .block.no-hairlines-aurora ul:after,.aurora .block.no-hairlines-aurora ul:before,.aurora .block.no-hairlines-aurora:after,.aurora .block.no-hairlines-aurora:before,.block.no-hairlines ul:after,.block.no-hairlines ul:before,.block.no-hairlines:after,.block.no-hairlines:before,.ios .block.no-hairlines-ios ul:after,.ios .block.no-hairlines-ios ul:before,.ios .block.no-hairlines-ios:after,.ios .block.no-hairlines-ios:before,.md .block.no-hairlines-md ul:after,.md .block.no-hairlines-md ul:before,.md .block.no-hairlines-md:after,.md .block.no-hairlines-md:before{display:none!important}.aurora .block.no-hairline-top-aurora ul:before,.aurora .block.no-hairline-top-aurora:before,.block.no-hairline-top ul:before,.block.no-hairline-top:before,.ios .block.no-hairline-top-ios ul:before,.ios .block.no-hairline-top-ios:before,.md .block.no-hairline-top-md ul:before,.md .block.no-hairline-top-md:before{display:none!important}.aurora .block.no-hairline-bottom-aurora ul:after,.aurora .block.no-hairline-bottom-aurora:after,.block.no-hairline-bottom ul:after,.block.no-hairline-bottom:after,.ios .block.no-hairline-bottom-ios ul:after,.ios .block.no-hairline-bottom-ios:after,.md .block.no-hairline-bottom-md ul:after,.md .block.no-hairline-bottom-md:after{display:none!important}.block>h1:first-child,.block>h2:first-child,.block>h3:first-child,.block>h4:first-child,.block>p:first-child{margin-top:0}.block>h1:last-child,.block>h2:last-child,.block>h3:last-child,.block>h4:last-child,.block>p:last-child{margin-bottom:0}.block-strong{color:var(--f7-block-strong-text-color);padding-top:var(--f7-block-padding-vertical);padding-bottom:var(--f7-block-padding-vertical);background-color:var(--f7-block-strong-bg-color)}.block-strong:before{content:'';position:absolute;background-color:var(--f7-block-strong-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.block-strong:after{content:'';position:absolute;background-color:var(--f7-block-strong-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.block-title{position:relative;overflow:hidden;margin:0;white-space:var(--f7-block-title-white-space);text-overflow:ellipsis;text-transform:var(--f7-block-title-text-transform);color:var(--f7-block-title-text-color);font-size:var(--f7-block-title-font-size, inherit);font-weight:var(--f7-block-title-font-weight);line-height:var(--f7-block-title-line-height);margin-top:var(--f7-block-margin-vertical);margin-bottom:var(--f7-block-title-margin-bottom);margin-left:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));margin-right:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-right))}.block-title+.block,.block-title+.block-header,.block-title+.card,.block-title+.list,.block-title+.timeline{margin-top:0px}.block-title-medium{font-size:var(--f7-block-title-medium-font-size);text-transform:var(--f7-block-title-medium-text-transform);color:var(--f7-block-title-medium-text-color);font-weight:var(--f7-block-title-medium-font-weight);line-height:var(--f7-block-title-medium-line-height)}.block-title-large{font-size:var(--f7-block-title-large-font-size);text-transform:var(--f7-block-title-large-text-transform);color:var(--f7-block-title-large-text-color);font-weight:var(--f7-block-title-large-font-weight);line-height:var(--f7-block-title-large-line-height)}.block>.block-title:first-child,.list>.block-title:first-child{margin-top:0;margin-left:0;margin-right:0}.block-header{color:var(--f7-block-header-text-color);font-size:var(--f7-block-header-font-size);margin-bottom:var(--f7-block-header-margin);margin-top:var(--f7-block-margin-vertical)}.block-header+.block,.block-header+.card,.block-header+.list,.block-header+.timeline{margin-top:var(--f7-block-header-margin)}.block-footer{color:var(--f7-block-footer-text-color);font-size:var(--f7-block-footer-font-size);margin-top:var(--f7-block-footer-margin);margin-bottom:var(--f7-block-margin-vertical)}.block-footer,.block-header{padding-top:0;padding-bottom:0;padding-left:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-right))}.block-footer h1:first-child,.block-footer h2:first-child,.block-footer h3:first-child,.block-footer h4:first-child,.block-footer p:first-child,.block-footer ul:first-child,.block-header h1:first-child,.block-header h2:first-child,.block-header h3:first-child,.block-header h4:first-child,.block-header p:first-child,.block-header ul:first-child{margin-top:0}.block-footer h1:last-child,.block-footer h2:last-child,.block-footer h3:last-child,.block-footer h4:last-child,.block-footer p:last-child,.block-footer ul:last-child,.block-header h1:last-child,.block-header h2:last-child,.block-header h3:last-child,.block-header h4:last-child,.block-header p:last-child,.block-header ul:last-child{margin-bottom:0}.block-footer h1:first-child:last-child,.block-footer h2:first-child:last-child,.block-footer h3:first-child:last-child,.block-footer h4:first-child:last-child,.block-footer p:first-child:last-child,.block-footer ul:first-child:last-child,.block-header h1:first-child:last-child,.block-header h2:first-child:last-child,.block-header h3:first-child:last-child,.block-header h4:first-child:last-child,.block-header p:first-child:last-child,.block-header ul:first-child:last-child{margin-top:0;margin-bottom:0}.block .block-header,.card .block-header,.list .block-header,.timeline .block-header{margin-top:0}.block .block-footer,.card .block-footer,.list .block-footer,.timeline .block-footer{margin-bottom:0}.block+.block-footer,.card+.block-footer,.list+.block-footer,.timeline+.block-footer{margin-top:calc(-1 * (var(--f7-block-margin-vertical) - var(--f7-block-footer-margin)))}.block+.block-footer{margin-top:calc(-1 * (var(--f7-block-margin-vertical) - var(--f7-block-footer-margin)));margin-bottom:var(--f7-block-margin-vertical)}.block .block-footer,.block .block-header{padding:0}.block.inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.inset:after,.block-strong.inset:before{display:none!important}@media (min-width:480px){.block.xsmall-inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.xsmall-inset:after,.block-strong.xsmall-inset:before{display:none!important}}@media (min-width:568px){.block.small-inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.small-inset:after,.block-strong.small-inset:before{display:none!important}}@media (min-width:768px){.block.medium-inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.medium-inset:after,.block-strong.medium-inset:before{display:none!important}}@media (min-width:1024px){.block.large-inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.large-inset:after,.block-strong.large-inset:before{display:none!important}}@media (min-width:1200px){.block.xlarge-inset{border-radius:var(--f7-block-inset-border-radius);margin-left:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-block-inset-side-margin) + var(--f7-safe-area-outer-right));--f7-safe-area-left:0px;--f7-safe-area-right:0px}.block-strong.xlarge-inset:after,.block-strong.xlarge-inset:before{display:none!important}}:root{--f7-list-inset-side-margin:16px;--f7-list-item-cell-margin:16px;--f7-list-item-padding-horizontal:16px;--f7-list-item-padding-vertical:8px;--f7-list-media-item-padding-horizontal:16px;--f7-list-item-text-max-lines:2;--f7-list-chevron-icon-font-size:20px;--f7-list-item-media-margin:16px;--f7-list-item-title-font-size:inherit;--f7-list-item-title-font-weight:400;--f7-list-item-title-text-color:inherit;--f7-list-item-title-line-height:inherit;--f7-list-item-title-white-space:nowrap;--f7-list-item-subtitle-font-weight:400;--f7-list-item-subtitle-text-color:inherit;--f7-list-item-subtitle-line-height:inherit;--f7-list-item-text-font-weight:400;--f7-list-item-after-font-weight:400;--f7-list-item-after-line-height:inherit;--f7-list-item-header-text-color:inherit;--f7-list-item-header-font-size:12px;--f7-list-item-header-font-weight:400;--f7-list-item-header-line-height:1.2;--f7-list-item-footer-font-size:12px;--f7-list-item-footer-font-weight:400;--f7-list-item-footer-line-height:1.2;--f7-list-button-font-size:inherit;--f7-list-button-font-weight:400;--f7-list-button-text-align:center;--f7-list-item-divider-line-height:inherit;--f7-list-item-divider-font-weight:400;--f7-list-group-title-line-height:inherit;--f7-menu-list-offset:8px;--f7-menu-list-border-radius:8px;--f7-menu-list-font-size:14px;--f7-menu-list-item-title-font-size:14px;--f7-menu-list-item-title-font-weight:500;--f7-menu-list-item-subtitle-font-size:14px;--f7-menu-list-item-text-font-size:14px;--f7-menu-list-item-after-font-size:14px;--f7-list-bg-color:#fff;--f7-list-chevron-icon-color:rgba(0, 0, 0, 0.2);--f7-menu-list-selected-text-color:var(--f7-theme-color);--f7-menu-list-selected-bg-color:rgba(var(--f7-theme-color-rgb), 0.15)}:root .theme-dark,:root.theme-dark{--f7-list-button-border-color:rgba(255, 255, 255, 0.15);--f7-list-bg-color:#1c1c1d;--f7-list-border-color:rgba(255, 255, 255, 0.15);--f7-list-item-border-color:rgba(255, 255, 255, 0.15);--f7-list-item-divider-border-color:rgba(255, 255, 255, 0.15);--f7-list-item-divider-bg-color:#232323;--f7-list-group-title-bg-color:#232323;--f7-list-chevron-icon-color:rgba(255, 255, 255, 0.3);--f7-menu-list-selected-text-color:inherit;--f7-menu-list-selected-bg-color:var(--f7-theme-color)}.ios{--f7-list-in-list-padding-left:30px;--f7-list-inset-border-radius:8px;--f7-list-margin-vertical:35px;--f7-list-font-size:17px;--f7-list-chevron-icon-area:20px;--f7-list-border-color:rgba(0, 0, 0, 0.22);--f7-list-item-border-color:rgba(0, 0, 0, 0.22);--f7-list-link-pressed-bg-color:rgba(0, 0, 0, 0.15);--f7-list-item-subtitle-font-size:15px;--f7-list-item-text-font-size:15px;--f7-list-item-text-line-height:21px;--f7-list-item-after-font-size:inherit;--f7-list-item-after-padding:5px;--f7-list-item-min-height:44px;--f7-list-item-media-icons-margin:5px;--f7-list-media-item-padding-vertical:10px;--f7-list-media-item-title-font-weight:600;--f7-list-button-border-color:rgba(0, 0, 0, 0.22);--f7-list-item-divider-height:31px;--f7-list-item-divider-font-size:inherit;--f7-list-item-divider-bg-color:rgba(0, 0, 0, 0.03);--f7-list-item-divider-border-color:rgba(0, 0, 0, 0.22);--f7-list-group-title-height:31px;--f7-list-group-title-font-size:inherit;--f7-list-group-title-font-weight:400;--f7-list-group-title-bg-color:#f7f7f7;--f7-list-item-after-text-color:rgba(0, 0, 0, 0.45);--f7-list-item-footer-text-color:rgba(0, 0, 0, 0.45);--f7-list-item-text-text-color:rgba(0, 0, 0, 0.45);--f7-list-item-divider-text-color:rgba(0, 0, 0, 0.45);--f7-list-group-title-text-color:rgba(0, 0, 0, 0.45)}.ios .theme-dark,.ios.theme-dark{--f7-list-item-after-text-color:rgba(255, 255, 255, 0.55);--f7-list-item-header-text-color:rgba(255, 255, 255, 0.55);--f7-list-item-footer-text-color:rgba(255, 255, 255, 0.55);--f7-list-item-text-text-color:rgba(255, 255, 255, 0.55);--f7-list-item-divider-text-color:rgba(255, 255, 255, 0.55);--f7-list-group-title-text-color:rgba(255, 255, 255, 0.55);--f7-list-link-pressed-bg-color:rgba(255, 255, 255, 0.08)}.md{--f7-list-in-list-padding-left:40px;--f7-list-inset-border-radius:4px;--f7-list-margin-vertical:32px;--f7-list-font-size:16px;--f7-list-chevron-icon-area:26px;--f7-list-border-color:rgba(0, 0, 0, 0.12);--f7-list-item-border-color:rgba(0, 0, 0, 0.12);--f7-list-item-subtitle-font-size:14px;--f7-list-item-text-font-size:14px;--f7-list-item-text-line-height:20px;--f7-list-item-after-font-size:14px;--f7-list-item-after-padding:8px;--f7-list-item-min-height:48px;--f7-list-item-media-icons-margin:8px;--f7-list-media-item-padding-vertical:14px;--f7-list-button-border-color:transparent;--f7-list-item-divider-height:48px;--f7-list-item-divider-font-size:14px;--f7-list-item-divider-bg-color:#f4f4f4;--f7-list-item-divider-border-color:transparent;--f7-list-group-title-height:48px;--f7-list-group-title-font-size:14px;--f7-list-group-title-font-weight:400;--f7-list-group-title-bg-color:#f4f4f4;--f7-menu-list-border-radius:4px;--f7-list-link-pressed-bg-color:rgba(0, 0, 0, 0.1);--f7-list-item-text-text-color:rgba(0, 0, 0, 0.54);--f7-list-item-after-text-color:rgba(0, 0, 0, 0.54);--f7-list-item-footer-text-color:rgba(0, 0, 0, 0.5);--f7-list-item-divider-text-color:rgba(0, 0, 0, 0.54);--f7-list-group-title-text-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-list-item-divider-text-color:#fff;--f7-list-group-title-text-color:#fff;--f7-list-link-pressed-bg-color:rgba(255, 255, 255, 0.05);--f7-list-item-text-text-color:rgba(255, 255, 255, 0.54);--f7-list-item-after-text-color:rgba(255, 255, 255, 0.54);--f7-list-item-footer-text-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-list-in-list-padding-left:16px;--f7-list-inset-border-radius:8px;--f7-list-margin-vertical:32px;--f7-list-font-size:16px;--f7-list-chevron-icon-area:20px;--f7-list-border-color:rgba(0, 0, 0, 0.12);--f7-list-item-border-color:rgba(0, 0, 0, 0.12);--f7-list-item-subtitle-font-size:14px;--f7-list-item-text-font-size:14px;--f7-list-item-text-line-height:20px;--f7-list-item-after-font-size:14px;--f7-list-item-after-padding:8px;--f7-list-item-min-height:48px;--f7-list-item-media-icons-margin:8px;--f7-list-media-item-padding-vertical:16px;--f7-list-media-item-title-font-weight:600;--f7-list-button-border-color:rgba(0, 0, 0, 0.12);--f7-list-button-font-weight:500;--f7-list-item-divider-height:32px;--f7-list-item-divider-font-size:14px;--f7-list-item-divider-bg-color:rgba(0, 0, 0, 0.03);--f7-list-item-divider-border-color:transparent;--f7-list-group-title-height:32px;--f7-list-group-title-font-size:14px;--f7-list-group-title-font-weight:500;--f7-list-group-title-bg-color:#f7f7f7;--f7-list-link-pressed-bg-color:rgba(0, 0, 0, 0.1);--f7-list-link-hover-bg-color:rgba(0, 0, 0, 0.03);--f7-list-item-text-text-color:rgba(0, 0, 0, 0.6);--f7-list-item-after-text-color:rgba(0, 0, 0, 0.5);--f7-list-item-footer-text-color:rgba(0, 0, 0, 0.6);--f7-list-button-hover-bg-color:rgba(0, 0, 0, 0.03);--f7-list-item-divider-text-color:rgba(0, 0, 0, 0.6);--f7-list-group-title-text-color:rgba(0, 0, 0, 0.6)}.aurora .theme-dark,.aurora.theme-dark{--f7-list-item-text-text-color:rgba(255, 255, 255, 0.54);--f7-list-item-after-text-color:rgba(255, 255, 255, 0.54);--f7-list-item-footer-text-color:rgba(255, 255, 255, 0.54);--f7-list-item-divider-text-color:rgba(255, 255, 255, 0.6);--f7-list-group-title-text-color:rgba(255, 255, 255, 0.6);--f7-list-link-pressed-bg-color:rgba(255, 255, 255, 0.05);--f7-list-link-hover-bg-color:rgba(255, 255, 255, 0.03);--f7-list-button-hover-bg-color:rgba(255, 255, 255, 0.03)}:root{--f7-list-chevron-icon-left:'chevron_left';--f7-list-chevron-icon-right:'chevron_right'}.list{--menu-list-offset:0px;position:relative;z-index:1;font-size:var(--f7-list-font-size);margin:var(--f7-list-margin-vertical) 0}.list ul{list-style:none;margin:0;padding:0;position:relative;background:var(--f7-list-bg-color)}.list ul:before{content:'';position:absolute;background-color:var(--f7-list-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.list ul:after{content:'';position:absolute;background-color:var(--f7-list-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.list ul ul{padding-left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-list-in-list-padding-left))}.list ul ul:after,.list ul ul:before{display:none!important}.list li{position:relative;box-sizing:border-box}.list .item-media{display:flex;flex-shrink:0;flex-wrap:nowrap;align-items:center;box-sizing:border-box;padding-bottom:var(--f7-list-item-padding-vertical);padding-top:var(--f7-list-item-padding-vertical)}.list .item-media+.item-inner{margin-left:var(--f7-list-item-media-margin)}.list .item-media i+i,.list .item-media i+img{margin-left:var(--f7-list-item-media-icons-margin)}.list .item-after{padding-left:var(--f7-list-item-after-padding)}.list .item-inner{position:relative;width:100%;min-width:0;display:flex;justify-content:space-between;box-sizing:border-box;align-items:center;align-self:stretch;padding-top:var(--f7-list-item-padding-vertical);padding-bottom:var(--f7-list-item-padding-vertical);min-height:calc(var(--f7-list-item-min-height) - var(--menu-list-offset));padding-right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right) - var(--menu-list-offset))}.list .item-title{min-width:0;flex-shrink:1;white-space:var(--f7-list-item-title-white-space);position:relative;overflow:hidden;text-overflow:ellipsis;max-width:100%;font-size:var(--f7-list-item-title-font-size);font-weight:var(--f7-list-item-title-font-weight);color:var(--f7-list-item-title-text-color);line-height:var(--f7-list-item-title-line-height)}.list .item-after{white-space:nowrap;flex-shrink:0;display:flex;font-size:var(--f7-list-item-after-font-size);font-weight:var(--f7-list-item-after-font-weight);color:var(--f7-list-item-after-text-color);line-height:var(--f7-list-item-after-line-height);margin-left:auto}.list .item-footer,.list .item-header{white-space:normal}.list .item-header{color:var(--f7-list-item-header-text-color);font-size:var(--f7-list-item-header-font-size);font-weight:var(--f7-list-item-header-font-weight);line-height:var(--f7-list-item-header-line-height)}.list .item-footer{color:var(--f7-list-item-footer-text-color);font-size:var(--f7-list-item-footer-font-size);font-weight:var(--f7-list-item-footer-font-weight);line-height:var(--f7-list-item-footer-line-height)}.list .item-link,.list .list-button{transition-duration:.3s;transition-property:background-color,color;display:block;position:relative;overflow:hidden;z-index:0}.list .item-link{color:inherit}.list .item-link.active-state{background-color:var(--f7-list-link-pressed-bg-color)}.list .item-link .item-inner{padding-right:calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right) - var(--menu-list-offset))}.list .item-content{display:flex;justify-content:space-between;box-sizing:border-box;align-items:center;min-height:calc(var(--f7-list-item-min-height) - var(--menu-list-offset));padding-left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left) - var(--menu-list-offset))}.list .item-subtitle{position:relative;overflow:hidden;white-space:nowrap;max-width:100%;text-overflow:ellipsis;font-size:var(--f7-list-item-subtitle-font-size);font-weight:var(--f7-list-item-subtitle-font-weight);color:var(--f7-list-item-subtitle-text-color);line-height:var(--f7-list-item-subtitle-line-height)}.list .item-text{position:relative;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:var(--f7-list-item-text-max-lines);-webkit-box-orient:vertical;display:-webkit-box;font-size:var(--f7-list-item-text-font-size);font-weight:var(--f7-list-item-text-font-weight);color:var(--f7-list-item-text-text-color);line-height:var(--f7-list-item-text-line-height);max-height:calc(var(--f7-list-item-text-line-height) * var(--f7-list-item-text-max-lines))}.list .item-title-row{position:relative;display:flex;justify-content:space-between;box-sizing:border-box}.list .item-title-row .item-after{align-self:center}.list .item-row{display:flex;justify-content:space-between;box-sizing:border-box}.list .item-cell{display:block;align-self:center;box-sizing:border-box;width:100%;min-width:0;margin-left:var(--f7-list-item-cell-margin);flex-shrink:1}.list .item-cell:first-child{margin-left:0}.list .ripple-wave+.item-cell{margin-left:0}.list li:last-child .list-button:after{display:none!important}.list li:last-child li:last-child>.item-content>.item-inner:after,.list li:last-child li:last-child>.item-inner:after,.list li:last-child li:last-child>.item-link>.item-content>.item-inner:after,.list li:last-child li:last-child>.swipeout-content>.item-content>.item-inner:after,.list li:last-child>.item-content>.item-inner:after,.list li:last-child>.item-inner:after,.list li:last-child>.item-link>.item-content>.item-inner:after,.list li:last-child>.swipeout-content>.item-content>.item-inner:after{display:none!important}.list li li:last-child .item-inner:after,.list li:last-child li .item-inner:after{content:'';position:absolute;background-color:var(--f7-list-item-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.aurora .list.no-hairlines-aurora ul:after,.aurora .list.no-hairlines-aurora ul:before,.aurora .list.no-hairlines-aurora:after,.aurora .list.no-hairlines-aurora:before,.ios .list.no-hairlines-ios ul:after,.ios .list.no-hairlines-ios ul:before,.ios .list.no-hairlines-ios:after,.ios .list.no-hairlines-ios:before,.list.no-hairlines ul:after,.list.no-hairlines ul:before,.list.no-hairlines:after,.list.no-hairlines:before,.md .list.no-hairlines-md ul:after,.md .list.no-hairlines-md ul:before,.md .list.no-hairlines-md:after,.md .list.no-hairlines-md:before{display:none!important}.aurora .list.no-hairline-top-aurora ul:before,.aurora .list.no-hairline-top-aurora:before,.ios .list.no-hairline-top-ios ul:before,.ios .list.no-hairline-top-ios:before,.list.no-hairline-top ul:before,.list.no-hairline-top:before,.md .list.no-hairline-top-md ul:before,.md .list.no-hairline-top-md:before{display:none!important}.aurora .list.no-hairline-bottom-aurora ul:after,.aurora .list.no-hairline-bottom-aurora:after,.ios .list.no-hairline-bottom-ios ul:after,.ios .list.no-hairline-bottom-ios:after,.list.no-hairline-bottom ul:after,.list.no-hairline-bottom:after,.md .list.no-hairline-bottom-md ul:after,.md .list.no-hairline-bottom-md:after{display:none!important}.aurora .list.no-hairlines-between-aurora .item-divider:after,.aurora .list.no-hairlines-between-aurora .item-inner:after,.aurora .list.no-hairlines-between-aurora .list-button:after,.aurora .list.no-hairlines-between-aurora .list-group-title:after,.ios .list.no-hairlines-between-ios .item-divider:after,.ios .list.no-hairlines-between-ios .item-inner:after,.ios .list.no-hairlines-between-ios .list-button:after,.ios .list.no-hairlines-between-ios .list-group-title:after,.list.no-hairlines-between .item-divider:after,.list.no-hairlines-between .item-inner:after,.list.no-hairlines-between .list-button:after,.list.no-hairlines-between .list-group-title:after,.md .list.no-hairlines-between-md .item-divider:after,.md .list.no-hairlines-between-md .item-inner:after,.md .list.no-hairlines-between-md .list-button:after,.md .list.no-hairlines-between-md .list-group-title:after{display:none!important}.aurora .list.no-hairlines-between-aurora.simple-list li:after,.ios .list.no-hairlines-between-ios.simple-list li:after,.list.no-hairlines-between.simple-list li:after,.md .list.no-hairlines-between-md.simple-list li:after{display:none!important}.aurora .list.no-hairlines-between-aurora.links-list a:after,.ios .list.no-hairlines-between-ios.links-list a:after,.list.no-hairlines-between.links-list a:after,.md .list.no-hairlines-between-md.links-list a:after{display:none!important}.list-button{--f7-touch-ripple-color:var(--f7-link-touch-ripple-color, rgba(var(--f7-theme-color-rgb), 0.25));padding:0 var(--f7-list-item-padding-horizontal);line-height:var(--f7-list-item-min-height);color:var(--f7-list-button-text-color,var(--f7-theme-color));font-size:var(--f7-list-button-font-size);font-weight:var(--f7-list-button-font-weight);text-align:var(--f7-list-button-text-align)}.list-button:after{content:'';position:absolute;background-color:var(--f7-list-button-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.list-button.active-state{background-color:var(--f7-list-button-pressed-bg-color,rgba(var(--f7-theme-color-rgb),.15))}.list-button[class*=color-]{--f7-list-button-text-color:var(--f7-theme-color)}.simple-list li{position:relative;white-space:nowrap;text-overflow:ellipsis;max-width:100%;box-sizing:border-box;display:flex;justify-content:space-between;align-items:center;align-content:center;line-height:var(--f7-list-item-min-height);height:var(--f7-list-item-min-height);padding-left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right))}.simple-list li:after{left:var(--f7-list-item-padding-horizontal);width:auto;left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));right:0}.simple-list li:last-child:after{display:none!important}.links-list li{z-index:1}.links-list a{transition-duration:.3s;transition-property:background-color;display:block;position:relative;overflow:hidden;display:flex;align-items:center;align-content:center;justify-content:space-between;box-sizing:border-box;white-space:nowrap;text-overflow:ellipsis;max-width:100%;height:var(--f7-list-item-min-height);color:inherit}.links-list a .ripple-wave{z-index:0}.links-list a:after{width:auto}.links-list a.active-state{background-color:var(--f7-list-link-pressed-bg-color)}.links-list a{padding-left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right))}.links-list a:after{left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));right:0}.links-list li:last-child a:after{display:none!important}.links-list a:after,.list .item-inner:after,.simple-list li:after{content:'';position:absolute;background-color:var(--f7-list-item-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.media-list,li.media-item{--f7-list-item-padding-vertical:var(--f7-list-media-item-padding-vertical);--f7-list-item-padding-horizontal:var(--f7-list-media-item-padding-horizontal)}.media-list .item-title,li.media-item .item-title{font-weight:var(--f7-list-media-item-title-font-weight,var(--f7-list-item-title-font-weight,inherit))}.media-list .item-inner,li.media-item .item-inner{display:block;align-self:stretch}.media-list .item-media,li.media-item .item-media{align-self:flex-start}.media-list .item-media img,li.media-item .item-media img{display:block}.media-list .item-link .item-inner,li.media-item .item-link .item-inner{padding-right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right) - var(--menu-list-offset))}.media-list .item-link .item-title-row,li.media-item .item-link .item-title-row{padding-right:calc(var(--f7-list-chevron-icon-area))}.media-list .chevron-center .item-link .item-inner,.media-list .item-link.chevron-center .item-inner,.media-list.chevron-center .item-link .item-inner,li.media-item .chevron-center .item-link .item-inner,li.media-item .item-link.chevron-center .item-inner,li.media-item.chevron-center .item-link .item-inner{padding-right:calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right) - var(--menu-list-offset))}.media-list .chevron-center .item-title-row,.media-list.chevron-center .item-title-row,li.media-item .chevron-center .item-title-row,li.media-item.chevron-center .item-title-row{padding-right:0}.links-list a:before,.list .item-link .item-inner:before,.media-list .chevron-center .item-link .item-inner:before,.media-list .item-link .item-title-row:before,.media-list .item-link.chevron-center .item-inner:before,.media-list.chevron-center .item-link .item-inner:before,li.media-item .chevron-center .item-link .item-inner:before,li.media-item .item-link .item-title-row:before,li.media-item .item-link.chevron-center .item-inner:before,li.media-item.chevron-center .item-link .item-inner:before{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;position:absolute;top:50%;width:8px;height:14px;margin-top:-7px;font-size:var(--f7-list-chevron-icon-font-size);line-height:14px;color:var(--f7-list-chevron-icon-color);pointer-events:none;right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right));content:var(--f7-list-chevron-icon-right)}.media-list .chevron-center .item-title-row:before,.media-list.chevron-center .item-title-row:before,li.media-item .chevron-center .item-title-row:before,li.media-item.chevron-center .item-title-row:before{display:none}.media-list .item-link .item-inner:before,li.media-item .item-link .item-inner:before{display:none}.media-list .item-link .item-title-row:before,li.media-item .item-link .item-title-row:before{right:0}.list-group ul:after,.list-group ul:before{z-index:25!important}.list-group+.list-group ul:before{display:none!important}.item-divider,li.item-divider,li.list-group-title{white-space:nowrap;position:relative;max-width:100%;text-overflow:ellipsis;overflow:hidden;z-index:15;padding-top:0;padding-bottom:0;padding-left:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right));box-sizing:border-box;display:flex;align-items:center;align-content:center}.item-divider:after,li.item-divider:after,li.list-group-title:after{display:none!important}.item-divider,li.item-divider{margin-top:-1px;height:var(--f7-list-item-divider-height);color:var(--f7-list-item-divider-text-color);font-size:var(--f7-list-item-divider-font-size);font-weight:var(--f7-list-item-divider-font-weight);background-color:var(--f7-list-item-divider-bg-color);line-height:var(--f7-list-item-divider-line-height)}.item-divider:before,li.item-divider:before{content:'';position:absolute;background-color:var(--f7-list-item-divider-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.list li.list-group-title,li.list-group-title{position:relative;position:-webkit-sticky;position:sticky;top:0;margin-top:0;z-index:20;height:var(--f7-list-group-title-height);color:var(--f7-list-group-title-text-color);font-size:var(--f7-list-group-title-font-size);font-weight:var(--f7-list-group-title-font-weight);background-color:var(--f7-list-group-title-bg-color);line-height:var(--f7-list-group-title-line-height)}.page-with-navbar-large .list li.list-group-title,.page-with-navbar-large li.list-group-title{top:calc(-1 * var(--f7-navbar-large-title-height))}.list.inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.inset .block-title{margin-left:0;margin-right:0}.list.inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.inset ul:after,.list.inset ul:before{display:none!important}.list.inset li.swipeout:first-child,.list.inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.inset li.swipeout:last-child,.list.inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.inset li.swipeout:first-child:last-child,.list.inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}@media (min-width:480px){.list.xsmall-inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.xsmall-inset .block-title{margin-left:0;margin-right:0}.list.xsmall-inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.xsmall-inset ul:after,.list.xsmall-inset ul:before{display:none!important}.list.xsmall-inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.xsmall-inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.xsmall-inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}}@media (min-width:568px){.list.small-inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.small-inset .block-title{margin-left:0;margin-right:0}.list.small-inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.small-inset ul:after,.list.small-inset ul:before{display:none!important}.list.small-inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.small-inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.small-inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}}@media (min-width:768px){.list.medium-inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.medium-inset .block-title{margin-left:0;margin-right:0}.list.medium-inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.medium-inset ul:after,.list.medium-inset ul:before{display:none!important}.list.medium-inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.medium-inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.medium-inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}}@media (min-width:1024px){.list.large-inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.large-inset .block-title{margin-left:0;margin-right:0}.list.large-inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.large-inset ul:after,.list.large-inset ul:before{display:none!important}.list.large-inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.large-inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.large-inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}}@media (min-width:1200px){.list.xlarge-inset{margin-left:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-left));margin-right:calc(var(--f7-list-inset-side-margin) + var(--f7-safe-area-outer-right));border-radius:var(--f7-list-inset-border-radius);--f7-safe-area-left:0px;--f7-safe-area-right:0px}.list.xlarge-inset .block-title{margin-left:0;margin-right:0}.list.xlarge-inset ul{border-radius:var(--f7-list-inset-border-radius)}.list.xlarge-inset ul:after,.list.xlarge-inset ul:before{display:none!important}.list.xlarge-inset li:first-child>a{border-radius:var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius) 0 0}.list.xlarge-inset li:last-child>a{border-radius:0 0 var(--f7-list-inset-border-radius) var(--f7-list-inset-border-radius)}.list.xlarge-inset li:first-child:last-child>a{border-radius:var(--f7-list-inset-border-radius)}}.list .no-chevron,.list.no-chevron,.menu-list{--f7-list-chevron-icon-color:transparent;--f7-list-chevron-icon-area:0px}.menu-list{--menu-list-offset:var(--f7-menu-list-offset);--f7-list-font-size:var(--f7-menu-list-font-size);--f7-list-item-title-font-size:var(--f7-menu-list-item-title-font-size);--f7-list-item-title-font-weight:var(--f7-menu-list-item-title-font-weight);--f7-list-item-subtitle-font-size:var(--f7-menu-list-item-subtitle-font-size);--f7-list-item-text-font-size:var(--f7-menu-list-item-text-font-size);--f7-list-item-after-font-size:var(--f7-menu-list-item-after-font-size)}.menu-list .item-after,.menu-list .item-footer,.menu-list .item-header,.menu-list .item-subtitle,.menu-list .item-text,.menu-list .item-title{transition-duration:.3s}.menu-list li:not(.item-divider):not(.list-group-title){padding-top:calc(var(--f7-menu-list-offset)/ 2);padding-bottom:calc(var(--f7-menu-list-offset)/ 2)}.menu-list li:not(.item-divider):not(.list-group-title):first-child{padding-top:var(--f7-menu-list-offset)}.menu-list li:not(.item-divider):not(.list-group-title):last-child{padding-bottom:var(--f7-menu-list-offset)}.menu-list .item-link{margin-left:var(--f7-menu-list-offset);margin-right:var(--f7-menu-list-offset);border-radius:var(--f7-menu-list-border-radius)!important}.menu-list .item-inner:after{display:none}.menu-list .item-selected .item-link,.menu-list .item-selected.item-link,.menu-list .tab-link-active .item-link,.menu-list .tab-link-active.item-link{color:var(--f7-menu-list-selected-text-color);background-color:var(--f7-menu-list-selected-bg-color)}.menu-list .item-selected .item-after,.menu-list .item-selected .item-footer,.menu-list .item-selected .item-header,.menu-list .item-selected .item-subtitle,.menu-list .item-selected .item-text,.menu-list .item-selected .item-title{color:var(--f7-menu-list-selected-text-color)}.ios .item-link.active-state .item-inner:after,.ios .links-list a.active-state:after,.ios .list-button.active-state:after{background-color:transparent}.ios .links-list a.active-state,.ios .list .item-link.active-state,.ios .list .list-button.active-state{transition-duration:0s}.md .list .item-media{min-width:40px}.aurora .list .item-media{min-width:24px}.aurora .links-list a,.aurora .list .item-link:not(.item-selected),.aurora .list .list-button{transition-duration:0s}.aurora.device-desktop .links-list a:hover:not(.active-state):not(.no-hover),.aurora.device-desktop .list .item-link:not(.item-selected):hover:not(.active-state):not(.no-hover){background:var(--f7-list-link-hover-bg-color)}.aurora.device-desktop .list .list-button:hover:not(.active-state):not(.no-hover){background:var(--f7-list-button-hover-bg-color)}:root{--f7-badge-text-color:#fff;--f7-badge-bg-color:#8e8e93;--f7-badge-padding:0 4px;--f7-badge-in-icon-size:16px;--f7-badge-in-icon-font-size:10px;--f7-badge-font-weight:normal;--f7-badge-font-size:12px}.ios{--f7-badge-size:20px;--f7-badge-font-weight:600}.md{--f7-badge-size:18px;--f7-badge-font-weight:500}.aurora{--f7-badge-size:18px;--f7-badge-font-weight:600}.badge{display:inline-flex;align-items:center;align-content:center;justify-content:center;color:var(--f7-badge-text-color);background:var(--f7-badge-bg-color);position:relative;box-sizing:border-box;text-align:center;vertical-align:middle;font-weight:var(--f7-badge-font-weight);font-size:var(--f7-badge-font-size);border-radius:var(--f7-badge-size);padding:var(--f7-badge-padding);height:var(--f7-badge-size);min-width:var(--f7-badge-size)}.f7-icons .badge,.framework7-icons .badge,.icon .badge,.material-icons .badge{position:absolute;left:100%;margin-left:-10px;top:-2px;font-family:var(--f7-font-family);--f7-badge-font-size:var(--f7-badge-in-icon-font-size);--f7-badge-size:var(--f7-badge-in-icon-size)}.badge[class*=color-]{--f7-badge-bg-color:var(--f7-theme-color)}:root{--f7-button-font-size:14px;--f7-button-min-width:32px;--f7-button-bg-color:transparent;--f7-button-border-width:0px;--f7-button-text-transform:uppercase;--f7-button-large-text-transform:uppercase;--f7-button-small-text-transform:uppercase;--f7-button-small-outline-border-width:2px;--f7-button-outline-border-width:2px;--f7-button-raised-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12),0 1px 2px rgba(0, 0, 0, 0.24);--f7-button-raised-pressed-box-shadow:0 3px 6px rgba(0, 0, 0, 0.16),0 3px 6px rgba(0, 0, 0, 0.23);--f7-segmented-raised-divider-color:rgba(0, 0, 0, 0.1);--f7-segmented-strong-padding:2px;--f7-segmented-strong-between-buttons:4px;--f7-segmented-strong-button-font-weight:500;--f7-segmented-strong-button-active-box-shadow:0px 2px 2px rgba(0, 0, 0, 0.25);--f7-segmented-strong-bg-color:rgba(0, 0, 0, 0.07);--f7-segmented-strong-button-text-color:#000;--f7-segmented-strong-button-pressed-bg-color:rgba(0, 0, 0, 0.07);--f7-segmented-strong-button-hover-bg-color:rgba(0, 0, 0, 0.04);--f7-segmented-strong-button-active-text-color:#000;--f7-segmented-strong-button-active-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-segmented-strong-bg-color:rgba(255, 255, 255, 0.1);--f7-segmented-strong-button-pressed-bg-color:rgba(255, 255, 255, 0.04);--f7-segmented-strong-button-hover-bg-color:rgba(255, 255, 255, 0.02);--f7-segmented-strong-button-active-bg-color:rgba(255, 255, 255, 0.14);--f7-segmented-strong-button-text-color:#fff;--f7-segmented-strong-button-active-text-color:#fff}.ios{--f7-button-height:28px;--f7-button-padding-horizontal:10px;--f7-button-border-radius:5px;--f7-button-font-weight:600;--f7-button-letter-spacing:0;--f7-button-large-height:44px;--f7-button-large-font-size:17px;--f7-button-large-font-weight:500;--f7-button-small-height:26px;--f7-button-small-font-size:13px;--f7-button-small-font-weight:600;--f7-segmented-strong-button-text-transform:none;--f7-segmented-strong-button-active-font-weight:600}.md{--f7-button-height:36px;--f7-button-padding-horizontal:8px;--f7-button-border-radius:4px;--f7-button-font-weight:500;--f7-button-letter-spacing:0.05em;--f7-button-large-height:48px;--f7-button-large-font-size:14px;--f7-button-large-font-weight:500;--f7-button-small-height:28px;--f7-button-small-font-size:14px;--f7-button-small-font-weight:500;--f7-segmented-strong-button-text-transform:uppercase;--f7-segmented-strong-button-active-font-weight:500}.aurora{--f7-button-height:36px;--f7-button-min-width:24px;--f7-button-padding-horizontal:10px;--f7-button-border-radius:8px;--f7-button-font-weight:600;--f7-button-letter-spacing:0em;--f7-button-large-height:48px;--f7-button-large-font-size:16px;--f7-button-large-font-weight:600;--f7-button-small-height:28px;--f7-button-small-font-size:14px;--f7-button-small-font-weight:600;--f7-segmented-strong-button-text-transform:uppercase;--f7-segmented-strong-button-active-font-weight:600}button{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%}.button{--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.25);text-decoration:none;text-align:center;display:flex;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;margin:0;white-space:nowrap;text-overflow:ellipsis;position:relative;overflow:hidden;font-family:inherit;cursor:pointer;outline:0;box-sizing:border-box;vertical-align:middle;justify-content:center;align-items:center;border:var(--f7-button-border-width,0px) solid var(--f7-button-border-color,var(--f7-theme-color));font-size:var(--f7-button-font-size);color:var(--f7-button-text-color,var(--f7-theme-color));height:var(--f7-button-height);line-height:calc(var(--f7-button-height) - var(--f7-button-border-width, 0) * 2);padding:var(--f7-button-padding-vertical,0px) var(--f7-button-padding-horizontal);border-radius:var(--f7-button-border-radius);min-width:var(--f7-button-min-width);font-weight:var(--f7-button-font-weight);letter-spacing:var(--f7-button-letter-spacing);text-transform:var(--f7-button-text-transform);background-color:var(--f7-button-bg-color);box-shadow:var(--f7-button-box-shadow)}.button.active-state{background-color:var(--f7-button-pressed-bg-color,rgba(var(--f7-theme-color-rgb),.15));color:var(--f7-button-pressed-text-color,var(--f7-button-text-color,var(--f7-theme-color)))}input[type=button].button,input[type=reset].button,input[type=submit].button{width:100%}.button>i+i,.button>i+span,.button>span+i,.button>span+span{margin-left:4px}.appbar .button,.navbar .button,.searchbar .button,.subnavbar .button,.toolbar .button{color:var(--f7-button-text-color,var(--f7-theme-color))}.aurora .button-round-aurora,.button-round,.ios .button-round-ios,.md .button-round-md{--f7-button-border-radius:var(--f7-button-height)}.aurora .button-fill-aurora,.button-active,.button-fill,.button.tab-link-active,.ios .button-fill-ios,.md .button-fill-md{--f7-button-bg-color:var(--f7-button-fill-bg-color, var(--f7-theme-color));--f7-button-text-color:var(--f7-button-fill-text-color, #fff);--f7-touch-ripple-color:var(--f7-touch-ripple-white)}.aurora .button-fill-aurora,.button-fill,.ios .button-fill-ios,.md .button-fill-md{--f7-button-pressed-bg-color:var(--f7-button-fill-pressed-bg-color)}.button-active,.button.tab-link-active{--f7-button-pressed-bg-color:var(--f7-button-bg-color)}.aurora .button-outline-aurora,.button-outline,.ios .button-outline-ios,.md .button-outline-md{--f7-button-border-color:var(--f7-button-outline-border-color, var(--f7-theme-color));--f7-button-border-width:var(--f7-button-outline-border-width)}.aurora .button-large-aurora,.button-large,.ios .button-large-ios,.md .button-large-md{--f7-button-height:var(--f7-button-large-height);--f7-button-font-size:var(--f7-button-large-font-size);--f7-button-font-weight:var(--f7-button-large-font-weight);--f7-button-text-transform:var(--f7-button-large-text-transform)}.aurora .button-small-aurora,.button-small,.ios .button-small-ios,.md .button-small-md{--f7-button-outline-border-width:var(--f7-button-small-outline-border-width);--f7-button-height:var(--f7-button-small-height);--f7-button-font-size:var(--f7-button-small-font-size);--f7-button-font-weight:var(--f7-button-small-font-weight);--f7-button-text-transform:var(--f7-button-small-text-transform)}.ios .button-small-ios.button-fill,.ios .button-small.button-fill,.ios .button-small.button-fill-ios{--f7-button-border-width:var(--f7-button-small-outline-border-width);--f7-button-pressed-text-color:var(--f7-theme-color);--f7-button-pressed-bg-color:transparent}.segmented{align-self:center;display:flex;flex-wrap:nowrap;border-radius:var(--f7-button-border-radius);box-shadow:var(--f7-button-box-shadow);box-sizing:border-box}.segmented .button,.segmented button{width:100%;flex-shrink:1;min-width:0;border-radius:0}.segmented .button:first-child{border-radius:var(--f7-button-border-radius) 0 0 var(--f7-button-border-radius)}.segmented .button:not(.button-outline):first-child{border-left:none}.segmented .button.button-outline:nth-child(n+2){border-left:none}.segmented .button:last-child{border-radius:0 var(--f7-button-border-radius) var(--f7-button-border-radius) 0}.segmented .button-round:first-child{border-radius:var(--f7-button-height) 0 0 var(--f7-button-height)}.segmented .button-round:last-child{border-radius:0 var(--f7-button-height) var(--f7-button-height) 0}.segmented .button:first-child:last-child{border-radius:var(--f7-button-border-radius)}.aurora .segmented-raised-aurora,.ios .segmented-raised-ios,.md .segmented-raised-md,.segmented-raised{box-shadow:var(--f7-button-raised-box-shadow)}.aurora .segmented-raised-aurora .button:not(.button-outline),.ios .segmented-raised-ios .button:not(.button-outline),.md .segmented-raised-md .button:not(.button-outline),.segmented-raised .button:not(.button-outline){border-left:1px solid var(--f7-segmented-raised-divider-color)}.aurora .button-raised-aurora,.button-raised,.ios .button-raised-ios,.md .button-raised-md{--f7-button-box-shadow:var(--f7-button-raised-box-shadow)}.aurora .button-raised-aurora.active-state,.button-raised.active-state,.ios .button-raised-ios.active-state,.md .button-raised-md.active-state{--f7-button-box-shadow:var(--f7-button-raised-pressed-box-shadow)}.aurora .segmented-strong-aurora,.ios .segmented-strong-ios,.md .segmented-strong-md,.segmented-strong{--f7-button-bg-color:transparent;--f7-button-hover-bg-color:var(--f7-segmented-strong-button-hover-bg-color);--f7-button-text-color:var(--f7-segmented-strong-button-text-color);--f7-button-font-weight:var(--f7-segmented-strong-button-font-weight);--f7-button-text-transform:var(--f7-segmented-strong-button-text-transform);--f7-button-pressed-bg-color:var(--f7-segmented-strong-button-pressed-bg-color);position:relative;background:var(--f7-segmented-strong-bg-color);border-radius:calc(var(--f7-button-border-radius) + 2px);box-shadow:none;padding:var(--f7-segmented-strong-padding);overflow:hidden}.aurora .segmented-strong-aurora .button,.ios .segmented-strong-ios .button,.md .segmented-strong-md .button,.segmented-strong .button{z-index:1;transform:translate3d(0,0,0)}.aurora .segmented-strong-aurora .button,.aurora .segmented-strong-aurora .button:first-child,.aurora .segmented-strong-aurora .button:last-child,.ios .segmented-strong-ios .button,.ios .segmented-strong-ios .button:first-child,.ios .segmented-strong-ios .button:last-child,.md .segmented-strong-md .button,.md .segmented-strong-md .button:first-child,.md .segmented-strong-md .button:last-child,.segmented-strong .button,.segmented-strong .button:first-child,.segmented-strong .button:last-child{border-radius:var(--f7-button-border-radius)}.aurora .segmented-strong-aurora .button+.button,.ios .segmented-strong-ios .button+.button,.md .segmented-strong-md .button+.button,.segmented-strong .button+.button{margin-left:var(--f7-segmented-strong-between-buttons)}.aurora .segmented-strong-aurora .button.button-active,.aurora .segmented-strong-aurora .button.tab-link-active,.ios .segmented-strong-ios .button.button-active,.ios .segmented-strong-ios .button.tab-link-active,.md .segmented-strong-md .button.button-active,.md .segmented-strong-md .button.tab-link-active,.segmented-strong .button.button-active,.segmented-strong .button.tab-link-active{--f7-button-hover-bg-color:transparent;--f7-button-bg-color:transparent;--f7-button-text-color:var(--f7-segmented-strong-button-active-text-color);--f7-button-font-weight:var(--f7-segmented-strong-button-active-font-weight)}.aurora .segmented-strong-aurora .segmented-highlight,.ios .segmented-strong-ios .segmented-highlight,.md .segmented-strong-md .segmented-highlight,.segmented-strong .segmented-highlight{--f7-segmented-highlight-num:1;--f7-segmented-highlight-active:0;--f7-segmented-highlight-padding:calc(var(--f7-segmented-strong-padding) * 2);--f7-segmented-highlight-between:var(--f7-segmented-strong-between-buttons);--f7-segmented-highlight-width:calc((100% - var(--f7-segmented-highlight-padding) - var(--f7-segmented-highlight-between) * (var(--f7-segmented-highlight-num) - 1)) / var(--f7-segmented-highlight-num));position:absolute;background-color:var(--f7-segmented-strong-button-active-bg-color);border-radius:var(--f7-button-border-radius);box-shadow:var(--f7-segmented-strong-button-active-box-shadow);left:var(--f7-segmented-strong-padding);top:var(--f7-segmented-strong-padding);height:calc(100% - var(--f7-segmented-strong-padding) * 2);width:var(--f7-segmented-highlight-width);z-index:0;transform:translateX(calc(var(--f7-segmented-highlight-active) * 100% + var(--f7-segmented-highlight-active) * var(--f7-segmented-highlight-between)));transition:.2s}.button:nth-child(2)~.segmented-highlight{--f7-segmented-highlight-num:2}.button:nth-child(3)~.segmented-highlight{--f7-segmented-highlight-num:3}.button:nth-child(4)~.segmented-highlight{--f7-segmented-highlight-num:4}.button:nth-child(5)~.segmented-highlight{--f7-segmented-highlight-num:5}.button:nth-child(6)~.segmented-highlight{--f7-segmented-highlight-num:6}.button:nth-child(7)~.segmented-highlight{--f7-segmented-highlight-num:7}.button:nth-child(8)~.segmented-highlight{--f7-segmented-highlight-num:8}.button:nth-child(9)~.segmented-highlight{--f7-segmented-highlight-num:9}.button:nth-child(10)~.segmented-highlight{--f7-segmented-highlight-num:10}.button-active:nth-child(2)~.segmented-highlight,.tab-link-active:nth-child(2)~.segmented-highlight{--f7-segmented-highlight-active:1}.button-active:nth-child(3)~.segmented-highlight,.tab-link-active:nth-child(3)~.segmented-highlight{--f7-segmented-highlight-active:2}.button-active:nth-child(4)~.segmented-highlight,.tab-link-active:nth-child(4)~.segmented-highlight{--f7-segmented-highlight-active:3}.button-active:nth-child(5)~.segmented-highlight,.tab-link-active:nth-child(5)~.segmented-highlight{--f7-segmented-highlight-active:4}.button-active:nth-child(6)~.segmented-highlight,.tab-link-active:nth-child(6)~.segmented-highlight{--f7-segmented-highlight-active:5}.button-active:nth-child(7)~.segmented-highlight,.tab-link-active:nth-child(7)~.segmented-highlight{--f7-segmented-highlight-active:6}.button-active:nth-child(8)~.segmented-highlight,.tab-link-active:nth-child(8)~.segmented-highlight{--f7-segmented-highlight-active:7}.button-active:nth-child(9)~.segmented-highlight,.tab-link-active:nth-child(9)~.segmented-highlight{--f7-segmented-highlight-active:8}.button-active:nth-child(10)~.segmented-highlight,.tab-link-active:nth-child(10)~.segmented-highlight{--f7-segmented-highlight-active:9}.aurora .segmented-round-aurora,.ios .segmented-round-ios,.md .segmented-round-md,.segmented-round{border-radius:var(--f7-button-height)}.aurora .segmented-round-aurora .segmented-highlight,.ios .segmented-round-ios .segmented-highlight,.md .segmented-round-md .segmented-highlight,.segmented-round .segmented-highlight{border-radius:var(--f7-button-height)}.subnavbar .segmented{width:100%}.button-preloader{position:relative;--f7-preloader-color:var(--f7-button-text-color, var(--f7-theme-color))}.button-preloader:not(.button-large){--f7-preloader-size:calc(var(--f7-button-height) - 6px)}.button-preloader.button-fill{--f7-preloader-color:#fff}.button-preloader>span:not(.preloader){transition:.2s;display:inline-flex;align-items:center;align-content:center;justify-content:center;transform:scale(1)}.button-preloader>.preloader{position:absolute;left:50%;top:50%;transition:.2s;transition-property:opacity;opacity:0;visibility:hidden;margin-left:calc(-1 * var(--f7-preloader-size)/ 2);margin-top:calc(-1 * var(--f7-preloader-size)/ 2)}.button-preloader.button-loading>span:not(.preloader){opacity:0;transform:scale(0)}.button-preloader.button-loading>.preloader{opacity:1;visibility:visible}.ios .button{transition-duration:.1s}.ios .button-fill,.ios .button-fill-ios{--f7-button-pressed-bg-color:var(--f7-button-fill-pressed-bg-color, var(--f7-theme-color-tint))}.ios .button-small,.ios .button-small-ios{transition-duration:.2s}.md .button{transition-duration:.3s;transform:translate3d(0,0,0)}.md .button-fill,.md .button-fill-md{--f7-button-pressed-bg-color:var(--f7-button-fill-pressed-bg-color, var(--f7-theme-color-shade))}.aurora .button{transition-duration:.1s;transform:translate3d(0,0,0)}.aurora.device-desktop .button:not(.active-state):not(.no-hover):hover{background-color:var(--f7-button-hover-bg-color,rgba(var(--f7-theme-color-rgb),.07))}.aurora .button-fill,.aurora .button-fill-aurora{--f7-button-pressed-bg-color:var(--f7-button-fill-pressed-bg-color, var(--f7-theme-color-shade))}.aurora .button-active,.aurora .button-fill,.aurora .button-fill-aurora,.aurora .button.tab-link-active{--f7-button-hover-bg-color:var(--f7-button-fill-hover-bg-color, var(--f7-theme-color-tint))}:root{--f7-touch-ripple-black:rgba(0, 0, 0, 0.1);--f7-touch-ripple-white:rgba(255, 255, 255, 0.3);--f7-touch-ripple-color:var(--f7-touch-ripple-black)}.theme-dark{--f7-touch-ripple-color:var(--f7-touch-ripple-white)}.actions-button,.button,.checkbox,.dialog-button,.fab a,.item-link,.link,.list-button,.radio,.ripple,.speed-dial-buttons a,.tab-link{-webkit-user-select:none;-moz-user-select:none;user-select:none}.ripple-wave{left:0;top:0;position:absolute!important;border-radius:50%;pointer-events:none;z-index:-1;padding:0;margin:0;font-size:0;transform:translate3d(0px,0px,0) scale(0);background-color:var(--f7-touch-ripple-color);animation:touch-ripple-in .2s forwards}.ripple-wave.ripple-wave-out{transform:var(--f7-ripple-transform);animation:touch-ripple-out .3s forwards}.button-fill .ripple-wave,.menu .ripple-wave,.picker-calendar-day .ripple-wave{z-index:1}.checkbox .ripple-wave,.data-table .sortable-cell .ripple-wave,.radio .ripple-wave{z-index:0}[class*=ripple-color-]{--f7-touch-ripple-color:var(--f7-theme-color-ripple-color)}@keyframes touch-ripple-in{from{transform:translate3d(0px,0px,0) scale(0)}to{transform:var(--f7-ripple-transform)}}@keyframes touch-ripple-out{from{opacity:1}to{opacity:0}}.f7-icons,.material-icons{width:1em;height:1em}i.icon{display:inline-block;vertical-align:middle;background-size:100% auto;background-position:center;background-repeat:no-repeat;font-style:normal;position:relative}.icon-back:after,.icon-forward:after,.icon-next:after,.icon-prev:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px}.icon[class*=color-]{color:var(--f7-theme-color)}.ios .icon-back,.ios .icon-forward,.ios .icon-next,.ios .icon-prev{width:12px;height:20px;line-height:20px}.ios .icon-back:after,.ios .icon-forward:after,.ios .icon-next:after,.ios .icon-prev:after{line-height:inherit}.ios .icon-next:after,.ios .icon-prev:after{font-size:16px}.ios .icon-back:after,.ios .icon-prev:after{content:'chevron_left_ios'}.ios .icon-forward:after,.ios .icon-next:after{content:'chevron_right_ios'}.md .icon-back,.md .icon-forward,.md .icon-next,.md .icon-prev{width:24px;height:24px}.md .icon-back:after,.md .icon-forward:after,.md .icon-next:after,.md .icon-prev:after{line-height:1.2}.md .icon-back:after{content:'arrow_left_md'}.md .icon-forward:after{content:'arrow_right_md'}.md .icon-next:after{content:'chevron_right_md'}.md .icon-prev:after{content:'chevron_left_md'}.aurora .f7-icons,.aurora .material-icons{font-size:24px}.aurora .icon-back,.aurora .icon-forward,.aurora .icon-next,.aurora .icon-prev{width:12px;height:20px;line-height:20px}.aurora .icon-back:after,.aurora .icon-forward:after,.aurora .icon-next:after,.aurora .icon-prev:after{line-height:inherit}.aurora .icon-next:after,.aurora .icon-prev:after{font-size:16px}.aurora .icon-back:after,.aurora .icon-prev:after{content:'chevron_left_ios'}.aurora .icon-forward:after,.aurora .icon-next:after{content:'chevron_right_ios'}.custom-modal-backdrop{z-index:10500}.actions-backdrop,.custom-modal-backdrop,.dialog-backdrop,.fab-backdrop,.popover-backdrop,.popup-backdrop,.preloader-backdrop,.sheet-backdrop{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.4);z-index:13000;visibility:hidden;opacity:0;transition-duration:.4s}.actions-backdrop.not-animated,.custom-modal-backdrop.not-animated,.dialog-backdrop.not-animated,.fab-backdrop.not-animated,.popover-backdrop.not-animated,.popup-backdrop.not-animated,.preloader-backdrop.not-animated,.sheet-backdrop.not-animated{transition-duration:0s}.actions-backdrop.backdrop-in,.custom-modal-backdrop.backdrop-in,.dialog-backdrop.backdrop-in,.fab-backdrop.backdrop-in,.popover-backdrop.backdrop-in,.popup-backdrop.backdrop-in,.preloader-backdrop.backdrop-in,.sheet-backdrop.backdrop-in{visibility:visible;opacity:1}:root{--f7-appbar-shadow-image:none}.ios{--f7-appbar-height:44px;--f7-appbar-inner-padding-left:8px;--f7-appbar-inner-padding-right:8px}.md{--f7-appbar-height:48px;--f7-appbar-inner-padding-left:16px;--f7-appbar-inner-padding-right:16px}.aurora{--f7-appbar-height:64px;--f7-appbar-inner-padding-left:16px;--f7-appbar-inner-padding-right:16px}.appbar{position:relative;left:0;top:0;width:100%;z-index:500;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box;margin:0;transform:translate3d(0,0,0);height:calc(var(--f7-appbar-height) + var(--f7-safe-area-top));background-image:var(--f7-appbar-bg-image,var(--f7-bars-bg-image));background-color:var(--f7-appbar-bg-color,var(--f7-bars-bg-color));color:var(--f7-appbar-text-color,var(--f7-bars-text-color));font-size:var(--f7-appbar-font-size);z-index:7000}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .appbar{background-color:rgba(var(--f7-appbar-bg-color-rgb,var(--f7-bars-bg-color-rgb)),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.appbar .panel~.appbar{z-index:5500}.appbar a{color:var(--f7-appbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.appbar a.link{display:flex;justify-content:flex-start;line-height:var(--f7-appbar-link-line-height, var(--f7-appbar-height));height:var(--f7-appbar-link-height,var(--f7-appbar-height))}.appbar .center,.appbar .left,.appbar .right{display:flex;align-items:center}.appbar.no-border:after,.appbar.no-hairline:after{display:none!important}.appbar.no-border .title-large:after,.appbar.no-hairline .title-large:after{display:none!important}.appbar.no-shadow:before{display:none!important}.appbar:after,.appbar:before{-webkit-backface-visibility:hidden;backface-visibility:hidden}.appbar:after{content:'';position:absolute;background-color:var(--f7-appbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.appbar:before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-appbar-shadow-image)}.appbar:after{z-index:1}.appbar~*{--f7-appbar-app-offset:calc(var(--f7-appbar-height) + var(--f7-appbar-extra-offset, 0px) + var(--f7-safe-area-top))}.appbar~.appbar,.appbar~.view,.appbar~.views{--f7-safe-area-top:0px}.appbar~.panel .page,.appbar~.panel .page-content,.appbar~.panel .view{--f7-safe-area-top:0px}.appbar-inner{position:absolute;left:0;top:var(--f7-safe-area-top);width:100%;height:var(--f7-appbar-height);display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;padding:0 calc(var(--f7-appbar-inner-padding-right) + var(--f7-safe-area-right)) 0 calc(var(--f7-appbar-inner-padding-left) + var(--f7-safe-area-left))}.appbar-inner.stacked{display:none}:root{--f7-dialog-button-text-color:var(--f7-theme-color);--f7-dialog-button-text-align:center;--f7-dialog-input-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-dialog-text-color:#fff}.ios{--f7-dialog-box-shadow:none;--f7-dialog-width:270px;--f7-dialog-inner-padding:16px;--f7-dialog-border-radius:13px;--f7-dialog-text-align:center;--f7-dialog-font-size:14px;--f7-dialog-title-text-color:inherit;--f7-dialog-title-font-size:18px;--f7-dialog-title-font-weight:600;--f7-dialog-title-line-height:inherit;--f7-dialog-button-font-size:17px;--f7-dialog-button-height:44px;--f7-dialog-button-letter-spacing:0;--f7-dialog-button-font-weight:400;--f7-dialog-button-text-transform:none;--f7-dialog-input-border-radius:4px;--f7-dialog-input-font-size:14px;--f7-dialog-input-height:32px;--f7-dialog-input-border-width:1px;--f7-dialog-input-placeholder-color:#a9a9a9;--f7-dialog-preloader-size:34px;--f7-dialog-bg-color:rgba(255, 255, 255, 0.95);--f7-dialog-bg-color-rgb:255,255,255;--f7-dialog-text-color:#000;--f7-dialog-button-pressed-bg-color:rgba(0, 0, 0, 0.1);--f7-dialog-input-border-color:rgba(0, 0, 0, 0.3);--f7-dialog-border-divider-color:rgba(0, 0, 0, 0.2)}.ios .theme-dark,.ios.theme-dark{--f7-dialog-bg-color:rgba(45, 45, 45, 0.95);--f7-dialog-bg-color-rgb:45,45,45;--f7-dialog-button-pressed-bg-color:rgba(0, 0, 0, 0.2);--f7-dialog-border-divider-color:rgba(255, 255, 255, 0.15);--f7-dialog-input-border-color:rgba(255, 255, 255, 0.15);--f7-dialog-input-bg-color:rgba(0, 0, 0, 0.5)}.md{--f7-dialog-box-shadow:var(--f7-elevation-24);--f7-dialog-width:280px;--f7-dialog-inner-padding:24px;--f7-dialog-border-radius:4px;--f7-dialog-text-align:left;--f7-dialog-font-size:16px;--f7-dialog-title-font-size:20px;--f7-dialog-title-font-weight:500;--f7-dialog-title-line-height:1.3;--f7-dialog-button-font-size:14px;--f7-dialog-button-height:36px;--f7-dialog-button-letter-spacing:0.05em;--f7-dialog-button-font-weight:500;--f7-dialog-button-text-transform:uppercase;--f7-dialog-button-pressed-bg-color:rgba(var(--f7-theme-color-rgb), 0.15);--f7-dialog-input-border-radius:0px;--f7-dialog-input-font-size:16px;--f7-dialog-input-height:36px;--f7-dialog-input-border-color:transparent;--f7-dialog-input-border-width:0px;--f7-dialog-preloader-size:32px;--f7-dialog-bg-color:#fff;--f7-dialog-text-color:rgba(0, 0, 0, 0.54);--f7-dialog-title-text-color:#212121;--f7-dialog-input-placeholder-color:rgba(0, 0, 0, 0.35)}.md .theme-dark,.md.theme-dark{--f7-dialog-bg-color:#1c1c1d;--f7-dialog-title-text-color:#fff;--f7-dialog-input-bg-color:transparent;--f7-dialog-input-placeholder-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-dialog-box-shadow:0 0 20px 0 rgba(0, 0, 0, 0.15),0 25px 30px 0 rgba(0,0,0,0.35);--f7-dialog-width:300px;--f7-dialog-inner-padding:20px;--f7-dialog-border-radius:8px;--f7-dialog-text-align:left;--f7-dialog-font-size:14px;--f7-dialog-title-font-size:18px;--f7-dialog-title-font-weight:700;--f7-dialog-title-line-height:inherit;--f7-dialog-button-font-size:14px;--f7-dialog-button-height:36px;--f7-dialog-button-letter-spacing:0;--f7-dialog-button-font-weight:600;--f7-dialog-button-text-transform:uppercase;--f7-dialog-input-border-radius:8px;--f7-dialog-input-font-size:16px;--f7-dialog-input-height:32px;--f7-dialog-input-border-width:1px;--f7-dialog-preloader-size:24px;--f7-dialog-bg-color:#fff;--f7-dialog-title-text-color:inherit;--f7-dialog-text-color:#000;--f7-dialog-button-text-color:#fff;--f7-dialog-input-border-color:rgba(0, 0, 0, 0.2);--f7-dialog-input-placeholder-color:rgba(0, 0, 0, 0.32)}.aurora .theme-dark,.aurora.theme-dark{--f7-dialog-bg-color:#1c1c1d;--f7-dialog-title-text-color:#fff;--f7-dialog-input-bg-color:rgba(0, 0, 0, 0.25);--f7-dialog-input-placeholder-color:rgba(255, 255, 255, 0.54);--f7-dialog-input-border-color:rgba(255, 255, 255, 0.15)}.dialog{position:absolute;z-index:13500;left:50%;margin-top:0;top:50%;overflow:hidden;opacity:0;transform:translate3d(0,-50%,0) scale(1.185);transition-property:transform,opacity;display:none;transition-duration:.4s;box-shadow:var(--f7-dialog-box-shadow);width:var(--f7-dialog-width);margin-left:calc(-1 * var(--f7-dialog-width)/ 2);border-radius:var(--f7-dialog-border-radius);text-align:var(--f7-dialog-text-align);color:var(--f7-dialog-text-color);font-size:var(--f7-dialog-font-size);background:var(--f7-dialog-bg-color);will-change:transform,opacity}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .dialog{background-color:rgba(var(--f7-dialog-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}.dialog.modal-in{opacity:1;transform:translate3d(0,-50%,0) scale(1)}.dialog.modal-out{opacity:0;z-index:13499}.dialog.not-animated{transition-duration:0s}.dialog-inner{position:relative;padding:var(--f7-dialog-inner-padding)}.dialog-title{color:var(--f7-dialog-title-text-color);font-size:var(--f7-dialog-title-font-size);font-weight:var(--f7-dialog-title-font-weight);line-height:var(--f7-dialog-title-line-height)}.dialog-buttons{position:relative;display:flex}.dialog-buttons-vertical .dialog-buttons{display:block;height:auto!important}.dialog-button{box-sizing:border-box;overflow:hidden;position:relative;white-space:nowrap;text-overflow:ellipsis;color:var(--f7-dialog-button-text-color);font-size:var(--f7-dialog-button-font-size);height:var(--f7-dialog-button-height);line-height:var(--f7-dialog-button-height);letter-spacing:var(--f7-dialog-button-letter-spacing);text-align:var(--f7-dialog-button-text-align);font-weight:var(--f7-dialog-button-font-weight);text-transform:var(--f7-dialog-button-text-transform);display:block;cursor:pointer}.dialog-button.active-state{background-color:var(--f7-dialog-button-pressed-bg-color)}.dialog-no-buttons .dialog-buttons{display:none}.dialog-input-field{position:relative}input.dialog-input[type]{box-sizing:border-box;margin:0;margin-top:15px;border-radius:var(--f7-dialog-input-border-radius);-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;display:block;font-family:inherit;box-shadow:none;font-size:var(--f7-dialog-input-font-size);height:var(--f7-dialog-input-height);background-color:var(--f7-dialog-input-bg-color);border:var(--f7-dialog-input-border-width) solid var(--f7-dialog-input-border-color)}input.dialog-input[type]::-webkit-input-placeholder{color:var(--f7-dialog-input-placeholder-color)}input.dialog-input[type]::placeholder{color:var(--f7-dialog-input-placeholder-color)}.dialog-input-double input.dialog-input{border-radius:var(--f7-dialog-input-border-radius) var(--f7-dialog-input-border-radius) 0 0}.dialog-input-double+.dialog-input-double input.dialog-input{border-radius:0 0 var(--f7-dialog-input-border-radius) var(--f7-dialog-input-border-radius)}.dialog-preloader .preloader{--f7-preloader-size:var(--f7-dialog-preloader-size)}html.with-modal-dialog .page-content{overflow:hidden;-webkit-overflow-scrolling:auto}.ios .dialog.modal-out{transform:translate3d(0,-50%,0) scale(1)}.ios .dialog-inner{border-radius:var(--f7-dialog-border-radius) var(--f7-dialog-border-radius) 0 0}.ios .dialog-inner:after{content:'';position:absolute;background-color:var(--f7-dialog-border-divider-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.ios .dialog-title+.dialog-text{margin-top:5px}.ios .dialog-buttons{height:44px;justify-content:center}.ios .dialog-button{width:100%;padding:0 5px;-webkit-box-flex:1;-ms-flex:1}.ios .dialog-button:after{content:'';position:absolute;background-color:var(--f7-dialog-border-divider-color);display:block;z-index:15;top:0;right:0;bottom:auto;left:auto;width:1px;height:100%;transform-origin:100% 50%;transform:scaleX(calc(1 / var(--f7-device-pixel-ratio)))}.ios .dialog-button:first-child{border-radius:0 0 0 var(--f7-dialog-border-radius)}.ios .dialog-button:last-child{border-radius:0 0 var(--f7-dialog-border-radius) 0}.ios .dialog-button:last-child:after{display:none!important}.ios .dialog-button:first-child:last-child{border-radius:0 0 var(--f7-dialog-border-radius) var(--f7-dialog-border-radius)}.ios .dialog-button.dialog-button-bold{font-weight:500}.ios .dialog-button[class*=color-]{--f7-dialog-button-text-color:var(--f7-theme-color)}.ios .dialog-buttons-vertical .dialog-buttons{height:auto}.ios .dialog-buttons-vertical .dialog-button{border-radius:0}.ios .dialog-buttons-vertical .dialog-button:after{content:'';position:absolute;background-color:var(--f7-dialog-border-divider-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.ios .dialog-buttons-vertical .dialog-button:last-child{border-radius:0 0 var(--f7-dialog-border-radius) var(--f7-dialog-border-radius)}.ios .dialog-buttons-vertical .dialog-button:last-child:after{display:none!important}.ios .dialog-no-buttons .dialog-inner{border-radius:var(--f7-dialog-border-radius)}.ios .dialog-no-buttons .dialog-inner:after{display:none!important}.ios .dialog-input-field{margin-top:15px}.ios .dialog-input{padding:0 5px}.ios .dialog-input+.dialog-input{margin-top:5px}.ios .dialog-input-double+.dialog-input-double{margin-top:0}.ios .dialog-input-double+.dialog-input-double .dialog-input{border-top:0;margin-top:0}.ios .dialog-preloader .dialog-text~.preloader,.ios .dialog-preloader .dialog-title~.preloader{margin-top:15px}.ios .dialog-progress .dialog-text~.progressbar,.ios .dialog-progress .dialog-text~.progressbar-infinite,.ios .dialog-progress .dialog-title~.progressbar,.ios .dialog-progress .dialog-title~.progressbar-infinite{margin-top:15px}.md .dialog.modal-out{transform:translate3d(0,-50%,0) scale(.815)}.md .dialog-title+.dialog-text{margin-top:20px}.md .dialog-text{line-height:1.5}.md .dialog-buttons{height:48px;padding:6px 8px;overflow:hidden;box-sizing:border-box;justify-content:flex-end}.md .dialog-button{--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.25);border-radius:4px;min-width:64px;padding:0 8px;border:none;transition-duration:.3s;transform:translate3d(0,0,0)}.md .dialog-button.dialog-button-bold{font-weight:700}.md .dialog-button+.dialog-button{margin-left:4px}.md .dialog-button[class*=color-]{--f7-dialog-button-text-color:var(--f7-theme-color)}.md .dialog-buttons-vertical .dialog-buttons{display:flex;flex-direction:column;align-items:flex-end}.md .dialog-buttons-vertical .dialog-button+.dialog-button{margin-top:12px}.md .dialog-input{padding:0;transition-duration:.2s;position:relative}.md .dialog-input+.dialog-input{margin-top:16px}.md .dialog-preloader .dialog-inner,.md .dialog-preloader .dialog-title,.md .dialog-progress .dialog-inner,.md .dialog-progress .dialog-title{text-align:center}.md .dialog-preloader .dialog-text~.preloader,.md .dialog-preloader .dialog-title~.preloader{margin-top:20px}.md .dialog-progress .dialog-text~.progressbar,.md .dialog-progress .dialog-text~.progressbar-infinite,.md .dialog-progress .dialog-title~.progressbar,.md .dialog-progress .dialog-title~.progressbar-infinite{margin-top:16px}.aurora .dialog.modal-out{transform:translate3d(0,-50%,0) scale(.815)}.aurora .dialog-title+.dialog-text{margin-top:16px}.aurora .dialog-text{line-height:1.5}.aurora .dialog-buttons{padding:var(--f7-dialog-inner-padding);padding-top:0;overflow:hidden;box-sizing:border-box;justify-content:flex-end}.aurora .dialog-button{border-radius:8px;min-width:64px;padding:0 10px;border:none;transition-duration:.3s;transform:translate3d(0,0,0);background:var(--f7-theme-color)}.aurora .dialog-button.dialog-button-bold{font-weight:600}.aurora .dialog-button+.dialog-button{margin-left:16px}.aurora .dialog-button.active-state{background-color:var(--f7-dialog-button-pressed-bg-color,var(--f7-theme-color-shade))}.aurora.device-desktop .dialog-button:not(.active-state):not(.no-hover):hover{background-color:var(--f7-dialog-button-hover-bg-color,var(--f7-theme-color-tint))}.aurora .dialog-buttons-vertical .dialog-buttons{display:flex;flex-direction:column;align-items:stretch}.aurora .dialog-buttons-vertical .dialog-button{margin-left:0;flex-shrink:0}.aurora .dialog-buttons-vertical .dialog-button+.dialog-button{margin-top:8px}.aurora div.dialog-input-field{margin-top:16px}.aurora div.dialog-input-field input.dialog-input{margin-top:0}.aurora div.dialog-input-field.input:after{display:none!important}.aurora .dialog-input{padding:0 8px;transition-duration:.2s;position:relative}.aurora .dialog-input+.dialog-input{margin-top:8px}.aurora .dialog-input-double+.dialog-input-double{margin-top:0}.aurora .dialog-input-double+.dialog-input-double .dialog-input{border-top:0;margin-top:0}.aurora .dialog-preloader .dialog-inner,.aurora .dialog-preloader .dialog-title,.aurora .dialog-progress .dialog-inner,.aurora .dialog-progress .dialog-title{text-align:center}.aurora .dialog-preloader .dialog-text~.preloader,.aurora .dialog-preloader .dialog-title~.preloader{margin-top:16px}.aurora .dialog-progress .dialog-text~.progressbar,.aurora .dialog-progress .dialog-text~.progressbar-infinite,.aurora .dialog-progress .dialog-title~.progressbar,.aurora .dialog-progress .dialog-title~.progressbar-infinite{margin-top:16px}:root{--f7-popup-border-radius:0px;--f7-popup-tablet-width:630px;--f7-popup-tablet-height:630px;--f7-popup-transition-duration:400ms;--f7-popup-push-border-radius:10px;--f7-popup-push-offset:var(--f7-safe-area-top)}.ios{--f7-popup-tablet-border-radius:5px;--f7-popup-box-shadow:none}.md{--f7-popup-tablet-border-radius:4px;--f7-popup-box-shadow:0px 20px 44px rgba(0, 0, 0, 0.5)}.aurora{--f7-popup-tablet-border-radius:8px;--f7-popup-box-shadow:0px 20px 44px rgba(0, 0, 0, 0.5)}.popup-backdrop{z-index:10500}.popup{position:absolute;left:0;top:0px;width:100%;height:100%;display:none;box-sizing:border-box;transition-property:transform;transform:translate3d(0,100vh,0);background:#fff;z-index:11000;overflow:hidden;border-radius:var(--f7-popup-border-radius)}.popup.theme-dark,.theme-dark .popup{background:#000}.popup.modal-in,.popup.modal-out{transition-duration:var(--f7-popup-transition-duration)}.popup.not-animated{transition-duration:0s}.popup.modal-in{display:block;transform:translate3d(0,0,0)}.popup.modal-out{transform:translate3d(0,100vh,0)}.popup.swipe-close-to-top.modal-out{transform:translate3d(0,-100vh,0)}@media (min-width:630px) and (min-height:630px){.popup:not(.popup-tablet-fullscreen){--f7-safe-area-top:0px;--f7-safe-area-bottom:0px;width:var(--f7-popup-tablet-width);height:var(--f7-popup-tablet-height);left:50%;top:50%;margin-left:calc(-1 * var(--f7-popup-tablet-width)/ 2);margin-top:calc(-1 * var(--f7-popup-tablet-height)/ 2);transform:translate3d(0,100vh,0);box-shadow:var(--f7-popup-box-shadow);border-radius:var(--f7-popup-tablet-border-radius,var(--f7-popup-border-radius))}.popup:not(.popup-tablet-fullscreen).modal-in{transform:translate3d(0,0,0)}.popup:not(.popup-tablet-fullscreen).modal-out{transform:translate3d(0,100vh,0)}.popup:not(.popup-tablet-fullscreen).swipe-close-to-top.modal-out{transform:translate3d(0,-100vh,0)}.popup:not(.popup-tablet-fullscreen).popup-behind{transform:translate3d(0,0,0) scale(.9)}.popup:not(.popup-tablet-fullscreen).popup-behind.modal-out{transform:translate3d(0,100vh,0) scale(.9)}}html.with-modal-popup .framework7-root>.panel .page-content,html.with-modal-popup .framework7-root>.view .page-content,html.with-modal-popup .framework7-root>.views .page-content{overflow:hidden;-webkit-overflow-scrolling:auto}html.with-modal-popup-push .popup-push,html.with-modal-popup-push-closing .popup-push{top:calc(var(--f7-popup-push-offset) + 10px);height:calc(100% - var(--f7-popup-push-offset) - 10px);border-radius:var(--f7-popup-push-border-radius) var(--f7-popup-push-border-radius) 0 0;--f7-safe-area-top:0px}html.with-modal-popup-push .popup-push .page,html.with-modal-popup-push .popup-push .view,html.with-modal-popup-push-closing .popup-push .page,html.with-modal-popup-push-closing .popup-push .view{--f7-safe-area-top:0px}html.with-modal-popup-push .framework7-root,html.with-modal-popup-push-closing .framework7-root{background:#000}html.with-modal-popup-push .framework7-root>.view,html.with-modal-popup-push .framework7-root>.views,html.with-modal-popup-push-closing .framework7-root>.view,html.with-modal-popup-push-closing .framework7-root>.views{transition-duration:var(--f7-popup-transition-duration)}html.with-modal-popup-push .framework7-root>.view.theme-dark:after,html.with-modal-popup-push .framework7-root>.views.theme-dark:after,html.with-modal-popup-push .theme-dark .framework7-root>.view:after,html.with-modal-popup-push .theme-dark .framework7-root>.views:after,html.with-modal-popup-push .theme-dark.framework7-root>.view:after,html.with-modal-popup-push .theme-dark.framework7-root>.views:after,html.with-modal-popup-push-closing .framework7-root>.view.theme-dark:after,html.with-modal-popup-push-closing .framework7-root>.views.theme-dark:after,html.with-modal-popup-push-closing .theme-dark .framework7-root>.view:after,html.with-modal-popup-push-closing .theme-dark .framework7-root>.views:after,html.with-modal-popup-push-closing .theme-dark.framework7-root>.view:after,html.with-modal-popup-push-closing .theme-dark.framework7-root>.views:after,html.with-modal-popup-push-closing.theme-dark .framework7-root>.view:after,html.with-modal-popup-push-closing.theme-dark .framework7-root>.views:after,html.with-modal-popup-push.theme-dark .framework7-root>.view:after,html.with-modal-popup-push.theme-dark .framework7-root>.views:after{content:'';position:absolute;pointer-events:none;left:0;top:0;width:100%;height:100%;background:rgba(255,255,255,.1);z-index:13000;border-radius:var(--f7-popup-push-border-radius) var(--f7-popup-push-border-radius) 0 0;opacity:1;animation:popup-dark-push-overlay-fade-in var(--f7-popup-transition-duration) forwards}html.with-modal-popup-push .framework7-root>.view,html.with-modal-popup-push .framework7-root>.views{border-radius:var(--f7-popup-push-border-radius) var(--f7-popup-push-border-radius) 0 0;transform:translate3d(0,0,0px) scale(var(--f7-popup-push-scale,1))!important}html.with-modal-popup-push .popup:after{content:'';pointer-events:none;position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.4);z-index:13000;transition-duration:var(--f7-popup-transition-duration);border-radius:var(--f7-popup-push-border-radius) var(--f7-popup-push-border-radius) 0 0;opacity:0}html.with-modal-popup-push .theme-dark .popup:after,html.with-modal-popup-push .theme-dark.popup:after,html.with-modal-popup-push.theme-dark .popup:after{background:rgba(255,255,255,.05)}html.with-modal-popup-push .popup-behind{transform:translate3d(0,0px,0px) scale(var(--f7-popup-push-scale,1))}html.with-modal-popup-push .popup-behind.modal-out{transform:translate3d(0,100vh,0) scale(var(--f7-popup-push-scale,1))}html.with-modal-popup-push .popup-behind:not(.popup-push){border-radius:var(--f7-popup-push-border-radius) var(--f7-popup-push-border-radius) 0 0}html.with-modal-popup-push .popup-behind.popup-push{transform:translate3d(0,calc(0px - var(--f7-popup-push-offset) - 10px),0px) scale(var(--f7-popup-push-scale,1))}html.with-modal-popup-push .popup-behind.popup-push.modal-out{transform:translate3d(0,calc(0px - var(--f7-popup-push-offset) - 10px + 100vh),0px) scale(var(--f7-popup-push-scale,1))}html.with-modal-popup-push .popup-behind:after{opacity:1;pointer-events:auto}html.with-modal-popup-push-closing .framework7-root>.view.theme-dark:after,html.with-modal-popup-push-closing .framework7-root>.views.theme-dark:after,html.with-modal-popup-push-closing .theme-dark .framework7-root>.view:after,html.with-modal-popup-push-closing .theme-dark .framework7-root>.views:after,html.with-modal-popup-push-closing .theme-dark.framework7-root>.view:after,html.with-modal-popup-push-closing .theme-dark.framework7-root>.views:after,html.with-modal-popup-push-closing.theme-dark .framework7-root>.view:after,html.with-modal-popup-push-closing.theme-dark .framework7-root>.views:after{animation:popup-dark-push-overlay-fade-out var(--f7-popup-transition-duration) forwards}@keyframes popup-dark-push-overlay-fade-in{from{opacity:0}to{opacity:1}}@keyframes popup-dark-push-overlay-fade-out{from{opacity:1}to{opacity:0}}:root{--f7-login-screen-blocks-max-width:480px;--f7-login-screen-title-text-align:center;--f7-login-screen-title-text-color:inherit;--f7-login-screen-title-letter-spacing:0;--f7-login-screen-title-font-weight:600;--f7-login-screen-title-font-size:28px;--f7-login-screen-content-bg-color:#fff;--f7-login-screen-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-login-screen-bg-color:#121212;--f7-login-screen-content-bg-color:#121212}.ios{--f7-login-screen-blocks-margin-vertical:25px}.ios .theme-dark,.ios.theme-dark{--f7-login-screen-bg-color:#000;--f7-login-screen-content-bg-color:#000}.md{--f7-login-screen-blocks-margin-vertical:24px}.aurora{--f7-login-screen-blocks-margin-vertical:16px}.login-screen{position:absolute;left:0;top:0;width:100%;height:100%;display:none;box-sizing:border-box;transition-property:transform;transform:translate3d(0,100vh,0);background:var(--f7-login-screen-bg-color);z-index:11000}.login-screen.modal-in,.login-screen.modal-out{transition-duration:.4s}.login-screen.not-animated{transition-duration:0s}.login-screen.modal-in{display:block;transform:translate3d(0,0,0)}.login-screen.modal-out{transform:translate3d(0,100%,0)}.login-screen .page,.login-screen-content,.login-screen-page{background:var(--f7-login-screen-content-bg-color)}.login-screen-content .list-button,.login-screen-page .list-button{text-align:center;color:var(--f7-login-screen-list-button-text-color,var(--f7-theme-color))}.login-screen-content .block,.login-screen-content .list,.login-screen-content .login-screen-title,.login-screen-page .block,.login-screen-page .list,.login-screen-page .login-screen-title{margin:var(--f7-login-screen-blocks-margin-vertical) auto}.login-screen-content .block,.login-screen-content .block-footer,.login-screen-content .block-header,.login-screen-content .list,.login-screen-content .login-screen-title,.login-screen-page .block,.login-screen-page .block-footer,.login-screen-page .block-header,.login-screen-page .list,.login-screen-page .login-screen-title{max-width:var(--f7-login-screen-blocks-max-width)}.login-screen-content .list ul,.login-screen-page .list ul{background:0 0}.login-screen-content .list ul:after,.login-screen-content .list ul:before,.login-screen-page .list ul:after,.login-screen-page .list ul:before{display:none!important}.login-screen-content .block-footer,.login-screen-content .block-header,.login-screen-page .block-footer,.login-screen-page .block-header{text-align:center;margin-left:auto;margin-right:auto}.login-screen-title{text-align:var(--f7-login-screen-title-text-align);font-size:var(--f7-login-screen-title-font-size);font-weight:var(--f7-login-screen-title-font-weight);color:var(--f7-login-screen-title-text-color);letter-spacing:var(--f7-login-screen-title-letter-spacing)}.login-screen-page,.login-screen>.page,.login-screen>.view>.page{display:flex;flex-direction:column}.login-screen-page .login-screen-content,.login-screen-page .page-content,.login-screen>.page .login-screen-content,.login-screen>.page .page-content,.login-screen>.view>.page .login-screen-content,.login-screen>.view>.page .page-content{margin-top:auto;margin-bottom:auto;height:auto;max-height:100%;width:100%}.theme-dark .login-screen-content .block-strong,.theme-dark .login-screen-content .list ul,.theme-dark .login-screen-page .block-strong,.theme-dark .login-screen-page .list ul,.theme-dark.login-screen-page .block-strong,.theme-dark.login-screen-page .list ul{background-color:transparent}:root{--f7-popover-width:260px}.ios{--f7-popover-border-radius:13px;--f7-popover-box-shadow:none;--f7-popover-actions-icon-size:28px;--f7-popover-bg-color:rgba(255, 255, 255, 0.95);--f7-popover-actions-label-text-color:rgba(0, 0, 0, 0.45)}.ios .theme-dark,.ios.theme-dark{--f7-popover-bg-color:rgba(30, 30, 30, 0.95);--f7-popover-actions-label-text-color:rgba(255, 255, 255, 0.55)}.md{--f7-popover-border-radius:4px;--f7-popover-box-shadow:var(--f7-elevation-8);--f7-popover-actions-icon-size:24px;--f7-popover-bg-color:#fff;--f7-popover-actions-label-text-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-popover-bg-color:#1c1c1d;--f7-popover-actions-label-text-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-popover-border-radius:8px;--f7-popover-box-shadow:var(--f7-elevation-8);--f7-popover-actions-icon-size:24px;--f7-popover-bg-color:#fff;--f7-popover-actions-label-text-color:rgba(0, 0, 0, 0.6)}.aurora .theme-dark,.aurora.theme-dark{--f7-popover-bg-color:#1c1c1d;--f7-popover-actions-label-text-color:rgba(255, 255, 255, 0.6)}.popover{width:var(--f7-popover-width);z-index:13500;margin:0;top:0;opacity:0;left:0;position:absolute;display:none;transition-duration:.3s;background-color:var(--f7-popover-bg-color);border-radius:var(--f7-popover-border-radius);box-shadow:var(--f7-popover-box-shadow);will-change:transform,opacity}.popover .list{margin:0}.popover .list ul{background:0 0}.popover .list:first-child ul:before{display:none!important}.popover .list:last-child ul:after{display:none!important}.popover .list:first-child ul{border-radius:var(--f7-popover-border-radius) var(--f7-popover-border-radius) 0 0}.popover .list:first-child li:first-child,.popover .list:first-child li:first-child a,.popover .list:first-child li:first-child>label{border-radius:var(--f7-popover-border-radius) var(--f7-popover-border-radius) 0 0}.popover .list:last-child ul{border-radius:0 0 var(--f7-popover-border-radius) var(--f7-popover-border-radius)}.popover .list:last-child li:last-child,.popover .list:last-child li:last-child a,.popover .list:last-child li:last-child>label{border-radius:0 0 var(--f7-popover-border-radius) var(--f7-popover-border-radius)}.popover .list:first-child:last-child li:first-child:last-child,.popover .list:first-child:last-child li:first-child:last-child a,.popover .list:first-child:last-child li:first-child:last-child>label,.popover .list:first-child:last-child ul{border-radius:var(--f7-popover-border-radius)}.popover .list+.list{margin-top:var(--f7-list-margin-vertical)}.popover.modal-in{opacity:1}.popover.not-animated{transition-duration:0s}.popover-inner{overflow:auto;-webkit-overflow-scrolling:touch}.popover-from-actions .item-link i.icon{width:var(--f7-popover-actions-icon-size);height:var(--f7-popover-actions-icon-size);font-size:var(--f7-popover-actions-icon-size)}.popover-from-actions-bold{font-weight:600}.popover-from-actions-label{line-height:1.3;position:relative;display:flex;align-items:center;padding:var(--f7-actions-label-padding);color:var(--f7-popover-actions-label-text-color);font-size:var(--f7-actions-label-font-size);justify-content:var(--f7-actions-label-justify-content)}.popover-from-actions-label:after{content:'';position:absolute;background-color:var(--f7-list-item-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.popover-from-actions-label:last-child:after{display:none!important}.ios .popover{transform:none;transition-property:opacity}.ios .popover-angle{width:26px;height:26px;position:absolute;left:-26px;top:0;z-index:100;overflow:hidden}.ios .popover-angle:after{content:'';background:var(--f7-popover-bg-color);width:26px;height:26px;position:absolute;left:0;top:0;border-radius:3px;transform:rotate(45deg)}.ios .popover-angle.on-left{left:-26px}.ios .popover-angle.on-left:after{left:19px;top:0}.ios .popover-angle.on-right{left:100%}.ios .popover-angle.on-right:after{left:-19px;top:0}.ios .popover-angle.on-top{left:0;top:-26px}.ios .popover-angle.on-top:after{left:0;top:19px}.ios .popover-angle.on-bottom{left:0;top:100%}.ios .popover-angle.on-bottom:after{left:0;top:-19px}.md .popover{transform:scale(.85,.6);transition-property:opacity,transform}.md .popover.modal-in{opacity:1;transform:scale(1)}.md .popover.modal-out{opacity:0;transform:scale(1)}.md .popover-on-top{transform-origin:center bottom}.md .popover-on-top.popover-on-right{transform-origin:left bottom}.md .popover-on-top.popover-on-left{transform-origin:right bottom}.md .popover-on-middle{transform-origin:center center}.md .popover-on-middle.popover-on-right{transform-origin:left center}.md .popover-on-middle.popover-on-left{transform-origin:right center}.md .popover-on-bottom{transform-origin:center top}.md .popover-on-bottom.popover-on-right{transform-origin:left top}.md .popover-on-bottom.popover-on-left{transform-origin:right top}.aurora .popover{transform:none;transition-property:opacity}.aurora .popover-angle{width:24px;height:24px;position:absolute;left:-24px;top:0;z-index:100;overflow:hidden}.aurora .popover-angle:after{content:'';background:var(--f7-popover-bg-color);width:24px;height:24px;position:absolute;left:0;top:0;border-radius:4px;transform:rotate(45deg)}.aurora .popover-angle.on-left{left:-24px}.aurora .popover-angle.on-left:after{left:17px;top:0}.aurora .popover-angle.on-right{left:100%}.aurora .popover-angle.on-right:after{left:-17px;top:0}.aurora .popover-angle.on-top{left:0;top:-24px}.aurora .popover-angle.on-top:after{left:0;top:17px}.aurora .popover-angle.on-bottom{left:0;top:100%}.aurora .popover-angle.on-bottom:after{left:0;top:-17px}:root{--f7-actions-grid-button-font-size:12px;--f7-actions-grid-button-text-color:#757575;--f7-actions-grid-button-icon-size:48px}:root .theme-dark,:root.theme-dark{--f7-actions-label-text-color:rgba(255, 255, 255, 0.55)}.ios{--f7-actions-border-radius:13px;--f7-actions-button-padding:0px;--f7-actions-button-text-align:center;--f7-actions-button-height:57px;--f7-actions-button-height-landscape:44px;--f7-actions-button-font-size:20px;--f7-actions-button-icon-size:28px;--f7-actions-button-justify-content:center;--f7-actions-label-padding:8px 10px;--f7-actions-label-font-size:13px;--f7-actions-label-justify-content:center;--f7-actions-group-border-color:transparent;--f7-actions-group-margin:8px;--f7-actions-bg-color:rgba(255, 255, 255, 0.95);--f7-actions-bg-color-rgb:255,255,255;--f7-actions-button-border-color:rgba(0, 0, 0, 0.2);--f7-actions-button-pressed-bg-color:rgba(230, 230, 230, 0.9);--f7-actions-button-pressed-bg-color-rgb:230,230,230;--f7-actions-label-text-color:#8a8a8a}.ios .theme-dark,.ios.theme-dark{--f7-actions-bg-color:rgba(45, 45, 45, 0.95);--f7-actions-bg-color-rgb:45,45,45;--f7-actions-button-border-color:rgba(255, 255, 255, 0.15);--f7-actions-button-pressed-bg-color:rgba(50, 50, 50, 0.9);--f7-actions-button-pressed-bg-color-rgb:50,50,50}.md{--f7-actions-border-radius:0px;--f7-actions-button-border-color:transparent;--f7-actions-button-padding:0 16px;--f7-actions-button-text-align:left;--f7-actions-button-height:48px;--f7-actions-button-height-landscape:48px;--f7-actions-button-font-size:16px;--f7-actions-button-icon-size:24px;--f7-actions-button-justify-content:space-between;--f7-actions-label-padding:12px 16px;--f7-actions-label-font-size:16px;--f7-actions-label-justify-content:flex-start;--f7-actions-group-margin:0px;--f7-actions-bg-color:#fff;--f7-actions-button-pressed-bg-color:#e5e5e5;--f7-actions-label-text-color:rgba(0, 0, 0, 0.54);--f7-actions-group-border-color:rgba(0, 0, 0, 0.12)}.md .theme-dark,.md.theme-dark{--f7-actions-bg-color:#202020;--f7-actions-button-pressed-bg-color:#2e2e2e;--f7-actions-group-border-color:rgba(255, 255, 255, 0.15)}.aurora{--f7-actions-border-radius:8px;--f7-actions-button-padding:0 16px;--f7-actions-button-text-align:center;--f7-actions-button-height:48px;--f7-actions-button-height-landscape:48px;--f7-actions-button-font-size:16px;--f7-actions-button-icon-size:24px;--f7-actions-button-justify-content:space-between;--f7-actions-label-padding:10px 16px;--f7-actions-label-font-size:14px;--f7-actions-label-justify-content:center;--f7-actions-group-margin:16px;--f7-actions-bg-color:#fff;--f7-actions-button-border-color:rgba(0, 0, 0, 0.12);--f7-actions-button-pressed-bg-color:#e5e5e5;--f7-actions-label-text-color:rgba(0, 0, 0, 0.5);--f7-actions-group-border-color:rgba(0, 0, 0, 0.1)}.aurora .theme-dark,.aurora.theme-dark{--f7-actions-bg-color:#202020;--f7-actions-button-border-color:rgba(255, 255, 255, 0.15);--f7-actions-button-pressed-bg-color:#2e2e2e;--f7-actions-group-border-color:rgba(255, 255, 255, 0.15)}.actions-modal{position:absolute;left:0;bottom:0;z-index:13500;width:100%;transform:translate3d(0,100%,0);display:none;max-height:100%;overflow:auto;-webkit-overflow-scrolling:touch;transition-property:transform;will-change:transform}.actions-modal.modal-in,.actions-modal.modal-out{transition-duration:.3s}.actions-modal.not-animated{transition-duration:0s}.actions-modal.modal-in{transform:translate3d(0,calc(-1 * var(--f7-safe-area-bottom)),0)}.actions-modal.modal-out{z-index:13499;transform:translate3d(0,100%,0)}@media (min-width:496px){.actions-modal{width:480px;left:50%;margin-left:-240px}}@media (orientation:landscape){.actions-modal{--f7-actions-button-height:var(--f7-actions-button-height-landscape)}}.actions-group{overflow:hidden;position:relative;margin:var(--f7-actions-group-margin);border-radius:var(--f7-actions-border-radius);transform:translate3d(0,0,0)}.actions-group:after{content:'';position:absolute;background-color:var(--f7-actions-group-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.actions-group:last-child:after{display:none!important}.actions-button,.actions-label{width:100%;font-weight:400;margin:0;box-sizing:border-box;display:block;position:relative;overflow:hidden;text-align:var(--f7-actions-button-text-align);background:var(--f7-actions-bg-color)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .actions-button,.ios-translucent-modals .actions-label{background-color:rgba(var(--f7-actions-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}.actions-button:after,.actions-label:after{content:'';position:absolute;background-color:var(--f7-actions-button-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.actions-button:first-child,.actions-label:first-child{border-radius:var(--f7-actions-border-radius) var(--f7-actions-border-radius) 0 0}.actions-button:last-child,.actions-label:last-child{border-radius:0 0 var(--f7-actions-border-radius) var(--f7-actions-border-radius)}.actions-button:last-child:after,.actions-label:last-child:after{display:none!important}.actions-button:first-child:last-child,.actions-label:first-child:last-child{border-radius:var(--f7-actions-border-radius)}.actions-button a,.actions-label a{text-decoration:none;color:inherit;display:block}.actions-button b,.actions-button.actions-button-bold,.actions-label b,.actions-label.actions-button-bold{font-weight:600}.actions-button{cursor:pointer;display:flex;color:var(--f7-actions-button-text-color,var(--f7-theme-color));font-size:var(--f7-actions-button-font-size);height:var(--f7-actions-button-height);line-height:var(--f7-actions-button-height);padding:var(--f7-actions-button-padding);justify-content:var(--f7-actions-button-justify-content);z-index:10}.actions-button.active-state{background-color:var(--f7-actions-button-pressed-bg-color)!important}.actions-button[class*=color-]{color:var(--f7-theme-color)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .actions-button.active-state{background-color:rgba(var(--f7-actions-button-pressed-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}.actions-button-media{flex-shrink:0;display:flex;align-items:center}.actions-button-media i.icon{width:var(--f7-actions-button-icon-size);height:var(--f7-actions-button-icon-size);font-size:var(--f7-actions-button-icon-size)}.actions-button a,.actions-button-text{position:relative;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.actions-button-text{width:100%;flex-shrink:1;text-align:var(--f7-actions-button-text-align)}.actions-label{line-height:1.3;display:flex;align-items:center;font-size:var(--f7-actions-label-font-size);color:var(--f7-actions-label-text-color);padding:var(--f7-actions-label-padding);justify-content:var(--f7-actions-label-justify-content);min-height:var(--f7-actions-label-min-height,var(--f7-actions-button-height))}.actions-label[class*=' color-']{--f7-actions-label-text-color:var(--f7-theme-color)}.actions-grid .actions-group{display:flex;flex-wrap:wrap;justify-content:flex-start;border-radius:0;background:var(--f7-actions-bg-color);margin-top:0}.actions-grid .actions-group:first-child{border-radius:var(--f7-actions-border-radius) var(--f7-actions-border-radius) 0 0}.actions-grid .actions-group:last-child{border-radius:0 0 var(--f7-actions-border-radius) var(--f7-actions-border-radius)}.actions-grid .actions-group:first-child:last-child{border-radius:var(--f7-actions-border-radius)}.actions-grid .actions-group:not(:last-child){margin-bottom:0}.actions-grid .actions-button,.actions-grid .actions-label{border-radius:0!important;background:0 0}.actions-grid .actions-button{width:33.33333333%;display:block;color:var(--f7-actions-grid-button-text-color);height:auto;line-height:1;padding:16px}.actions-grid .actions-button:after{display:none!important}.actions-grid .actions-button-media{margin-left:auto!important;margin-right:auto!important;width:var(--f7-actions-grid-button-icon-size);height:var(--f7-actions-grid-button-icon-size)}.actions-grid .actions-button-media i.icon{width:var(--f7-actions-grid-button-icon-size);height:var(--f7-actions-grid-button-icon-size);font-size:var(--f7-actions-grid-button-icon-size)}.actions-grid .actions-button-text{margin-left:0!important;text-align:center!important;margin-top:8px;line-height:1.33em;height:1.33em;font-size:var(--f7-actions-grid-button-font-size)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .actions-grid .actions-group{background-color:rgba(var(--f7-actions-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}.ios .actions-button-media{margin-left:16px}.ios .actions-button-media+.actions-button-text{text-align:left;margin-left:16px}.md .actions-button{transition-duration:.3s}.md .actions-button-media{min-width:40px}.md .actions-button-media+.actions-button-text{margin-left:16px}.aurora .actions-button-media{margin-left:16px}.aurora .actions-button-media+.actions-button-text{text-align:left;margin-left:16px}:root{--f7-sheet-height:260px;--f7-sheet-border-color:transparent;--f7-sheet-transition-duration:300ms;--f7-sheet-push-border-radius:10px;--f7-sheet-push-offset:var(--f7-safe-area-top);--f7-sheet-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-sheet-bg-color:#202020}.ios{--f7-sheet-border-color:var(--f7-bars-border-color)}.sheet-backdrop{z-index:11000}.sheet-modal{position:absolute;left:0;bottom:0;width:100%;height:var(--f7-sheet-height);display:none;box-sizing:border-box;transition-property:transform;transform:translate3d(0,100%,0);background:var(--f7-sheet-bg-color);z-index:12500;will-change:transform,opacity}.sheet-modal.modal-in,.sheet-modal.modal-out{transition-duration:var(--f7-sheet-transition-duration)}.sheet-modal.not-animated{transition-duration:0s}.sheet-modal.modal-in{display:block;transform:translate3d(0,0,0)}.sheet-modal.modal-in-swipe-step{display:block;transform:translate3d(0,var(--f7-sheet-swipe-step,0),0)}.sheet-modal.modal-out{transform:translate3d(0,100%,0)}.sheet-modal .sheet-modal-inner{height:100%;position:relative;overflow:hidden}.sheet-modal .toolbar{--f7-safe-area-bottom:0px;position:relative;width:100%}.sheet-modal .toolbar:after,.sheet-modal .toolbar:before{display:none}.sheet-modal .toolbar+.sheet-modal-inner{height:calc(100% - var(--f7-toolbar-height))}.sheet-modal .toolbar+.sheet-modal-inner .page-content{--f7-page-toolbar-top-offset:0px;--f7-page-toolbar-bottom-offset:0px}.sheet-modal-top:after{content:'';position:absolute;background-color:var(--f7-sheet-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.sheet-modal-top:after{z-index:700;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform-style:preserve-3d}.sheet-modal-bottom,.sheet-modal:not(.sheet-modal-top){--f7-safe-area-top:0px}.sheet-modal-bottom:before,.sheet-modal:not(.sheet-modal-top):before{content:'';position:absolute;background-color:var(--f7-sheet-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.sheet-modal-bottom:before,.sheet-modal:not(.sheet-modal-top):before{z-index:700;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform-style:preserve-3d}.sheet-modal-top{--f7-safe-area-bottom:0px;bottom:auto;top:0;transform:translate3d(0,-100%,0)}.sheet-modal-top.modal-out{transform:translate3d(0,-100%,0)}.sheet-modal-top .toolbar-bottom{position:absolute}.sheet-modal-top .page-content{padding-top:var(--f7-safe-area-top)}html.with-modal-sheet-push .sheet-modal-push,html.with-modal-sheet-push-closing .sheet-modal-push{--f7-sheet-border-color:transparent;border-radius:var(--f7-sheet-push-border-radius) var(--f7-sheet-push-border-radius) 0 0;overflow:hidden}html.with-modal-sheet-push .sheet-modal-push .page,html.with-modal-sheet-push .sheet-modal-push .view,html.with-modal-sheet-push-closing .sheet-modal-push .page,html.with-modal-sheet-push-closing .sheet-modal-push .view{--f7-safe-area-top:0px}html.with-modal-sheet-push .sheet-modal-push.sheet-modal-top,html.with-modal-sheet-push-closing .sheet-modal-push.sheet-modal-top{border-radius:0 0 var(--f7-sheet-push-border-radius) var(--f7-sheet-push-border-radius)}html.with-modal-sheet-push .framework7-root,html.with-modal-sheet-push-closing .framework7-root{background:#000}html.with-modal-sheet-push .framework7-root>.view,html.with-modal-sheet-push .framework7-root>.views,html.with-modal-sheet-push-closing .framework7-root>.view,html.with-modal-sheet-push-closing .framework7-root>.views{transition-duration:var(--f7-sheet-transition-duration)}html.with-modal-sheet-push .framework7-root>.view.theme-dark:after,html.with-modal-sheet-push .framework7-root>.views.theme-dark:after,html.with-modal-sheet-push .theme-dark .framework7-root>.view:after,html.with-modal-sheet-push .theme-dark .framework7-root>.views:after,html.with-modal-sheet-push .theme-dark.framework7-root>.view:after,html.with-modal-sheet-push .theme-dark.framework7-root>.views:after,html.with-modal-sheet-push-closing .framework7-root>.view.theme-dark:after,html.with-modal-sheet-push-closing .framework7-root>.views.theme-dark:after,html.with-modal-sheet-push-closing .theme-dark .framework7-root>.view:after,html.with-modal-sheet-push-closing .theme-dark .framework7-root>.views:after,html.with-modal-sheet-push-closing .theme-dark.framework7-root>.view:after,html.with-modal-sheet-push-closing .theme-dark.framework7-root>.views:after,html.with-modal-sheet-push-closing.theme-dark .framework7-root>.view:after,html.with-modal-sheet-push-closing.theme-dark .framework7-root>.views:after,html.with-modal-sheet-push.theme-dark .framework7-root>.view:after,html.with-modal-sheet-push.theme-dark .framework7-root>.views:after{content:'';position:absolute;pointer-events:none;left:0;top:0;width:100%;height:100%;background:rgba(255,255,255,.1);z-index:13000;border-radius:var(--f7-sheet-push-border-radius) var(--f7-sheet-push-border-radius) 0 0;opacity:1;animation:sheet-dark-push-overlay-fade-in var(--f7-sheet-transition-duration) forwards}html.with-modal-sheet-push .framework7-root>.view,html.with-modal-sheet-push .framework7-root>.views{border-radius:var(--f7-sheet-push-border-radius);transform:translate3d(0,0,0px) scale(var(--f7-sheet-push-scale,1))!important}html.with-modal-sheet-push-closing .framework7-root>.view.theme-dark:after,html.with-modal-sheet-push-closing .framework7-root>.views.theme-dark:after,html.with-modal-sheet-push-closing .theme-dark .framework7-root>.view:after,html.with-modal-sheet-push-closing .theme-dark .framework7-root>.views:after,html.with-modal-sheet-push-closing .theme-dark.framework7-root>.view:after,html.with-modal-sheet-push-closing .theme-dark.framework7-root>.views:after,html.with-modal-sheet-push-closing.theme-dark .framework7-root>.view:after,html.with-modal-sheet-push-closing.theme-dark .framework7-root>.views:after{animation:sheet-dark-push-overlay-fade-out var(--f7-sheet-transition-duration) forwards}@keyframes sheet-dark-push-overlay-fade-in{from{opacity:0}to{opacity:1}}@keyframes sheet-dark-push-overlay-fade-out{from{opacity:1}to{opacity:0}}.md .sheet-modal .toolbar a.link:not(.tab-link){flex-shrink:0}:root{--f7-toast-text-color:#fff;--f7-toast-font-size:14px;--f7-toast-icon-size:48px;--f7-toast-max-width:568px}.ios{--f7-toast-bg-color:rgba(0, 0, 0, 0.75);--f7-toast-bg-color-rgb:0,0,0;--f7-toast-padding-horizontal:16px;--f7-toast-padding-vertical:12px;--f7-toast-border-radius:8px;--f7-toast-button-min-width:64px}.md{--f7-toast-bg-color:#323232;--f7-toast-padding-horizontal:24px;--f7-toast-padding-vertical:14px;--f7-toast-border-radius:4px;--f7-toast-button-min-width:64px}.aurora{--f7-toast-bg-color:#323232;--f7-toast-padding-horizontal:16px;--f7-toast-padding-vertical:16px;--f7-toast-border-radius:8px;--f7-toast-button-min-width:32px}.toast{--f7-touch-ripple-color:var(--f7-touch-ripple-white);transition-property:transform,opacity;position:absolute;max-width:var(--f7-toast-max-width);z-index:20000;color:var(--f7-toast-text-color);font-size:var(--f7-toast-font-size);box-sizing:border-box;background-color:var(--f7-toast-bg-color);opacity:0}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .toast{background-color:rgba(var(--f7-toast-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}.toast.modal-in{opacity:1}.toast .toast-content{display:flex;justify-content:space-between;align-items:center;box-sizing:border-box;padding:var(--f7-toast-padding-vertical) var(--f7-toast-padding-horizontal)}.toast .toast-text{line-height:20px;flex-shrink:1;min-width:0}.toast .toast-button{flex-shrink:0;min-width:var(--f7-toast-button-min-width);margin-top:-8px;margin-bottom:-8px}.toast.toast-with-icon .toast-content{display:block;text-align:center}.toast.toast-with-icon .toast-text{text-align:center}.toast.toast-with-icon .toast-icon .f7-icons,.toast.toast-with-icon .toast-icon .material-icons{font-size:var(--f7-toast-icon-size)}.toast.toast-center{top:50%}.toast.toast-top{margin-top:var(--f7-safe-area-top)}.ios .toast{transition-duration:.3s;width:100%;left:0}.ios .toast.toast-top{top:0;transform:translate3d(0,-100%,0)}.ios .toast.toast-top.modal-in{transform:translate3d(0,0%,0)}.ios .toast.toast-center{width:auto;left:50%;border-radius:var(--f7-toast-border-radius);transform:translate3d(-50%,-50%,0)}.ios .toast.toast-center.modal-in{transform:translate3d(-50%,-50%,0)}.ios .toast.toast-bottom{bottom:0;transform:translate3d(0,100%,0)}.ios .toast.toast-bottom.modal-in{transform:translate3d(0,0%,0)}@media (max-width:568px){.ios .toast.toast-top{margin-top:0}.ios .toast.toast-top .toast-content{padding-top:calc(var(--f7-toast-padding-vertical) + var(--f7-safe-area-top))}.ios .toast.toast-bottom .toast-content{padding-bottom:calc(var(--f7-toast-padding-vertical) + var(--f7-safe-area-bottom))}}@media (min-width:569px){.ios .toast{left:50%;margin-left:calc(-1 * var(--f7-toast-max-width)/ 2);border-radius:var(--f7-toast-border-radius)}.ios .toast.toast-top{top:16px}.ios .toast.toast-center{margin-left:0}.ios .toast.toast-bottom{margin-bottom:calc(16px + var(--f7-safe-area-bottom))}}@media (min-width:1024px){.ios .toast{margin-left:0;width:auto}.ios .toast.toast-horizontal-left{left:16px}.ios .toast.toast-horizontal-right{left:auto;right:16px}.ios .toast.toast-horizontal-center{left:50%;width:var(--f7-toast-max-width);margin-left:calc(-1 * var(--f7-toast-max-width)/ 2)}}.ios .toast-button{margin-left:16px;margin-right:calc(-1 * var(--f7-button-padding-horizontal))}.md .toast{transition-duration:.2s;border-radius:var(--f7-toast-border-radius);width:calc(100% - 16px);transform:scale(.9);left:8px}.md .toast.modal-in{transform:scale(1)}.md .toast.modal-out{transform:scale(1)}.md .toast.toast-top{top:8px}.md .toast.toast-center{left:50%;width:auto;transform:scale(.9) translate3d(-55%,-55%,0)}.md .toast.toast-center.modal-in{transform:scale(1) translate3d(-50%,-50%,0)}.md .toast.toast-center.modal-out{transform:scale(1) translate3d(-50%,-50%,0)}.md .toast.toast-bottom{bottom:calc(8px + var(--f7-safe-area-bottom))}@media (min-width:584px){.md .toast{left:50%;margin-left:calc(-1 * var(--f7-toast-max-width)/ 2)}.md .toast.toast-center{margin-left:0}}@media (min-width:1024px){.md .toast{margin-left:0;width:auto}.md .toast.toast-horizontal-left{left:24px}.md .toast.toast-horizontal-right{left:auto;right:24px}.md .toast.toast-horizontal-center{left:50%;width:var(--f7-toast-max-width);margin-left:calc(-1 * var(--f7-toast-max-width)/ 2)}.md .toast.toast-bottom{bottom:calc(24px + var(--f7-safe-area-bottom))}.md .toast.toast-top{top:24px}}.md .toast-button{margin-left:16px;margin-right:-8px}.aurora .toast{transition-duration:.2s;border-radius:var(--f7-toast-border-radius);left:16px;width:calc(100% - 32px);transform:scale(.9)}.aurora .toast.modal-in{transform:scale(1)}.aurora .toast.modal-out{transform:scale(1)}.aurora .toast.toast-top{top:16px}.aurora .toast.toast-center{left:50%;width:auto;transform:scale(.9) translate3d(-55%,-55%,0)}.aurora .toast.toast-center.modal-in{transform:scale(1) translate3d(-50%,-50%,0)}.aurora .toast.toast-center.modal-out{transform:scale(1) translate3d(-50%,-50%,0)}.aurora .toast.toast-bottom{bottom:calc(16px + var(--f7-safe-area-bottom))}@media (min-width:584px){.aurora .toast{left:50%;margin-left:calc(-1 * var(--f7-toast-max-width)/ 2)}.aurora .toast.toast-center{margin-left:0}}@media (min-width:1024px){.aurora .toast{margin-left:0;width:auto}.aurora .toast.toast-horizontal-left{left:16px}.aurora .toast.toast-horizontal-right{left:auto;right:16px}.aurora .toast.toast-horizontal-center{left:50%;width:var(--f7-toast-max-width);margin-left:calc(-1 * var(--f7-toast-max-width)/ 2)}}.aurora .toast-button{margin-left:16px}:root{--f7-preloader-modal-padding:8px;--f7-preloader-modal-bg-color:rgba(0, 0, 0, 0.8)}.ios{--f7-preloader-color:#6c6c6c;--f7-preloader-size:20px;--f7-preloader-modal-preloader-size:34px;--f7-preloader-modal-border-radius:5px}.md{--f7-preloader-color:#757575;--f7-preloader-size:32px;--f7-preloader-modal-preloader-size:32px;--f7-preloader-modal-border-radius:4px}.aurora{--f7-preloader-color:#757575;--f7-preloader-size:24px;--f7-preloader-modal-preloader-size:24px;--f7-preloader-modal-border-radius:4px}.preloader{display:inline-block;vertical-align:middle;width:var(--f7-preloader-size);height:var(--f7-preloader-size);font-size:0;position:relative}.preloader .preloader-inner{width:100%;height:100%;display:block;position:relative}.preloader-backdrop{visibility:visible;opacity:0;background:0 0;z-index:14000}.preloader-modal{position:absolute;left:50%;top:50%;padding:var(--f7-preloader-modal-padding);background:var(--f7-preloader-modal-bg-color);z-index:14500;transform:translateX(-50%) translateY(-50%);border-radius:var(--f7-preloader-modal-border-radius)}.preloader-modal .preloader{--f7-preloader-size:var(--f7-preloader-modal-preloader-size);display:block!important}.with-modal-preloader .page-content,.with-modal-preloader.page-content,html.with-modal-preloader .page-content{overflow:hidden;-webkit-overflow-scrolling:auto}.preloader[class*=color-]{--f7-preloader-color:var(--f7-theme-color)}.ios .preloader-inner{animation:ios-preloader-spin 1s steps(8,end) infinite}.ios .preloader-inner-line{display:block;width:11.6%;height:33.33%;border-radius:100px;background:var(--f7-preloader-color);position:absolute;left:50%;top:50%;transform-origin:center 150%}.ios .preloader.color-multi .preloader-inner-line{animation:ios-preloader-multicolor 3s linear infinite}.ios .preloader-inner-line:nth-child(1){transform:translate(-50%,-150%) rotate(0deg);opacity:.27}.ios .preloader-inner-line:nth-child(2){transform:translate(-50%,-150%) rotate(45deg);opacity:.35285714}.ios .preloader-inner-line:nth-child(3){transform:translate(-50%,-150%) rotate(90deg);opacity:.43571429}.ios .preloader-inner-line:nth-child(4){transform:translate(-50%,-150%) rotate(135deg);opacity:.51857143}.ios .preloader-inner-line:nth-child(5){transform:translate(-50%,-150%) rotate(180deg);opacity:.60142857}.ios .preloader-inner-line:nth-child(6){transform:translate(-50%,-150%) rotate(225deg);opacity:.68428571}.ios .preloader-inner-line:nth-child(7){transform:translate(-50%,-150%) rotate(270deg);opacity:.76714286}.ios .preloader-inner-line:nth-child(8){transform:translate(-50%,-150%) rotate(315deg);opacity:.85}@keyframes ios-preloader-spin{100%{transform:rotate(360deg)}}@keyframes ios-preloader-multicolor{0%,100%{background-color:#2196f3}25%{background-color:#ff3b30}50%{background-color:#4cd964}75%{background-color:#ff9500}}.md .preloader-inner{animation:md-preloader-rotate 1.4s linear infinite}.md .preloader-inner circle{fill:none;stroke:var(--f7-preloader-color);animation:md-preloader-circle-rotate 5.6s ease-in-out infinite;stroke-dasharray:100px;stroke-dashoffset:80px;stroke-width:4;transform:rotate(-90deg);transform-origin:18px 18px}.md .preloader.color-multi circle{animation:md-preloader-circle-rotate 5.6s ease-in-out infinite,md-preloader-multicolor 5.6s ease-in-out infinite}@keyframes md-preloader-multicolor{0%,100%{stroke:#4285f4}75%{stroke:#1b9a59}50%{stroke:#f7c223}25%{stroke:#de3e35}}@keyframes md-preloader-rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes md-preloader-circle-rotate{0%{transform:rotate(-90deg);stroke-dashoffset:100px}12.5%{transform:rotate(-90deg);stroke-dashoffset:25px}25%{stroke-dashoffset:100px;transform:rotate(180deg)}25.1%{transform:rotate(-180deg);stroke-dashoffset:100px}37.5%{transform:rotate(-180deg);stroke-dashoffset:25px}50%{stroke-dashoffset:100px;transform:rotate(90deg)}50.1%{transform:rotate(90deg);stroke-dashoffset:100px}62.5%{transform:rotate(90deg);stroke-dashoffset:25px}75%{stroke-dashoffset:100px;transform:rotate(360deg)}75.1%{transform:rotate(0deg);stroke-dashoffset:100px}87.5%{transform:rotate(0deg);stroke-dashoffset:25px}100%{stroke-dashoffset:100px;transform:rotate(270deg)}}.aurora .preloader-inner{position:absolute;left:0;top:0}.aurora .preloader-inner-circle{width:100%;height:100%;position:absolute;left:0;top:0;border-radius:50%;border:calc(var(--f7-preloader-size)/ 8) solid var(--f7-preloader-color);border-top-color:transparent;box-sizing:border-box;animation:aurora-preloader-rotate .75s linear infinite}.aurora .preloader.color-multi .preloader-inner-circle{animation:aurora-preloader-rotate .75s linear infinite,aurora-preloader-multicolor 3s linear infinite}@keyframes aurora-preloader-rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes aurora-preloader-multicolor{0%,100%{border-color:#2196f3;border-top-color:transparent}25%{border-color:#ff3b30;border-top-color:transparent}50%{border-color:#4cd964;border-top-color:transparent}75%{border-color:#ff9500;border-top-color:transparent}}.ios{--f7-progressbar-height:2px;--f7-progressbar-border-radius:2px;--f7-progressbar-bg-color:rgba(0, 0, 0, 0.3)}.ios .theme-dark,.ios.theme-dark{--f7-progressbar-bg-color:rgba(255, 255, 255, 0.3)}.md{--f7-progressbar-height:4px;--f7-progressbar-border-radius:0px}.aurora{--f7-progressbar-height:6px;--f7-progressbar-border-radius:3px;--f7-progressbar-bg-color:#dbdbdb}.aurora .theme-dark,.aurora.theme-dark{--f7-progressbar-bg-color:#444}.progressbar,.progressbar-infinite{width:100%;overflow:hidden;position:relative;display:block;transform-style:preserve-3d;background:var(--f7-progressbar-bg-color,rgba(var(--f7-theme-color-rgb),.5));transform-origin:center top;height:var(--f7-progressbar-height);border-radius:var(--f7-progressbar-border-radius)}.progressbar{vertical-align:middle}.progressbar span{background-color:var(--f7-progressbar-progress-color,var(--f7-theme-color));width:100%;height:100%;position:absolute;left:0;top:0;transform:translate3d(-100%,0,0);transition-duration:150ms}.progressbar-infinite{z-index:15000}.progressbar-infinite:after,.progressbar-infinite:before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;transform-origin:left center;transform:translate3d(0,0,0);display:block;background-color:var(--f7-progressbar-progress-color,var(--f7-theme-color))}.progressbar-infinite.color-multi{background:0 0!important}.progressbar-in{animation:progressbar-in 150ms forwards}.progressbar-out{animation:progressbar-out 150ms forwards}.framework7-root>.progressbar,.framework7-root>.progressbar-infinite,.page>.progressbar,.page>.progressbar-infinite,.panel>.progressbar,.panel>.progressbar-infinite,.popup>.progressbar,.popup>.progressbar-infinite,.view>.progressbar,.view>.progressbar-infinite,.views>.progressbar,.views>.progressbar-infinite,body>.progressbar,body>.progressbar-infinite{position:absolute;left:0;top:0;z-index:15000;border-radius:0!important;transform-origin:center top!important}@keyframes progressbar-in{from{opacity:0;transform:scaleY(0)}to{opacity:1;transform:scaleY(1)}}@keyframes progressbar-out{from{opacity:1;transform:scaleY(1)}to{opacity:0;transform:scaleY(0)}}.ios .progressbar-infinite:before{animation:ios-progressbar-infinite 1s linear infinite}.ios .progressbar-infinite:after{display:none}.ios .progressbar-infinite.color-multi:before{width:400%;background-image:linear-gradient(to right,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55,#5856d6,#34aadc,#007aff,#5ac8fa,#4cd964);background-size:25% 100%;background-repeat:repeat-x;animation:ios-progressbar-infinite-multicolor 3s linear infinite}@keyframes ios-progressbar-infinite{0%{transform:translate3d(-100%,0,0)}100%{transform:translate3d(100%,0,0)}}@keyframes ios-progressbar-infinite-multicolor{0%{transform:translate3d(0%,0,0)}100%{transform:translate3d(-50%,0,0)}}.md .progressbar-infinite:before{animation:md-progressbar-infinite-1 2s linear infinite}.md .progressbar-infinite:after{animation:md-progressbar-infinite-2 2s linear infinite}.md .progressbar-infinite.color-multi:before{background:0 0;animation:md-progressbar-infinite-multicolor-bg 3s step-end infinite}.md .progressbar-infinite.color-multi:after{background:0 0;animation:md-progressbar-infinite-multicolor-fill 3s linear infinite;transform-origin:center center}@keyframes md-progressbar-infinite-1{0%{transform:translateX(-10%) scaleX(.1)}25%{transform:translateX(30%) scaleX(.6)}50%{transform:translateX(100%) scaleX(1)}100%{transform:translateX(100%) scaleX(1)}}@keyframes md-progressbar-infinite-2{0%{transform:translateX(-100%) scaleX(1)}40%{transform:translateX(-100%) scaleX(1)}75%{transform:translateX(60%) scaleX(.35)}90%{transform:translateX(100%) scaleX(.1)}100%{transform:translateX(100%) scaleX(.1)}}@keyframes md-progressbar-infinite-multicolor-bg{0%{background-color:#4caf50}25%{background-color:#f44336}50%{background-color:#2196f3}75%{background-color:#ffeb3b}}@keyframes md-progressbar-infinite-multicolor-fill{0%{transform:scaleX(0);background-color:#f44336}24.9%{transform:scaleX(1);background-color:#f44336}25%{transform:scaleX(0);background-color:#2196f3}49.9%{transform:scaleX(1);background-color:#2196f3}50%{transform:scaleX(0);background-color:#ffeb3b}74.9%{transform:scaleX(1);background-color:#ffeb3b}75%{transform:scaleX(0);background-color:#4caf50}100%{transform:scaleX(1);background-color:#4caf50}}.aurora .progressbar,.aurora .progressbar span,.aurora .progressbar-infinite,.aurora .progressbar-infinite:before{box-shadow:0px 0px 0px 1px rgba(0,0,0,.05) inset}.aurora .progressbar-infinite:before{animation:aurora-progressbar-infinite 1s linear infinite}.aurora .progressbar-infinite:after{display:none}.aurora .progressbar-infinite.color-multi:before{width:400%;background-image:linear-gradient(to right,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55,#5856d6,#34aadc,#007aff,#5ac8fa,#4cd964);background-size:25% 100%;background-repeat:repeat-x;animation:aurora-progressbar-infinite-multicolor 3s linear infinite}@keyframes aurora-progressbar-infinite{0%{transform:translate3d(-100%,0,0)}100%{transform:translate3d(100%,0,0)}}@keyframes aurora-progressbar-infinite-multicolor{0%{transform:translate3d(0%,0,0)}100%{transform:translate3d(-50%,0,0)}}:root{--f7-sortable-handler-color:rgba(0, 0, 0, 0.22);--f7-sortable-sorting-item-bg-color:rgba(255, 255, 255, 0.8)}:root .theme-dark,:root.theme-dark{--f7-sortable-sorting-item-bg-color:rgba(50, 50, 50, 0.8);--f7-sortable-handler-color:rgba(255, 255, 255, 0.55)}.ios{--f7-sortable-handler-width:36px;--f7-sortable-sorting-item-box-shadow:0px 2px 8px rgba(0, 0, 0, 0.6)}.md{--f7-sortable-handler-width:42px;--f7-sortable-sorting-item-box-shadow:var(--f7-elevation-2)}.aurora{--f7-sortable-handler-width:42px;--f7-sortable-sorting-item-box-shadow:var(--f7-elevation-2)}.sortable .sortable-handler{width:var(--f7-sortable-handler-width);height:100%;position:absolute;top:0;z-index:10;opacity:0;pointer-events:none;cursor:move;transition-duration:.3s;display:flex;align-items:center;justify-content:center;overflow:hidden;right:var(--f7-safe-area-right)}.sortable .sortable-handler:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;transition-duration:.3s;transform:translateX(10px);color:var(--f7-sortable-handler-color);overflow:hidden;height:20px;width:18px}.sortable li.sorting{z-index:50;background:var(--f7-sortable-sorting-item-bg-color);transition-duration:0s;box-shadow:var(--f7-sortable-sorting-item-box-shadow)}.sortable li.sorting .item-inner:after{display:none!important}.sortable-opposite .sortable-handler{left:var(--f7-safe-area-right);right:auto}.sortable-opposite .sortable-handler:after{transform:translateX(-10px)}.sortable-opposite .item-content,.sortable-opposite.links-list li a,.sortable.simple-list li,.sortable:not(.sortable-opposite) .item-inner{transition-duration:.3s;transition-property:all}.sortable-sorting li{transition-duration:.3s}.sortable-enabled li:not(.no-sorting):not(.disallow-sorting) .sortable-handler{pointer-events:auto;opacity:1}.sortable-enabled li:not(.no-sorting):not(.disallow-sorting) .sortable-handler:after{transform:translateX(0px)}.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link .item-inner:before,.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link .item-title-row:before,.sortable-enabled:not(.sortable-opposite).links-list li:not(.no-sorting):not(.disallow-sorting)>a:before{display:none}.links-list.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) a,.no-chevron .sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link .item-inner,.simple-list.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting),.sortable-enabled :not(.sortable-opposite).no-chevron .item-link .item-inner,.sortable-enabled.no-chevron:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link .item-inner,.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-inner,.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link .item-inner,.sortable-enabled:not(.sortable-opposite) li:not(.no-sorting):not(.disallow-sorting) .item-link.no-chevron .item-inner{padding-right:calc(var(--f7-sortable-handler-width) + var(--f7-safe-area-right))}.links-list.sortable-opposite.sortable-enabled li:not(.no-sorting):not(.disallow-sorting) a,.simple-list.sortable-opposite.sortable-enabled li:not(.no-sorting):not(.disallow-sorting),.sortable-opposite.sortable-enabled li:not(.no-sorting):not(.disallow-sorting) .item-content{padding-left:calc(var(--f7-sortable-handler-width) + var(--f7-safe-area-right))}.ios .sortable-handler:after{content:'sort_ios'}.md .sortable-handler:after{content:'sort_md'}.aurora .sortable-handler:after{content:'sort_md'}:root{--f7-swipeout-button-text-color:#fff;--f7-swipeout-delete-button-bg-color:#ff3b30;--f7-swipeout-button-font-size:inherit;--f7-swipeout-button-font-weight:inherit;--f7-swipeout-button-padding-vertical:0px;--f7-swipeout-button-bg-color:rgba(0, 0, 0, 0.22)}:root .theme-dark,:root.theme-dark{--f7-swipeout-button-bg-color:rgba(255, 255, 255, 0.55)}.ios{--f7-swipeout-button-padding-horizontal:30px}.md{--f7-swipeout-button-padding-horizontal:24px}.aurora{--f7-swipeout-button-padding-horizontal:24px;--f7-swipeout-button-font-weight:500}.swipeout{overflow:hidden;transform-style:preserve-3d}.swipeout-deleting{transition-duration:.3s}.swipeout-deleting .swipeout-content{transform:translateX(-100%)}.swipeout-transitioning .swipeout-actions-left a,.swipeout-transitioning .swipeout-actions-right a,.swipeout-transitioning .swipeout-content,.swipeout-transitioning .swipeout-overswipe{transition-duration:.3s;transition-property:transform,left}.swipeout-content{position:relative;z-index:10}.swipeout-overswipe{transition-duration:.2s;transition-property:left}.swipeout-actions-left,.swipeout-actions-right{position:absolute;top:0;height:100%;display:flex;direction:ltr}.swipeout-actions-left>a,.swipeout-actions-left>button,.swipeout-actions-left>div,.swipeout-actions-left>span,.swipeout-actions-right>a,.swipeout-actions-right>button,.swipeout-actions-right>div,.swipeout-actions-right>span{color:var(--f7-swipeout-button-text-color);background:var(--f7-swipeout-button-bg-color);padding:var(--f7-swipeout-button-padding-vertical) var(--f7-swipeout-button-padding-horizontal);display:flex;align-items:center;position:relative;left:0;font-size:var(--f7-swipeout-button-font-size);font-weight:var(--f7-swipeout-button-font-weight)}.swipeout-actions-left>a:after,.swipeout-actions-left>button:after,.swipeout-actions-left>div:after,.swipeout-actions-left>span:after,.swipeout-actions-right>a:after,.swipeout-actions-right>button:after,.swipeout-actions-right>div:after,.swipeout-actions-right>span:after{content:'';position:absolute;top:0;width:600%;height:100%;background:inherit;z-index:-1;transform:translate3d(0,0,0);pointer-events:none}.swipeout-actions-left .swipeout-delete,.swipeout-actions-right .swipeout-delete{background:var(--f7-swipeout-delete-button-bg-color)}.swipeout-actions-right{right:0%;transform:translateX(100%)}.swipeout-actions-right>a:after,.swipeout-actions-right>button:after,.swipeout-actions-right>div:after,.swipeout-actions-right>span:after{left:100%;margin-left:-1px}.swipeout-actions-right>a:last-child,.swipeout-actions-right>button:last-child,.swipeout-actions-right>div:last-child,.swipeout-actions-right>span:last-child{padding-right:calc(var(--f7-swipeout-button-padding-horizontal) + var(--f7-safe-area-right))}.swipeout-actions-left{left:0%;transform:translateX(-100%)}.swipeout-actions-left>a:after,.swipeout-actions-left>button:after,.swipeout-actions-left>div:after,.swipeout-actions-left>span:after{right:100%;margin-right:-1px}.swipeout-actions-left>a:first-child,.swipeout-actions-left>button:first-child,.swipeout-actions-left>div:first-child,.swipeout-actions-left>span:first-child{padding-left:calc(var(--f7-swipeout-button-padding-horizontal) + var(--f7-safe-area-left))}.swipeout-actions-left [class*=color-],.swipeout-actions-right [class*=color-]{--f7-swipeout-button-bg-color:var(--f7-theme-color)}:root{--f7-accordion-chevron-icon-down:'chevron_down';--f7-accordion-chevron-icon-up:'chevron_up'}.accordion-item-toggle{cursor:pointer}.list.accordion-list .accordion-item-toggle{transition-duration:.3s;position:relative;overflow:hidden}.list.accordion-list .accordion-item-toggle.active-state{transition-duration:.3s;background-color:var(--f7-list-link-pressed-bg-color)}.list.accordion-list .accordion-item-toggle.active-state>.item-inner:after{background-color:transparent}.list.accordion-list .accordion-item-toggle .item-inner{transition-duration:.3s;transition-property:background-color}.list.accordion-list .accordion-item-toggle .item-inner:after{transition-duration:.3s}.list.accordion-list .accordion-item-toggle .ripple-wave{z-index:0}.accordion-item .item-link .item-inner:after{transition-duration:.3s}.accordion-item .block,.accordion-item .list{margin-top:0;margin-bottom:0}.accordion-item .block>h1:first-child,.accordion-item .block>h2:first-child,.accordion-item .block>h3:first-child,.accordion-item .block>h4:first-child,.accordion-item .block>p:first-child{margin-top:10px}.accordion-item .block>h1:last-child,.accordion-item .block>h2:last-child,.accordion-item .block>h3:last-child,.accordion-item .block>h4:last-child,.accordion-item .block>p:last-child{margin-bottom:10px}.accordion-item-opened .accordion-item-toggle .item-inner:after,.accordion-item-opened>.item-link .item-inner:after{background-color:transparent}.list li.accordion-item ul{padding-left:0}.accordion-item-content{position:relative;overflow:hidden;height:0;font-size:14px;transition-duration:.3s}.accordion-item-opened>.accordion-item-content{height:auto}html.device-android-4 .accordion-item-content{transform:none}.list .accordion-item-toggle .item-inner:before{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;position:absolute;top:50%;font-size:var(--f7-list-chevron-icon-font-size);color:var(--f7-list-chevron-icon-color);pointer-events:none;right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right))}.list:not(.accordion-opposite) .accordion-item-toggle .item-inner{padding-right:calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right))}.accordion-opposite .accordion-item-toggle .item-inner,.accordion-opposite .accordion-item-toggle.item-link .item-inner,.accordion-opposite .accordion-item>.item-link>.item-content>.item-inner,.accordion-opposite .accordion-item>.item-link>.item-inner{padding-right:calc(var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-right))}.accordion-opposite .accordion-item>.item-link>.item-title-row{padding-right:0}.accordion-opposite .accordion-item-toggle .item-inner:before,.accordion-opposite .accordion-item-toggle.item-link .item-inner:before,.accordion-opposite .accordion-item>.item-link .item-title-row:before,.accordion-opposite .accordion-item>.item-link>.item-content>.item-inner:before,.accordion-opposite .accordion-item>.item-link>.item-inner:before{display:none}.accordion-opposite .accordion-item-toggle.item-content,.accordion-opposite .accordion-item-toggle>.item-content,.accordion-opposite .accordion-item>.item-content,.accordion-opposite .accordion-item>.item-link>.item-content,.accordion-opposite.links-list .accordion-item>a{position:relative;padding-left:calc(var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal) + var(--f7-safe-area-left))}.accordion-opposite .accordion-item-toggle.item-content:before,.accordion-opposite .accordion-item-toggle>.item-content:before,.accordion-opposite .accordion-item>.item-content:before,.accordion-opposite .accordion-item>.item-link>.item-content:before,.accordion-opposite.links-list .accordion-item>a:before{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;position:absolute;top:50%;font-size:var(--f7-list-chevron-icon-font-size);color:var(--f7-list-chevron-icon-color);pointer-events:none;content:var(--f7-accordion-chevron-icon-down);width:14px;height:8px;margin-top:-4px;line-height:8px;transform:translateX(-50%);left:calc((var(--f7-list-chevron-icon-area) + var(--f7-list-item-padding-horizontal))/ 2 + var(--f7-safe-area-left))}.list .accordion-item-toggle.active-state{background-color:var(--f7-list-link-pressed-bg-color)}.accordion-item.media-item .accordion-item-toggle .item-title-row:before,.accordion-item.media-item>.item-link .item-title-row:before,.links-list .accordion-item>a:before,.list .accordion-item-toggle .item-inner:before,.list:not(.media-list) .accordion-item:not(.media-item) .accordion-item-toggle .item-inner:before,.list:not(.media-list) .accordion-item:not(.media-item)>.item-link .item-inner:before,.media-list .accordion-item .accordion-item-toggle .item-title-row:before,.media-list .accordion-item>.item-link .item-title-row:before{content:var(--f7-accordion-chevron-icon-down);width:14px;height:8px;margin-top:-4px;line-height:8px}.accordion-item-opened.media-item .accordion-item-toggle .item-title-row:before,.accordion-item-opened.media-item>.item-link .item-title-row:before,.accordion-opposite .accordion-item-opened .accordion-item-toggle.item-content:before,.accordion-opposite .accordion-item-opened .accordion-item-toggle>.item-content:before,.accordion-opposite .accordion-item-opened>.item-content:before,.accordion-opposite .accordion-item-opened>.item-link>.item-content:before,.accordion-opposite .links-list .accordion-item-opened>a:before,.links-list .accordion-item-opened>a:before,.list .accordion-item-toggle.accordion-item-opened .item-inner:before,.list:not(.media-list) .accordion-item-opened:not(.media-item) .accordion-item-toggle .item-inner:before,.list:not(.media-list) .accordion-item-opened:not(.media-item)>.item-link .item-inner:before,.media-list .accordion-item-opened .accordion-item-toggle .item-title-row:before,.media-list .accordion-item-opened>.item-link .item-title-row:before{content:var(--f7-accordion-chevron-icon-up);width:14px;height:8px;margin-top:-4px;line-height:8px}:root .theme-dark,:root.theme-dark{--f7-contacts-list-title-text-color:#fff}.ios{--f7-contacts-list-title-font-size:inherit;--f7-contacts-list-title-font-weight:600;--f7-contacts-list-title-height:22px;--f7-contacts-list-title-text-color:#000;--f7-contacts-list-title-bg-color:#f7f7f7}.ios .theme-dark,.ios.theme-dark{--f7-contacts-list-title-bg-color:#323234}.md{--f7-contacts-list-title-font-size:20px;--f7-contacts-list-title-font-weight:500;--f7-contacts-list-title-height:48px;--f7-contacts-list-title-bg-color:transparent}.aurora{--f7-contacts-list-title-font-weight:600;--f7-contacts-list-title-text-color:#000}.contacts-list{--f7-list-margin-vertical:0px}.contacts-list .list-group-title,.contacts-list li.list-group-title{background-color:var(--f7-contacts-list-title-bg-color,var(--f7-list-group-title-bg-color));font-weight:var(--f7-contacts-list-title-font-weight,var(--f7-list-group-title-font-weight));font-size:var(--f7-contacts-list-title-font-size, var(--f7-list-group-title-font-size));color:var(--f7-contacts-list-title-text-color,var(--f7-theme-color));line-height:var(--f7-contacts-list-title-height, var(--f7-list-group-title-height));height:var(--f7-contacts-list-title-height,var(--f7-list-group-title-height))}.contacts-list .list-group:first-child ul:before{display:none!important}.contacts-list .list-group:last-child ul:after{display:none!important}.md .contacts-list .list-group-title{pointer-events:none;overflow:visible;width:56px}.md .contacts-list .list-group-title+li{margin-top:calc(var(--f7-contacts-list-title-height) * -1)}.md .contacts-list li:not(.list-group-title){padding-left:56px}:root{--f7-list-index-width:16px;--f7-list-index-font-size:11px;--f7-list-index-font-weight:600;--f7-list-index-item-height:14px;--f7-list-index-label-text-color:#fff;--f7-list-index-label-font-weight:500}.ios{--f7-list-index-label-size:44px;--f7-list-index-label-font-size:17px;--f7-list-index-skip-dot-size:6px}.md{--f7-list-index-label-size:56px;--f7-list-index-label-font-size:20px;--f7-list-index-skip-dot-size:4px}.aurora{--f7-list-index-font-size:12px;--f7-list-index-label-size:32px;--f7-list-index-label-font-size:12px;--f7-list-index-label-font-weight:600;--f7-list-index-skip-dot-size:4px}.list-index{position:absolute;top:0;bottom:0;text-align:center;z-index:10;width:var(--f7-list-index-width);cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;right:var(--f7-safe-area-right)}.list-index:before{content:'';position:absolute;width:20px;top:0;right:100%;height:100%}.list-index ul{color:var(--f7-list-index-text-color,var(--f7-theme-color));font-size:var(--f7-list-index-font-size);font-weight:var(--f7-list-index-font-weight);list-style:none;margin:0;padding:0;display:flex;flex-direction:column;justify-content:center;align-items:center;flex-shrink:0;height:100%;width:100%;position:relative}.list-index li{margin:0;padding:0;list-style:none;position:relative;height:var(--f7-list-index-item-height);line-height:var(--f7-list-index-item-height);flex-shrink:0;display:block;width:100%}.list-index .list-index-skip-placeholder:after{content:'';position:absolute;left:50%;top:50%;border-radius:50%;width:var(--f7-list-index-skip-dot-size);height:var(--f7-list-index-skip-dot-size);margin-left:calc(-1 * var(--f7-list-index-skip-dot-size)/ 2);margin-top:calc(-1 * var(--f7-list-index-skip-dot-size)/ 2);background:var(--f7-list-index-text-color,var(--f7-theme-color))}.list-index .list-index-label{position:absolute;bottom:0;right:100%;text-align:center;background-color:var(--f7-list-index-label-bg-color,var(--f7-theme-color));color:var(--f7-list-index-label-text-color);width:var(--f7-list-index-label-size);height:var(--f7-list-index-label-size);line-height:var(--f7-list-index-label-size);font-size:var(--f7-list-index-label-font-size);font-weight:var(--f7-list-index-label-font-weight)}.navbars~.page>.list-index,.navbar~.list-index,.navbar~.page>.list-index{top:var(--f7-navbar-height)}.ios .navbars~.toolbar-top-ios .md .navbar~.toolbar-top-md~.list-index,.ios .navbar~.toolbar-top-ios~.list-index,.navbars~.toolbar-top~.list-index,.navbar~.toolbar-top~.list-index{top:calc(var(--f7-navbar-height) + var(--f7-toolbar-height))}.ios .navbars~.toolbar-top-ios .md .navbar~.toolbar-top-md.tabbar-labels~.list-index,.ios .navbar~.toolbar-top-ios.tabbar-labels~.list-index,.navbars~.toolbar-top.tabbar-labels~.list-index,.navbar~.toolbar-top.tabbar-labels~.list-index{top:calc(var(--f7-navbar-height) + var(--f7-tabbar-labels-height))}.navbars~.subnavbar~.list-index,.navbar~.subnavbar~.list-index,.page-with-subnavbar .navbar~.list-index{top:calc(var(--f7-navbar-height) + var(--f7-subnavbar-height))}.ios .toolbar-bottom-ios~* .page>.list-index,.ios .toolbar-bottom-ios~.list-index,.ios .toolbar-bottom-ios~.page>.list-index,.md .toolbar-bottom-md~* .page>.list-index,.md .toolbar-bottom-md~.list-index,.md .toolbar-bottom-md~.page>.list-index,.toolbar-bottom~* .page>.list-index,.toolbar-bottom~.list-index,.toolbar-bottom~.page>.list-index{bottom:calc(var(--f7-toolbar-height) + var(--f7-safe-area-bottom))}.ios .toolbar-bottom-ios.tabbar-labels~* .page>.list-index,.ios .toolbar-bottom-ios.tabbar-labels~.list-index,.ios .toolbar-bottom-ios.tabbar-labels~.page>.list-index,.md .toolbar-bottom-md.tabbar-labels~* .page>.list-index,.md .toolbar-bottom-md.tabbar-labels~.list-index,.md .toolbar-bottom-md.tabbar-labels~.page>.list-index,.toolbar-bottom.tabbar-labels~* .page>.list-index,.toolbar-bottom.tabbar-labels~.list-index,.toolbar-bottom.tabbar-labels~.page>.list-index{bottom:calc(var(--f7-tabbar-labels-height) + var(--f7-safe-area-bottom))}.ios .list-index .list-index-label{margin-bottom:calc(-1 * var(--f7-list-index-label-size)/ 2);margin-right:calc(var(--f7-list-index-width) - 1px);border-radius:50%}.ios .list-index .list-index-label:before{position:absolute;width:100%;height:100%;border-radius:50% 0% 50% 50%;content:'';background-color:inherit;left:0;top:0;transform:rotate(45deg);z-index:-1}.md .list-index .list-index-label{border-radius:50% 50% 0 50%}.aurora .list-index .list-index-label{margin-bottom:calc(-1 * var(--f7-list-index-label-size)/ 2);margin-right:calc(var(--f7-list-index-width) - 1px);border-radius:50%}.aurora .list-index .list-index-label:before{position:absolute;width:100%;height:100%;border-radius:50% 1px 50% 50%;content:'';background-color:inherit;left:0;top:0;transform:rotate(45deg);z-index:-1}:root{--f7-timeline-inner-block-margin-vertical:16px;--f7-timeline-divider-margin-horizontal:16px;--f7-timeline-horizontal-date-height:34px;--f7-timeline-year-height:24px;--f7-timeline-year-font-weight:inherit;--f7-timeline-month-height:24px;--f7-timeline-month-font-size:inherit;--f7-timeline-month-font-weight:inherit;--f7-timeline-item-text-font-weight:inherit;--f7-timeline-item-subtitle-font-weight:inherit;--f7-timeline-item-inner-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-timeline-item-inner-bg-color:#1c1c1d;--f7-timeline-horizontal-item-border-color:rgba(255, 255, 255, 0.15);--f7-timeline-horizontal-item-date-border-color:rgba(255, 255, 255, 0.15)}.ios{--f7-timeline-padding-horizontal:16px;--f7-timeline-margin-vertical:35px;--f7-timeline-item-inner-border-radius:7px;--f7-timeline-item-inner-box-shadow:none;--f7-timeline-item-time-font-size:13px;--f7-timeline-item-title-font-size:17px;--f7-timeline-item-title-line-height:inherit;--f7-timeline-item-title-font-weight:600;--f7-timeline-item-subtitle-font-size:15px;--f7-timeline-item-subtitle-line-height:inherit;--f7-timeline-item-text-font-size:inherit;--f7-timeline-item-text-color:inherit;--f7-timeline-item-text-line-height:inherit;--f7-timeline-year-font-size:16px;--f7-timeline-horizontal-item-padding:10px;--f7-timeline-horizontal-item-date-shadow-image:none;--f7-timeline-item-time-text-color:rgba(0, 0, 0, 0.45);--f7-timeline-horizontal-item-border-color:rgba(0, 0, 0, 0.22);--f7-timeline-horizontal-item-date-border-color:rgba(0, 0, 0, 0.22)}.ios .theme-dark,.ios.theme-dark{--f7-timeline-item-time-text-color:rgba(255, 255, 255, 0.55)}.md{--f7-timeline-padding-horizontal:16px;--f7-timeline-margin-vertical:32px;--f7-timeline-item-inner-border-radius:4px;--f7-timeline-item-inner-box-shadow:var(--f7-elevation-1);--f7-timeline-item-time-font-size:13px;--f7-timeline-item-title-font-size:16px;--f7-timeline-item-title-line-height:inherit;--f7-timeline-item-title-font-weight:400;--f7-timeline-item-subtitle-font-size:inherit;--f7-timeline-item-subtitle-line-height:inherit;--f7-timeline-item-text-font-size:inherit;--f7-timeline-item-text-line-height:inherit;--f7-timeline-item-text-color:inherit;--f7-timeline-year-font-size:16px;--f7-timeline-horizontal-item-padding:12px;--f7-timeline-horizontal-item-date-shadow-image:var(--f7-bars-shadow-bottom-image);--f7-timeline-item-time-text-color:rgba(0, 0, 0, 0.54);--f7-timeline-horizontal-item-border-color:rgba(0, 0, 0, 0.12);--f7-timeline-horizontal-item-date-border-color:transparent}.md .theme-dark,.md.theme-dark{--f7-timeline-item-time-text-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-timeline-padding-horizontal:16px;--f7-timeline-margin-vertical:32px;--f7-timeline-item-inner-border-radius:8px;--f7-timeline-item-inner-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.15);--f7-timeline-item-time-font-size:13px;--f7-timeline-item-title-font-size:16px;--f7-timeline-item-title-line-height:inherit;--f7-timeline-item-title-font-weight:600;--f7-timeline-item-subtitle-font-size:inherit;--f7-timeline-item-subtitle-line-height:inherit;--f7-timeline-item-text-font-size:inherit;--f7-timeline-item-text-line-height:inherit;--f7-timeline-item-text-color:inherit;--f7-timeline-year-font-size:16px;--f7-timeline-horizontal-item-padding:12px;--f7-timeline-horizontal-item-date-shadow-image:none;--f7-timeline-item-time-text-color:rgba(0, 0, 0, 0.5);--f7-timeline-horizontal-item-border-color:rgba(0, 0, 0, 0.2);--f7-timeline-horizontal-item-date-border-color:rgba(0, 0, 0, 0.2)}.aurora .theme-dark,.aurora.theme-dark{--f7-timeline-item-time-text-color:rgba(255, 255, 255, 0.54)}.timeline{box-sizing:border-box;margin:var(--f7-timeline-margin-vertical) 0;padding:0 var(--f7-timeline-padding-horizontal);padding-top:0;padding-bottom:0;padding-left:calc(var(--f7-timeline-padding-horizontal) + var(--f7-safe-area-left));padding-right:calc(var(--f7-timeline-padding-horizontal) + var(--f7-safe-area-right))}.block-strong .timeline{padding:0;margin:0}.timeline-item{display:flex;justify-content:flex-start;overflow:hidden;box-sizing:border-box;position:relative;padding:2px 0px var(--f7-timeline-padding-horizontal)}.timeline-item:last-child{padding-bottom:2px}.timeline-item-date{flex-shrink:0;width:50px;text-align:right;box-sizing:border-box}.timeline-item-date small{font-size:10px}.timeline-item-content{margin:2px;min-width:0;position:relative;flex-shrink:10}.timeline-item-content .block,.timeline-item-content .card,.timeline-item-content .list,.timeline-item-content.block,.timeline-item-content.card,.timeline-item-content.list{margin:0;width:100%}.timeline-item-content .block+.block,.timeline-item-content .block+.card,.timeline-item-content .block+.list,.timeline-item-content .card+.block,.timeline-item-content .card+.card,.timeline-item-content .card+.list,.timeline-item-content .list+.block,.timeline-item-content .list+.card,.timeline-item-content .list+.list{margin:var(--f7-timeline-inner-block-margin-vertical) 0 0}.timeline-item-content h1:first-child,.timeline-item-content h2:first-child,.timeline-item-content h3:first-child,.timeline-item-content h4:first-child,.timeline-item-content ol:first-child,.timeline-item-content p:first-child,.timeline-item-content ul:first-child{margin-top:0}.timeline-item-content h1:last-child,.timeline-item-content h2:last-child,.timeline-item-content h3:last-child,.timeline-item-content h4:last-child,.timeline-item-content ol:last-child,.timeline-item-content p:last-child,.timeline-item-content ul:last-child{margin-bottom:0}.timeline-item-inner{background:var(--f7-timeline-item-inner-bg-color);box-sizing:border-box;border-radius:var(--f7-timeline-item-inner-border-radius);padding:8px var(--f7-timeline-padding-horizontal);box-shadow:var(--f7-timeline-item-inner-box-shadow)}.timeline-item-inner+.timeline-item-inner{margin-top:var(--f7-timeline-inner-block-margin-vertical)}.timeline-item-inner .block{padding:0;color:inherit}.timeline-item-inner .block-strong{padding-left:0;padding-right:0;margin:0}.timeline-item-inner .block-strong:after,.timeline-item-inner .block-strong:before{display:none!important}.timeline-item-inner .list ul:after,.timeline-item-inner .list ul:before{display:none!important}.timeline-item-divider{width:1px;position:relative;width:10px;height:10px;background:#bbb;border-radius:50%;flex-shrink:0;margin:3px var(--f7-timeline-divider-margin-horizontal) 0}.timeline-item-divider:after,.timeline-item-divider:before{content:' ';width:1px;height:100vh;position:absolute;left:50%;background:inherit;transform:translate3d(-50%,0,0)}.timeline-item-divider:after{top:100%}.timeline-item-divider:before{bottom:100%}.timeline-item:last-child .timeline-item-divider:after{display:none}.timeline-item:first-child .timeline-item-divider:before{display:none}.timeline-item-time{font-size:var(--f7-timeline-item-time-font-size);margin-top:var(--f7-timeline-inner-block-margin-vertical);color:var(--f7-timeline-item-time-text-color)}.timeline-item-time:first-child,.timeline-item-time:last-child{margin-top:0}.timeline-item-title+.timeline-item-time{margin-top:0}.timeline-item-title{font-size:var(--f7-timeline-item-title-font-size);font-weight:var(--f7-timeline-item-title-font-weight);line-height:var(--f7-timeline-item-title-line-height)}.timeline-item-subtitle{font-size:var(--f7-timeline-item-subtitle-font-size);font-weight:var(--f7-timeline-item-subtitle-font-weight);line-height:var(--f7-timeline-item-subtitle-line-height)}.timeline-item-text{color:var(--f7-timeline-item-text-color);font-size:var(--f7-timeline-item-text-font-size);font-weight:var(--f7-timeline-item-text-font-weight);line-height:var(--f7-timeline-item-text-line-height)}.timeline-sides .timeline-item,.timeline-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.timeline-sides .timeline-item .timeline-item-date,.timeline-sides .timeline-item-right .timeline-item-date{text-align:right}.timeline-sides .timeline-item-left,.timeline-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.timeline-sides .timeline-item-left .timeline-item-date,.timeline-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}@media (min-width:480px){.xsmall-sides .timeline-item,.xsmall-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.xsmall-sides .timeline-item .timeline-item-date,.xsmall-sides .timeline-item-right .timeline-item-date{text-align:right}.xsmall-sides .timeline-item-left,.xsmall-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.xsmall-sides .timeline-item-left .timeline-item-date,.xsmall-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}}@media (min-width:568px){.small-sides .timeline-item,.small-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.small-sides .timeline-item .timeline-item-date,.small-sides .timeline-item-right .timeline-item-date{text-align:right}.small-sides .timeline-item-left,.small-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.small-sides .timeline-item-left .timeline-item-date,.small-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}}@media (min-width:768px){.medium-sides .timeline-item,.medium-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.medium-sides .timeline-item .timeline-item-date,.medium-sides .timeline-item-right .timeline-item-date{text-align:right}.medium-sides .timeline-item-left,.medium-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.medium-sides .timeline-item-left .timeline-item-date,.medium-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}}@media (min-width:1024px){.large-sides .timeline-item,.large-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.large-sides .timeline-item .timeline-item-date,.large-sides .timeline-item-right .timeline-item-date{text-align:right}.large-sides .timeline-item-left,.large-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.large-sides .timeline-item-left .timeline-item-date,.large-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}}@media (min-width:1200px){.xlarge-sides .timeline-item,.xlarge-sides .timeline-item-right{margin-left:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-right:0}.xlarge-sides .timeline-item .timeline-item-date,.xlarge-sides .timeline-item-right .timeline-item-date{text-align:right}.xlarge-sides .timeline-item-left,.xlarge-sides .timeline-item:not(.timeline-item-right):nth-child(2n){flex-direction:row-reverse;margin-right:calc(50% - (var(--f7-timeline-divider-margin-horizontal) * 2 + 10px)/ 2 - 50px);margin-left:0}.xlarge-sides .timeline-item-left .timeline-item-date,.xlarge-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date{text-align:left}}.timeline-horizontal{height:100%;display:flex;padding:0;margin:0;position:relative;padding-left:var(--f7-safe-area-left);padding-right:0}.timeline-horizontal .timeline-item{display:block;width:100/3vw;margin:0;padding:0;flex-shrink:0;position:relative;height:100%;padding-top:var(--f7-timeline-horizontal-date-height)!important;padding-bottom:var(--f7-timeline-horizontal-item-padding)}.timeline-horizontal .timeline-item:after{content:'';position:absolute;background-color:var(--f7-timeline-horizontal-item-border-color);display:block;z-index:15;top:0;right:0;bottom:auto;left:auto;width:1px;height:100%;transform-origin:100% 50%;transform:scaleX(calc(1 / var(--f7-device-pixel-ratio)))}.timeline-horizontal .timeline-item-date{padding:0px var(--f7-timeline-horizontal-item-padding);width:auto;line-height:var(--f7-timeline-horizontal-date-height);position:absolute;left:0;top:0;width:100%;height:var(--f7-timeline-horizontal-date-height);background-color:var(--f7-bars-bg-color);color:var(--f7-bars-text-color);text-align:left}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .timeline-horizontal .timeline-item-date{background-color:rgba(var(--f7-bars-bg-color-rgb),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.timeline-horizontal .timeline-item-date:after{content:'';position:absolute;background-color:var(--f7-timeline-horizontal-item-date-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.timeline-horizontal .timeline-item-date:before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-timeline-horizontal-item-date-shadow-image)}.timeline-horizontal.no-shadow .timeline-item-date:before{display:none}.timeline-horizontal .timeline-item-content{padding:var(--f7-timeline-horizontal-item-padding);height:calc(100% - var(--f7-timeline-horizontal-item-padding));overflow:auto;-webkit-overflow-scrolling:touch;margin:0}.timeline-horizontal .timeline-item-divider{display:none}.timeline-horizontal .timeline-month:last-child .timeline-item:last-child:after,.timeline-horizontal>.timeline-item:last-child:after{display:none!important}.timeline-horizontal.col-5 .timeline-item{width:5vw}.timeline-horizontal.col-10 .timeline-item{width:10vw}.timeline-horizontal.col-15 .timeline-item{width:15vw}.timeline-horizontal.col-20 .timeline-item{width:20vw}.timeline-horizontal.col-25 .timeline-item{width:25vw}.timeline-horizontal.col-30 .timeline-item{width:30vw}.timeline-horizontal.col-33 .timeline-item{width:100/3vw}.timeline-horizontal.col-35 .timeline-item{width:35vw}.timeline-horizontal.col-40 .timeline-item{width:40vw}.timeline-horizontal.col-45 .timeline-item{width:45vw}.timeline-horizontal.col-50 .timeline-item{width:50vw}.timeline-horizontal.col-55 .timeline-item{width:55vw}.timeline-horizontal.col-60 .timeline-item{width:60vw}.timeline-horizontal.col-65 .timeline-item{width:65vw}.timeline-horizontal.col-66 .timeline-item{width:66.66666666666666vw}.timeline-horizontal.col-70 .timeline-item{width:70vw}.timeline-horizontal.col-75 .timeline-item{width:75vw}.timeline-horizontal.col-80 .timeline-item{width:80vw}.timeline-horizontal.col-85 .timeline-item{width:85vw}.timeline-horizontal.col-90 .timeline-item{width:90vw}.timeline-horizontal.col-95 .timeline-item{width:95vw}.timeline-horizontal.col-100 .timeline-item{width:100vw}@media (min-width:768px){.timeline-horizontal.tablet-5 .timeline-item{width:5vw}.timeline-horizontal.tablet-10 .timeline-item{width:10vw}.timeline-horizontal.tablet-15 .timeline-item{width:15vw}.timeline-horizontal.tablet-20 .timeline-item{width:20vw}.timeline-horizontal.tablet-25 .timeline-item{width:25vw}.timeline-horizontal.tablet-30 .timeline-item{width:30vw}.timeline-horizontal.tablet-33 .timeline-item{width:100/3vw}.timeline-horizontal.tablet-35 .timeline-item{width:35vw}.timeline-horizontal.tablet-40 .timeline-item{width:40vw}.timeline-horizontal.tablet-45 .timeline-item{width:45vw}.timeline-horizontal.tablet-50 .timeline-item{width:50vw}.timeline-horizontal.tablet-55 .timeline-item{width:55vw}.timeline-horizontal.tablet-60 .timeline-item{width:60vw}.timeline-horizontal.tablet-65 .timeline-item{width:65vw}.timeline-horizontal.tablet-66 .timeline-item{width:66.66666666666666vw}.timeline-horizontal.tablet-70 .timeline-item{width:70vw}.timeline-horizontal.tablet-75 .timeline-item{width:75vw}.timeline-horizontal.tablet-80 .timeline-item{width:80vw}.timeline-horizontal.tablet-85 .timeline-item{width:85vw}.timeline-horizontal.tablet-90 .timeline-item{width:90vw}.timeline-horizontal.tablet-95 .timeline-item{width:95vw}.timeline-horizontal.tablet-100 .timeline-item{width:100vw}}.timeline-year{padding-top:var(--f7-timeline-year-height)}.timeline-year:after{content:'';position:absolute;background-color:var(--f7-timeline-horizontal-item-border-color);display:block;z-index:15;top:0;right:0;bottom:auto;left:auto;width:1px;height:100%;transform-origin:100% 50%;transform:scaleX(calc(1 / var(--f7-device-pixel-ratio)))}.timeline-year:last-child:after{display:none!important}.timeline-month{padding-top:var(--f7-timeline-month-height)}.timeline-month .timeline-item:before{content:'';position:absolute;background-color:var(--f7-timeline-horizontal-item-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.timeline-month,.timeline-year{display:flex;flex-shrink:0;position:relative;box-sizing:border-box;height:100%}.timeline-year-title{line-height:var(--f7-timeline-year-height);height:var(--f7-timeline-year-height);font-size:var(--f7-timeline-year-font-size);font-weight:var(--f7-timeline-year-font-weight)}.timeline-month-title{line-height:var(--f7-timeline-month-height);height:var(--f7-timeline-month-height);font-size:var(--f7-timeline-month-font-size);font-weight:var(--f7-timeline-month-font-weight)}.timeline-month-title,.timeline-year-title{position:absolute;left:0;top:0;width:100%;box-sizing:border-box;padding:0 var(--f7-timeline-horizontal-item-padding);background-color:var(--f7-bars-bg-color);color:var(--f7-bars-text-color)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .timeline-month-title,.ios-translucent-bars .timeline-year-title{background-color:rgba(var(--f7-bars-bg-color-rgb),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.timeline-month-title span,.timeline-year-title span{display:inline-block;position:-webkit-sticky;position:sticky;left:calc(var(--f7-timeline-horizontal-item-padding) + var(--f7-safe-area-left))}.timeline-month-title span{margin-top:-2px}.timeline-year:first-child .timeline-month:first-child .timeline-month-title,.timeline-year:first-child .timeline-year-title,.timeline-year:first-child .timeline-year-title+.timeline-month .timeline-month-title{left:calc(var(--f7-safe-area-left) * -1);right:0;width:auto}.timeline-horizontal .timeline-item:first-child,.timeline-year:first-child .timeline-month:first-child .timeline-item:first-child,.timeline-year:first-child .timeline-year-title+.timeline-month .timeline-item:first-child,.timeline-year:first-child .timeline-year-title+.timeline-month .timeline-month-title+.timeline-item{overflow:visible}.timeline-horizontal .timeline-item:first-child .timeline-item-date,.timeline-year:first-child .timeline-month:first-child .timeline-item:first-child .timeline-item-date,.timeline-year:first-child .timeline-year-title+.timeline-month .timeline-item:first-child .timeline-item-date,.timeline-year:first-child .timeline-year-title+.timeline-month .timeline-month-title+.timeline-item .timeline-item-date{width:auto;padding-left:calc(var(--f7-timeline-horizontal-item-padding) + var(--f7-safe-area-left));left:calc(0px - var(--f7-safe-area-left));right:0}.timeline-year:last-child .timeline-month:last-child .timeline-month-title,.timeline-year:last-child .timeline-year-title{width:auto;right:calc(0px - var(--f7-safe-area-right))}.timeline-horizontal .timeline-item:last-child,.timeline-year:last-child .timeline-month:last-child .timeline-item:last-child{overflow:visible}.timeline-horizontal .timeline-item:last-child .timeline-item-date,.timeline-year:last-child .timeline-month:last-child .timeline-item:last-child .timeline-item-date{width:auto;right:calc(0px - var(--f7-safe-area-right));left:0}.ios .block-strong .timeline-item-inner{border-radius:3px;border:1px solid rgba(0,0,0,.1)}.ios .timeline-year-title span{margin-top:3px}.md .timeline-year-title span{margin-top:2px}.aurora .timeline-year-title span{margin-top:2px}.tabs .tab{display:none}.tabs .tab-active{display:block}.tabs-animated-wrap{position:relative;width:100%;overflow:hidden;height:100%}.tabs-animated-wrap>.tabs{display:flex;height:100%;transition-duration:.3s}.tabs-animated-wrap>.tabs>.tab{width:100%;display:block;flex-shrink:0}.tabs-animated-wrap.not-animated>.tabs{transition-duration:0s}.tabs-swipeable-wrap{height:100%}.tabs-swipeable-wrap>.tabs{height:100%}.tabs-swipeable-wrap>.tabs>.tab{display:block}.page>.tabs{height:100%}:root{--f7-panel-width:260px;--f7-panel-bg-color:#fff}.ios{--f7-panel-collapsed-width:58px;--f7-panel-backdrop-bg-color:rgba(0, 0, 0, 0);--f7-panel-transition-duration:400ms;--f7-panel-shadow:transparent}.md{--f7-panel-collapsed-width:60px;--f7-panel-backdrop-bg-color:rgba(0, 0, 0, 0.3);--f7-panel-transition-duration:300ms;--f7-panel-shadow:rgba(0, 0, 0, 0.2) 0%,rgba(0, 0, 0, 0.07) 30%,rgba(0, 0, 0, 0.03) 40%,rgba(0, 0, 0, 0) 60%,rgba(0, 0, 0, 0) 100%}.aurora{--f7-panel-collapsed-width:60px;--f7-panel-backdrop-bg-color:rgba(0, 0, 0, 0.3);--f7-panel-transition-duration:300ms;--f7-panel-shadow:rgba(0, 0, 0, 0.2) 0%,rgba(0, 0, 0, 0.07) 30%,rgba(0, 0, 0, 0.03) 40%,rgba(0, 0, 0, 0) 60%,rgba(0, 0, 0, 0) 100%}.panel-backdrop{position:absolute;left:0;top:var(--f7-appbar-app-offset,0px);width:100%;height:calc(100% - var(--f7-appbar-app-offset,0px));opacity:0;z-index:5999;visibility:hidden;pointer-events:none;transform:translate3d(0,0,0);background-color:var(--f7-panel-backdrop-bg-color);transition-property:transform,opacity;transition-duration:var(--f7-panel-transition-duration)}.panel-backdrop .with-panel,.panel-backdrop .with-panel-closing{visibility:visible}.panel-backdrop.not-animated{transition-duration:0s!important}.panel{z-index:1000;box-sizing:border-box;position:absolute;top:var(--f7-appbar-app-offset,0px);height:calc(100% - var(--f7-appbar-app-offset,0px));transform:translate3d(0,0,0);width:var(--f7-panel-width);background-color:var(--f7-panel-bg-color);overflow:visible;transition-property:transform;transition-duration:var(--f7-panel-transition-duration)}.panel:not(.panel-in):not(.panel-out):not(.panel-in-breakpoint):not(.panel-in-collapsed):not(.panel-in-swipe){display:none}.panel:after{pointer-events:none;opacity:0;z-index:5999;position:absolute;content:'';top:0;width:20px;height:100%;transition-property:transform,opacity;transition-duration:var(--f7-panel-transition-duration)}.panel.not-animated,.panel.not-animated:after{transition-duration:0s!important}.panel.panel-reveal.not-animated~.view,.panel.panel-reveal.not-animated~.views{transition-duration:0s!important}.panel.panel-resizing{-webkit-user-select:none;-moz-user-select:none;user-select:none}.panel.panel-resizing,.panel.panel-resizing:after,.panel.panel-resizing~.view,.panel.panel-resizing~.views{transition-duration:0s!important}.panel-cover{z-index:6000}.panel-left{left:0;width:var(--f7-panel-left-width,var(--f7-panel-width))}.panel-left.panel-cover,.panel-left.panel-push{transform:translate3d(calc(-1 * var(--f7-panel-left-width,var(--f7-panel-width))),0,0)}.panel-left.panel-cover:after,.panel-left.panel-push:after{left:100%;background:linear-gradient(to right,var(--f7-panel-shadow))}.with-panel-left-cover .panel-left.panel-cover:after,.with-panel-left-cover .panel-left.panel-push:after{opacity:1}.panel-left.panel-reveal:after{right:0;transform:translate3d(calc(-1 * var(--f7-panel-left-width,var(--f7-panel-width))),0,0);background:linear-gradient(to left,var(--f7-panel-shadow))}.with-panel-left-reveal .panel-left.panel-reveal:after{opacity:1;transform:translate3d(0,0,0)}.panel-right{right:0;width:var(--f7-panel-right-width,var(--f7-panel-width))}.panel-right.panel-cover,.panel-right.panel-push{transform:translate3d(var(--f7-panel-right-width,var(--f7-panel-width)),0,0)}.panel-right.panel-cover:after,.panel-right.panel-push:after{right:100%;background:linear-gradient(to left,var(--f7-panel-shadow))}.with-panel-right-cover .panel-right.panel-cover:after,.with-panel-right-cover .panel-right.panel-push:after{opacity:1}.panel-right.panel-reveal:after{left:0;background:linear-gradient(to right,var(--f7-panel-shadow));transform:translate3d(var(--f7-panel-right-width,var(--f7-panel-width)),0,0)}.with-panel-right-reveal .panel-right.panel-reveal:after{opacity:1;transform:translate3d(0,0,0)}.panel-in-breakpoint{transform:translate3d(0,0,0)!important;transition-duration:0s}.panel-in-breakpoint:after{display:none}.panel-in-breakpoint.panel-cover{z-index:5900}html.with-panel-closing .framework7-root>.view,html.with-panel-closing .views,html.with-panel-left-push .framework7-root>.view,html.with-panel-left-push .views,html.with-panel-left-reveal .framework7-root>.view,html.with-panel-left-reveal .views,html.with-panel-right-push .framework7-root>.view,html.with-panel-right-push .views,html.with-panel-right-reveal .framework7-root>.view,html.with-panel-right-reveal .views{transition-duration:var(--f7-panel-transition-duration);transition-property:transform}html.with-panel .framework7-root>.view .page-content,html.with-panel .framework7-root>.views .page-content{overflow:hidden;-webkit-overflow-scrolling:auto}html.with-panel-left-push .framework7-root>.view,html.with-panel-left-push .views,html.with-panel-left-reveal .framework7-root>.view,html.with-panel-left-reveal .views{transform:translate3d(var(--f7-panel-left-width,var(--f7-panel-width)),0,0)}html.with-panel-right-push .framework7-root>.view,html.with-panel-right-push .views,html.with-panel-right-reveal .framework7-root>.view,html.with-panel-right-reveal .views{transform:translate3d(calc(-1 * var(--f7-panel-right-width,var(--f7-panel-width))),0,0)}.page>.panel-backdrop{z-index:290}.page .panel-push,.page>.panel-reveal{z-index:1}.page>.panel-cover{z-index:300}.page.with-panel-closing>.page-content,.page.with-panel-closing>.tabs,.page.with-panel-left-push>.page-content,.page.with-panel-left-push>.tabs,.page.with-panel-left-reveal>.page-content,.page.with-panel-left-reveal>.tabs,.page.with-panel-right-push>.page-content,.page.with-panel-right-push>.tabs,.page.with-panel-right-reveal>.page-content,.page.with-panel-right-reveal>.tabs{transition-duration:var(--f7-panel-transition-duration);transition-property:transform}.page.with-panel-left-push>.page-content,.page.with-panel-left-push>.tabs,.page.with-panel-left-reveal>.page-content,.page.with-panel-left-reveal>.tabs{transform:translate3d(var(--f7-panel-left-width,var(--f7-panel-width)),0,0)}.page.with-panel-right-push>.page-content,.page.with-panel-right-push>.tabs,.page.with-panel-right-reveal>.page-content,.page.with-panel-right-reveal>.tabs{transform:translate3d(calc(-1 * var(--f7-panel-right-width,var(--f7-panel-width))),0,0)}.with-panel-closing .panel-backdrop-in,.with-panel-left-reveal .panel-backdrop-in,.with-panel-right-reveal .panel-backdrop-in{visibility:visible;pointer-events:auto;opacity:0}.with-panel-left-cover .panel-backdrop-in,.with-panel-left-push .panel-backdrop-in,.with-panel-right-cover .panel-backdrop-in,.with-panel-right-push .panel-backdrop-in{visibility:visible;pointer-events:auto;opacity:1}.with-panel-left-push .panel-backdrop-in,.with-panel-left-reveal .panel-backdrop-in{transform:translate3d(var(--f7-panel-left-width,var(--f7-panel-width)),0,0)}.with-panel-right-push .panel-backdrop-in,.with-panel-right-reveal .panel-backdrop-in{transform:translate3d(calc(-1 * var(--f7-panel-right-width,var(--f7-panel-width))),0,0)}.with-panel-left-cover .panel-left,.with-panel-left-push .panel-left{transform:translate3d(0px,0,0)}.with-panel-right-cover .panel-right,.with-panel-right-push .panel-right{transform:translate3d(0px,0,0)}.panel-resize-handler{position:absolute;top:0;height:100%;width:6px;cursor:col-resize;z-index:6000;display:none}.panel-resizable .panel-resize-handler{display:block}.panel-left.panel-cover .panel-resize-handler{right:-3px}.panel-left.panel-push .panel-resize-handler,.panel-resize-handler .panel-left.panel-reveal{right:0}.panel-right.panel-cover .panel-resize-handler{left:-3px}.panel-resize-handler .panel-right.panel-reveal,.panel-right.panel-push .panel-resize-handler{left:0}.panel-left.panel-in-collapsed~.page-content,.panel-left.panel-in-collapsed~.tabs,.panel-left.panel-in-collapsed~.view,.panel-left.panel-in-collapsed~.views{margin-left:var(--f7-panel-left-collapsed-width,var(--f7-panel-collapsed-width))}.page.with-panel-left-reveal .panel-left.panel-in-collapsed~.page-content,.page.with-panel-left-reveal .panel-left.panel-in-collapsed~.tabs,html.with-panel-left-reveal .panel-left.panel-in-collapsed~.view,html.with-panel-left-reveal .panel-left.panel-in-collapsed~.views{transform:translate3d(calc(var(--f7-panel-left-width,var(--f7-panel-width)) - var(--f7-panel-left-collapsed-width,var(--f7-panel-collapsed-width))),0,0)}.panel-right.panel-in-collapsed~.page-content,.panel-right.panel-in-collapsed~.tabs,.panel-right.panel-in-collapsed~.view,.panel-right.panel-in-collapsed~.views{margin-right:var(--f7-panel-right-collapsed-width,var(--f7-panel-collapsed-width))}.page.with-panel-right-reveal .panel-right.panel-in-collapsed~.page-content,.page.with-panel-right-reveal .panel-right.panel-in-collapsed~.tabs,html.with-panel-right-reveal .panel-right.panel-in-collapsed~.view,html.with-panel-right-reveal .panel-right.panel-in-collapsed~.views{transform:translate3d(calc(var(--f7-panel-right-collapsed-width,var(--f7-panel-collapsed-width)) - var(--f7-panel-right-width,var(--f7-panel-width))),0,0)}html.with-modal-popup-push .framework7-root,html.with-modal-popup-push-closing .framework7-root{--f7-panelPushScale:var(--f7-popup-push-scale);--f7-panelPushTransitionDuration:var(--f7-popup-transition-duration);--f7-panelPushBorderRadius:var(--f7-popup-push-border-radius)}html.with-modal-sheet-push .framework7-root,html.with-modal-sheet-push-closing .framework7-root{--f7-panelPushScale:var(--f7-sheet-push-scale);--f7-panelPushTransitionDuration:var(--f7-sheet-transition-duration);--f7-panelPushBorderRadius:var(--f7-sheet-push-border-radius)}html.with-modal-popup-push .framework7-root>.panel-in,html.with-modal-popup-push .framework7-root>.panel-out,html.with-modal-sheet-push .framework7-root>.panel-in,html.with-modal-sheet-push .framework7-root>.panel-out{transition-duration:var(--f7-panelPushTransitionDuration)}html.with-modal-popup-push .framework7-root>.panel-in.panel-push.panel-left,html.with-modal-popup-push .framework7-root>.panel-in.panel-reveal.panel-left,html.with-modal-popup-push .framework7-root>.panel-out.panel-push.panel-left,html.with-modal-popup-push .framework7-root>.panel-out.panel-reveal.panel-left,html.with-modal-sheet-push .framework7-root>.panel-in.panel-push.panel-left,html.with-modal-sheet-push .framework7-root>.panel-in.panel-reveal.panel-left,html.with-modal-sheet-push .framework7-root>.panel-out.panel-push.panel-left,html.with-modal-sheet-push .framework7-root>.panel-out.panel-reveal.panel-left{transform:scale(var(--f7-panelPushScale,1));transform-origin:50vw center;border-top-left-radius:var(--f7-panelPushBorderRadius)}html.with-modal-popup-push .framework7-root>.panel-in.panel-push.panel-left .view,html.with-modal-popup-push .framework7-root>.panel-in.panel-reveal.panel-left .view,html.with-modal-popup-push .framework7-root>.panel-out.panel-push.panel-left .view,html.with-modal-popup-push .framework7-root>.panel-out.panel-reveal.panel-left .view,html.with-modal-sheet-push .framework7-root>.panel-in.panel-push.panel-left .view,html.with-modal-sheet-push .framework7-root>.panel-in.panel-reveal.panel-left .view,html.with-modal-sheet-push .framework7-root>.panel-out.panel-push.panel-left .view,html.with-modal-sheet-push .framework7-root>.panel-out.panel-reveal.panel-left .view{border-top-left-radius:var(--f7-panelPushBorderRadius)}html.with-modal-popup-push .framework7-root>.panel-in.panel-push.panel-right,html.with-modal-popup-push .framework7-root>.panel-in.panel-reveal.panel-right,html.with-modal-popup-push .framework7-root>.panel-out.panel-push.panel-right,html.with-modal-popup-push .framework7-root>.panel-out.panel-reveal.panel-right,html.with-modal-sheet-push .framework7-root>.panel-in.panel-push.panel-right,html.with-modal-sheet-push .framework7-root>.panel-in.panel-reveal.panel-right,html.with-modal-sheet-push .framework7-root>.panel-out.panel-push.panel-right,html.with-modal-sheet-push .framework7-root>.panel-out.panel-reveal.panel-right{transform:scale(var(--f7-panelPushScale,1));transform-origin:calc(var(--f7-panel-left-width,var(--f7-panel-width)) - 50vw) center;border-top-right-radius:var(--f7-panelPushBorderRadius)}html.with-modal-popup-push .framework7-root>.panel-in.panel-push.panel-right .view,html.with-modal-popup-push .framework7-root>.panel-in.panel-reveal.panel-right .view,html.with-modal-popup-push .framework7-root>.panel-out.panel-push.panel-right .view,html.with-modal-popup-push .framework7-root>.panel-out.panel-reveal.panel-right .view,html.with-modal-sheet-push .framework7-root>.panel-in.panel-push.panel-right .view,html.with-modal-sheet-push .framework7-root>.panel-in.panel-reveal.panel-right .view,html.with-modal-sheet-push .framework7-root>.panel-out.panel-push.panel-right .view,html.with-modal-sheet-push .framework7-root>.panel-out.panel-reveal.panel-right .view{border-top-right-radius:var(--f7-panelPushBorderRadius)}html.with-modal-popup-push .framework7-root>.panel-in.panel-cover.panel-left,html.with-modal-popup-push .framework7-root>.panel-out.panel-cover.panel-left,html.with-modal-sheet-push .framework7-root>.panel-in.panel-cover.panel-left,html.with-modal-sheet-push .framework7-root>.panel-out.panel-cover.panel-left{transform:translate3d(calc(-1 * var(--f7-panel-left-width,var(--f7-panel-width))),0,0px)}html.with-modal-popup-push .framework7-root>.panel-in.panel-cover.panel-right,html.with-modal-popup-push .framework7-root>.panel-out.panel-cover.panel-right,html.with-modal-sheet-push .framework7-root>.panel-in.panel-cover.panel-right,html.with-modal-sheet-push .framework7-root>.panel-out.panel-cover.panel-right{transform:translate3d(var(--f7-panel-right-width,var(--f7-panel-width)),0,0px)}html.with-modal-popup-push-closing .framework7-root>.panel-in,html.with-modal-sheet-push-closing .framework7-root>.panel-in{transition-duration:var(--f7-panelPushTransitionDuration)}html.with-modal-popup-push-closing .framework7-root>.panel-in.panel-push.panel-left,html.with-modal-popup-push-closing .framework7-root>.panel-in.panel-reveal.panel-left,html.with-modal-sheet-push-closing .framework7-root>.panel-in.panel-push.panel-left,html.with-modal-sheet-push-closing .framework7-root>.panel-in.panel-reveal.panel-left{transform-origin:50vw center}html.with-modal-popup-push-closing .framework7-root>.panel-in.panel-push.panel-right,html.with-modal-popup-push-closing .framework7-root>.panel-in.panel-reveal.panel-right,html.with-modal-sheet-push-closing .framework7-root>.panel-in.panel-push.panel-right,html.with-modal-sheet-push-closing .framework7-root>.panel-in.panel-reveal.panel-right{transform-origin:calc(var(--f7-panel-right-width,var(--f7-panel-width)) - 50vw) center}:root{--f7-card-margin-horizontal:16px;--f7-card-margin-vertical:16px;--f7-card-content-padding-horizontal:16px;--f7-card-content-padding-vertical:16px;--f7-card-border-radius:4px;--f7-card-font-size:inherit;--f7-card-header-text-color:inherit;--f7-card-header-font-weight:400;--f7-card-header-padding-horizontal:16px;--f7-card-footer-font-weight:400;--f7-card-footer-font-size:inherit;--f7-card-footer-padding-horizontal:16px;--f7-card-expandable-font-size:16px;--f7-card-expandable-tablet-width:670px;--f7-card-expandable-tablet-height:670px;--f7-card-bg-color:#fff;--f7-card-outline-border-color:rgba(0, 0, 0, 0.12);--f7-card-header-border-color:rgba(0, 0, 0, 0.1);--f7-card-footer-border-color:rgba(0, 0, 0, 0.1);--f7-card-expandable-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-card-bg-color:#1c1c1d;--f7-card-expandable-bg-color:#1c1c1d;--f7-card-outline-border-color:rgba(255, 255, 255, 0.15);--f7-card-header-border-color:rgba(255, 255, 255, 0.15);--f7-card-footer-border-color:rgba(255, 255, 255, 0.15);--f7-card-footer-text-color:rgba(255, 255, 255, 0.55)}.ios{--f7-card-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.2);--f7-card-header-font-size:17px;--f7-card-header-padding-vertical:10px;--f7-card-header-min-height:44px;--f7-card-footer-text-color:rgba(0, 0, 0, 0.45);--f7-card-footer-padding-vertical:10px;--f7-card-footer-min-height:44px;--f7-card-expandable-margin-horizontal:20px;--f7-card-expandable-margin-vertical:30px;--f7-card-expandable-box-shadow:0px 20px 40px rgba(0, 0, 0, 0.3);--f7-card-expandable-border-radius:15px;--f7-card-expandable-tablet-border-radius:5px;--f7-card-expandable-header-font-size:27px;--f7-card-expandable-header-font-weight:bold}.md{--f7-card-box-shadow:var(--f7-elevation-1);--f7-card-header-font-size:16px;--f7-card-header-padding-vertical:4px;--f7-card-header-min-height:48px;--f7-card-footer-text-color:rgba(0, 0, 0, 0.54);--f7-card-footer-padding-vertical:4px;--f7-card-footer-min-height:48px;--f7-card-expandable-margin-horizontal:12px;--f7-card-expandable-margin-vertical:24px;--f7-card-expandable-box-shadow:var(--f7-elevation-10);--f7-card-expandable-border-radius:8px;--f7-card-expandable-tablet-border-radius:4px;--f7-card-expandable-header-font-size:24px;--f7-card-expandable-header-font-weight:500}.aurora{--f7-card-border-radius:8px;--f7-card-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.15);--f7-card-header-font-size:16px;--f7-card-header-font-weight:bold;--f7-card-header-padding-vertical:8px;--f7-card-header-min-height:48px;--f7-card-footer-text-color:rgba(0, 0, 0, 0.6);--f7-card-footer-padding-vertical:8px;--f7-card-footer-min-height:48px;--f7-card-expandable-margin-horizontal:10px;--f7-card-expandable-margin-vertical:20px;--f7-card-expandable-box-shadow:0px 10px 20px rgba(0, 0, 0, 0.2);--f7-card-expandable-border-radius:8px;--f7-card-expandable-tablet-border-radius:4px;--f7-card-expandable-header-font-size:24px;--f7-card-expandable-header-font-weight:bold}.card .list>ul:after,.card .list>ul:before,.cards-list>ul:after,.cards-list>ul:before{display:none!important}.card .list ul,.cards-list ul{background:0 0}.card{background:var(--f7-card-bg-color);position:relative;border-radius:var(--f7-card-border-radius);font-size:var(--f7-card-font-size);margin-top:var(--f7-card-margin-vertical);margin-bottom:var(--f7-card-margin-vertical);margin-left:calc(var(--f7-card-margin-horizontal) + var(--f7-safe-area-left));margin-right:calc(var(--f7-card-margin-horizontal) + var(--f7-safe-area-right));box-shadow:var(--f7-card-box-shadow)}.card .block,.card .list{margin:0}.row:not(.no-gap) .col>.card{margin-left:0;margin-right:0}.card.no-shadow{box-shadow:none}.aurora .card-outline-aurora,.card-outline,.ios .card-outline-ios,.md .card-outline-md{box-shadow:none;border:1px solid var(--f7-card-outline-border-color)}.aurora .card-outline-aurora.no-border,.aurora .card-outline-aurora.no-hairlines,.card-outline.no-border,.card-outline.no-hairlines,.ios .card-outline-ios.no-border,.ios .card-outline-ios.no-hairlines,.md .card-outline-md.no-border,.md .card-outline-md.no-hairlines{border:none}.card-content{position:relative}.card-content-padding{position:relative;padding:var(--f7-card-content-padding-vertical) var(--f7-card-content-padding-horizontal)}.card-content-padding>.block,.card-content-padding>.list{margin:calc(-1 * var(--f7-card-content-padding-vertical)) calc(-1 * var(--f7-card-content-padding-horizontal))}.card-content-padding>p:first-child{margin-top:0}.card-content-padding>p:last-child{margin-bottom:0}.card-header{min-height:var(--f7-card-header-min-height);color:var(--f7-card-header-text-color);font-size:var(--f7-card-header-font-size);font-weight:var(--f7-card-header-font-weight);padding:var(--f7-card-header-padding-vertical) var(--f7-card-header-padding-horizontal)}.card-footer{min-height:var(--f7-card-footer-min-height);color:var(--f7-card-footer-text-color);font-size:var(--f7-card-footer-font-size);font-weight:var(--f7-card-footer-font-weight);padding:var(--f7-card-footer-padding-vertical) var(--f7-card-footer-padding-horizontal)}.card-footer a.link{overflow:hidden}.card-footer,.card-header{position:relative;box-sizing:border-box;display:flex;justify-content:space-between;align-items:center}.card-footer[valign=top],.card-header[valign=top]{align-items:flex-start}.card-footer[valign=bottom],.card-header[valign=bottom]{align-items:flex-end}.card-footer a.link,.card-header a.link{position:relative}.card-footer a.link i.icon,.card-header a.link i.icon{display:block}.card-footer a.icon-only,.card-header a.icon-only{display:flex;justify-content:center;align-items:center;margin:0}.card-header{border-radius:var(--f7-card-border-radius) var(--f7-card-border-radius) 0 0}.card-header:after{content:'';position:absolute;background-color:var(--f7-card-header-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.card-header.no-hairline:after{display:none!important}.card-footer{border-radius:0 0 var(--f7-card-border-radius) var(--f7-card-border-radius)}.card-footer:before{content:'';position:absolute;background-color:var(--f7-card-footer-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.card-footer.no-hairline:before{display:none!important}.card-expandable{overflow:hidden;height:300px;background:var(--f7-card-expandable-bg-color);position:relative;transform-origin:center center;transition-property:transform,border-radius;border-radius:var(--f7-card-expandable-border-radius);z-index:2;transition-duration:.2s;margin-left:calc(var(--f7-card-expandable-margin-horizontal) + var(--f7-safe-area-left));margin-right:calc(var(--f7-card-expandable-margin-horizontal) + var(--f7-safe-area-right));margin-top:var(--f7-card-expandable-margin-vertical);margin-bottom:var(--f7-card-expandable-margin-vertical);box-shadow:var(--f7-card-expandable-box-shadow);font-size:var(--f7-card-expandable-font-size)}.card-expandable:not(.card-opened){-webkit-user-select:none;-moz-user-select:none;user-select:none}.card-expandable.card-no-transition{transition-duration:0s}.card-expandable.card-expandable-animate-width .card-content{transition-property:width,transform;width:100%}.card-expandable.active-state{transform:scale(.97) translate3d(0,0,0)}.card-expandable .card-opened-fade-in,.card-expandable .card-opened-fade-out{transition-duration:.4s}.card-expandable .card-opened-fade-in{opacity:0;pointer-events:none}.card-expandable .card-content{position:absolute;top:0;width:100vw;height:100vh;transform-origin:center top;overflow:hidden;transition-property:transform;box-sizing:border-box;pointer-events:none;left:0}.card-expandable .card-content .card-content-padding{padding-left:calc(var(--f7-safe-area-left) + var(--f7-card-content-padding-horizontal));padding-right:calc(var(--f7-safe-area-right) + var(--f7-card-content-padding-horizontal))}.card-expandable.card-opened{transition-duration:0s}.card-expandable.card-closing,.card-expandable.card-opening,.card-expandable.card-transitioning{transition-duration:.4s}.card-expandable.card-opening .card-content{transition-duration:.3s}.card-expandable.card-closing .card-content{transition-duration:.5s}.card-expandable.card-closing,.card-expandable.card-opened,.card-expandable.card-opening{z-index:300}.card-expandable.card-opened,.card-expandable.card-opening{border-radius:0}.card-expandable.card-opened .card-opened-fade-in,.card-expandable.card-opening .card-opened-fade-in{opacity:1;pointer-events:auto}.card-expandable.card-opened .card-opened-fade-out,.card-expandable.card-opening .card-opened-fade-out{opacity:0;pointer-events:none}.card-expandable.card-opened .card-content{overflow:auto;-webkit-overflow-scrolling:touch;pointer-events:auto}.card-expandable .card-header{font-size:var(--f7-card-expandable-header-font-size);font-weight:var(--f7-card-expandable-header-font-weight)}.card-expandable .card-header:after{display:none!important}.card-prevent-open{pointer-events:auto}.card-expandable-size{width:0;height:0;position:absolute;left:0;top:0;opacity:0;pointer-events:none;visibility:hidden}@media (min-width:768px) and (min-height:670px){.card-expandable:not(.card-tablet-fullscreen){max-width:var(--f7-card-expandable-tablet-width)}.card-expandable:not(.card-tablet-fullscreen).card-opened,.card-expandable:not(.card-tablet-fullscreen).card-opening{border-radius:var(--f7-card-expandable-tablet-border-radius)}.card-expandable:not(.card-tablet-fullscreen):not(.card-expandable-animate-width) .card-content{width:var(--f7-card-expandable-tablet-width)}.card-expandable:not(.card-tablet-fullscreen) .card-expandable-size{width:var(--f7-card-expandable-tablet-width);height:var(--f7-card-expandable-tablet-height)}}.page.page-with-card-opened .page-content{overflow:hidden}.card-backdrop{position:fixed;left:0;top:0;width:100%;height:100%;z-index:299;pointer-events:none;background:rgba(0,0,0,.2);opacity:0}.card-backdrop-in{animation:card-backdrop-fade-in .4s forwards;pointer-events:auto}.card-backdrop-out{animation:card-backdrop-fade-out .4s forwards}@supports ((-webkit-backdrop-filter:blur(15px)) or (backdrop-filter:blur(15px))){.card-backdrop{background:0 0;-webkit-backdrop-filter:blur(15px);backdrop-filter:blur(15px)}}@keyframes card-backdrop-fade-in{from{opacity:0}to{opacity:1}}@keyframes card-backdrop-fade-out{from{opacity:1}to{opacity:0}}:root{--f7-chip-font-size:14px;--f7-chip-font-weight:normal;--f7-chip-media-font-size:16px;--f7-chip-bg-color:rgba(0, 0, 0, 0.12);--f7-chip-outline-border-color:rgba(0, 0, 0, 0.12);--f7-chip-delete-button-color:#000}:root .theme-dark,:root.theme-dark{--f7-chip-delete-button-color:#fff;--f7-chip-bg-color:#333;--f7-chip-outline-border-color:rgba(255, 255, 255, 0.12)}.ios{--f7-chip-height:28px;--f7-chip-padding-horizontal:10px;--f7-chip-text-color:#000}.ios .theme-dark,.ios.theme-dark{--f7-chip-text-color:#fff}.md{--f7-chip-height:32px;--f7-chip-padding-horizontal:12px;--f7-chip-text-color:rgba(0, 0, 0, 0.87)}.md .theme-dark,.md.theme-dark{--f7-chip-text-color:rgba(255, 255, 255, 0.87)}.aurora{--f7-chip-height:32px;--f7-chip-padding-horizontal:12px;--f7-chip-text-color:#000}.aurora .theme-dark,.aurora.theme-dark{--f7-chip-text-color:#fff}.chip{padding-left:var(--f7-chip-padding-horizontal);padding-right:var(--f7-chip-padding-horizontal);font-weight:var(--f7-chip-font-weight);display:inline-flex;box-sizing:border-box;vertical-align:middle;align-items:center;margin:2px 0;background-color:var(--f7-chip-bg-color);font-size:var(--f7-chip-font-size);color:var(--f7-chip-text-color);height:var(--f7-chip-height);line-height:var(--f7-chip-height);border-radius:var(--f7-chip-height);position:relative}.chip-media{border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;height:var(--f7-chip-height);width:var(--f7-chip-height);border-radius:var(--f7-chip-height);text-align:center;line-height:var(--f7-chip-height);box-sizing:border-box;color:#fff;font-size:var(--f7-chip-media-font-size);vertical-align:middle;margin-left:calc(-1 * var(--f7-chip-padding-horizontal))}.chip-media i.icon{font-size:calc(var(--f7-chip-height) - 8px);height:calc(var(--f7-chip-height) - 8px)}.chip-media img{max-width:100%;max-height:100%;width:auto;height:auto;border-radius:50%;display:block}.chip-media+.chip-label{margin-left:4px}.chip-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;position:relative;flex-shrink:1;min-width:0}.chip-delete{text-align:center;cursor:pointer;flex-shrink:0;background-repeat:no-repeat;width:24px;height:24px;color:var(--f7-chip-delete-button-color);opacity:.54;position:relative}.chip-delete:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;content:'delete_round_ios';line-height:24px}.chip .chip-delete.active-state{opacity:1}.aurora .chip-outline-aurora,.chip-outline,.ios .chip-outline-ios,.md .chip-outline-md{border:1px solid var(--f7-chip-outline-border-color);background:0 0}.chip[class*=color-]{--f7-chip-bg-color:var(--f7-theme-color);--f7-chip-text-color:#fff}.aurora .chip-outline-aurora[class*=color-],.chip-outline[class*=color-],.ios .chip-outline-ios[class*=color-],.md .chip-outline-md[class*=color-]{--f7-chip-outline-border-color:var(--f7-theme-color);--f7-chip-text-color:var(--f7-theme-color)}.ios .chip-delete{margin-right:calc(-1 * var(--f7-chip-padding-horizontal))}.ios .chip-delete:after{font-size:10px}.md .chip-label+.chip-delete{margin-left:4px}.md .chip-delete{margin-right:calc(-1 * var(--f7-chip-padding-horizontal) + 4px)}.md .chip-delete:after{font-size:12px}.aurora .chip-delete{margin-right:calc(-1 * var(--f7-chip-padding-horizontal))}.aurora .chip-delete:after{font-size:10px}:root{--f7-input-bg-color:transparent;--f7-label-font-weight:400;--f7-label-line-height:1.3;--f7-input-padding-left:0px;--f7-input-padding-right:0px;--f7-input-error-text-color:#ff3b30;--f7-input-error-font-size:12px;--f7-input-error-line-height:1.4;--f7-input-error-font-weight:400;--f7-input-info-font-size:12px;--f7-input-info-line-height:1.4;--f7-input-outline-height:40px;--f7-input-outline-border-radius:4px;--f7-input-outline-padding-horizontal:12px;--f7-textarea-height:100px;--f7-input-outline-border-color:#bbb}:root .theme-dark,:root.theme-dark{--f7-input-outline-border-color:#444}.ios{--f7-input-height:44px;--f7-input-font-size:17px;--f7-input-placeholder-color:#a9a9a9;--f7-textarea-padding-vertical:11px;--f7-label-font-size:12px;--f7-label-text-color:inherit;--f7-floating-label-scale:calc(17 / 12);--f7-inline-label-font-size:17px;--f7-inline-label-line-height:1.4;--f7-inline-label-padding-top:3px;--f7-input-clear-button-size:14px;--f7-input-text-color:#000000;--f7-input-info-text-color:rgba(0, 0, 0, 0.45);--f7-input-clear-button-color:rgba(0, 0, 0, 0.45)}.ios .theme-dark,.ios.theme-dark{--f7-input-text-color:#fff;--f7-input-info-text-color:rgba(255, 255, 255, 0.55);--f7-input-clear-button-color:rgba(255, 255, 255, 0.5)}.md{--f7-input-height:36px;--f7-input-font-size:16px;--f7-textarea-padding-vertical:7px;--f7-label-font-size:12px;--f7-floating-label-scale:calc(16 / 12);--f7-inline-label-font-size:16px;--f7-inline-label-line-height:1.5;--f7-inline-label-padding-top:7px;--f7-input-clear-button-size:18px;--f7-input-clear-button-color:#aaa;--f7-input-text-color:#212121;--f7-input-placeholder-color:rgba(0, 0, 0, 0.35);--f7-label-text-color:rgba(0, 0, 0, 0.65);--f7-input-info-text-color:rgba(0, 0, 0, 0.45)}.md .theme-dark,.md.theme-dark{--f7-input-text-color:rgba(255, 255, 255, 0.87);--f7-input-placeholder-color:rgba(255, 255, 255, 0.35);--f7-label-text-color:rgba(255, 255, 255, 0.54);--f7-input-info-text-color:rgba(255, 255, 255, 0.45)}.aurora{--f7-input-height:32px;--f7-input-font-size:16px;--f7-textarea-padding-vertical:4px;--f7-label-font-size:12px;--f7-label-text-color:inherit;--f7-floating-label-scale:calc(16 / 12);--f7-inline-label-font-size:16px;--f7-inline-label-line-height:1.5;--f7-inline-label-padding-top:4px;--f7-input-clear-button-size:14px;--f7-input-outline-border-radius:8px;--f7-input-text-color:#000000;--f7-input-placeholder-color:rgba(0, 0, 0, 0.32);--f7-input-clear-button-color:rgba(0, 0, 0, 0.45);--f7-input-info-text-color:rgba(0, 0, 0, 0.5)}.aurora .theme-dark,.aurora.theme-dark{--f7-input-text-color:#fff;--f7-input-clear-button-color:rgba(255, 255, 255, 0.5);--f7-input-placeholder-color:rgba(255, 255, 255, 0.35);--f7-input-info-text-color:rgba(255, 255, 255, 0.45)}input[type=date],input[type=datetime-local],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],select,textarea{box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;box-shadow:none;border-radius:0;outline:0;display:block;padding:0;margin:0;font-family:inherit;background:0 0;resize:none;font-size:inherit;color:inherit}.textarea-resizable-shadow{opacity:0;position:absolute;z-index:-1000;pointer-events:none;left:-1000px;top:-1000px;visibility:hidden}.list input[type=date],.list input[type=datetime-local],.list input[type=email],.list input[type=month],.list input[type=number],.list input[type=password],.list input[type=search],.list input[type=tel],.list input[type=text],.list input[type=time],.list input[type=url],.list select{width:100%;height:var(--f7-input-height);color:var(--f7-input-text-color);font-size:var(--f7-input-font-size);background-color:var(--f7-input-bg-color,transparent);padding-left:var(--f7-input-padding-left);padding-right:var(--f7-input-padding-right)}.list input[type=date]::-webkit-input-placeholder,.list input[type=datetime-local]::-webkit-input-placeholder,.list input[type=email]::-webkit-input-placeholder,.list input[type=month]::-webkit-input-placeholder,.list input[type=number]::-webkit-input-placeholder,.list input[type=password]::-webkit-input-placeholder,.list input[type=search]::-webkit-input-placeholder,.list input[type=tel]::-webkit-input-placeholder,.list input[type=text]::-webkit-input-placeholder,.list input[type=time]::-webkit-input-placeholder,.list input[type=url]::-webkit-input-placeholder,.list select::-webkit-input-placeholder{color:var(--f7-input-placeholder-color)}.list input[type=date]::placeholder,.list input[type=datetime-local]::placeholder,.list input[type=email]::placeholder,.list input[type=month]::placeholder,.list input[type=number]::placeholder,.list input[type=password]::placeholder,.list input[type=search]::placeholder,.list input[type=tel]::placeholder,.list input[type=text]::placeholder,.list input[type=time]::placeholder,.list input[type=url]::placeholder,.list select::placeholder{color:var(--f7-input-placeholder-color)}.list textarea{width:100%;color:var(--f7-input-text-color);font-size:var(--f7-input-font-size);resize:none;line-height:1.4;height:var(--f7-textarea-height);background-color:var(--f7-input-bg-color,transparent);padding-top:var(--f7-textarea-padding-vertical);padding-bottom:var(--f7-textarea-padding-vertical);padding-left:var(--f7-input-padding-left);padding-right:var(--f7-input-padding-right)}.list textarea::-webkit-input-placeholder{color:var(--f7-input-placeholder-color)}.list textarea::placeholder{color:var(--f7-input-placeholder-color)}.list textarea.resizable{height:var(--f7-input-height)}.list input[type=datetime-local]{max-width:50vw}.list input[type=date],.list input[type=datetime-local],.list input[type=month],.list input[type=time]{line-height:var(--f7-input-height)}.list .item-floating-label,.list .item-label{width:100%;vertical-align:top;flex-shrink:0;font-size:var(--f7-label-font-size);font-weight:var(--f7-label-font-weight);line-height:var(--f7-label-line-height);color:var(--f7-label-text-color);transition-duration:.2s;transition-property:transform,color}.list .item-floating-label{--label-height:calc(var(--f7-label-font-size) * var(--f7-label-line-height));transform:scale(var(--f7-floating-label-scale)) translateY(calc((var(--f7-input-height)/ 2 + 50%)/ var(--f7-floating-label-scale)));color:var(--f7-input-placeholder-color);width:auto;max-width:calc(100% / var(--f7-floating-label-scale));pointer-events:none;left:var(--f7-input-padding-left);transform-origin:left center}.list .item-floating-label~.item-input-wrap input::-webkit-input-placeholder,.list .item-floating-label~.item-input-wrap textarea::-webkit-input-placeholder{opacity:0;transition-duration:.1s}.list .item-floating-label~.item-input-wrap input::placeholder,.list .item-floating-label~.item-input-wrap textarea::placeholder{opacity:0;transition-duration:.1s}.list .item-floating-label~.item-input-wrap input.input-focused::-webkit-input-placeholder,.list .item-floating-label~.item-input-wrap textarea.input-focused::-webkit-input-placeholder{opacity:1;transition-duration:.3s}.list .item-floating-label~.item-input-wrap input.input-focused::placeholder,.list .item-floating-label~.item-input-wrap textarea.input-focused::placeholder{opacity:1;transition-duration:.3s}.list .item-input-with-value .item-floating-label{color:var(--f7-label-text-color)}.list .item-input-focused .item-floating-label,.list .item-input-with-value .item-floating-label{transform:scale(1) translateY(0)}.list .item-input-wrap{width:100%;flex-shrink:1;position:relative}.item-input .item-inner{display:flex;flex-direction:column;align-items:flex-start}.input-error-message,.item-input-error-message{font-size:var(--f7-input-error-font-size);line-height:var(--f7-input-error-line-height);color:var(--f7-input-error-text-color);font-weight:var(--f7-input-error-font-weight);display:none;box-sizing:border-box}.input-info,.item-input-info{font-size:var(--f7-input-info-font-size);line-height:var(--f7-input-info-line-height);color:var(--f7-input-info-text-color)}.input-invalid .input-error-message,.input-invalid .item-input-error-message,.item-input-invalid .input-error-message,.item-input-invalid .item-input-error-message{display:block}.input-invalid .input-info,.input-invalid .item-input-info,.item-input-invalid .input-info,.item-input-invalid .item-input-info{display:none}.inline-label .item-inner,.inline-labels .item-inner{display:flex;align-items:center;flex-direction:row}.inline-label .item-floating-label,.inline-label .item-label,.inline-labels .item-floating-label,.inline-labels .item-label{padding-top:var(--f7-inline-label-padding-top);align-self:flex-start;width:35%;font-size:var(--f7-inline-label-font-size);line-height:var(--f7-inline-label-line-height)}.inline-label .item-floating-label+.item-input-wrap,.inline-label .item-label+.item-input-wrap,.inline-labels .item-floating-label+.item-input-wrap,.inline-labels .item-label+.item-input-wrap{margin-left:8px}.input{position:relative}.input input,.input select,.input textarea{width:100%}.input-clear-button{opacity:0;pointer-events:none;visibility:hidden;transition-duration:.1s;position:absolute;top:50%;border:none;padding:0;margin:0;outline:0;z-index:1;cursor:pointer;background:0 0;width:var(--f7-input-clear-button-size);height:var(--f7-input-clear-button-size);margin-top:calc(-1 * var(--f7-input-clear-button-size)/ 2);color:var(--f7-input-clear-button-color);right:0}.input-clear-button:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px}.input-clear-button:before{position:absolute;content:'';left:50%;top:50%}.item-input-wrap .input-clear-button{top:calc(var(--f7-input-height)/ 2)}.input-clear-button.active-state{opacity:.75!important}.input-with-value .input-clear-button,.input-with-value~.input-clear-button,.item-input-with-value .input-clear-button{opacity:1;pointer-events:auto;visibility:visible}.input-dropdown,.input-dropdown-wrap{position:relative}.input-dropdown-wrap:before,.input-dropdown:before{content:'';pointer-events:none;position:absolute;top:50%;margin-top:-2px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid #727272;right:6px}.input-dropdown input,.input-dropdown select,.input-dropdown textarea,.input-dropdown-wrap input,.input-dropdown-wrap select,.input-dropdown-wrap textarea{padding-right:calc(20px + var(--f7-input-padding-right))}.input-outline:after,.item-input-outline .item-input-wrap:after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;box-sizing:border-box;border:1px solid var(--f7-input-outline-border-color);border-radius:var(--f7-input-outline-border-radius);transition-duration:.2s;pointer-events:none}.input-outline.input-focused:after,.item-input-outline.item-input-focused .item-input-wrap:after{border-width:2px;border-color:var(--f7-input-outline-focused-border-color,var(--f7-theme-color))}.input-outline.input-invalid:after,.item-input-outline.item-input-invalid .item-input-wrap:after{border-width:2px;border-color:var(--f7-input-outline-invalid-border-color,var(--f7-input-error-text-color))}.input-outline input,.input-outline select,.input-outline textarea,.item-input-outline input,.item-input-outline select,.item-input-outline textarea,.list .item-input-outline input,.list .item-input-outline select,.list .item-input-outline textarea{border-radius:var(--f7-input-outline-border-radius);padding-left:var(--f7-input-outline-padding-horizontal);padding-right:var(--f7-input-outline-padding-horizontal)}.input-outline.input-dropdown:before,.item-input-outline .input-dropdown-wrap:before{right:8px}.input-outline.input-dropdown input,.input-outline.input-dropdown select,.input-outline.input-dropdown textarea,.item-input-outline .input-dropdown-wrap input,.item-input-outline .input-dropdown-wrap select,.item-input-outline .input-dropdown-wrap textarea{padding-right:20px}.input-outline .input-clear-button,.item-input-outline .input-clear-button{right:8px}.item-input-outline{--f7-input-height:var(--f7-input-outline-height)}.item-input-outline .item-inner:after{display:none!important}.item-input-outline .item-label{left:var(--f7-input-outline-padding-horizontal)}.inline-label .item-input-outline .item-label,.inline-labels .item-input-outline .item-label,.item-input-outline .inline-label .item-label,.item-input-outline .inline-label.item-label{left:0}.item-input-outline .item-floating-label{left:calc(var(--f7-input-outline-padding-horizontal) - 4px);padding-left:4px;padding-right:4px;background:var(--f7-page-bg-color);z-index:10;margin-top:calc(-.5 * (var(--f7-label-font-size) * var(--f7-label-line-height)))}.item-input-outline.item-input-focused .item-floating-label,.item-input-outline.item-input-with-value .item-floating-label{transform:scale(1) translateY(50%)}.item-input-outline .item-input-error-message,.item-input-outline .item-input-info{padding-left:var(--f7-input-outline-padding-horizontal)}.block-strong .item-input-outline .item-floating-label{background:var(--f7-block-strong-bg-color)}.list .item-input-outline .item-floating-label{background:var(--f7-list-bg-color)}.theme-dark option{background-color:var(--f7-page-bg-color)}.ios .item-floating-label+.item-input-wrap,.ios .item-label+.item-input-wrap{margin-top:0}.ios .item-input-focused .item-floating-label{color:var(--f7-label-text-color)}.ios .item-input .item-media{align-self:flex-start}.ios .item-input-wrap{margin-top:calc(-1 * var(--f7-list-item-padding-vertical));margin-bottom:calc(-1 * var(--f7-list-item-padding-vertical))}.ios .inline-label .item-floating-label+.item-input-wrap,.ios .inline-label .item-label+.item-input-wrap,.ios .inline-labels .item-floating-label+.item-input-wrap,.ios .inline-labels .item-label+.item-input-wrap{margin-top:calc(-1 * var(--f7-list-item-padding-vertical))}.ios .inline-label .item-input-wrap,.ios .inline-labels .item-input-wrap{margin-top:calc(-1 * var(--f7-list-item-padding-vertical))}.ios .input-error-message,.ios .input-info,.ios .item-input-error-message,.ios .item-input-info{position:relative;margin-bottom:6px;margin-top:-8px}.ios .item-input-focused .item-floating-label,.ios .item-input-focused .item-label{color:var(--f7-label-focused-text-color,var(--f7-label-text-color))}.ios .item-input-focused .item-inner:after{background:var(--f7-input-focused-border-color,var(--f7-list-item-border-color))}.ios .item-input-invalid .item-floating-label,.ios .item-input-invalid .item-label{color:var(--f7-label-invalid-text-color,var(--f7-label-text-color))}.ios .item-input-invalid .item-inner:after{background:var(--f7-input-invalid-border-color,var(--f7-list-item-border-color))}.ios .input-invalid input,.ios .input-invalid select,.ios .input-invalid textarea,.ios .item-input-invalid input,.ios .item-input-invalid select,.ios .item-input-invalid textarea{color:var(--f7-input-invalid-text-color,var(--f7-input-error-text-color))}.ios .input-clear-button:after{content:'delete_round_ios';font-size:calc(var(--f7-input-clear-button-size) / (14 / 10));line-height:1.4}.ios .input-clear-button:before{width:44px;height:44px;margin-left:-22px;margin-top:-22px}.ios .input-outline .item-input-wrap,.ios .item-input-outline .item-input-wrap{margin-top:0;margin-bottom:0}.ios .input-outline .input-error-message,.ios .input-outline .input-info,.ios .input-outline .item-input-error-message,.ios .input-outline .item-input-info,.ios .item-input-outline .input-error-message,.ios .item-input-outline .input-info,.ios .item-input-outline .item-input-error-message,.ios .item-input-outline .item-input-info{margin-top:0;white-space:normal;overflow:hidden;text-overflow:ellipsis}.ios .input-outline .input-info,.ios .input-outline .item-input-info,.ios .item-input-outline .input-info,.ios .item-input-outline .item-input-info{margin-bottom:calc(-1 * var(--f7-input-info-font-size) * var(--f7-input-info-line-height))}.ios .input-outline .input-error-message,.ios .input-outline .item-input-error-message,.ios .item-input-outline .input-error-message,.ios .item-input-outline .item-input-error-message{margin-bottom:calc(-1 * var(--f7-input-error-font-size) * var(--f7-input-error-line-height))}.ios .input-outline.input-with-info .item-input-wrap,.ios .input-outline.item-input-with-info .item-input-wrap,.ios .item-input-outline.input-with-info .item-input-wrap,.ios .item-input-outline.item-input-with-info .item-input-wrap{margin-bottom:calc(var(--f7-input-info-font-size) * var(--f7-input-info-line-height))}.ios .input-outline.input-with-error-message .item-input-wrap,.ios .input-outline.item-input-with-error-message .item-input-wrap,.ios .item-input-outline.input-with-error-message .item-input-wrap,.ios .item-input-outline.item-input-with-error-message .item-input-wrap{margin-bottom:calc(var(--f7-input-error-font-size) * var(--f7-input-error-line-height))}.md .input:not(.input-outline):after,.md .item-input:not(.item-input-outline) .item-input-wrap:after{content:'';position:absolute;background-color:var(--f7-list-item-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.md .input:not(.input-outline):after,.md .item-input:not(.item-input-outline) .item-input-wrap:after{transition-duration:.2s}.md .item-input-wrap{min-height:var(--f7-input-height)}.md .item-input .item-media{align-self:flex-end}.md .item-input .item-inner:after{display:none!important}.md .inline-label .item-media,.md .inline-labels .item-media{align-self:flex-start;padding-top:14px}.md .input-with-error-message,.md .input-with-info,.md .item-input-with-error-message,.md .item-input-with-info{padding-bottom:20px}.md .input-error-message,.md .input-info,.md .item-input-error-message,.md .item-input-info{position:absolute;top:100%;margin-top:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:100%;left:0}.md .item-input-focused .item-floating-label,.md .item-input-focused .item-label{color:var(--f7-label-focused-text-color,var(--f7-theme-color))}.md .input-focused:not(.input-outline):after,.md .item-input-focused:not(.item-input-outline) .item-input-wrap:after{background:var(--f7-input-focused-border-color,var(--f7-theme-color))}.md .input-focused:not(.input-outline):after,.md .input-invalid:not(.input-outline):after,.md .item-input-focused:not(.item-input-outline) .item-input-wrap:after,.md .item-input-invalid:not(.item-input-outline) .item-input-wrap:after{transform:scaleY(2)!important}.md .input-invalid:not(.input-outline):after,.md .item-input-invalid:not(.item-input-outline) .item-input-wrap:after{background:var(--f7-input-invalid-border-color,var(--f7-input-error-text-color))}.md .item-input-invalid .item-floating-label,.md .item-input-invalid .item-label{color:var(--f7-label-invalid-text-color,var(--f7-input-error-text-color))}.md .input-invalid input,.md .input-invalid select,.md .input-invalid textarea,.md .item-input-invalid input,.md .item-input-invalid select,.md .item-input-invalid textarea{color:var(--f7-input-invalid-text-color,var(--f7-input-text-color))}.md .input-clear-button:after{font-size:calc(var(--f7-input-clear-button-size) / (24 / 20));content:'delete_round_md';line-height:1.2}.md .input-clear-button:before{width:48px;height:48px;margin-left:-24px;margin-top:-24px}.aurora .item-floating-label+.item-input-wrap,.aurora .item-label+.item-input-wrap{margin-top:0}.aurora .input:not(.input-outline):after{content:'';position:absolute;background-color:var(--f7-list-item-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.aurora .input:not(.input-outline):after{transition-duration:.2s}.aurora .item-input-focused .item-floating-label{color:var(--f7-label-text-color)}.aurora .inline-label .item-media,.aurora .inline-labels .item-media{align-self:flex-start;padding-top:12px}.aurora .input-error-message,.aurora .input-info,.aurora .item-input-error-message,.aurora .item-input-info{position:relative}.aurora .input-focused:not(.input-outline):after,.aurora .input-invalid:not(.input-outline):after,.aurora .item-input-focused:not(.item-input-outline) .item-inner:after,.aurora .item-input-invalid:not(.item-input-outline) .item-inner:after{transform:scaleY(2)!important;display:block!important}.aurora .item-input-focused .item-floating-label,.aurora .item-input-focused .item-label{color:var(--f7-label-focused-text-color,var(--f7-theme-color))}.aurora .input-focused:not(.input-outline):after,.aurora .item-input-focused:not(.item-input-outline) .item-inner:after{background:var(--f7-input-focused-border-color,var(--f7-theme-color))}.aurora .item-input-invalid .item-floating-label,.aurora .item-input-invalid .item-label{color:var(--f7-label-invalid-text-color,var(--f7-input-error-text-color))}.aurora .input-invalid:not(.input-outline):after,.aurora .item-input-invalid:not(.item-input-outline) .item-inner:after{background:var(--f7-input-invalid-border-color,var(--f7-input-error-text-color))}.aurora .input-invalid input,.aurora .input-invalid select,.aurora .input-invalid textarea,.aurora .item-input-invalid input,.aurora .item-input-invalid select,.aurora .item-input-invalid textarea{color:var(--f7-input-invalid-text-color,var(--f7-input-text-color))}.aurora .input-clear-button:after{content:'delete_round_ios';font-size:calc(var(--f7-input-clear-button-size) / (14 / 10));line-height:1.4}.aurora .input-clear-button:before{width:44px;height:44px;margin-left:-22px;margin-top:-22px}.aurora .input-outline .item-input-wrap,.aurora .item-input-outline .item-input-wrap{margin-top:0;margin-bottom:0}.aurora .input-outline .input-error-message,.aurora .input-outline .input-info,.aurora .input-outline .item-input-error-message,.aurora .input-outline .item-input-info,.aurora .item-input-outline .input-error-message,.aurora .item-input-outline .input-info,.aurora .item-input-outline .item-input-error-message,.aurora .item-input-outline .item-input-info{margin-top:0;white-space:normal;overflow:hidden;text-overflow:ellipsis}.aurora .input-outline .input-info,.aurora .input-outline .item-input-info,.aurora .item-input-outline .input-info,.aurora .item-input-outline .item-input-info{margin-bottom:calc(-1 * var(--f7-input-info-font-size) * var(--f7-input-info-line-height))}.aurora .input-outline .input-error-message,.aurora .input-outline .item-input-error-message,.aurora .item-input-outline .input-error-message,.aurora .item-input-outline .item-input-error-message{margin-bottom:calc(-1 * var(--f7-input-error-font-size) * var(--f7-input-error-line-height))}.aurora .input-outline.input-with-info .item-input-wrap,.aurora .input-outline.item-input-with-info .item-input-wrap,.aurora .item-input-outline.input-with-info .item-input-wrap,.aurora .item-input-outline.item-input-with-info .item-input-wrap{margin-bottom:calc(var(--f7-input-info-font-size) * var(--f7-input-info-line-height))}.aurora .input-outline.input-with-error-message .item-input-wrap,.aurora .input-outline.item-input-with-error-message .item-input-wrap,.aurora .item-input-outline.input-with-error-message .item-input-wrap,.aurora .item-input-outline.item-input-with-error-message .item-input-wrap{margin-bottom:calc(var(--f7-input-error-font-size) * var(--f7-input-error-line-height))}:root{--f7-checkbox-icon-color:#fff;--f7-checkbox-extra-margin:0px}:root .theme-dark,:root.theme-dark{--f7-checkbox-inactive-color:rgba(255, 255, 255, 0.3);--f7-checkbox-icon-color:#000}.ios{--f7-checkbox-size:22px;--f7-checkbox-border-radius:50%;--f7-checkbox-border-width:1px;--f7-checkbox-inactive-color:#c7c7cc}.md{--f7-checkbox-size:18px;--f7-checkbox-border-radius:2px;--f7-checkbox-border-width:2px;--f7-checkbox-inactive-color:#6d6d6d}.aurora{--f7-checkbox-size:16px;--f7-checkbox-border-radius:4px;--f7-checkbox-border-width:1px;--f7-checkbox-inactive-color:rgba(0, 0, 0, 0.25)}.checkbox{position:relative;display:inline-block;vertical-align:middle;z-index:1;background-color:transparent;--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.5)}.checkbox i,.icon-checkbox{flex-shrink:0;border:var(--f7-checkbox-border-width) solid var(--f7-checkbox-inactive-color);width:var(--f7-checkbox-size);height:var(--f7-checkbox-size);border-radius:var(--f7-checkbox-border-radius);box-sizing:border-box;position:relative;display:block}.checkbox i:after,.icon-checkbox:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;width:var(--f7-checkbox-size);height:var(--f7-checkbox-size);line-height:var(--f7-checkbox-size);top:calc(0px - var(--f7-checkbox-border-width));opacity:0;color:var(--f7-checkbox-icon-color);position:relative;transition-property:opacity;left:calc(0px - var(--f7-checkbox-border-width))}.checkbox input[type=checkbox]:not(:checked)~i:after,label.item-checkbox input[type=checkbox]:not(:checked)~* .icon-checkbox:after,label.item-checkbox input[type=checkbox]:not(:checked)~.icon-checkbox:after{font-size:0}.checkbox input[type=checkbox]:checked~i,.checkbox input[type=checkbox]:indeterminate~i,label.item-checkbox input[type=checkbox]:checked~* .icon-checkbox,label.item-checkbox input[type=checkbox]:checked~.icon-checkbox,label.item-checkbox input[type=checkbox]:indeterminate~* .icon-checkbox,label.item-checkbox input[type=checkbox]:indeterminate~.icon-checkbox{border-color:var(--f7-checkbox-active-color,var(--f7-theme-color));background-color:var(--f7-checkbox-active-color,var(--f7-theme-color))}.checkbox input[type=checkbox]:checked~i:after,.checkbox input[type=checkbox]:indeterminate~i:after,label.item-checkbox input[type=checkbox]:checked~* .icon-checkbox:after,label.item-checkbox input[type=checkbox]:checked~.icon-checkbox:after,label.item-checkbox input[type=checkbox]:indeterminate~* .icon-checkbox:after,label.item-checkbox input[type=checkbox]:indeterminate~.icon-checkbox:after{opacity:1}.checkbox input[type=checkbox]:indeterminate~i:after,label.item-checkbox input[type=checkbox]:indeterminate~* .icon-checkbox:after,label.item-checkbox input[type=checkbox]:indeterminate~.icon-checkbox:after{font-size:0;content:'';position:absolute;top:50%;width:70%;background:var(--f7-checkbox-icon-color);height:2px;border-radius:2px;margin-top:-1px;transition:0s;left:15%}.checkbox,label.item-checkbox{cursor:pointer}.checkbox input[type=checkbox],.checkbox input[type=radio],label.item-checkbox input[type=checkbox],label.item-checkbox input[type=radio]{display:none}label.item-checkbox{transition-duration:.3s}label.item-checkbox .item-content .item-media,label.item-checkbox.item-content .item-media{align-self:center}label.item-checkbox>.icon-checkbox{margin-right:calc(var(--f7-list-item-media-margin) + var(--f7-checkbox-extra-margin))}label.item-checkbox.active-state{background-color:var(--f7-list-link-pressed-bg-color)}label.item-checkbox.active-state:after{background-color:transparent}.disabled label.item-checkbox,label.item-checkbox.disabled{opacity:.55;pointer-events:none;opacity:.55!important;pointer-events:none!important}.ios .checkbox i:after,.ios .icon-checkbox:after{content:'checkbox_ios';font-size:21px}.ios label.item-checkbox.active-state{transition-duration:0s}.ios .checkbox input[type=checkbox]:indeterminate~i:after,.ios label.item-checkbox input[type=checkbox]:indeterminate~* .icon-checkbox:after,.ios label.item-checkbox input[type=checkbox]:indeterminate~.icon-checkbox:after{height:2px;margin-top:-1px}.md .checkbox i,.md .icon-checkbox{transition-duration:.2s}.md .checkbox i:after,.md .icon-checkbox:after{content:'checkbox_md';transition-duration:.2s;font-size:15px}.md label.item-checkbox{position:relative;overflow:hidden;z-index:0}.aurora .checkbox i,.aurora .icon-checkbox{transition-duration:150ms}.aurora .checkbox i:after,.aurora .icon-checkbox:after{content:'checkbox_aurora';transition-duration:150ms;font-size:21px}.aurora .checkbox i:before,.aurora .icon-checkbox:before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.1);opacity:0;transition-duration:150ms}.aurora .checkbox.active-state i:before{opacity:1}.aurora label.item-checkbox{position:relative;overflow:hidden;z-index:0}.aurora.device-desktop label.item-checkbox:hover:not(.active-state):not(.no-hover){background-color:var(--f7-list-link-hover-bg-color)}:root{--f7-radio-border-radius:50%;--f7-radio-extra-margin:0px}:root .theme-dark,:root.theme-dark{--f7-radio-inactive-color:rgba(255, 255, 255, 0.3)}.ios{--f7-radio-size:22px;--f7-radio-border-width:1px;--f7-radio-inactive-color:#c7c7cc}.md{--f7-radio-size:20px;--f7-radio-border-width:2px;--f7-radio-inactive-color:#6d6d6d}.aurora{--f7-radio-size:16px;--f7-radio-border-width:1px;--f7-radio-inactive-color:rgba(0, 0, 0, 0.25)}.radio{position:relative;display:inline-block;vertical-align:middle;z-index:1;--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.5)}.icon-radio{width:var(--f7-radio-size);height:var(--f7-radio-size);border-radius:var(--f7-radio-border-radius);position:relative;box-sizing:border-box;display:block;flex-shrink:0}.aurora .icon-radio,.md .icon-radio,.radio .icon-radio{border:var(--f7-radio-border-width) solid var(--f7-radio-inactive-color)}.radio,label.item-radio{cursor:pointer}.radio input[type=checkbox],.radio input[type=radio],label.item-radio input[type=checkbox],label.item-radio input[type=radio]{display:none}label.item-radio{transition-duration:.3s}label.item-radio .item-content .item-media,label.item-radio.item-content .item-media{align-self:center}label.item-radio.active-state{background-color:var(--f7-list-link-pressed-bg-color)}label.item-radio.active-state:after{background-color:transparent}.disabled label.item-radio,label.item-radio.disabled{opacity:.55;pointer-events:none;opacity:.55!important;pointer-events:none!important}.ios .icon-radio:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;width:calc(var(--f7-radio-size) - var(--f7-radio-border-width) * 2);height:calc(var(--f7-radio-size) - var(--f7-radio-border-width) * 2);line-height:calc(var(--f7-radio-size) - var(--f7-radio-border-width) * 2 + 1px);font-size:20px;content:'radio_ios';color:var(--f7-radio-active-color,var(--f7-theme-color));opacity:0}.ios .radio input[type=radio]:checked~.icon-radio:after,.ios label.item-radio input[type=radio]:checked~* .icon-radio:after,.ios label.item-radio input[type=radio]:checked~.icon-radio:after{opacity:1}.ios .radio input[type=radio]:checked~.icon-radio{border-color:var(--f7-radio-active-color,var(--f7-theme-color))}.ios label.item-radio:not(.item-radio-icon-start) input[type=radio]~.icon-radio{position:absolute;top:50%;margin-top:-11px;right:calc(var(--f7-safe-area-right) + 10px)}.ios label.item-radio:not(.item-radio-icon-start) .item-inner{padding-right:calc(var(--f7-safe-area-right) + 36px)}.ios label.item-radio-icon-start>.icon-radio{margin-right:calc(var(--f7-list-item-media-margin) + var(--f7-checkbox-extra-margin))}.ios label.item-radio.active-state{transition-duration:0s}.md .icon-radio{transition-duration:.2s}.md .icon-radio:after{content:'';position:absolute;width:10px;height:10px;left:50%;top:50%;margin-left:-5px;margin-top:-5px;background-color:var(--f7-radio-active-color,var(--f7-theme-color));border-radius:50%;transform:scale(0);transition-duration:.2s}.md .radio input[type=radio]:checked~.icon-radio,.md label.item-radio input[type=radio]:checked~* .icon-radio,.md label.item-radio input[type=radio]:checked~.icon-radio{border-color:var(--f7-radio-active-color,var(--f7-theme-color))}.md .radio input[type=radio]:checked~.icon-radio:after,.md label.item-radio input[type=radio]:checked~* .icon-radio:after,.md label.item-radio input[type=radio]:checked~.icon-radio:after{background-color:var(--f7-radio-active-color,var(--f7-theme-color));transform:scale(1)}.md label.item-radio{position:relative;overflow:hidden;z-index:0}.md label.item-radio:not(.item-radio-icon-end)>.icon-radio{margin-right:calc(var(--f7-list-item-media-margin) + var(--f7-radio-extra-margin))}.md label.item-radio-icon-end input[type=radio]~.icon-radio{position:absolute;top:50%;margin-top:-10px;right:calc(var(--f7-safe-area-right) + 16px)}.md label.item-radio-icon-end .item-inner{padding-right:calc(var(--f7-safe-area-right) + 52px)}.aurora .icon-radio{transition-duration:150ms;overflow:hidden}.aurora .icon-radio:after{content:'';position:absolute;width:6px;height:6px;left:50%;top:50%;margin-left:-3px;margin-top:-3px;background-color:#fff;border-radius:50%;transform:scale(0);transition-duration:150ms}.aurora .icon-radio:before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.1);opacity:0;transition-duration:150ms}.aurora .radio.active-state i:before{opacity:1}.aurora .radio input[type=radio]:checked~.icon-radio,.aurora label.item-radio input[type=radio]:checked~* .icon-radio,.aurora label.item-radio input[type=radio]:checked~.icon-radio{border-color:var(--f7-radio-active-color,var(--f7-theme-color));background-color:var(--f7-radio-active-color,var(--f7-theme-color))}.aurora .radio input[type=radio]:checked~.icon-radio:after,.aurora label.item-radio input[type=radio]:checked~* .icon-radio:after,.aurora label.item-radio input[type=radio]:checked~.icon-radio:after{transform:scale(1)}.aurora label.item-radio{position:relative;overflow:hidden;z-index:0}.aurora label.item-radio:not(.item-radio-icon-end)>.icon-radio{margin-right:calc(var(--f7-list-item-media-margin) + var(--f7-radio-extra-margin))}.aurora label.item-radio-icon-end input[type=radio]~.icon-radio{position:absolute;top:50%;margin-top:-8px;right:calc(var(--f7-safe-area-right) + 16px)}.aurora label.item-radio-icon-end .item-inner{padding-right:calc(var(--f7-safe-area-right) + 48px)}.aurora.device-desktop label.item-radio:hover:not(.active-state):not(.no-hover){background-color:var(--f7-list-link-hover-bg-color)}:root{--f7-toggle-handle-color:#fff}:root .theme-dark,:root.theme-dark{--f7-toggle-inactive-color:#555}.ios{--f7-toggle-width:52px;--f7-toggle-height:32px;--f7-toggle-border-color:#e5e5e5;--f7-toggle-inactive-color:#fff}.ios .theme-dark,.ios.theme-dark{--f7-toggle-border-color:#555}.md{--f7-toggle-width:36px;--f7-toggle-height:14px;--f7-toggle-inactive-color:#b0afaf}.aurora{--f7-toggle-width:40px;--f7-toggle-height:20px;--f7-toggle-inactive-color:#aaa}.toggle,.toggle-icon{width:var(--f7-toggle-width);height:var(--f7-toggle-height);border-radius:var(--f7-toggle-height)}.toggle{display:inline-block;vertical-align:middle;position:relative;box-sizing:border-box;align-self:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.toggle input[type=checkbox]{display:none}.toggle input[disabled]~.toggle-icon{pointer-events:none}.toggle-icon{z-index:0;margin:0;padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;position:relative;transition:.3s;box-sizing:border-box;display:block;cursor:pointer}.toggle-icon:after,.toggle-icon:before{content:''}.toggle-icon:after{background:var(--f7-toggle-handle-color);position:absolute;z-index:2;transform:translateX(0px);transition-duration:.3s}.ios .toggle input[type=checkbox]:checked+.toggle-icon{background:var(--f7-toggle-active-color,var(--f7-theme-color))}.ios .toggle input[type=checkbox]:checked+.toggle-icon:before{transform:scale(0)}.ios .toggle input[type=checkbox]:checked+.toggle-icon:after{transform:translateX(calc(var(--f7-toggle-width) - var(--f7-toggle-height)))}.ios .toggle-icon{background:var(--f7-toggle-border-color)}.ios .toggle-icon:before{position:absolute;left:2px;top:2px;width:calc(var(--f7-toggle-width) - 4px);height:calc(var(--f7-toggle-height) - 4px);border-radius:var(--f7-toggle-height);box-sizing:border-box;background:var(--f7-toggle-inactive-color);z-index:1;transition-duration:.3s;transform:scale(1)}.ios .toggle-icon:after{height:calc(var(--f7-toggle-height) - 4px);width:calc(var(--f7-toggle-height) - 4px);top:2px;left:2px;box-shadow:0 2px 4px rgba(0,0,0,.3);border-radius:calc(var(--f7-toggle-height) - 4px)}.ios .toggle-active-state input[type=checkbox]:not(:checked)+.toggle-icon:before{transform:scale(0)}.ios .toggle-active-state input[type=checkbox]+.toggle-icon:after{width:calc(var(--f7-toggle-height) + 4px)}.ios .toggle-active-state input[type=checkbox]:checked+.toggle-icon:after{transform:translateX(calc(var(--f7-toggle-width) - var(--f7-toggle-height) - 8px))}.md .toggle input[type=checkbox]:checked+.toggle-icon{background:var(--f7-toggle-active-color,rgba(var(--f7-theme-color-rgb),.5))}.md .toggle input[type=checkbox]:checked+.toggle-icon:after{transform:translateX(calc(var(--f7-toggle-width) - var(--f7-toggle-height) - 6px));background:var(--f7-toggle-active-color,var(--f7-theme-color))}.md .toggle-icon{background:var(--f7-toggle-inactive-color)}.md .toggle-icon:after{height:calc(var(--f7-toggle-height) + 6px);width:calc(var(--f7-toggle-height) + 6px);top:-3px;box-shadow:0 2px 5px rgba(0,0,0,.4);border-radius:var(--f7-toggle-height);left:0}.aurora .toggle input[type=checkbox]:checked+.toggle-icon{background:var(--f7-toggle-active-color,var(--f7-theme-color))}.aurora .toggle input[type=checkbox]:checked+.toggle-icon:after{transform:translateX(calc(var(--f7-toggle-width) - var(--f7-toggle-height)))}.aurora .toggle-icon{background:var(--f7-toggle-inactive-color)}.aurora .toggle-icon:after{height:calc(var(--f7-toggle-height) - 4px);width:calc(var(--f7-toggle-height) - 4px);top:2px;left:2px;border-radius:calc(var(--f7-toggle-height) - 4px)}:root{--f7-range-scale-step-height:5px;--f7-range-scale-text-color:#666;--f7-range-scale-substep-width:1px;--f7-range-scale-substep-height:4px}.ios{--f7-range-size:28px;--f7-range-bar-bg-color:#b7b8b7;--f7-range-bar-size:4px;--f7-range-bar-border-radius:2px;--f7-range-knob-size:28px;--f7-range-knob-color:#fff;--f7-range-knob-box-shadow:0 2px 4px rgba(0, 0, 0, 0.3);--f7-range-label-size:24px;--f7-range-label-text-color:#000;--f7-range-label-bg-color:#fff;--f7-range-label-font-size:12px;--f7-range-label-font-weight:500;--f7-range-label-border-radius:5px;--f7-range-label-padding:0px 2px;--f7-range-scale-step-width:1px;--f7-range-scale-font-size:12px;--f7-range-scale-font-weight:400;--f7-range-scale-label-offset:4px}.md{--f7-range-size:20px;--f7-range-bar-bg-color:#b9b9b9;--f7-range-bar-size:2px;--f7-range-bar-border-radius:0px;--f7-range-knob-size:12px;--f7-range-knob-box-shadow:none;--f7-range-label-size:26px;--f7-range-label-font-weight:normal;--f7-range-label-text-color:#fff;--f7-range-label-font-size:10px;--f7-range-label-border-radius:50%;--f7-range-label-padding:0px;--f7-range-scale-step-width:2px;--f7-range-scale-font-size:12px;--f7-range-scale-font-weight:400;--f7-range-scale-label-offset:4px}.aurora{--f7-range-size:20px;--f7-range-bar-bg-color:#c7c7c7;--f7-range-bar-size:2px;--f7-range-bar-border-radius:2px;--f7-range-knob-size:16px;--f7-range-knob-box-shadow:none;--f7-range-label-size:20px;--f7-range-label-text-color:#fff;--f7-range-label-font-size:10px;--f7-range-label-font-weight:600;--f7-range-label-border-radius:4px;--f7-range-label-padding:0px 4px;--f7-range-scale-step-width:2px;--f7-range-scale-font-size:11px;--f7-range-scale-font-weight:500;--f7-range-scale-label-offset:2px}.range-slider{display:block;position:relative;align-self:center;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.range-slider input[type=range]{display:none}.range-slider.range-slider-horizontal{width:100%;height:var(--f7-range-size);touch-action:pan-y}.range-slider.range-slider-vertical{height:100%;width:var(--f7-range-size);touch-action:pan-x}.range-bar{position:absolute;overflow:hidden;background:var(--f7-range-bar-bg-color);border-radius:var(--f7-range-bar-border-radius)}.range-slider-vertical .range-bar{left:50%;top:0;height:100%;width:var(--f7-range-bar-size);margin-left:calc(-1 * var(--f7-range-bar-size)/ 2)}.range-slider-horizontal .range-bar{left:0;top:50%;width:100%;height:var(--f7-range-bar-size);margin-top:calc(-1 * var(--f7-range-bar-size)/ 2)}.range-bar-active{position:absolute;background:var(--f7-range-bar-active-bg-color,var(--f7-theme-color))}.range-slider-horizontal .range-bar-active{left:0;top:0;height:100%}.range-slider-vertical .range-bar-active{left:0;bottom:0;width:100%}.range-slider-vertical-reversed .range-bar-active{top:0;bottom:auto}.range-knob-wrap{z-index:20;position:absolute;height:var(--f7-range-knob-size);width:var(--f7-range-knob-size)}.range-slider-horizontal .range-knob-wrap{top:50%;margin-top:calc(-1 * var(--f7-range-knob-size)/ 2);margin-left:calc(-1 * var(--f7-range-knob-size)/ 2);left:0}.range-slider-vertical .range-knob-wrap{left:50%;margin-left:calc(-1 * var(--f7-range-knob-size)/ 2);bottom:0;margin-bottom:calc(-1 * var(--f7-range-knob-size)/ 2)}.range-slider-vertical-reversed .range-knob-wrap{bottom:auto;top:0;margin-bottom:0;margin-top:calc(-1 * var(--f7-range-knob-size)/ 2)}.range-knob{box-sizing:border-box;border-radius:50%;position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background:var(--f7-range-knob-color,var(--f7-range-knob-bg-color,var(--f7-theme-color)));box-shadow:var(--f7-range-knob-box-shadow)}.range-knob:after{content:'';position:absolute;left:50%;top:50%;width:44px;height:44px;margin-left:-22px;margin-top:-22px}.range-knob-label{position:absolute;left:50%;bottom:100%;text-align:center;transition-duration:120ms;transition-property:transform;box-sizing:border-box;transform:translateY(100%) scale(0);height:var(--f7-range-label-size);line-height:var(--f7-range-label-size);min-width:var(--f7-range-label-size);color:var(--f7-range-label-text-color);background-color:var(--f7-range-label-bg-color,var(--f7-theme-color));font-size:var(--f7-range-label-font-size);font-weight:var(--f7-range-label-font-weight);border-radius:var(--f7-range-label-border-radius);padding:var(--f7-range-label-padding)}.range-knob-active-state .range-knob-label{transform:translateY(0%) scale(1)}.range-scale{position:absolute}.range-slider-horizontal .range-scale{top:50%;left:0;width:100%;margin-top:calc(var(--f7-range-bar-size)/ 2)}.range-slider-vertical .range-scale{right:50%;top:0;height:100%;margin-right:calc(var(--f7-range-bar-size)/ 2)}.range-scale-step{position:absolute;box-sizing:border-box;display:flex;font-size:var(--f7-range-scale-font-size);font-weight:var(--f7-range-scale-font-weight);color:var(--f7-range-scale-text-color,var(--f7-range-bar-bg-color));line-height:1}.range-scale-step:before{content:'';position:absolute;background:var(--f7-range-scale-step-bg-color,var(--f7-range-bar-bg-color))}.range-slider-horizontal .range-scale-step{justify-content:center;align-items:flex-start;width:var(--f7-range-scale-step-width);height:var(--f7-range-scale-step-height);padding-top:calc(var(--f7-range-scale-step-height) + var(--f7-range-scale-label-offset));top:0;margin-left:calc(-1 * var(--f7-range-scale-step-width)/ 2)}.range-slider-horizontal .range-scale-step:before{left:0;top:0;width:100%;height:var(--f7-range-scale-step-height)}.range-slider-horizontal .range-scale-step:first-child{margin-left:0}.range-slider-horizontal .range-scale-step:last-child{margin-left:calc(-1 * var(--f7-range-scale-step-width))}.range-slider-vertical .range-scale-step{line-height:1;justify-content:flex-end;align-items:center;height:var(--f7-range-scale-step-width);width:var(--f7-range-scale-step-height);padding-right:calc(var(--f7-range-scale-step-height) + var(--f7-range-scale-label-offset));right:0;margin-bottom:calc(-1 * var(--f7-range-scale-step-width)/ 2)}.range-slider-vertical .range-scale-step:first-child{margin-bottom:0}.range-slider-vertical .range-scale-step:last-child{margin-bottom:calc(-1 * var(--f7-range-scale-step-width))}.range-slider-vertical .range-scale-step:before{right:0;top:0;height:100%;width:var(--f7-range-scale-step-height)}.range-scale-substep{--f7-range-scale-step-bg-color:var(--f7-range-scale-substep-bg-color, var(--f7-range-bar-bg-color));--f7-range-scale-step-width:var(--f7-range-scale-substep-width);--f7-range-scale-step-height:var(--f7-range-scale-substep-height)}.ios .range-knob-label{margin-bottom:6px;transform:translateX(-50%) translateY(100%) scale(0)}.ios .range-knob-active-state .range-knob-label{transform:translateX(-50%) translateY(0%) scale(1)}.md .range-knob{transition-duration:.2s;transition-property:transform,background-color}.md .range-knob-active-state .range-knob{transform:scale(1.5)}.md .range-slider-min:not(.range-slider-dual) .range-knob{background:#fff!important;border:2px solid var(--f7-range-bar-bg-color)}.md .range-knob-label{width:var(--f7-range-label-size);margin-left:calc(-1 * var(--f7-range-label-size)/ 2);margin-bottom:8px}.md .range-knob-label:before{content:'';left:50%;top:0px;margin-left:calc(-1 * var(--f7-range-label-size)/ 2);position:absolute;z-index:-1;width:var(--f7-range-label-size);height:var(--f7-range-label-size);background:var(--f7-range-label-bg-color,var(--f7-theme-color));transform:rotate(-45deg);border-radius:50% 50% 50% 0}.md .range-knob-active-state .range-knob-label{transform:translateY(0%) scale(1)}.md .range-slider-label .range-knob-active-state .range-knob{transform:scale(0)}.aurora .range-knob-label{margin-bottom:6px;transform:translateX(-50%) translateY(100%) scale(0)}.aurora .range-knob-active-state .range-knob-label{transform:translateX(-50%) translateY(0%) scale(1)}:root{--f7-stepper-fill-button-text-color:#fff;--f7-stepper-raised-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12),0 1px 2px rgba(0, 0, 0, 0.24);--f7-stepper-value-font-weight:500;--f7-stepper-border-width:2px;--f7-stepper-small-border-width:2px}.ios{--f7-stepper-height:28px;--f7-stepper-border-radius:5px;--f7-stepper-large-height:44px;--f7-stepper-small-height:26px;--f7-stepper-value-font-size:17px}.md{--f7-stepper-height:36px;--f7-stepper-border-radius:4px;--f7-stepper-large-height:48px;--f7-stepper-small-height:28px;--f7-stepper-value-font-size:14px}.aurora{--f7-stepper-height:36px;--f7-stepper-border-radius:8px;--f7-stepper-large-height:48px;--f7-stepper-small-height:28px;--f7-stepper-value-font-size:14px}.stepper{--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.25);display:inline-flex;align-items:stretch;height:var(--f7-stepper-height);border-radius:var(--f7-stepper-border-radius)}.stepper-button,.stepper-button-minus,.stepper-button-plus{background-color:var(--f7-stepper-button-bg-color);width:40px;border-radius:var(--f7-stepper-border-radius);border:var(--f7-stepper-border-width) solid var(--f7-theme-color);color:var(--f7-stepper-button-text-color,var(--f7-theme-color));line-height:calc(var(--f7-stepper-height) - var(--f7-stepper-border-width, 0px));text-align:center;display:flex;justify-content:center;align-content:center;align-items:center;flex-shrink:0;box-sizing:border-box;position:relative;cursor:pointer}.stepper-button-minus.active-state,.stepper-button-plus.active-state,.stepper-button.active-state{background-color:var(--f7-stepper-button-pressed-bg-color,rgba(var(--f7-theme-color-rgb),.15));color:var(--f7-stepper-button-pressed-text-color,var(--f7-stepper-button-text-color,var(--f7-theme-color)))}.stepper-button-minus:first-child,.stepper-button-plus:first-child,.stepper-button:first-child{border-radius:var(--f7-stepper-border-radius) 0 0 var(--f7-stepper-border-radius)}.stepper-button-minus:last-child,.stepper-button-plus:last-child,.stepper-button:last-child{border-radius:0 var(--f7-stepper-border-radius) var(--f7-stepper-border-radius) 0}.stepper-button .icon,.stepper-button-minus .icon,.stepper-button-plus .icon{pointer-events:none}.stepper-button+.stepper-button,.stepper-button+.stepper-button-minus,.stepper-button+.stepper-button-plus,.stepper-button-minus+.stepper-button,.stepper-button-minus+.stepper-button-minus,.stepper-button-minus+.stepper-button-plus,.stepper-button-plus+.stepper-button,.stepper-button-plus+.stepper-button-minus,.stepper-button-plus+.stepper-button-plus{border-left:none}.stepper-button-minus,.stepper-button-plus{-webkit-user-select:none;-moz-user-select:none;user-select:none}.stepper-button-minus:after,.stepper-button-minus:before,.stepper-button-plus:after,.stepper-button-plus:before{content:'';position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background-color:var(--f7-stepper-button-text-color,var(--f7-theme-color));border-radius:2px}.stepper-button-minus:after,.stepper-button-plus:after{width:15px;height:2px}.stepper-button-plus:before{height:15px;width:2px}.stepper-value{display:flex;align-content:center;align-items:center;justify-content:center}.stepper-input-wrap,.stepper-value{flex-shrink:1;text-align:center;border-top:var(--f7-stepper-border-width) solid var(--f7-theme-color);border-bottom:var(--f7-stepper-border-width) solid var(--f7-theme-color)}.stepper .stepper-input-wrap input,.stepper-value{width:45px;color:var(--f7-stepper-value-text-color,var(--f7-theme-color));font-size:var(--f7-stepper-value-font-size);font-weight:var(--f7-stepper-value-font-weight);text-align:center}.stepper .stepper-input-wrap input{height:100%}.aurora .stepper-round-aurora,.ios .stepper-round-ios,.md .stepper-round-md,.stepper-round{--f7-stepper-border-radius:var(--f7-stepper-height)}.aurora .stepper-fill-aurora,.ios .stepper-fill-ios,.md .stepper-fill-md,.stepper-fill{--f7-stepper-button-bg-color:var(--f7-stepper-fill-button-bg-color, var(--f7-theme-color));--f7-stepper-button-text-color:var(--f7-stepper-fill-button-text-color);--f7-touch-ripple-color:var(--f7-touch-ripple-white)}.aurora .stepper-fill-aurora .stepper-button+.stepper-button,.aurora .stepper-fill-aurora .stepper-button-minus+.stepper-button-plus,.aurora .stepper-raised-aurora .stepper-button+.stepper-button,.aurora .stepper-raised-aurora .stepper-button-minus+.stepper-button-plus,.ios .stepper-fill-ios .stepper-button+.stepper-button,.ios .stepper-fill-ios .stepper-button-minus+.stepper-button-plus,.ios .stepper-raised-ios .stepper-button+.stepper-button,.ios .stepper-raised-ios .stepper-button-minus+.stepper-button-plus,.md .stepper-fill-md .stepper-button+.stepper-button,.md .stepper-fill-md .stepper-button-minus+.stepper-button-plus,.md .stepper-raised-md .stepper-button+.stepper-button,.md .stepper-raised-md .stepper-button-minus+.stepper-button-plus,.stepper-fill .stepper-button+.stepper-button,.stepper-fill .stepper-button-minus+.stepper-button-plus,.stepper-raised .stepper-button+.stepper-button,.stepper-raised .stepper-button-minus+.stepper-button-plus{border-left:1px solid rgba(0,0,0,.1)}.aurora .stepper-fill-aurora .stepper-button+.stepper-button.active-state,.aurora .stepper-fill-aurora .stepper-button-minus+.stepper-button-plus.active-state,.ios .stepper-fill-ios .stepper-button+.stepper-button.active-state,.ios .stepper-fill-ios .stepper-button-minus+.stepper-button-plus.active-state,.md .stepper-fill-md .stepper-button+.stepper-button.active-state,.md .stepper-fill-md .stepper-button-minus+.stepper-button-plus.active-state,.stepper-fill .stepper-button+.stepper-button.active-state,.stepper-fill .stepper-button-minus+.stepper-button-plus.active-state{border-left-color:var(--f7-stepper-button-pressed-bg-color)}.aurora .stepper-raised-aurora:not(.stepper-fill-aurora):not(.stepper-fill) .stepper-input-wrap,.aurora .stepper-raised-aurora:not(.stepper-fill-aurora):not(.stepper-fill) .stepper-value,.ios .stepper-raised-ios:not(.stepper-fill-ios):not(.stepper-fill) .stepper-input-wrap,.ios .stepper-raised-ios:not(.stepper-fill-ios):not(.stepper-fill) .stepper-value,.md .stepper-raised-md:not(.stepper-fill-md):not(.stepper-fill) .stepper-input-wrap,.md .stepper-raised-md:not(.stepper-fill-md):not(.stepper-fill) .stepper-value,.stepper-raised:not(.stepper-fill) .stepper-input-wrap,.stepper-raised:not(.stepper-fill) .stepper-value{border-left:1px solid rgba(0,0,0,.1);border-right:1px solid rgba(0,0,0,.1)}.aurora .stepper-large-aurora,.ios .stepper-large-ios,.md .stepper-large-md,.stepper-large{--f7-stepper-height:var(--f7-stepper-large-height)}.aurora .stepper-small-aurora,.ios .stepper-small-ios,.md .stepper-small-md,.stepper-small{--f7-stepper-border-width:var(--f7-stepper-small-border-width);--f7-stepper-height:var(--f7-stepper-small-height)}.ios .stepper-fill.stepper-small,.ios .stepper-fill.stepper-small-ios{--f7-stepper-button-pressed-bg-color:transparent;--f7-stepper-button-pressed-text-color:var(--f7-theme-color)}.aurora .stepper-raised-aurora,.ios .stepper-raised-ios,.md .stepper-raised-md,.stepper-raised{--f7-stepper-border-width:0;box-shadow:var(--f7-stepper-raised-box-shadow)}.ios .stepper-button .f7-icons,.ios .stepper-button-minus .f7-icons,.ios .stepper-button-plus .f7-icons{font-size:22px}.ios .stepper-fill,.ios .stepper-fill-ios{--f7-stepper-button-pressed-bg-color:var(--f7-stepper-fill-button-pressed-bg-color, var(--f7-theme-color-tint))}.ios .stepper-small-ios.stepper-raised,.ios .stepper-small-ios.stepper-raised-ios,.ios .stepper-small.stepper-raised,.ios .stepper-small.stepper-raised-ios{--f7-stepper-border-width:0px}.ios .stepper-small .stepper-button,.ios .stepper-small .stepper-button-minus,.ios .stepper-small .stepper-button-plus,.ios .stepper-small-ios .stepper-button,.ios .stepper-small-ios .stepper-button-minus,.ios .stepper-small-ios .stepper-button-plus{transition-duration:.2s}.ios .stepper-small .stepper-button-minus.active-state:after,.ios .stepper-small .stepper-button-minus.active-state:before,.ios .stepper-small .stepper-button-plus.active-state:after,.ios .stepper-small .stepper-button-plus.active-state:before,.ios .stepper-small .stepper-button.active-state:after,.ios .stepper-small .stepper-button.active-state:before,.ios .stepper-small-ios .stepper-button-minus.active-state:after,.ios .stepper-small-ios .stepper-button-minus.active-state:before,.ios .stepper-small-ios .stepper-button-plus.active-state:after,.ios .stepper-small-ios .stepper-button-plus.active-state:before,.ios .stepper-small-ios .stepper-button.active-state:after,.ios .stepper-small-ios .stepper-button.active-state:before{transition-duration:.2s;background-color:var(--f7-theme-color)}.md .stepper-button,.md .stepper-button-minus,.md .stepper-button-plus{transition-duration:.3s;transform:translate3d(0,0,0);overflow:hidden}.md .stepper-fill,.md .stepper-fill-md{--f7-stepper-button-pressed-bg-color:var(--f7-stepper-fill-button-pressed-bg-color, var(--f7-theme-color-shade))}.aurora .stepper-button,.aurora .stepper-button-minus,.aurora .stepper-button-plus{transition-duration:.1s;transform:translate3d(0,0,0);overflow:hidden}.aurora.device-desktop .stepper-button-minus:not(.active-state):not(.no-hover):hover,.aurora.device-desktop .stepper-button-plus:not(.active-state):not(.no-hover):hover,.aurora.device-desktop .stepper-button:not(.active-state):not(.no-hover):hover{background-color:var(--f7-stepper-button-hover-bg-color,rgba(var(--f7-theme-color-rgb),.07))}.aurora .stepper-fill,.aurora .stepper-fill-aurora{--f7-stepper-button-hover-bg-color:var(--f7-stepper-button-fill-hover-bg-color, var(--f7-theme-color-tint));--f7-stepper-button-pressed-bg-color:var(--f7-stepper-fill-button-pressed-bg-color, var(--f7-theme-color-shade))}.smart-select select{display:none}.smart-select .item-after{max-width:70%;overflow:hidden;text-overflow:ellipsis;position:relative;display:block}.smart-select-sheet .list ul,.smart-select-sheet .page,.smart-select-sheet .sheet-modal-inner{background:var(--f7-smart-select-sheet-bg,var(--f7-list-bg-color))}.smart-select-sheet .toolbar:after{content:'';position:absolute;background-color:var(--f7-smart-select-sheet-toolbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.smart-select-sheet .toolbar:after{display:block}.smart-select-sheet .list{margin:0}.smart-select-sheet .list ul:after,.smart-select-sheet .list ul:before{display:none!important}.smart-select-popover .popover-inner{max-height:40vh}:root{--f7-grid-gap:16px;--f7-grid-row-gap:0px;--f7-grid-resize-handler-bg-color:rgba(0, 0, 0, 0.35)}:root .theme-dark,:root.theme-dark{--f7-grid-resize-handler-bg-color:rgba(255, 255, 255, 0.35)}.row{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:flex-start;--f7-cols-per-row:1}.row+.row{margin-top:var(--f7-grid-row-gap)}.row>.col,.row>[class*=col-]{box-sizing:border-box;width:calc((100% - var(--f7-grid-gap) * (var(--f7-cols-per-row) - 1))/ var(--f7-cols-per-row))}.row>.col.resizable,.row>[class*=col-].resizable{position:relative}.row.resizable{position:relative}.row.no-gap{--f7-grid-gap:0px;--f7-grid-row-gap:0px}.row .col-5{--f7-cols-per-row:20}.row .col-10{--f7-cols-per-row:10}.row .col-15{--f7-cols-per-row:6.66666667}.row .col-20{--f7-cols-per-row:5}.row .col-25{--f7-cols-per-row:4}.row .col-30{--f7-cols-per-row:3.33333333}.row .col-33{--f7-cols-per-row:3}.row .col-35{--f7-cols-per-row:2.85714286}.row .col-40{--f7-cols-per-row:2.5}.row .col-45{--f7-cols-per-row:2.22222222}.row .col-50{--f7-cols-per-row:2}.row .col-55{--f7-cols-per-row:1.81818182}.row .col-60{--f7-cols-per-row:1.66666667}.row .col-65{--f7-cols-per-row:1.53846154}.row .col-66{--f7-cols-per-row:1.5}.row .col-70{--f7-cols-per-row:1.42857143}.row .col-75{--f7-cols-per-row:1.33333333}.row .col-80{--f7-cols-per-row:1.25}.row .col-85{--f7-cols-per-row:1.17647059}.row .col-90{--f7-cols-per-row:1.11111111}.row .col-95{--f7-cols-per-row:1.05263158}.row .col-100{--f7-cols-per-row:1}.row .col:nth-last-of-type(1),.row .col:nth-last-of-type(1)~.col{--f7-cols-per-row:1}.row .col:nth-last-of-type(2),.row .col:nth-last-of-type(2)~.col{--f7-cols-per-row:2}.row .col:nth-last-of-type(3),.row .col:nth-last-of-type(3)~.col{--f7-cols-per-row:3}.row .col:nth-last-of-type(4),.row .col:nth-last-of-type(4)~.col{--f7-cols-per-row:4}.row .col:nth-last-of-type(5),.row .col:nth-last-of-type(5)~.col{--f7-cols-per-row:5}.row .col:nth-last-of-type(6),.row .col:nth-last-of-type(6)~.col{--f7-cols-per-row:6}.row .col:nth-last-of-type(7),.row .col:nth-last-of-type(7)~.col{--f7-cols-per-row:7}.row .col:nth-last-of-type(8),.row .col:nth-last-of-type(8)~.col{--f7-cols-per-row:8}.row .col:nth-last-of-type(9),.row .col:nth-last-of-type(9)~.col{--f7-cols-per-row:9}.row .col:nth-last-of-type(10),.row .col:nth-last-of-type(10)~.col{--f7-cols-per-row:10}.row .col:nth-last-of-type(11),.row .col:nth-last-of-type(11)~.col{--f7-cols-per-row:11}.row .col:nth-last-of-type(12),.row .col:nth-last-of-type(12)~.col{--f7-cols-per-row:12}.row .col:nth-last-of-type(13),.row .col:nth-last-of-type(13)~.col{--f7-cols-per-row:13}.row .col:nth-last-of-type(14),.row .col:nth-last-of-type(14)~.col{--f7-cols-per-row:14}.row .col:nth-last-of-type(15),.row .col:nth-last-of-type(15)~.col{--f7-cols-per-row:15}.row .col:nth-last-of-type(16),.row .col:nth-last-of-type(16)~.col{--f7-cols-per-row:16}.row .col:nth-last-of-type(17),.row .col:nth-last-of-type(17)~.col{--f7-cols-per-row:17}.row .col:nth-last-of-type(18),.row .col:nth-last-of-type(18)~.col{--f7-cols-per-row:18}.row .col:nth-last-of-type(19),.row .col:nth-last-of-type(19)~.col{--f7-cols-per-row:19}.row .col:nth-last-of-type(20),.row .col:nth-last-of-type(20)~.col{--f7-cols-per-row:20}.row .col:nth-last-of-type(21),.row .col:nth-last-of-type(21)~.col{--f7-cols-per-row:21}.row .col:nth-last-of-type(22),.row .col:nth-last-of-type(22)~.col{--f7-cols-per-row:22}@media (min-width:480px){.row .xsmall-5{--f7-cols-per-row:20}.row .xsmall-10{--f7-cols-per-row:10}.row .xsmall-15{--f7-cols-per-row:6.66666667}.row .xsmall-20{--f7-cols-per-row:5}.row .xsmall-25{--f7-cols-per-row:4}.row .xsmall-30{--f7-cols-per-row:3.33333333}.row .xsmall-33{--f7-cols-per-row:3}.row .xsmall-35{--f7-cols-per-row:2.85714286}.row .xsmall-40{--f7-cols-per-row:2.5}.row .xsmall-45{--f7-cols-per-row:2.22222222}.row .xsmall-50{--f7-cols-per-row:2}.row .xsmall-55{--f7-cols-per-row:1.81818182}.row .xsmall-60{--f7-cols-per-row:1.66666667}.row .xsmall-65{--f7-cols-per-row:1.53846154}.row .xsmall-66{--f7-cols-per-row:1.5}.row .xsmall-70{--f7-cols-per-row:1.42857143}.row .xsmall-75{--f7-cols-per-row:1.33333333}.row .xsmall-80{--f7-cols-per-row:1.25}.row .xsmall-85{--f7-cols-per-row:1.17647059}.row .xsmall-90{--f7-cols-per-row:1.11111111}.row .xsmall-95{--f7-cols-per-row:1.05263158}.row .xsmall-100{--f7-cols-per-row:1}.row .xsmall-auto:nth-last-of-type(1),.row .xsmall-auto:nth-last-of-type(1)~.xsmall-auto{--f7-cols-per-row:1}.row .xsmall-auto:nth-last-of-type(2),.row .xsmall-auto:nth-last-of-type(2)~.xsmall-auto{--f7-cols-per-row:2}.row .xsmall-auto:nth-last-of-type(3),.row .xsmall-auto:nth-last-of-type(3)~.xsmall-auto{--f7-cols-per-row:3}.row .xsmall-auto:nth-last-of-type(4),.row .xsmall-auto:nth-last-of-type(4)~.xsmall-auto{--f7-cols-per-row:4}.row .xsmall-auto:nth-last-of-type(5),.row .xsmall-auto:nth-last-of-type(5)~.xsmall-auto{--f7-cols-per-row:5}.row .xsmall-auto:nth-last-of-type(6),.row .xsmall-auto:nth-last-of-type(6)~.xsmall-auto{--f7-cols-per-row:6}.row .xsmall-auto:nth-last-of-type(7),.row .xsmall-auto:nth-last-of-type(7)~.xsmall-auto{--f7-cols-per-row:7}.row .xsmall-auto:nth-last-of-type(8),.row .xsmall-auto:nth-last-of-type(8)~.xsmall-auto{--f7-cols-per-row:8}.row .xsmall-auto:nth-last-of-type(9),.row .xsmall-auto:nth-last-of-type(9)~.xsmall-auto{--f7-cols-per-row:9}.row .xsmall-auto:nth-last-of-type(10),.row .xsmall-auto:nth-last-of-type(10)~.xsmall-auto{--f7-cols-per-row:10}.row .xsmall-auto:nth-last-of-type(11),.row .xsmall-auto:nth-last-of-type(11)~.xsmall-auto{--f7-cols-per-row:11}.row .xsmall-auto:nth-last-of-type(12),.row .xsmall-auto:nth-last-of-type(12)~.xsmall-auto{--f7-cols-per-row:12}.row .xsmall-auto:nth-last-of-type(13),.row .xsmall-auto:nth-last-of-type(13)~.xsmall-auto{--f7-cols-per-row:13}.row .xsmall-auto:nth-last-of-type(14),.row .xsmall-auto:nth-last-of-type(14)~.xsmall-auto{--f7-cols-per-row:14}.row .xsmall-auto:nth-last-of-type(15),.row .xsmall-auto:nth-last-of-type(15)~.xsmall-auto{--f7-cols-per-row:15}.row .xsmall-auto:nth-last-of-type(16),.row .xsmall-auto:nth-last-of-type(16)~.xsmall-auto{--f7-cols-per-row:16}.row .xsmall-auto:nth-last-of-type(17),.row .xsmall-auto:nth-last-of-type(17)~.xsmall-auto{--f7-cols-per-row:17}.row .xsmall-auto:nth-last-of-type(18),.row .xsmall-auto:nth-last-of-type(18)~.xsmall-auto{--f7-cols-per-row:18}.row .xsmall-auto:nth-last-of-type(19),.row .xsmall-auto:nth-last-of-type(19)~.xsmall-auto{--f7-cols-per-row:19}.row .xsmall-auto:nth-last-of-type(20),.row .xsmall-auto:nth-last-of-type(20)~.xsmall-auto{--f7-cols-per-row:20}.row .xsmall-auto:nth-last-of-type(21),.row .xsmall-auto:nth-last-of-type(21)~.xsmall-auto{--f7-cols-per-row:21}.row .xsmall-auto:nth-last-of-type(22),.row .xsmall-auto:nth-last-of-type(22)~.xsmall-auto{--f7-cols-per-row:22}}@media (min-width:568px){.row .small-5{--f7-cols-per-row:20}.row .small-10{--f7-cols-per-row:10}.row .small-15{--f7-cols-per-row:6.66666667}.row .small-20{--f7-cols-per-row:5}.row .small-25{--f7-cols-per-row:4}.row .small-30{--f7-cols-per-row:3.33333333}.row .small-33{--f7-cols-per-row:3}.row .small-35{--f7-cols-per-row:2.85714286}.row .small-40{--f7-cols-per-row:2.5}.row .small-45{--f7-cols-per-row:2.22222222}.row .small-50{--f7-cols-per-row:2}.row .small-55{--f7-cols-per-row:1.81818182}.row .small-60{--f7-cols-per-row:1.66666667}.row .small-65{--f7-cols-per-row:1.53846154}.row .small-66{--f7-cols-per-row:1.5}.row .small-70{--f7-cols-per-row:1.42857143}.row .small-75{--f7-cols-per-row:1.33333333}.row .small-80{--f7-cols-per-row:1.25}.row .small-85{--f7-cols-per-row:1.17647059}.row .small-90{--f7-cols-per-row:1.11111111}.row .small-95{--f7-cols-per-row:1.05263158}.row .small-100{--f7-cols-per-row:1}.row .small-auto:nth-last-of-type(1),.row .small-auto:nth-last-of-type(1)~.small-auto{--f7-cols-per-row:1}.row .small-auto:nth-last-of-type(2),.row .small-auto:nth-last-of-type(2)~.small-auto{--f7-cols-per-row:2}.row .small-auto:nth-last-of-type(3),.row .small-auto:nth-last-of-type(3)~.small-auto{--f7-cols-per-row:3}.row .small-auto:nth-last-of-type(4),.row .small-auto:nth-last-of-type(4)~.small-auto{--f7-cols-per-row:4}.row .small-auto:nth-last-of-type(5),.row .small-auto:nth-last-of-type(5)~.small-auto{--f7-cols-per-row:5}.row .small-auto:nth-last-of-type(6),.row .small-auto:nth-last-of-type(6)~.small-auto{--f7-cols-per-row:6}.row .small-auto:nth-last-of-type(7),.row .small-auto:nth-last-of-type(7)~.small-auto{--f7-cols-per-row:7}.row .small-auto:nth-last-of-type(8),.row .small-auto:nth-last-of-type(8)~.small-auto{--f7-cols-per-row:8}.row .small-auto:nth-last-of-type(9),.row .small-auto:nth-last-of-type(9)~.small-auto{--f7-cols-per-row:9}.row .small-auto:nth-last-of-type(10),.row .small-auto:nth-last-of-type(10)~.small-auto{--f7-cols-per-row:10}.row .small-auto:nth-last-of-type(11),.row .small-auto:nth-last-of-type(11)~.small-auto{--f7-cols-per-row:11}.row .small-auto:nth-last-of-type(12),.row .small-auto:nth-last-of-type(12)~.small-auto{--f7-cols-per-row:12}.row .small-auto:nth-last-of-type(13),.row .small-auto:nth-last-of-type(13)~.small-auto{--f7-cols-per-row:13}.row .small-auto:nth-last-of-type(14),.row .small-auto:nth-last-of-type(14)~.small-auto{--f7-cols-per-row:14}.row .small-auto:nth-last-of-type(15),.row .small-auto:nth-last-of-type(15)~.small-auto{--f7-cols-per-row:15}.row .small-auto:nth-last-of-type(16),.row .small-auto:nth-last-of-type(16)~.small-auto{--f7-cols-per-row:16}.row .small-auto:nth-last-of-type(17),.row .small-auto:nth-last-of-type(17)~.small-auto{--f7-cols-per-row:17}.row .small-auto:nth-last-of-type(18),.row .small-auto:nth-last-of-type(18)~.small-auto{--f7-cols-per-row:18}.row .small-auto:nth-last-of-type(19),.row .small-auto:nth-last-of-type(19)~.small-auto{--f7-cols-per-row:19}.row .small-auto:nth-last-of-type(20),.row .small-auto:nth-last-of-type(20)~.small-auto{--f7-cols-per-row:20}.row .small-auto:nth-last-of-type(21),.row .small-auto:nth-last-of-type(21)~.small-auto{--f7-cols-per-row:21}.row .small-auto:nth-last-of-type(22),.row .small-auto:nth-last-of-type(22)~.small-auto{--f7-cols-per-row:22}}@media (min-width:768px){.row .medium-5{--f7-cols-per-row:20}.row .medium-10{--f7-cols-per-row:10}.row .medium-15{--f7-cols-per-row:6.66666667}.row .medium-20{--f7-cols-per-row:5}.row .medium-25{--f7-cols-per-row:4}.row .medium-30{--f7-cols-per-row:3.33333333}.row .medium-33{--f7-cols-per-row:3}.row .medium-35{--f7-cols-per-row:2.85714286}.row .medium-40{--f7-cols-per-row:2.5}.row .medium-45{--f7-cols-per-row:2.22222222}.row .medium-50{--f7-cols-per-row:2}.row .medium-55{--f7-cols-per-row:1.81818182}.row .medium-60{--f7-cols-per-row:1.66666667}.row .medium-65{--f7-cols-per-row:1.53846154}.row .medium-66{--f7-cols-per-row:1.5}.row .medium-70{--f7-cols-per-row:1.42857143}.row .medium-75{--f7-cols-per-row:1.33333333}.row .medium-80{--f7-cols-per-row:1.25}.row .medium-85{--f7-cols-per-row:1.17647059}.row .medium-90{--f7-cols-per-row:1.11111111}.row .medium-95{--f7-cols-per-row:1.05263158}.row .medium-100{--f7-cols-per-row:1}.row .medium-auto:nth-last-of-type(1),.row .medium-auto:nth-last-of-type(1)~.medium-auto{--f7-cols-per-row:1}.row .medium-auto:nth-last-of-type(2),.row .medium-auto:nth-last-of-type(2)~.medium-auto{--f7-cols-per-row:2}.row .medium-auto:nth-last-of-type(3),.row .medium-auto:nth-last-of-type(3)~.medium-auto{--f7-cols-per-row:3}.row .medium-auto:nth-last-of-type(4),.row .medium-auto:nth-last-of-type(4)~.medium-auto{--f7-cols-per-row:4}.row .medium-auto:nth-last-of-type(5),.row .medium-auto:nth-last-of-type(5)~.medium-auto{--f7-cols-per-row:5}.row .medium-auto:nth-last-of-type(6),.row .medium-auto:nth-last-of-type(6)~.medium-auto{--f7-cols-per-row:6}.row .medium-auto:nth-last-of-type(7),.row .medium-auto:nth-last-of-type(7)~.medium-auto{--f7-cols-per-row:7}.row .medium-auto:nth-last-of-type(8),.row .medium-auto:nth-last-of-type(8)~.medium-auto{--f7-cols-per-row:8}.row .medium-auto:nth-last-of-type(9),.row .medium-auto:nth-last-of-type(9)~.medium-auto{--f7-cols-per-row:9}.row .medium-auto:nth-last-of-type(10),.row .medium-auto:nth-last-of-type(10)~.medium-auto{--f7-cols-per-row:10}.row .medium-auto:nth-last-of-type(11),.row .medium-auto:nth-last-of-type(11)~.medium-auto{--f7-cols-per-row:11}.row .medium-auto:nth-last-of-type(12),.row .medium-auto:nth-last-of-type(12)~.medium-auto{--f7-cols-per-row:12}.row .medium-auto:nth-last-of-type(13),.row .medium-auto:nth-last-of-type(13)~.medium-auto{--f7-cols-per-row:13}.row .medium-auto:nth-last-of-type(14),.row .medium-auto:nth-last-of-type(14)~.medium-auto{--f7-cols-per-row:14}.row .medium-auto:nth-last-of-type(15),.row .medium-auto:nth-last-of-type(15)~.medium-auto{--f7-cols-per-row:15}.row .medium-auto:nth-last-of-type(16),.row .medium-auto:nth-last-of-type(16)~.medium-auto{--f7-cols-per-row:16}.row .medium-auto:nth-last-of-type(17),.row .medium-auto:nth-last-of-type(17)~.medium-auto{--f7-cols-per-row:17}.row .medium-auto:nth-last-of-type(18),.row .medium-auto:nth-last-of-type(18)~.medium-auto{--f7-cols-per-row:18}.row .medium-auto:nth-last-of-type(19),.row .medium-auto:nth-last-of-type(19)~.medium-auto{--f7-cols-per-row:19}.row .medium-auto:nth-last-of-type(20),.row .medium-auto:nth-last-of-type(20)~.medium-auto{--f7-cols-per-row:20}.row .medium-auto:nth-last-of-type(21),.row .medium-auto:nth-last-of-type(21)~.medium-auto{--f7-cols-per-row:21}.row .medium-auto:nth-last-of-type(22),.row .medium-auto:nth-last-of-type(22)~.medium-auto{--f7-cols-per-row:22}}@media (min-width:1024px){.row .large-5{--f7-cols-per-row:20}.row .large-10{--f7-cols-per-row:10}.row .large-15{--f7-cols-per-row:6.66666667}.row .large-20{--f7-cols-per-row:5}.row .large-25{--f7-cols-per-row:4}.row .large-30{--f7-cols-per-row:3.33333333}.row .large-33{--f7-cols-per-row:3}.row .large-35{--f7-cols-per-row:2.85714286}.row .large-40{--f7-cols-per-row:2.5}.row .large-45{--f7-cols-per-row:2.22222222}.row .large-50{--f7-cols-per-row:2}.row .large-55{--f7-cols-per-row:1.81818182}.row .large-60{--f7-cols-per-row:1.66666667}.row .large-65{--f7-cols-per-row:1.53846154}.row .large-66{--f7-cols-per-row:1.5}.row .large-70{--f7-cols-per-row:1.42857143}.row .large-75{--f7-cols-per-row:1.33333333}.row .large-80{--f7-cols-per-row:1.25}.row .large-85{--f7-cols-per-row:1.17647059}.row .large-90{--f7-cols-per-row:1.11111111}.row .large-95{--f7-cols-per-row:1.05263158}.row .large-100{--f7-cols-per-row:1}.row .large-auto:nth-last-of-type(1),.row .large-auto:nth-last-of-type(1)~.large-auto{--f7-cols-per-row:1}.row .large-auto:nth-last-of-type(2),.row .large-auto:nth-last-of-type(2)~.large-auto{--f7-cols-per-row:2}.row .large-auto:nth-last-of-type(3),.row .large-auto:nth-last-of-type(3)~.large-auto{--f7-cols-per-row:3}.row .large-auto:nth-last-of-type(4),.row .large-auto:nth-last-of-type(4)~.large-auto{--f7-cols-per-row:4}.row .large-auto:nth-last-of-type(5),.row .large-auto:nth-last-of-type(5)~.large-auto{--f7-cols-per-row:5}.row .large-auto:nth-last-of-type(6),.row .large-auto:nth-last-of-type(6)~.large-auto{--f7-cols-per-row:6}.row .large-auto:nth-last-of-type(7),.row .large-auto:nth-last-of-type(7)~.large-auto{--f7-cols-per-row:7}.row .large-auto:nth-last-of-type(8),.row .large-auto:nth-last-of-type(8)~.large-auto{--f7-cols-per-row:8}.row .large-auto:nth-last-of-type(9),.row .large-auto:nth-last-of-type(9)~.large-auto{--f7-cols-per-row:9}.row .large-auto:nth-last-of-type(10),.row .large-auto:nth-last-of-type(10)~.large-auto{--f7-cols-per-row:10}.row .large-auto:nth-last-of-type(11),.row .large-auto:nth-last-of-type(11)~.large-auto{--f7-cols-per-row:11}.row .large-auto:nth-last-of-type(12),.row .large-auto:nth-last-of-type(12)~.large-auto{--f7-cols-per-row:12}.row .large-auto:nth-last-of-type(13),.row .large-auto:nth-last-of-type(13)~.large-auto{--f7-cols-per-row:13}.row .large-auto:nth-last-of-type(14),.row .large-auto:nth-last-of-type(14)~.large-auto{--f7-cols-per-row:14}.row .large-auto:nth-last-of-type(15),.row .large-auto:nth-last-of-type(15)~.large-auto{--f7-cols-per-row:15}.row .large-auto:nth-last-of-type(16),.row .large-auto:nth-last-of-type(16)~.large-auto{--f7-cols-per-row:16}.row .large-auto:nth-last-of-type(17),.row .large-auto:nth-last-of-type(17)~.large-auto{--f7-cols-per-row:17}.row .large-auto:nth-last-of-type(18),.row .large-auto:nth-last-of-type(18)~.large-auto{--f7-cols-per-row:18}.row .large-auto:nth-last-of-type(19),.row .large-auto:nth-last-of-type(19)~.large-auto{--f7-cols-per-row:19}.row .large-auto:nth-last-of-type(20),.row .large-auto:nth-last-of-type(20)~.large-auto{--f7-cols-per-row:20}.row .large-auto:nth-last-of-type(21),.row .large-auto:nth-last-of-type(21)~.large-auto{--f7-cols-per-row:21}.row .large-auto:nth-last-of-type(22),.row .large-auto:nth-last-of-type(22)~.large-auto{--f7-cols-per-row:22}}@media (min-width:1200px){.row .xlarge-5{--f7-cols-per-row:20}.row .xlarge-10{--f7-cols-per-row:10}.row .xlarge-15{--f7-cols-per-row:6.66666667}.row .xlarge-20{--f7-cols-per-row:5}.row .xlarge-25{--f7-cols-per-row:4}.row .xlarge-30{--f7-cols-per-row:3.33333333}.row .xlarge-33{--f7-cols-per-row:3}.row .xlarge-35{--f7-cols-per-row:2.85714286}.row .xlarge-40{--f7-cols-per-row:2.5}.row .xlarge-45{--f7-cols-per-row:2.22222222}.row .xlarge-50{--f7-cols-per-row:2}.row .xlarge-55{--f7-cols-per-row:1.81818182}.row .xlarge-60{--f7-cols-per-row:1.66666667}.row .xlarge-65{--f7-cols-per-row:1.53846154}.row .xlarge-66{--f7-cols-per-row:1.5}.row .xlarge-70{--f7-cols-per-row:1.42857143}.row .xlarge-75{--f7-cols-per-row:1.33333333}.row .xlarge-80{--f7-cols-per-row:1.25}.row .xlarge-85{--f7-cols-per-row:1.17647059}.row .xlarge-90{--f7-cols-per-row:1.11111111}.row .xlarge-95{--f7-cols-per-row:1.05263158}.row .xlarge-100{--f7-cols-per-row:1}.row .xlarge-auto:nth-last-of-type(1),.row .xlarge-auto:nth-last-of-type(1)~.xlarge-auto{--f7-cols-per-row:1}.row .xlarge-auto:nth-last-of-type(2),.row .xlarge-auto:nth-last-of-type(2)~.xlarge-auto{--f7-cols-per-row:2}.row .xlarge-auto:nth-last-of-type(3),.row .xlarge-auto:nth-last-of-type(3)~.xlarge-auto{--f7-cols-per-row:3}.row .xlarge-auto:nth-last-of-type(4),.row .xlarge-auto:nth-last-of-type(4)~.xlarge-auto{--f7-cols-per-row:4}.row .xlarge-auto:nth-last-of-type(5),.row .xlarge-auto:nth-last-of-type(5)~.xlarge-auto{--f7-cols-per-row:5}.row .xlarge-auto:nth-last-of-type(6),.row .xlarge-auto:nth-last-of-type(6)~.xlarge-auto{--f7-cols-per-row:6}.row .xlarge-auto:nth-last-of-type(7),.row .xlarge-auto:nth-last-of-type(7)~.xlarge-auto{--f7-cols-per-row:7}.row .xlarge-auto:nth-last-of-type(8),.row .xlarge-auto:nth-last-of-type(8)~.xlarge-auto{--f7-cols-per-row:8}.row .xlarge-auto:nth-last-of-type(9),.row .xlarge-auto:nth-last-of-type(9)~.xlarge-auto{--f7-cols-per-row:9}.row .xlarge-auto:nth-last-of-type(10),.row .xlarge-auto:nth-last-of-type(10)~.xlarge-auto{--f7-cols-per-row:10}.row .xlarge-auto:nth-last-of-type(11),.row .xlarge-auto:nth-last-of-type(11)~.xlarge-auto{--f7-cols-per-row:11}.row .xlarge-auto:nth-last-of-type(12),.row .xlarge-auto:nth-last-of-type(12)~.xlarge-auto{--f7-cols-per-row:12}.row .xlarge-auto:nth-last-of-type(13),.row .xlarge-auto:nth-last-of-type(13)~.xlarge-auto{--f7-cols-per-row:13}.row .xlarge-auto:nth-last-of-type(14),.row .xlarge-auto:nth-last-of-type(14)~.xlarge-auto{--f7-cols-per-row:14}.row .xlarge-auto:nth-last-of-type(15),.row .xlarge-auto:nth-last-of-type(15)~.xlarge-auto{--f7-cols-per-row:15}.row .xlarge-auto:nth-last-of-type(16),.row .xlarge-auto:nth-last-of-type(16)~.xlarge-auto{--f7-cols-per-row:16}.row .xlarge-auto:nth-last-of-type(17),.row .xlarge-auto:nth-last-of-type(17)~.xlarge-auto{--f7-cols-per-row:17}.row .xlarge-auto:nth-last-of-type(18),.row .xlarge-auto:nth-last-of-type(18)~.xlarge-auto{--f7-cols-per-row:18}.row .xlarge-auto:nth-last-of-type(19),.row .xlarge-auto:nth-last-of-type(19)~.xlarge-auto{--f7-cols-per-row:19}.row .xlarge-auto:nth-last-of-type(20),.row .xlarge-auto:nth-last-of-type(20)~.xlarge-auto{--f7-cols-per-row:20}.row .xlarge-auto:nth-last-of-type(21),.row .xlarge-auto:nth-last-of-type(21)~.xlarge-auto{--f7-cols-per-row:21}.row .xlarge-auto:nth-last-of-type(22),.row .xlarge-auto:nth-last-of-type(22)~.xlarge-auto{--f7-cols-per-row:22}}.row .resize-handler{position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:100}.row .resize-handler:before{content:'';position:absolute}.row .resize-handler:after{content:'';position:absolute;border-radius:4px;background:var(--f7-grid-resize-handler-bg-color)}.row>.resize-handler{width:100%;height:var(--f7-grid-row-gap);left:0;top:100%;cursor:row-resize}.row>.resize-handler:before{left:0%;top:50%;height:12px;width:100%;min-height:var(--f7-grid-row-gap);transform:translateY(-50%)}.row>.resize-handler:after{height:4px;margin-top:-2px;width:80%;max-width:20px;left:50%;top:50%;transform:translateX(-50%)}.col>.resize-handler,[class*=col-]>.resize-handler{width:var(--f7-grid-gap);left:100%;top:0;height:100%;cursor:col-resize}.col>.resize-handler:before,[class*=col-]>.resize-handler:before{left:50%;top:0;height:100%;width:12px;min-width:var(--f7-grid-gap);transform:translateX(-50%)}.col>.resize-handler:after,[class*=col-]>.resize-handler:after{width:4px;margin-left:-2px;height:80%;max-height:20px;border-radius:4px;left:50%;top:50%;transform:translateY(-50%)}.row .col:last-child>.resize-handler,.row .col:last-of-type>.resize-handler,.row [class*=col-]:last-child>.resize-handler,.row [class*=col-]:last-of-type>.resize-handler,.row:last-child>.resize-handler,.row:last-of-type>.resize-handler{display:none}:root{--f7-calendar-height:340px;--f7-calendar-sheet-landscape-height:220px;--f7-calendar-popover-width:320px;--f7-calendar-popover-height:320px;--f7-calendar-modal-height:420px;--f7-calendar-modal-max-width:380px;--f7-calendar-modal-border-radius:4px;--f7-calendar-footer-padding:0 8px;--f7-calendar-week-header-font-size:11px;--f7-calendar-selected-text-color:#fff;--f7-calendar-prev-next-text-color:#b8b8b8;--f7-calendar-disabled-text-color:#d4d4d4;--f7-calendar-event-dot-size:4px;--f7-calendar-time-selector-height:28px;--f7-calendar-day-text-color:#000;--f7-calendar-sheet-bg-color:#fff;--f7-calendar-modal-bg-color:#fff;--f7-calendar-picker-bg-color:#fff;--f7-calendar-picker-pressed-bg-color:rgba(0, 0, 0, 0.1);--f7-calendar-picker-hover-bg-color:rgba(0, 0, 0, 0.03);--f7-calendar-time-selector-bg-color:rgba(0, 0, 0, 0.1)}:root .theme-dark,:root.theme-dark{--f7-calendar-sheet-border-color:var(--f7-bars-border-color);--f7-calendar-modal-bg-color:#121212;--f7-calendar-sheet-bg-color:#121212;--f7-calendar-picker-bg-color:#1c1c1d;--f7-calendar-picker-pressed-bg-color:rgba(255, 255, 255, 0.08);--f7-calendar-picker-hover-bg-color:rgba(255, 255, 255, 0.03);--f7-calendar-time-selector-bg-color:rgba(255, 255, 255, 0.1)}.ios{--f7-calendar-sheet-border-color:#929499;--f7-calendar-header-height:44px;--f7-calendar-header-font-size:17px;--f7-calendar-header-font-weight:600;--f7-calendar-header-padding:0 8px;--f7-calendar-footer-height:44px;--f7-calendar-footer-font-size:17px;--f7-calendar-week-header-height:18px;--f7-calendar-day-font-size:15px;--f7-calendar-day-size:30px;--f7-calendar-picker-font-size:17px;--f7-calendar-time-selector-font-size:17px;--f7-calendar-row-border-color:rgba(0, 0, 0, 0.25);--f7-calendar-today-text-color:#000;--f7-calendar-today-bg-color:#e3e3e3}.ios .theme-dark,.ios.theme-dark{--f7-calendar-row-border-color:var(--f7-bars-border-color);--f7-calendar-day-text-color:#fff;--f7-calendar-today-text-color:#fff;--f7-calendar-today-bg-color:#333}.md{--f7-calendar-sheet-border-color:#ccc;--f7-calendar-header-height:56px;--f7-calendar-header-font-size:20px;--f7-calendar-header-font-weight:400;--f7-calendar-header-padding:0 24px;--f7-calendar-footer-height:48px;--f7-calendar-footer-font-size:14px;--f7-calendar-week-header-height:24px;--f7-calendar-row-border-color:transparent;--f7-calendar-day-font-size:14px;--f7-calendar-today-bg-color:none;--f7-calendar-day-size:32px;--f7-calendar-picker-font-size:14px;--f7-calendar-time-selector-font-size:14px}.md .theme-dark,.md.theme-dark{--f7-calendar-day-text-color:rgba(255, 255, 255, 0.87)}.aurora{--f7-calendar-sheet-border-color:#ccc;--f7-calendar-header-height:56px;--f7-calendar-header-font-size:18px;--f7-calendar-header-font-weight:600;--f7-calendar-header-padding:0 16px;--f7-calendar-footer-height:48px;--f7-calendar-footer-font-size:14px;--f7-calendar-footer-padding:0 16px;--f7-calendar-week-header-height:24px;--f7-calendar-day-font-size:14px;--f7-calendar-day-size:32px;--f7-calendar-picker-font-size:16px;--f7-calendar-time-selector-font-size:14px;--f7-calendar-row-border-color:transparent;--f7-calendar-today-text-color:#000;--f7-calendar-today-bg-color:#e3e3e3}.aurora .theme-dark,.aurora.theme-dark{--f7-calendar-day-text-color:#fff;--f7-calendar-today-text-color:#fff;--f7-calendar-today-bg-color:#333}.calendar{overflow:hidden;height:var(--f7-calendar-height);width:100%;display:flex;flex-direction:column}.aurora .calendar{--f7-toolbar-border-color:transparent;--f7-bars-border-color:transparent}.calendar.modal-in{display:flex}@media (orientation:landscape) and (max-height:415px){.calendar.calendar-sheet{height:var(--f7-calendar-sheet-landscape-height)}.calendar.calendar-modal{height:calc(100vh - var(--f7-navbar-height))}}.calendar.calendar-inline,.calendar.calendar-popover .calendar{position:relative}.calendar-sheet{--f7-sheet-border-color:var(--f7-calendar-sheet-border-color);background:var(--f7-calendar-sheet-bg-color);padding-bottom:var(--f7-safe-area-bottom);height:calc(var(--f7-calendar-height) + var(--f7-safe-area-bottom))}.calendar-sheet:before{z-index:600}.calendar-modal .toolbar:before,.calendar-popover .toolbar:before,.calendar-sheet .toolbar:before{display:none}.calendar-popover{width:var(--f7-calendar-popover-width)}.calendar-popover .calendar-header,.calendar-popover .toolbar-top{border-radius:var(--f7-popover-border-radius) var(--f7-popover-border-radius) 0 0}.calendar-popover .calendar-header+.toolbar-top{border-radius:0}.calendar-popover .calendar-footer,.calendar-popover .toolbar-bottom{border-radius:0 0 var(--f7-popover-border-radius) var(--f7-popover-border-radius)}.calendar-popover .calendar{height:var(--f7-calendar-popover-height);position:relative;z-index:1}.calendar-popover .calendar-month-picker,.calendar-popover .calendar-time-picker,.calendar-popover .calendar-year-picker{border-radius:var(--f7-popover-border-radius)}.calendar-header{width:100%;position:relative;overflow:hidden;flex-shrink:0;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;padding:var(--f7-calendar-header-padding);background-color:var(--f7-calendar-header-bg-color,var(--f7-bars-bg-color));color:var(--f7-calendar-header-text-color,var(--f7-bars-text-color));height:var(--f7-calendar-header-height);line-height:var(--f7-calendar-header-height);font-size:var(--f7-calendar-header-font-size);font-weight:var(--f7-calendar-header-font-weight)}.calendar-header a{color:var(--f7-calendar-header-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.calendar-footer{width:100%;flex-shrink:0;padding:var(--f7-calendar-footer-padding);background-color:var(--f7-calendar-footer-bg-color,var(--f7-bars-bg-color));color:var(--f7-calendar-footer-text-color,var(--f7-bars-text-color));height:var(--f7-calendar-footer-height);font-size:var(--f7-calendar-header-font-size);display:flex;justify-content:flex-end;box-sizing:border-box;align-items:center;position:relative}.calendar-footer a{color:var(--f7-calendar-footer-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.calendar-footer:before{content:'';position:absolute;background-color:var(--f7-calendar-footer-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.calendar-modal{position:absolute;height:var(--f7-calendar-modal-height);overflow:hidden;top:50%;left:50%;min-width:300px;max-width:var(--f7-calendar-modal-max-width);transform:translate3d(-50%,100vh,0);transition-property:transform;display:flex;z-index:13500;background:var(--f7-calendar-modal-bg-color);width:90%;border-radius:var(--f7-calendar-modal-border-radius);box-shadow:var(--f7-elevation-24)}.calendar-modal.modal-in,.calendar-modal.modal-out{transition-duration:.4s}.calendar-modal.modal-in{transform:translate3d(-50%,-50%,0)}.calendar-modal.modal-out{transform:translate3d(-50%,100vh,0)}.calendar-week-header{display:flex;box-sizing:border-box;position:relative;font-size:var(--f7-calendar-week-header-font-size);background-color:var(--f7-calendar-week-header-bg-color,var(--f7-bars-bg-color));color:var(--f7-calendar-week-header-text-color,var(--f7-bars-text-color));height:var(--f7-calendar-week-header-height);padding-left:var(--f7-safe-area-left);padding-right:var(--f7-safe-area-right)}.calendar-week-header .calendar-week-day{flex-shrink:1;width:calc(100% / 7);text-align:center;line-height:var(--f7-calendar-week-header-height)}.calendar-months{width:100%;height:100%;overflow:hidden;position:relative;flex-shrink:10}.calendar-months-wrapper{position:relative;width:100%;height:100%;transition:.3s}.calendar-month{display:flex;flex-direction:column;width:100%;height:100%;position:absolute;left:0;top:0}.calendar-row{height:16.66666667%;display:flex;flex-shrink:1;width:100%;position:relative;box-sizing:border-box;padding-left:var(--f7-safe-area-left);padding-right:var(--f7-safe-area-right)}.calendar-row:before{content:'';position:absolute;background-color:var(--f7-calendar-row-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.calendar-modal .calendar-months:first-child .calendar-row:first-child:before,.calendar-popover .calendar-months:first-child .calendar-row:first-child:before{display:none!important}.calendar-day{flex-shrink:1;display:flex;justify-content:center;align-items:center;box-sizing:border-box;width:14.28571429%;text-align:center;cursor:pointer;z-index:20;color:var(--f7-calendar-day-text-color);height:100%;font-size:var(--f7-calendar-day-font-size)}.calendar-day-today .calendar-day-number{color:var(--f7-calendar-today-text-color,var(--f7-theme-color));background-color:var(--f7-calendar-today-bg-color)}.calendar-day-next,.calendar-day-prev{color:var(--f7-calendar-prev-next-text-color)}.calendar-day-disabled{color:var(--f7-calendar-disabled-text-color);cursor:auto}.calendar-day-selected .calendar-day-number{color:var(--f7-calendar-selected-text-color);background-color:var(--f7-calendar-selected-bg-color,var(--f7-theme-color))}.calendar-day-number{display:inline-block;border-radius:50%;position:relative;width:var(--f7-calendar-day-size);height:var(--f7-calendar-day-size);line-height:var(--f7-calendar-day-size)}.calendar-day-events{position:absolute;display:flex;left:0;width:100%;top:100%;align-items:center;justify-content:center;margin-top:1px}.calendar-day-event{width:var(--f7-calendar-event-dot-size);height:var(--f7-calendar-event-dot-size);border-radius:calc(var(--f7-calendar-event-dot-size)/ 2);background-color:var(--f7-calendar-event-bg-color)}.calendar-day-event+.calendar-day-event{margin-left:2px}.calendar-day-selected-left,.calendar-day-selected-range,.calendar-day-selected-right{position:relative}.calendar-day-selected-left:before,.calendar-day-selected-range:before,.calendar-day-selected-right:before{width:100%;height:var(--f7-calendar-day-size);content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);z-index:-1;background-color:var(--f7-calendar-selected-bg-color,var(--f7-theme-color));opacity:.2}.calendar-day-selected-left:before,.calendar-day-selected-range:first-child:before{left:auto;right:0;width:calc(50% + var(--f7-calendar-day-size)/ 2);border-radius:var(--f7-calendar-day-size) 0 0 var(--f7-calendar-day-size)}.calendar-day-selected-range:last-child:before,.calendar-day-selected-right:before{width:calc(50% + var(--f7-calendar-day-size)/ 2);border-radius:0 var(--f7-calendar-day-size) var(--f7-calendar-day-size) 0}.calendar-day-selected-left:last-child:before,.calendar-day-selected-right:first-child:before{display:none}.calendar-day-selected-range .calendar-day-number{background-color:transparent;color:inherit}.calendar-month-selector,.calendar-year-selector{display:flex;justify-content:space-between;align-items:center;width:50%;max-width:200px;flex-shrink:10;margin-left:auto;margin-right:auto}.calendar-month-selector .calendar-day-number,.calendar-year-selector .calendar-day-number{flex-shrink:1;position:relative;overflow:hidden;text-overflow:ellipsis}.calendar-month-selector a.icon-only,.calendar-year-selector a.icon-only{min-width:36px}.calendar-month-picker,.calendar-time-picker,.calendar-year-picker{position:absolute;width:100%;height:100%;left:0px;top:0px;background:var(--f7-calendar-picker-bg-color);z-index:1000;-webkit-user-select:none;-moz-user-select:none;user-select:none}.calendar-month-picker,.calendar-year-picker{flex-wrap:wrap;font-size:var(--f7-calendar-picker-font-size);display:flex}.calendar-month-picker-item,.calendar-year-picker-item{display:flex;justify-content:center;align-items:center;position:relative;overflow:hidden;cursor:pointer;transition-duration:.1s;box-sizing:border-box}.calendar-month-picker-item span,.calendar-year-picker-item span{white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;position:relative;overflow:hidden;pointer-events:none}.device-desktop.aurora .calendar-month-picker-item:hover,.device-desktop.aurora .calendar-year-picker-item:hover{background-color:var(--f7-calendar-picker-hover-bg-color)}.calendar-month-picker-item.active-state,.calendar-year-picker-item.active-state,.device-desktop.aurora .calendar-month-picker-item.active-state,.device-desktop.aurora .calendar-year-picker-item.active-state{background:var(--f7-calendar-picker-pressed-bg-color)}.calendar-month-picker-item{padding:5px}.calendar-month-picker-item:after{content:'';position:absolute;background-color:var(--f7-calendar-row-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.calendar-month-picker-item:before{content:'';position:absolute;background-color:var(--f7-calendar-row-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;width:1px;height:100%;transform-origin:0% 50%;transform:scaleX(calc(1 / var(--f7-device-pixel-ratio)))}.sheet-modal .calendar-month-picker-item{width:25%;height:33.33333333%}.sheet-modal .calendar-month-picker-item:nth-child(4n+1):before{display:none!important}.sheet-modal .calendar-month-picker-item:nth-child(n+9):after{display:none!important}.calendar-modal .calendar-month-picker-item,.popover .calendar-month-picker-item{width:33.33333333%;height:25%}.calendar-modal .calendar-month-picker-item:nth-child(3n+1):before,.popover .calendar-month-picker-item:nth-child(3n+1):before{display:none!important}.calendar-modal .calendar-month-picker-item:nth-child(n+10):after,.popover .calendar-month-picker-item:nth-child(n+10):after{display:none!important}.calendar-month-picker-item-current,.calendar-year-picker-item-current{color:var(--f7-calendar-picker-selected-text-color,var(--f7-theme-color))}.calendar-year-picker{overflow:auto;--webkit-overflow-scrolling:touch}.calendar-year-picker-item{height:34px;line-height:34px;width:100%}.calendar-year-picker-item:after{content:'';position:absolute;background-color:var(--f7-calendar-row-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.calendar-time-selector{flex-shrink:0;font-size:var(--f7-calendar-time-selector-font-size);position:relative;display:flex;justify-content:center;padding:12px 16px}.calendar-time-selector:before{content:'';position:absolute;background-color:var(--f7-calendar-row-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.calendar-time-selector a{overflow:hidden;position:relative;justify-content:center;align-items:center;display:flex;min-width:200px;box-sizing:border-box;height:var(--f7-calendar-time-selector-height);background-color:var(--f7-calendar-time-selector-bg-color);padding:0 10px;border-radius:8px}.calendar-time-selector .segmented{margin-left:8px}.calendar-time-picker{--f7-picker-popover-height:100%;--f7-picker-inline-height:100%}.calendar-time-picker .toolbar{flex-shrink:0;top:0!important}.calendar-time-picker .picker{height:100%;display:flex;flex-direction:column}:root{--f7-picker-height:260px;--f7-picker-inline-height:200px;--f7-picker-popover-height:260px;--f7-picker-popover-width:280px;--f7-picker-landscape-height:200px;--f7-picker-item-height:36px;--f7-picker-item-selected-bg-color:rgba(0, 0, 0, 0.12);--f7-picker-item-selected-text-color:#000}:root .theme-dark,:root.theme-dark{--f7-picker-item-selected-bg-color:rgba(255, 255, 255, 0.1);--f7-picker-item-selected-text-color:#fff}.ios{--f7-picker-column-font-size:20px;--f7-picker-divider-text-color:#000;--f7-picker-item-text-color:rgba(0, 0, 0, 0.45)}.ios .theme-dark,.ios.theme-dark{--f7-picker-divider-text-color:#fff;--f7-picker-item-text-color:rgba(255, 255, 255, 0.55)}.md{--f7-picker-column-font-size:20px;--f7-picker-divider-text-color:rgba(0, 0, 0, 0.87);--f7-picker-item-text-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-picker-item-text-color:rgba(255, 255, 255, 0.54);--f7-picker-divider-text-color:rgba(255, 255, 255, 0.87)}.aurora{--f7-picker-column-font-size:20px;--f7-picker-item-text-color:#888;--f7-picker-divider-text-color:#000}.aurora .theme-dark,.aurora.theme-dark{--f7-picker-divider-text-color:#fff}.picker{width:100%;height:var(--f7-picker-height)}.picker.picker-inline{height:var(--f7-picker-inline-height)}.popover .picker{height:var(--f7-picker-popover-height)}@media (orientation:landscape) and (max-height:415px){.picker:not(.picker-inline){height:var(--f7-picker-landscape-height)}}.picker.sheet-modal{background:var(--f7-picker-sheet-bg-color,var(--f7-sheet-bg-color))}.picker-popover{width:var(--f7-picker-popover-width)}.picker-popover .toolbar{background:0 0;border-radius:var(--f7-popover-border-radius) var(--f7-popover-border-radius) 0 0}.picker-popover .toolbar:before{display:none!important}.picker-popover .toolbar+.picker-columns{height:calc(100% - var(--f7-toolbar-height))}.picker-columns{display:flex;overflow:hidden;justify-content:center;padding:0;text-align:right;height:100%;position:relative;-webkit-mask-box-image:linear-gradient(to top,transparent,transparent 5%,white 20%,white 80%,transparent 95%,transparent);font-size:var(--f7-picker-column-font-size)}.picker-column{position:relative;max-height:100%}.picker-column.picker-column-first:before,.picker-column.picker-column-last:after{height:100%;width:100vw;position:absolute;content:'';top:0}.picker-column.picker-column-first:before{right:100%}.picker-column.picker-column-last:after{left:100%}.picker-column.picker-column-left{text-align:left}.picker-column.picker-column-center{text-align:center}.picker-column.picker-column-right{text-align:right}.picker-column.picker-column-divider{display:flex;align-items:center;color:var(--f7-picker-divider-text-color)}.picker-items{transition:.3s;transition-timing-function:ease-out}.picker-item{height:var(--f7-picker-item-height);line-height:var(--f7-picker-item-height);white-space:nowrap;position:relative;overflow:hidden;text-overflow:ellipsis;left:0;top:0;width:100%;box-sizing:border-box;transition:.3s;color:var(--f7-picker-item-text-color);cursor:pointer}.picker-item span{padding:0 10px}.picker-column-absolute .picker-item{position:absolute}.picker-item.picker-item-far{pointer-events:none}.picker-item.picker-item-selected{color:var(--f7-picker-item-selected-text-color);transform:translate3d(0,0,0) rotateX(0deg)}.picker-center-highlight{height:var(--f7-picker-item-height);box-sizing:border-box;position:absolute;left:16px;right:16px;top:50%;margin-top:calc(-1 * var(--f7-picker-item-height)/ 2);pointer-events:none;background-color:var(--f7-picker-item-selected-bg-color);border-radius:8px}.popover .picker-center-highlight{left:8px;right:8px}.picker-3d .picker-columns{overflow:hidden;perspective:1200px}.picker-3d .picker-column,.picker-3d .picker-item,.picker-3d .picker-items{transform-style:preserve-3d}.picker-3d .picker-column{overflow:visible}.picker-3d .picker-item{transform-origin:center center -110px;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-timing-function:ease-out}.infinite-scroll-preloader{margin-left:auto;margin-right:auto;text-align:center}.infinite-scroll-preloader.preloader{display:block}.ios .infinite-scroll-preloader{margin-top:35px;margin-bottom:35px}.ios .infinite-scroll-preloader .preloader,.ios .infinite-scroll-preloader.preloader{width:27px;height:27px}.md .infinite-scroll-preloader{margin-top:32px;margin-bottom:32px}.aurora .infinite-scroll-preloader{margin-top:16px;margin-bottom:16px}.ios{--f7-ptr-preloader-size:28px;--f7-ptr-size:44px}.md{--f7-ptr-preloader-size:22px;--f7-ptr-size:40px}.aurora{--f7-ptr-preloader-size:20px;--f7-ptr-size:38px}.ptr-preloader{position:relative;top:var(--f7-ptr-top,0);height:var(--f7-ptr-size)}.ptr-preloader .preloader{position:absolute;left:50%;width:var(--f7-ptr-preloader-size);height:var(--f7-ptr-preloader-size);margin-left:calc(-1 * var(--f7-ptr-preloader-size)/ 2);margin-top:calc(-1 * var(--f7-ptr-preloader-size)/ 2);top:50%;visibility:hidden}.ptr-bottom .ptr-preloader{top:auto;bottom:0;position:fixed}.ptr-with-navbar-large-transparent .ptr-preloader,.ptr-with-navbar-transparent .ptr-preloader{top:calc(-1 * var(--f7-page-navbar-offset,0px) + var(--f7-safe-area-top))}.ios .ptr-preloader{margin-top:calc(-1 * var(--f7-ptr-size));width:100%;left:0}.ios .ptr-arrow{position:absolute;left:50%;top:50%;background:no-repeat center;z-index:10;transform:rotate(0deg) translate3d(0,0,0);transition-duration:.3s;transition-property:transform,opacity;width:12px;height:20px;margin-left:-6px;margin-top:-10px;visibility:visible;color:var(--f7-preloader-color)}.ios .ptr-arrow:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;width:12px;height:20px;line-height:20px;font-size:10px;content:'ptr_arrow_ios'}.ios .ptr-content:not(.ptr-refreshing) .ptr-preloader .preloader,.ios .ptr-content:not(.ptr-refreshing) .ptr-preloader .preloader-inner{animation:none}.ios .ptr-refreshing,.ios .ptr-transitioning{transition-duration:.3s;transition-property:transform}.ios .ptr-refreshing{transform:translate3d(0,var(--f7-ptr-size),0)}.ios .ptr-refreshing .ptr-arrow{visibility:hidden}.ios .ptr-refreshing .ptr-preloader .preloader{visibility:visible}.ios .ptr-pull-up .ptr-arrow{transform:rotate(180deg) translate3d(0,0,0)}.ios .ptr-no-navbar,.ios .ptr-with-navbar-large-transparent,.ios .ptr-with-navbar-transparent{margin-top:calc(-1 * var(--f7-ptr-size));height:calc(100% + var(--f7-ptr-size))}.ios .ptr-no-navbar .ptr-preloader,.ios .ptr-with-navbar-large-transparent .ptr-preloader,.ios .ptr-with-navbar-transparent .ptr-preloader{margin-top:0}.ios .ptr-bottom .ptr-preloader{margin-top:0;margin-bottom:calc(-1 * var(--f7-ptr-size))}.ios .ptr-bottom.ptr-refreshing>*,.ios .ptr-bottom.ptr-transitioning>*{transition-duration:.3s;transition-property:transform}.ios .ptr-bottom.ptr-refreshing{transform:none}.ios .ptr-bottom.ptr-refreshing>*{transform:translate3d(0,calc(-1 * var(--f7-ptr-size)),0)}.ios .ptr-bottom .ptr-arrow{transform:rotate(180deg) translate3d(0,0,0)}.ios .ptr-bottom.ptr-pull-up .ptr-arrow{transform:rotate(0deg) translate3d(0,0,0)}.ios .ptr-with-navbar-large-transparent .ptr-preloader .preloader,.ios .ptr-with-navbar-large-transparent .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-transparent .ptr-preloader .preloader,.ios .ptr-with-navbar-transparent .ptr-preloader .ptr-arrow{opacity:0;transition-duration:.3s;transition-property:transform,opacity}.ios .ptr-with-navbar-large-transparent.ptr-pull-down .ptr-preloader .preloader,.ios .ptr-with-navbar-large-transparent.ptr-pull-down .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-large-transparent.ptr-pull-up .ptr-preloader .preloader,.ios .ptr-with-navbar-large-transparent.ptr-pull-up .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-large-transparent.ptr-refreshing .ptr-preloader .preloader,.ios .ptr-with-navbar-large-transparent.ptr-refreshing .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-transparent.ptr-pull-down .ptr-preloader .preloader,.ios .ptr-with-navbar-transparent.ptr-pull-down .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-transparent.ptr-pull-up .ptr-preloader .preloader,.ios .ptr-with-navbar-transparent.ptr-pull-up .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-transparent.ptr-refreshing .ptr-preloader .preloader,.ios .ptr-with-navbar-transparent.ptr-refreshing .ptr-preloader .ptr-arrow{opacity:1}.ios .ptr-with-navbar-large-transparent.ptr-closing .ptr-preloader .preloader,.ios .ptr-with-navbar-large-transparent.ptr-closing .ptr-preloader .ptr-arrow,.ios .ptr-with-navbar-transparent.ptr-closing .ptr-preloader .preloader,.ios .ptr-with-navbar-transparent.ptr-closing .ptr-preloader .ptr-arrow{opacity:0;transition-duration:.3s}.md{--f7-ptr-top:-4px}.md .ptr-preloader{width:var(--f7-ptr-size);border-radius:50%;background:#fff;margin-top:calc(-1 * var(--f7-ptr-size));z-index:100;box-shadow:var(--f7-elevation-1);left:50%;margin-left:calc(-1 * var(--f7-ptr-size)/ 2)}.md .ptr-preloader .preloader circle{stroke-width:4}.md .ptr-arrow{width:22px;height:22px;box-sizing:border-box;border:3px solid var(--f7-preloader-color);position:absolute;left:50%;top:50%;margin-left:-11px;margin-top:-11px;border-left-color:transparent;border-radius:50%;opacity:1;transform:rotate(150deg)}.md .ptr-arrow:after{content:'';width:0px;height:0px;position:absolute;left:-5px;bottom:0px;border-bottom-width:6px;border-bottom-style:solid;border-bottom-color:inherit;border-left:5px solid transparent;border-right:5px solid transparent;transform:rotate(-40deg)}.md .ptr-content:not(.ptr-refreshing):not(.ptr-pull-up) .ptr-preloader .preloader,.md .ptr-content:not(.ptr-refreshing):not(.ptr-pull-up) .ptr-preloader .preloader-inner,.md .ptr-content:not(.ptr-refreshing):not(.ptr-pull-up) .ptr-preloader circle{animation:none}.md .ptr-pull-up .ptr-preloader .preloader,.md .ptr-refreshing .ptr-preloader .preloader{visibility:visible}.md .ptr-pull-up .ptr-arrow,.md .ptr-refreshing .ptr-arrow{visibility:hidden}.md .ptr-refreshing .ptr-preloader{transform:translate3d(0,66px,0)}.md .ptr-transitioning .ptr-arrow{transition:.3s}.md .ptr-pull-up .ptr-arrow{transition:.4s;transform:rotate(620deg)!important;opacity:0}.md .ptr-refreshing .ptr-preloader,.md .ptr-transitioning .ptr-preloader{transition-duration:.3s;transition-property:transform,opacity}.md .ptr-bottom .ptr-preloader{margin-top:0;margin-bottom:calc(-1 * var(--f7-ptr-size) - 4px)}.md .ptr-bottom.ptr-refreshing .ptr-preloader{transform:translate3d(0,-66px,0)}.md .ptr-with-navbar-large-transparent .ptr-preloader,.md .ptr-with-navbar-transparent .ptr-preloader{opacity:0}.md .ptr-with-navbar-large-transparent.ptr-pull-down .ptr-preloader,.md .ptr-with-navbar-large-transparent.ptr-pull-up .ptr-preloader,.md .ptr-with-navbar-large-transparent.ptr-refreshing .ptr-preloader,.md .ptr-with-navbar-transparent.ptr-pull-down .ptr-preloader,.md .ptr-with-navbar-transparent.ptr-pull-up .ptr-preloader,.md .ptr-with-navbar-transparent.ptr-refreshing .ptr-preloader{opacity:1}.md .ptr-with-navbar-large-transparent.ptr-closing .ptr-preloader,.md .ptr-with-navbar-transparent.ptr-closing .ptr-preloader{opacity:0;transition-duration:.3s}.aurora .ptr-preloader{margin-top:calc(-1 * var(--f7-ptr-size));width:100%;left:0}.aurora .ptr-arrow{position:absolute;left:50%;top:50%;background:no-repeat center;z-index:10;transform:rotate(0deg) translate3d(0,0,0);transition-duration:.3s;transition-property:transform,opacity;width:12px;height:20px;margin-left:-6px;margin-top:-10px;visibility:visible;color:var(--f7-preloader-color)}.aurora .ptr-arrow:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;width:12px;height:20px;line-height:20px;font-size:8px;content:'ptr_arrow_ios'}.aurora .ptr-content:not(.ptr-refreshing) .ptr-preloader .preloader,.aurora .ptr-content:not(.ptr-refreshing) .ptr-preloader .preloader-inner{animation:none}.aurora .ptr-refreshing,.aurora .ptr-transitioning{transition-duration:.3s;transition-property:transform}.aurora .ptr-refreshing{transform:translate3d(0,var(--f7-ptr-size),0)}.aurora .ptr-refreshing .ptr-arrow{visibility:hidden}.aurora .ptr-refreshing .ptr-preloader .preloader{visibility:visible}.aurora .ptr-pull-up .ptr-arrow{transform:rotate(180deg) translate3d(0,0,0)}.aurora .ptr-no-navbar,.aurora .ptr-with-navbar-large-transparent,.aurora .ptr-with-navbar-transparent{margin-top:calc(-1 * var(--f7-ptr-size));height:calc(100% + var(--f7-ptr-size))}.aurora .ptr-no-navbar .ptr-preloader,.aurora .ptr-with-navbar-large-transparent .ptr-preloader,.aurora .ptr-with-navbar-transparent .ptr-preloader{margin-top:0}.aurora .ptr-bottom .ptr-preloader{margin-top:0;margin-bottom:calc(-1 * var(--f7-ptr-size))}.aurora .ptr-bottom.ptr-refreshing>*,.aurora .ptr-bottom.ptr-transitioning>*{transition-duration:.3s;transition-property:transform}.aurora .ptr-bottom.ptr-refreshing{transform:none}.aurora .ptr-bottom.ptr-refreshing>*{transform:translate3d(0,calc(-1 * var(--f7-ptr-size)),0)}.aurora .ptr-bottom .ptr-arrow{transform:rotate(180deg) translate3d(0,0,0)}.aurora .ptr-bottom.ptr-pull-up .ptr-arrow{transform:rotate(0deg) translate3d(0,0,0)}.aurora .ptr-with-navbar-large-transparent .ptr-preloader .preloader,.aurora .ptr-with-navbar-large-transparent .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-transparent .ptr-preloader .preloader,.aurora .ptr-with-navbar-transparent .ptr-preloader .ptr-arrow{opacity:0;transition-duration:.3s;transition-property:transform,opacity}.aurora .ptr-with-navbar-large-transparent.ptr-pull-down .ptr-preloader .preloader,.aurora .ptr-with-navbar-large-transparent.ptr-pull-down .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-large-transparent.ptr-pull-up .ptr-preloader .preloader,.aurora .ptr-with-navbar-large-transparent.ptr-pull-up .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-large-transparent.ptr-refreshing .ptr-preloader .preloader,.aurora .ptr-with-navbar-large-transparent.ptr-refreshing .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-transparent.ptr-pull-down .ptr-preloader .preloader,.aurora .ptr-with-navbar-transparent.ptr-pull-down .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-transparent.ptr-pull-up .ptr-preloader .preloader,.aurora .ptr-with-navbar-transparent.ptr-pull-up .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-transparent.ptr-refreshing .ptr-preloader .preloader,.aurora .ptr-with-navbar-transparent.ptr-refreshing .ptr-preloader .ptr-arrow{opacity:1}.aurora .ptr-with-navbar-large-transparent.ptr-closing .ptr-preloader .preloader,.aurora .ptr-with-navbar-large-transparent.ptr-closing .ptr-preloader .ptr-arrow,.aurora .ptr-with-navbar-transparent.ptr-closing .ptr-preloader .preloader,.aurora .ptr-with-navbar-transparent.ptr-closing .ptr-preloader .ptr-arrow{opacity:0;transition-duration:.3s}.lazy-loaded.lazy-fade-in{animation:lazyFadeIn .6s}@keyframes lazyFadeIn{from{opacity:0}to{opacity:1}}:root{--f7-table-head-font-size:12px;--f7-table-body-font-size:14px;--f7-table-footer-font-size:12px;--f7-table-input-height:24px;--f7-table-input-font-size:14px;--f7-table-collapsible-cell-padding:16px;--f7-table-link-icon-only-icon-size:20px;--f7-table-head-bg-color:transparent;--f7-table-card-header-bg-color:transparent;--f7-table-card-header-height:64px;--f7-table-cell-padding-vertical:0px;--f7-table-sortable-icon-color:#000}:root .theme-dark,:root.theme-dark{--f7-table-cell-border-color:rgba(255, 255, 255, 0.15);--f7-table-sortable-icon-color:#fff;--f7-table-input-text-color:#fff}.ios{--f7-table-head-font-weight:600;--f7-table-head-cell-height:44px;--f7-table-head-icon-size:18px;--f7-table-body-cell-height:44px;--f7-table-cell-padding-horizontal:16px;--f7-table-edge-cell-padding-horizontal:16px;--f7-table-label-cell-padding-horizontal:16px;--f7-table-checkbox-cell-width:22px;--f7-table-title-font-size:17px;--f7-table-title-font-weight:600;--f7-table-footer-height:44px;--f7-table-head-text-color:rgba(0, 0, 0, 0.45);--f7-table-cell-border-color:rgba(0, 0, 0, 0.22);--f7-table-selected-row-bg-color:rgba(0, 0, 0, 0.03);--f7-table-footer-text-color:rgba(0, 0, 0, 0.45);--f7-table-input-text-color:#000}.ios .theme-dark,.ios.theme-dark{--f7-table-head-text-color:rgba(255, 255, 255, 0.55);--f7-table-footer-text-color:rgba(255, 255, 255, 0.55);--f7-table-selected-row-bg-color:rgba(255, 255, 255, 0.08)}.md{--f7-table-head-font-weight:500;--f7-table-head-cell-height:56px;--f7-table-head-icon-size:16px;--f7-table-body-cell-height:48px;--f7-table-cell-padding-horizontal:28px;--f7-table-edge-cell-padding-horizontal:24px;--f7-table-label-cell-padding-horizontal:24px;--f7-table-checkbox-cell-width:18px;--f7-table-title-font-size:20px;--f7-table-title-font-weight:400;--f7-table-footer-height:56px;--f7-table-head-text-color:rgba(0, 0, 0, 0.54);--f7-table-cell-border-color:rgba(0, 0, 0, 0.12);--f7-table-actions-cell-link-color:rgba(0, 0, 0, 0.54);--f7-table-selected-row-bg-color:#f5f5f5;--f7-table-actions-link-color:rgba(0, 0, 0, 0.54);--f7-table-footer-text-color:rgba(0, 0, 0, 0.54);--f7-table-input-text-color:#212121}.md .theme-dark,.md.theme-dark{--f7-table-head-text-color:rgba(255, 255, 255, 0.54);--f7-table-footer-text-color:rgba(255, 255, 255, 0.54);--f7-table-selected-row-bg-color:rgba(255, 255, 255, 0.05);--f7-table-actions-cell-link-color:rgba(255, 255, 255, 0.54);--f7-table-actions-link-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-table-input-height:32px;--f7-table-head-font-weight:600;--f7-table-head-cell-height:56px;--f7-table-head-icon-size:18px;--f7-table-body-cell-height:48px;--f7-table-cell-padding-horizontal:16px;--f7-table-edge-cell-padding-horizontal:16px;--f7-table-label-cell-padding-horizontal:16px;--f7-table-checkbox-cell-width:22px;--f7-table-title-font-size:20px;--f7-table-title-font-weight:600;--f7-table-footer-height:56px;--f7-table-head-text-color:rgba(0, 0, 0, 0.6);--f7-table-cell-border-color:rgba(0, 0, 0, 0.12);--f7-table-selected-row-bg-color:rgba(0, 0, 0, 0.03);--f7-table-footer-text-color:rgba(0, 0, 0, 0.5);--f7-table-input-text-color:#000;--f7-table-head-bg-color:#f6f6f7;--f7-table-card-header-bg-color:#f6f6f7}.aurora .theme-dark,.aurora.theme-dark{--f7-table-selected-row-bg-color:rgba(255, 255, 255, 0.03);--f7-table-head-text-color:rgba(255, 255, 255, 0.54);--f7-table-footer-text-color:rgba(255, 255, 255, 0.54);--f7-table-head-bg-color:rgba(255, 255, 255, 0.05);--f7-table-card-header-bg-color:rgba(255, 255, 255, 0.05)}.data-table{overflow-x:auto}.data-table table,table.data-table{width:100%;border:none;padding:0;margin:0;border-collapse:collapse;text-align:left}.data-table thead td,.data-table thead th{font-size:var(--f7-table-head-font-size);font-weight:var(--f7-table-head-font-weight);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;line-height:16px;height:var(--f7-table-head-cell-height);background-color:var(--f7-table-head-bg-color)}.data-table thead td:not(.sortable-cell-active),.data-table thead th:not(.sortable-cell-active){color:var(--f7-table-head-text-color)}.data-table thead i.f7-icons,.data-table thead i.icon,.data-table thead i.material-icons{vertical-align:top;font-size:var(--f7-table-head-icon-size)}.data-table tbody{font-size:var(--f7-table-body-font-size)}.data-table tbody td,.data-table tbody th{height:var(--f7-table-body-cell-height)}.data-table tbody tr.data-table-row-selected,.device-desktop .data-table tbody tr:hover{background:var(--f7-table-selected-row-bg-color)}.data-table tbody td:before,.data-table tbody th:before{content:'';position:absolute;background-color:var(--f7-table-cell-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.data-table td,.data-table th{--f7-table-cell-padding-left:var(--f7-table-cell-padding-horizontal);--f7-table-cell-padding-right:var(--f7-table-cell-padding-horizontal);padding-top:var(--f7-table-cell-padding-vertical);padding-bottom:var(--f7-table-cell-padding-vertical);padding-left:var(--f7-table-cell-padding-left);padding-right:var(--f7-table-cell-padding-right);position:relative;box-sizing:border-box}.data-table td:first-child,.data-table th:first-child{--f7-table-cell-padding-left:var(--f7-table-edge-cell-padding-horizontal)}.data-table td:last-child,.data-table th:last-child{--f7-table-cell-padding-right:var(--f7-table-edge-cell-padding-horizontal)}.data-table td.label-cell,.data-table th.label-cell{--f7-table-cell-padding-left:var(--f7-table-label-cell-padding-horizontal);--f7-table-cell-padding-right:var(--f7-table-label-cell-padding-horizontal)}.data-table td.numeric-cell,.data-table th.numeric-cell{text-align:right}.data-table td.checkbox-cell,.data-table th.checkbox-cell{overflow:visible;width:var(--f7-table-checkbox-cell-width)}.data-table td.checkbox-cell label+span,.data-table th.checkbox-cell label+span{margin-left:8px}.data-table td.checkbox-cell:first-child,.data-table th.checkbox-cell:first-child{padding-right:calc(var(--f7-table-cell-padding-right)/ 2)}.data-table td.checkbox-cell:first-child+td,.data-table td.checkbox-cell:first-child+th,.data-table th.checkbox-cell:first-child+td,.data-table th.checkbox-cell:first-child+th{padding-left:calc(var(--f7-table-cell-padding-left)/ 2)}.data-table td.checkbox-cell:last-child,.data-table th.checkbox-cell:last-child{padding-left:calc(var(--f7-table-cell-padding-left)/ 2)}.data-table td.actions-cell,.data-table th.actions-cell{text-align:right;white-space:nowrap}.data-table td.actions-cell a.link,.data-table th.actions-cell a.link{color:var(--f7-table-actions-cell-link-color,var(--f7-theme-color))}.card .data-table td a.icon-only,.card .data-table th a.icon-only,.card.data-table td a.icon-only,.card.data-table th a.icon-only,.data-table td a.icon-only,.data-table th a.icon-only{display:inline-block;vertical-align:middle;text-align:center;font-size:0;min-width:0}.card .data-table td a.icon-only i,.card .data-table th a.icon-only i,.card.data-table td a.icon-only i,.card.data-table th a.icon-only i,.data-table td a.icon-only i,.data-table th a.icon-only i{font-size:var(--f7-table-link-icon-only-icon-size);vertical-align:middle}.data-table .sortable-cell:not(.input-cell){cursor:pointer;position:relative}.data-table .sortable-cell.input-cell .table-head-label{cursor:pointer;position:relative}.data-table .sortable-cell.numeric-cell.input-cell>.table-head-label:before,.data-table .sortable-cell.numeric-cell:not(.input-cell):before,.data-table .sortable-cell:not(.numeric-cell).input-cell>.table-head-label:after,.data-table .sortable-cell:not(.numeric-cell):not(.input-cell):after{content:'arrow_bottom_md';font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;display:inline-block;vertical-align:top;width:16px;height:16px;color:var(--f7-table-sortable-icon-color);font-size:13px;line-height:16px;transition-duration:.3s;transform:rotate(0);opacity:0}.device-desktop .data-table .sortable-cell:not(.sortable-cell-active) .table-head-label:hover:after,.device-desktop .data-table .sortable-cell:not(.sortable-cell-active) .table-head-label:hover:before,.device-desktop .data-table .sortable-cell:not(.sortable-cell-active):hover:after,.device-desktop .data-table .sortable-cell:not(.sortable-cell-active):hover:before{opacity:.54}.data-table .sortable-cell.sortable-cell-active .table-head-label:after,.data-table .sortable-cell.sortable-cell-active .table-head-label:before,.data-table .sortable-cell.sortable-cell-active:after,.data-table .sortable-cell.sortable-cell-active:before{opacity:.87!important}.data-table .sortable-cell.sortable-desc:after,.data-table .sortable-cell.sortable-desc:before,.data-table .table-head-label:after,.data-table .table-head-label:before{transform:rotate(180deg)!important}.card .data-table .card-footer,.card .data-table .card-header,.data-table.card .card-footer,.data-table.card .card-header{padding-left:var(--f7-table-edge-cell-padding-horizontal);padding-right:var(--f7-table-edge-cell-padding-horizontal)}.card .data-table .card-header,.data-table.card .card-header{min-height:var(--f7-table-card-header-height);background-color:var(--f7-table-card-header-bg-color)}.card .data-table .card-content,.data-table.card .card-content{overflow-x:auto}.card .data-table .card-footer,.data-table.card .card-footer{min-height:var(--f7-table-footer-height)}.data-table .data-table-title{font-size:var(--f7-table-title-font-size);font-weight:var(--f7-table-title-font-weight)}.data-table .data-table-actions,.data-table .data-table-links{display:flex}.data-table .data-table-links .button{min-width:64px}.data-table .data-table-actions{margin-left:auto;align-items:center}.data-table .data-table-actions a.link{color:var(--f7-table-actions-link-color,var(--f7-theme-color));min-width:0}.data-table .data-table-actions a.link.icon-only{line-height:1;justify-content:center;padding:0}.data-table .data-table-header,.data-table .data-table-header-selected{display:flex;justify-content:space-between;align-items:center;width:100%}.data-table .card-header>.data-table-header,.data-table .card-header>.data-table-header-selected{padding-top:var(--f7-card-header-padding-vertical);padding-bottom:var(--f7-card-header-padding-vertical);height:100%;margin-top:calc(-1 * var(--f7-card-header-padding-vertical));margin-bottom:calc(-1 * var(--f7-card-header-padding-vertical));min-height:var(--f7-table-card-header-height);padding-left:var(--f7-table-edge-cell-padding-horizontal);padding-right:var(--f7-table-edge-cell-padding-horizontal);margin-left:calc(-1 * var(--f7-table-edge-cell-padding-horizontal));margin-right:calc(-1 * var(--f7-table-edge-cell-padding-horizontal))}.data-table .data-table-header-selected{background:rgba(var(--f7-theme-color-rgb),.1);display:none}.data-table.data-table-has-checked .data-table-header{display:none}.data-table.data-table-has-checked .data-table-header-selected{display:flex}.data-table .data-table-title-selected{font-size:14px;color:var(--f7-theme-color)}.data-table .data-table-footer{display:flex;align-items:center;box-sizing:border-box;position:relative;font-size:var(--f7-table-footer-font-size);overflow:hidden;min-height:var(--f7-table-footer-height);color:var(--f7-table-footer-text-color);justify-content:flex-end}.data-table .data-table-footer:before{content:'';position:absolute;background-color:var(--f7-table-cell-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.data-table .data-table-pagination,.data-table .data-table-rows-select{display:flex;align-items:center}.data-table .input-cell{padding-top:8px;padding-bottom:8px;height:auto;vertical-align:top}.data-table .input-cell .table-head-label+.input{margin-top:4px}.data-table .input-cell .input{height:var(--f7-table-input-height)}.data-table .input-cell .input input,.data-table .input-cell .input select,.data-table .input-cell .input textarea{height:var(--f7-table-input-height);color:var(--f7-table-input-text-color);font-size:var(--f7-table-input-font-size)}@media (max-width:480px) and (orientation:portrait){.data-table.data-table-collapsible thead{display:none}.data-table.data-table-collapsible tbody,.data-table.data-table-collapsible td,.data-table.data-table-collapsible tr{display:block}.data-table.data-table-collapsible tr{position:relative}.data-table.data-table-collapsible tr:before{content:'';position:absolute;background-color:var(--f7-table-cell-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.data-table.data-table-collapsible tr:hover{background-color:inherit}.data-table.data-table-collapsible td{--f7-table-cell-padding-left:var(--f7-table-collapsible-cell-padding);--f7-table-cell-padding-right:var(--f7-table-collapsible-cell-padding);height:auto;min-height:var(--f7-table-body-cell-height);display:flex;align-content:center;align-items:center;justify-content:flex-start;text-align:left}.data-table.data-table-collapsible td:before{display:none!important}.data-table.data-table-collapsible td:not(.checkbox-cell):before{width:40%;display:block!important;content:attr(data-collapsible-title);position:relative;height:auto;background:0 0!important;transform:none!important;font-size:var(--f7-table-head-font-size);font-weight:var(--f7-table-head-font-weight);color:var(--f7-table-head-text-color);margin-right:16px;flex-shrink:0}.data-table.data-table-collapsible td.checkbox-cell{position:absolute;top:0;left:0}.data-table.data-table-collapsible td.checkbox-cell+td{padding-left:16px}.data-table.data-table-collapsible td.checkbox-cell~td{margin-left:32px}}.data-table .xsmall-landscape-only,.data-table .xsmall-only{display:none}@media (min-width:480px){.data-table .xsmall-only{display:table-cell}}@media (min-width:480px) and (orientation:landscape){.data-table .xsmall-landscape-only{display:table-cell}}.data-table .small-landscape-only,.data-table .small-only{display:none}@media (min-width:568px){.data-table .small-only{display:table-cell}}@media (min-width:568px) and (orientation:landscape){.data-table .small-landscape-only{display:table-cell}}.data-table .medium-landscape-only,.data-table .medium-only{display:none}@media (min-width:768px){.data-table .medium-only{display:table-cell}}@media (min-width:768px) and (orientation:landscape){.data-table .medium-landscape-only{display:table-cell}}.data-table .large-landscape-only,.data-table .large-only{display:none}@media (min-width:1024px){.data-table .large-only{display:table-cell}}@media (min-width:1024px) and (orientation:landscape){.data-table .large-landscape-only{display:table-cell}}.data-table .xlarge-landscape-only,.data-table .xlarge-only{display:none}@media (min-width:1200px){.data-table .xlarge-only{display:table-cell}}@media (min-width:1200px) and (orientation:landscape){.data-table .xlarge-landscape-only{display:table-cell}}.ios .data-table td.actions-cell a.link+a.link,.ios .data-table th.actions-cell a.link+a.link{margin-left:16px}.ios .sortable-cell:not(.numeric-cell):after{margin-left:5px}.ios .sortable-cell.numeric-cell:before{margin-right:5px}.ios .data-table-actions .button+.button,.ios .data-table-actions a.link+a.link,.ios .data-table-links .button+.button,.ios .data-table-links a.link+a.link{margin-left:16px}.ios .data-table-actions a.link.icon-only{width:44px;height:44px}.ios .data-table-pagination a.link,.ios .data-table-rows-select a.link{width:44px;height:44px}.ios .data-table-rows-select+.data-table-pagination{margin-left:30px}.ios .data-table-rows-select .input{margin-left:20px}.ios .data-table-pagination-label{margin-right:16px}.md .data-table td.actions-cell a.link+a.link,.md .data-table th.actions-cell a.link+a.link{margin-left:24px}.md .data-table td.actions-cell a.icon-only,.md .data-table th.actions-cell a.icon-only{width:24px;height:24px;line-height:24px}.md .sortable-cell:not(.numeric-cell):after{margin-left:8px}.md .sortable-cell.numeric-cell:before{margin-right:8px}.md .data-table-actions .button+.button,.md .data-table-actions a.link+a.link,.md .data-table-links .button+.button,.md .data-table-links a.link+a.link{margin-left:24px}.md .data-table-actions a.link.icon-only{width:24px;height:24px;overflow:visible}.md .data-table-actions a.link.icon-only.active-state{background:0 0}.md .data-table-pagination a.link,.md .data-table-rows-select a.link{width:48px;height:48px}.md .data-table-pagination a.link:before,.md .data-table-rows-select a.link:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .data-table-pagination a.link.icon-only:before,.md .data-table-pagination a.link.input-clear-button:before,.md .data-table-pagination a.link.notification-close-button:before,.md .data-table-pagination a.link.ripple-inset:before,.md .data-table-pagination a.link.searchbar-disable-button:before,.md .data-table-rows-select a.link.icon-only:before,.md .data-table-rows-select a.link.input-clear-button:before,.md .data-table-rows-select a.link.notification-close-button:before,.md .data-table-rows-select a.link.ripple-inset:before,.md .data-table-rows-select a.link.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .data-table-pagination a.link.active-state:before,.md .data-table-rows-select a.link.active-state:before{opacity:1;transition-duration:150ms}.md .data-table-rows-select+.data-table-pagination{margin-left:32px}.md .data-table-rows-select .input{margin-left:24px}.md .data-table-pagination-label{margin-right:20px}.md .input-cell .input-clear-button{transform:scale(.8)}.aurora .data-table td.actions-cell a.link+a.link,.aurora .data-table th.actions-cell a.link+a.link{margin-left:8px}.aurora .sortable-cell:not(.numeric-cell):after{margin-left:8px}.aurora .sortable-cell.numeric-cell:before{margin-right:8px}.aurora .data-table-actions .button+.button,.aurora .data-table-actions a.link+a.link,.aurora .data-table-links .button+.button,.aurora .data-table-links a.link+a.link{margin-left:16px}.aurora .data-table-pagination a.link,.aurora .data-table-rows-select a.link{width:48px;height:48px}.aurora .data-table-rows-select+.data-table-pagination{margin-left:16px}.aurora .data-table-rows-select .input{margin-left:16px}.aurora .data-table-pagination-label{margin-right:16px}:root{--f7-fab-margin:16px;--f7-fab-text-color:#fff;--f7-fab-extended-text-font-size:14px;--f7-fab-extended-text-padding:0 20px;--f7-fab-label-bg-color:#fff;--f7-fab-label-text-color:#333;--f7-fab-label-border-radius:4px;--f7-fab-label-padding:4px 12px;--f7-fab-label-font-size:inherit;--f7-fab-button-size:40px}.ios{--f7-fab-size:50px;--f7-fab-box-shadow:0px 2px 4px rgba(0, 0, 0, 0.4);--f7-fab-extended-size:50px;--f7-fab-extended-text-font-weight:600;--f7-fab-extended-text-letter-spacing:0;--f7-fab-label-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.4)}.md{--f7-fab-size:56px;--f7-fab-box-shadow:var(--f7-elevation-6);--f7-fab-extended-size:48px;--f7-fab-extended-text-font-weight:500;--f7-fab-extended-text-letter-spacing:0.05em;--f7-fab-label-box-shadow:var(--f7-elevation-3)}.aurora{--f7-fab-size:56px;--f7-fab-box-shadow:var(--f7-elevation-6);--f7-fab-extended-size:48px;--f7-fab-extended-text-font-weight:600;--f7-fab-extended-text-letter-spacing:0;--f7-fab-label-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.4)}.fab-backdrop{z-index:1400}.fab{position:absolute;z-index:1500}.fab a{--f7-touch-ripple-color:var(--f7-touch-ripple-white)}.fab-left-bottom,.fab-left-center,.fab-left-top{left:calc(var(--f7-fab-margin) + var(--f7-safe-area-left))}.fab-right-bottom,.fab-right-center,.fab-right-top{right:calc(var(--f7-fab-margin) + var(--f7-safe-area-right))}.fab-center-top,.fab-left-top,.fab-right-top{top:var(--f7-fab-margin)}.fab-center-bottom,.fab-left-bottom,.fab-right-bottom{bottom:calc(var(--f7-fab-margin) + var(--f7-safe-area-bottom))}.fab-center-bottom,.fab-center-center,.fab-center-top{left:50%;transform:translateX(-50%)}.fab-center-center,.fab-left-center,.fab-right-center{top:50%;transform:translateY(-50%)}.fab-center-center{top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}.fab-buttons a,.fab>a{background-color:var(--f7-fab-bg-color,var(--f7-theme-color));width:var(--f7-fab-size);height:var(--f7-fab-size);box-shadow:var(--f7-fab-box-shadow);border-radius:calc(var(--f7-fab-size)/ 2);position:relative;transition-duration:.3s;display:flex;align-items:center;justify-content:center;overflow:hidden;z-index:1;color:var(--f7-fab-text-color)}.fab-buttons a.active-state,.fab>a.active-state{background-color:var(--f7-fab-pressed-bg-color,var(--f7-theme-color-shade))}.fab>a i{position:absolute;left:50%;top:50%;transform:translate3d(-50%,-50%,0) rotate(0deg) scale(1);transition:.3s}.fab>a i+i{transform:translate3d(-50%,-50%,0) rotate(-90deg) scale(.5);opacity:0}.fab-buttons a{border-radius:calc(var(--f7-fab-button-size)/ 2);width:var(--f7-fab-button-size);height:var(--f7-fab-button-size)}.fab-buttons{display:flex;visibility:hidden;pointer-events:none;position:absolute}.fab-buttons a{opacity:0}.fab-opened:not(.fab-morph)>a i{transform:translate3d(-50%,-50%,0) rotate(90deg) scale(.5);opacity:0}.fab-opened:not(.fab-morph)>a i+i{transform:translate3d(-50%,-50%,0) rotate(0deg) scale(1);opacity:1}.fab-opened .fab-buttons{visibility:visible;pointer-events:auto}.fab-opened .fab-buttons a{opacity:1;transform:translate3d(0,0px,0) scale(1)!important}.fab-opened .fab-buttons a:nth-child(2){transition-delay:50ms}.fab-opened .fab-buttons a:nth-child(3){transition-delay:0.1s}.fab-opened .fab-buttons a:nth-child(4){transition-delay:150ms}.fab-opened .fab-buttons a:nth-child(5){transition-delay:0.2s}.fab-opened .fab-buttons a:nth-child(6){transition-delay:250ms}.fab-buttons-bottom,.fab-buttons-top{left:50%;width:var(--f7-fab-button-size);margin-left:calc(-1 * var(--f7-fab-button-size)/ 2)}.fab-buttons-top{bottom:100%;margin-bottom:16px;flex-direction:column-reverse}.fab-buttons-top a{transform:translate3d(0,8px,0) scale(.3);transform-origin:center bottom}.fab-buttons-top a+a{margin-bottom:16px}.fab-buttons-bottom{top:100%;margin-top:16px;flex-direction:column}.fab-buttons-bottom a{transform:translate3d(0,-8px,0) scale(.3);transform-origin:center top}.fab-buttons-bottom a+a{margin-top:16px}.fab-buttons-left,.fab-buttons-right{top:50%;height:var(--f7-fab-button-size);margin-top:calc(-1 * var(--f7-fab-button-size)/ 2)}.fab-buttons-left{right:100%;margin-right:16px;flex-direction:row-reverse}.fab-buttons-left a{transform:translate3d(8px,0px,0) scale(.3);transform-origin:right center}.fab-buttons-left a+a{margin-right:16px}.fab-buttons-right{left:100%;margin-left:16px}.fab-buttons-right a{transform:translate3d(-8px,0,0) scale(.3);transform-origin:left center}.fab-buttons-right a+a{margin-left:16px}.fab-buttons-center{left:0%;top:0%;width:100%;height:100%}.fab-buttons-center a{position:absolute}.fab-buttons-center a:nth-child(1){left:50%;margin-left:calc(-1 * var(--f7-fab-button-size)/ 2);bottom:100%;margin-bottom:16px;transform:translateY(-8px) scale(.3);transform-origin:center bottom}.fab-buttons-center a:nth-child(2){left:100%;margin-top:calc(-1 * var(--f7-fab-button-size)/ 2);top:50%;margin-left:16px;transform:translateX(-8px) scale(.3);transform-origin:left center}.fab-buttons-center a:nth-child(3){left:50%;margin-left:calc(-1 * var(--f7-fab-button-size)/ 2);top:100%;margin-top:16px;transform:translateY(8px) scale(.3);transform-origin:center top}.fab-buttons-center a:nth-child(4){right:100%;margin-top:calc(-1 * var(--f7-fab-button-size)/ 2);top:50%;margin-right:16px;transform:translateX(8px) scale(.3);transform-origin:right center}.fab-morph{border-radius:calc(var(--f7-fab-size)/ 2);background:var(--f7-fab-bg-color,var(--f7-theme-color));box-shadow:var(--f7-fab-box-shadow)}.fab-morph>a{box-shadow:none;background:0 0!important}.fab-opened.fab-morph>a i{opacity:0}.fab-morph,.fab-morph-target,.fab-morph>a{transition-duration:250ms}.fab-morph-target:not(.fab-morph-target-visible){display:none}.fab-extended{width:auto;min-width:var(--f7-fab-extended-size)}.fab-extended>a{width:100%;height:var(--f7-fab-extended-size)}.fab-extended>a i{left:calc(var(--f7-fab-extended-size)/ 2)}.fab-extended i~.fab-text{padding-left:var(--f7-fab-extended-size)}.fab-extended>a{width:100%!important}.fab-text{box-sizing:border-box;font-size:var(--f7-fab-extended-text-font-size);padding:var(--f7-fab-extended-text-padding);font-weight:var(--f7-fab-extended-text-font-weight);letter-spacing:var(--f7-fab-extended-text-letter-spacing);text-transform:uppercase}.fab-label-button{overflow:visible!important}.fab-label{position:absolute;top:50%;padding:var(--f7-fab-label-padding);border-radius:var(--f7-fab-label-border-radius);background:var(--f7-fab-label-bg-color);color:var(--f7-fab-label-text-color);box-shadow:var(--f7-fab-label-box-shadow);white-space:nowrap;transform:translateY(-50%);pointer-events:none;font-size:var(--f7-fab-label-font-size)}.fab-right-bottom .fab-label,.fab-right-center .fab-label,.fab-right-top .fab-label{right:100%;margin-right:8px}.fab-left-bottom .fab-label,.fab-left-center .fab-label,.fab-left-top .fab-label{left:100%;margin-left:8px}.navbars~* .fab-center-top,.navbars~* .fab-left-top,.navbars~* .fab-right-top,.navbars~.fab-center-top,.navbars~.fab-left-top,.navbars~.fab-right-top,.navbar~* .fab-center-top,.navbar~* .fab-left-top,.navbar~* .fab-right-top,.navbar~.fab-center-top,.navbar~.fab-left-top,.navbar~.fab-right-top{margin-top:calc(var(--f7-navbar-height) + var(--f7-safe-area-top))}.ios .toolbar-top-ios~* .fab-center-top,.ios .toolbar-top-ios~* .fab-left-top,.ios .toolbar-top-ios~* .fab-right-top,.ios .toolbar-top-ios~.fab-center-top,.ios .toolbar-top-ios~.fab-left-top,.ios .toolbar-top-ios~.fab-right-top,.md .toolbar-top-md~* .fab-center-top,.md .toolbar-top-md~* .fab-left-top,.md .toolbar-top-md~* .fab-right-top,.md .toolbar-top-md~.fab-center-top,.md .toolbar-top-md~.fab-left-top,.md .toolbar-top-md~.fab-right-top,.toolbar-top~* .fab-center-top,.toolbar-top~* .fab-left-top,.toolbar-top~* .fab-right-top,.toolbar-top~.fab-center-top,.toolbar-top~.fab-left-top,.toolbar-top~.fab-right-top{margin-top:var(--f7-toolbar-height)}.ios .toolbar-bottom-ios~* .fab-center-bottom,.ios .toolbar-bottom-ios~* .fab-left-bottom,.ios .toolbar-bottom-ios~* .fab-right-bottom,.ios .toolbar-bottom-ios~.fab-center-bottom,.ios .toolbar-bottom-ios~.fab-left-bottom,.ios .toolbar-bottom-ios~.fab-right-bottom,.md .toolbar-bottom-md~* .fab-center-bottom,.md .toolbar-bottom-md~* .fab-left-bottom,.md .toolbar-bottom-md~* .fab-right-bottom,.md .toolbar-bottom-md~.fab-center-bottom,.md .toolbar-bottom-md~.fab-left-bottom,.md .toolbar-bottom-md~.fab-right-bottom,.toolbar-bottom~* .fab-center-bottom,.toolbar-bottom~* .fab-left-bottom,.toolbar-bottom~* .fab-right-bottom,.toolbar-bottom~.fab-center-bottom,.toolbar-bottom~.fab-left-bottom,.toolbar-bottom~.fab-right-bottom{margin-bottom:var(--f7-toolbar-height)}.ios .tabbar-labels.toolbar-bottom-ios~* .fab-center-bottom,.ios .tabbar-labels.toolbar-bottom-ios~* .fab-left-bottom,.ios .tabbar-labels.toolbar-bottom-ios~* .fab-right-bottom,.ios .tabbar-labels.toolbar-bottom-ios~.fab-center-bottom,.ios .tabbar-labels.toolbar-bottom-ios~.fab-left-bottom,.ios .tabbar-labels.toolbar-bottom-ios~.fab-right-bottom,.md .tabbar-labels.toolbar-bottom-md~* .fab-center-bottom,.md .tabbar-labels.toolbar-bottom-md~* .fab-left-bottom,.md .tabbar-labels.toolbar-bottom-md~* .fab-right-bottom,.md .tabbar-labels.toolbar-bottom-md~.fab-center-bottom,.md .tabbar-labels.toolbar-bottom-md~.fab-left-bottom,.md .tabbar-labels.toolbar-bottom-md~.fab-right-bottom,.tabbar-labels.toolbar-bottom~* .fab-center-bottom,.tabbar-labels.toolbar-bottom~* .fab-left-bottom,.tabbar-labels.toolbar-bottom~* .fab-right-bottom,.tabbar-labels.toolbar-bottom~.fab-center-bottom,.tabbar-labels.toolbar-bottom~.fab-left-bottom,.tabbar-labels.toolbar-bottom~.fab-right-bottom{margin-bottom:var(--f7-tabbar-labels-height)}.ios .tabbar-labels.toolbar-top-ios~* .fab-center-bottom,.ios .tabbar-labels.toolbar-top-ios~* .fab-left-bottom,.ios .tabbar-labels.toolbar-top-ios~* .fab-right-bottom,.ios .tabbar-labels.toolbar-top-ios~.fab-center-bottom,.ios .tabbar-labels.toolbar-top-ios~.fab-left-bottom,.ios .tabbar-labels.toolbar-top-ios~.fab-right-bottom,.md .tabbar-labels.toolbar-top-md~* .fab-center-bottom,.md .tabbar-labels.toolbar-top-md~* .fab-left-bottom,.md .tabbar-labels.toolbar-top-md~* .fab-right-bottom,.md .tabbar-labels.toolbar-top-md~.fab-center-bottom,.md .tabbar-labels.toolbar-top-md~.fab-left-bottom,.md .tabbar-labels.toolbar-top-md~.fab-right-bottom,.tabbar-labels.toolbar-top~* .fab-center-bottom,.tabbar-labels.toolbar-top~* .fab-left-bottom,.tabbar-labels.toolbar-top~* .fab-right-bottom,.tabbar-labels.toolbar-top~.fab-center-bottom,.tabbar-labels.toolbar-top~.fab-left-bottom,.tabbar-labels.toolbar-top~.fab-right-bottom{margin-top:var(--f7-tabbar-labels-height)}.messagebar~* .fab-center-bottom,.messagebar~* .fab-left-bottom,.messagebar~* .fab-right-bottom,.messagebar~.fab-center-bottom,.messagebar~.fab-left-bottom,.messagebar~.fab-right-bottom{margin-bottom:var(--f7-messagebar-height)}.ios .navbar+.toolbar-top-ios~* .fab-center-top,.ios .navbar+.toolbar-top-ios~* .fab-left-top,.ios .navbar+.toolbar-top-ios~* .fab-right-top,.ios .navbar+.toolbar-top-ios~.fab-center-top,.ios .navbar+.toolbar-top-ios~.fab-left-top,.ios .navbar+.toolbar-top-ios~.fab-right-top,.md .navbar+.toolbar-top-ios~* .fab-center-top,.md .navbar+.toolbar-top-ios~* .fab-left-top,.md .navbar+.toolbar-top-ios~* .fab-right-top,.md .navbar+.toolbar-top-ios~.fab-center-top,.md .navbar+.toolbar-top-ios~.fab-left-top,.md .navbar+.toolbar-top-ios~.fab-right-top,.navbar+.toolbar-top~* .fab-center-top,.navbar+.toolbar-top~* .fab-left-top,.navbar+.toolbar-top~* .fab-right-top,.navbar+.toolbar-top~.fab-center-top,.navbar+.toolbar-top~.fab-left-top,.navbar+.toolbar-top~.fab-right-top{margin-top:calc(var(--f7-toolbar-height) + var(--f7-navbar-height) + var(--f7-safe-area-top))}.ios .navbar+.toolbar-top-ios.tabbar-labels~* .fab-center-top,.ios .navbar+.toolbar-top-ios.tabbar-labels~* .fab-left-top,.ios .navbar+.toolbar-top-ios.tabbar-labels~* .fab-right-top,.ios .navbar+.toolbar-top-ios.tabbar-labels~.fab-center-top,.ios .navbar+.toolbar-top-ios.tabbar-labels~.fab-left-top,.ios .navbar+.toolbar-top-ios.tabbar-labels~.fab-right-top,.md .navbar+.toolbar-top-ios.tabbar-labels~* .fab-center-top,.md .navbar+.toolbar-top-ios.tabbar-labels~* .fab-left-top,.md .navbar+.toolbar-top-ios.tabbar-labels~* .fab-right-top,.md .navbar+.toolbar-top-ios.tabbar-labels~.fab-center-top,.md .navbar+.toolbar-top-ios.tabbar-labels~.fab-left-top,.md .navbar+.toolbar-top-ios.tabbar-labels~.fab-right-top,.navbar+.toolbar-top.tabbar-labels~* .fab-center-top,.navbar+.toolbar-top.tabbar-labels~* .fab-left-top,.navbar+.toolbar-top.tabbar-labels~* .fab-right-top,.navbar+.toolbar-top.tabbar-labels~.fab-center-top,.navbar+.toolbar-top.tabbar-labels~.fab-left-top,.navbar+.toolbar-top.tabbar-labels~.fab-right-top{margin-top:calc(var(--f7-tabbar-labels-height) + var(--f7-navbar-height) + var(--f7-safe-area-top))}.ios .navbars+.toolbar-top-ios~* .fab-center-top,.ios .navbars+.toolbar-top-ios~* .fab-left-top,.ios .navbars+.toolbar-top-ios~* .fab-right-top,.ios .navbars+.toolbar-top-ios~.fab-center-top,.ios .navbars+.toolbar-top-ios~.fab-left-top,.ios .navbars+.toolbar-top-ios~.fab-right-top,.navbars+.toolbar-top~* .fab-center-top,.navbars+.toolbar-top~* .fab-left-top,.navbars+.toolbar-top~* .fab-right-top,.navbars+.toolbar-top~.fab-center-top,.navbars+.toolbar-top~.fab-left-top,.navbars+.toolbar-top~.fab-right-top{margin-top:calc(var(--f7-toolbar-height) + var(--f7-navbar-height) + var(--f7-safe-area-top))}.ios .navbars+.toolbar-top-ios.tabbar-labels~* .fab-center-top,.ios .navbars+.toolbar-top-ios.tabbar-labels~* .fab-left-top,.ios .navbars+.toolbar-top-ios.tabbar-labels~* .fab-right-top,.ios .navbars+.toolbar-top-ios.tabbar-labels~.fab-center-top,.ios .navbars+.toolbar-top-ios.tabbar-labels~.fab-left-top,.ios .navbars+.toolbar-top-ios.tabbar-labels~.fab-right-top,.navbars+.toolbar-top.tabbar-labels~* .fab-center-top,.navbars+.toolbar-top.tabbar-labels~* .fab-left-top,.navbars+.toolbar-top.tabbar-labels~* .fab-right-top,.navbars+.toolbar-top.tabbar-labels~.fab-center-top,.navbars+.toolbar-top.tabbar-labels~.fab-left-top,.navbars+.toolbar-top.tabbar-labels~.fab-right-top{margin-top:calc(var(--f7-tabbar-labels-height) + var(--f7-navbar-height) + var(--f7-safe-area-top))}.ios .fab-buttons a.active-state,.ios .fab>a.active-state{transition-duration:0s}:root{--f7-searchbar-input-border-width:0px;--f7-searchbar-input-border-color:transparent;--f7-searchbar-input-text-color:#000;--f7-searchbar-placeholder-color:rgba(0, 0, 0, 0.4)}:root .theme-dark,:root.theme-dark{--f7-searchbar-input-text-color:#fff;--f7-searchbar-placeholder-color:rgba(255, 255, 255, 0.4)}.ios{--f7-searchbar-height:44px;--f7-searchbar-inner-padding-left:8px;--f7-searchbar-inner-padding-right:8px;--f7-searchbar-input-font-size:17px;--f7-searchbar-input-border-radius:8px;--f7-searchbar-input-height:32px;--f7-searchbar-inline-input-height:32px;--f7-searchbar-input-padding-horizontal:28px;--f7-searchbar-backdrop-bg-color:rgba(0, 0, 0, 0.4);--f7-searchbar-shadow-image:none;--f7-searchbar-in-page-content-margin:0px;--f7-searchbar-in-page-content-box-shadow:none;--f7-searchbar-in-page-content-border-radius:0;--f7-searchbar-in-page-content-input-border-radius:0;--f7-searchbar-search-icon-color:rgba(0, 0, 0, 0.4);--f7-searchbar-input-bg-color:#e4e4e4}.ios .theme-dark,.ios.theme-dark{--f7-searchbar-search-icon-color:rgba(255, 255, 255, 0.4);--f7-searchbar-input-bg-color:#2a2a2a}.md{--f7-searchbar-border-color:transparent;--f7-searchbar-height:48px;--f7-searchbar-inner-padding-left:0px;--f7-searchbar-inner-padding-right:0px;--f7-searchbar-link-color:#737373;--f7-searchbar-search-icon-color:#737373;--f7-searchbar-input-font-size:20px;--f7-searchbar-input-border-radius:0px;--f7-searchbar-input-height:100%;--f7-searchbar-inline-input-height:32px;--f7-searchbar-inline-input-border-radius:4px;--f7-searchbar-input-padding-horizontal:48px;--f7-searchbar-inline-input-padding-horizontal:24px;--f7-searchbar-input-clear-button-color:#737373;--f7-searchbar-backdrop-bg-color:rgba(0, 0, 0, 0.25);--f7-searchbar-shadow-image:var(--f7-bars-shadow-bottom-image);--f7-searchbar-in-page-content-margin:8px;--f7-searchbar-in-page-content-box-shadow:var(--f7-elevation-1);--f7-searchbar-in-page-content-border-radius:4px;--f7-searchbar-in-page-content-input-border-radius:4px;--f7-searchbar-bg-color:#fff;--f7-searchbar-input-bg-color:#fff}.md .theme-dark,.md.theme-dark{--f7-searchbar-bg-color:#202020;--f7-searchbar-input-bg-color:#202020}.aurora{--f7-searchbar-height:56px;--f7-searchbar-inner-padding-left:16px;--f7-searchbar-inner-padding-right:16px;--f7-searchbar-input-font-size:16px;--f7-searchbar-input-border-radius:8px;--f7-searchbar-input-height:38px;--f7-searchbar-inline-input-height:38px;--f7-searchbar-input-padding-horizontal:34px;--f7-searchbar-backdrop-bg-color:rgba(0, 0, 0, 0.4);--f7-searchbar-shadow-image:none;--f7-searchbar-in-page-content-margin:0px;--f7-searchbar-in-page-content-box-shadow:none;--f7-searchbar-in-page-content-border-radius:0;--f7-searchbar-search-icon-color:rgba(0, 0, 0, 0.4);--f7-searchbar-input-bg-color:#e4e4e4}.aurora .theme-dark,.aurora.theme-dark{--f7-searchbar-search-icon-color:rgba(255, 255, 255, 0.4);--f7-searchbar-input-bg-color:#2a2a2a}.searchbar{--f7-link-highlight-color:var(--f7-link-highlight-black);width:100%;position:relative;z-index:200;height:var(--f7-searchbar-height);background-image:var(--f7-searchbar-bg-image,var(--f7-bars-bg-image));background-color:var(--f7-searchbar-bg-color,var(--f7-bars-bg-color))}.theme-dark .searchbar{--f7-link-highlight-color:var(--f7-link-highlight-white)}.searchbar input[type=search]::-webkit-search-decoration{display:none}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .searchbar{background-color:rgba(var(--f7-searchbar-bg-color-rgb,var(--f7-bars-bg-color-rgb)),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.ios .subnavbar .searchbar{background-color:transparent;-webkit-backdrop-filter:none;backdrop-filter:none}.ios .subnavbar .searchbar:after{display:none!important}.searchbar.no-border:after,.searchbar.no-hairline:after{display:none!important}.searchbar.no-shadow:before{display:none!important}.searchbar:after{content:'';position:absolute;background-color:var(--f7-searchbar-border-color,var(--f7-bars-border-color));display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.page>.searchbar:not(.searchbar-inline){z-index:600}.page>.searchbar:not(.searchbar-inline):before{content:'';position:absolute;right:0;width:100%;top:100%;bottom:auto;height:8px;pointer-events:none;background:var(--f7-searchbar-shadow-image)}.searchbar input[type=search],.searchbar input[type=text]{box-sizing:border-box;width:100%;height:100%;display:block;border:var(--f7-searchbar-input-border-width) solid var(--f7-searchbar-input-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:inherit;font-weight:400;color:var(--f7-searchbar-input-text-color);font-size:var(--f7-searchbar-input-font-size);background-color:var(--f7-searchbar-input-bg-color);border-radius:var(--f7-searchbar-input-border-radius);position:relative;padding:0;padding-left:calc(var(--f7-searchbar-input-padding-horizontal) + var(--f7-searchbar-input-extra-padding-left,0px));padding-right:calc(var(--f7-searchbar-input-padding-horizontal) + var(--f7-searchbar-input-extra-padding-right,0px))}.searchbar input[type=search]::-webkit-input-placeholder,.searchbar input[type=text]::-webkit-input-placeholder{color:var(--f7-searchbar-placeholder-color);opacity:1}.searchbar input[type=search]::placeholder,.searchbar input[type=text]::placeholder{color:var(--f7-searchbar-placeholder-color);opacity:1}.searchbar input::-webkit-search-cancel-button{-webkit-appearance:none;appearance:none}.searchbar .searchbar-input-wrap{flex-shrink:1;width:100%;height:var(--f7-searchbar-input-height);position:relative}.searchbar a{color:var(--f7-searchbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.page>.searchbar:not(.searchbar-inline){position:absolute;left:0;top:0}.page-content .searchbar:not(.searchbar-inline){border-radius:var(--f7-searchbar-in-page-content-border-radius);margin:var(--f7-searchbar-in-page-content-margin);width:auto;box-shadow:var(--f7-searchbar-in-page-content-box-shadow)}.page-content .searchbar:not(.searchbar-inline) .searchbar-inner,.page-content .searchbar:not(.searchbar-inline) input[type=search],.page-content .searchbar:not(.searchbar-inline) input[type=text]{border-radius:var(--f7-searchbar-in-page-content-input-border-radius,var(--f7-searchbar-input-border-radius))}.searchbar .input-clear-button{color:var(--f7-searchbar-input-clear-button-color,var(--f7-input-clear-button-color))}.searchbar-expandable{--f7-searchbar-expandable-size:var(--f7-searchbar-height);position:absolute;transition-duration:.3s;pointer-events:none}.navbar .searchbar-expandable{background:0 0}.navbar .searchbar-expandable:after{display:none!important}.navbar .searchbar.searchbar-expandable{--f7-searchbar-expandable-size:var(--f7-navbar-height)}.toolbar .searchbar.searchbar-expandable{--f7-searchbar-expandable-size:var(--f7-toolbar-height)}.subnavbar .searchbar.searchbar-expandable{--f7-searchbar-expandable-size:var(--f7-subnavbar-height)}.tabbar-labels .searchbar.searchbar-expandable{--f7-searchbar-expandable-size:var(--f7-tabbar-labels-height)}.searchbar-inner{position:absolute;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;box-sizing:border-box;padding:0 calc(var(--f7-searchbar-inner-padding-right) + var(--f7-safe-area-right)) 0 calc(var(--f7-searchbar-inner-padding-left) + var(--f7-safe-area-left))}.searchbar-disable-button{cursor:pointer;pointer-events:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;outline:0;padding:0;margin:0;width:auto;opacity:0}.searchbar-icon{pointer-events:none;background-position:center;background-repeat:no-repeat}.searchbar-icon:after{color:var(--f7-searchbar-search-icon-color);font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px}.searchbar-backdrop{position:absolute;left:0;top:0;width:100%;height:100%;z-index:100;opacity:0;pointer-events:none;transition-duration:.3s;transform:translate3d(0,0,0);background:var(--f7-searchbar-backdrop-bg-color)}.searchbar-backdrop.searchbar-backdrop-in{opacity:1;pointer-events:auto}.page-content>.searchbar-backdrop{position:fixed}.searchbar-not-found{display:none}.hidden-by-searchbar,.list .hidden-by-searchbar,.list li.hidden-by-searchbar,.list.li.hidden-by-searchbar{display:none!important}.navbar.with-searchbar-expandable-enabled-no-transition{--f7-navbar-large-collapse-progress:1}.navbar.with-searchbar-expandable-enabled{--f7-navbar-large-collapse-progress:1}.navbar.with-searchbar-expandable-enabled .navbar-bg,.navbar.with-searchbar-expandable-enabled .title-large,.navbar.with-searchbar-expandable-enabled .title-large-text{transition-duration:.3s}.navbar.with-searchbar-expandable-closing .navbar-bg,.navbar.with-searchbar-expandable-closing .title-large,.navbar.with-searchbar-expandable-closing .title-large-text{transition-duration:.3s}.page-content.with-searchbar-expandable-enabled{height:calc(100% + var(--f7-navbar-large-title-height));transform:translateY(calc(-1 * var(--f7-navbar-large-title-height)));transition-duration:.3s;transition-property:transform}.page-content.with-searchbar-expandable-closing{transition-duration:.3s}.navbars~.page:not(.no-navbar)>.searchbar,.navbar~.page:not(.no-navbar)>.searchbar,.page>.navbar~.searchbar{top:calc(var(--f7-navbar-height) + var(--f7-safe-area-top))}.navbars~.page-with-navbar-large:not(.no-navbar) .searchbar,.navbar~.page-with-navbar-large:not(.no-navbar) .searchbar,.page-with-navbar-large .navbar~* .searchbar,.page-with-navbar-large .navbar~.searchbar{top:calc(var(--f7-navbar-height) + var(--f7-navbar-large-title-height) + var(--f7-safe-area-top));transform:translate3d(0,calc(-1 * var(--f7-navbar-large-collapse-progress) * var(--f7-navbar-large-title-height)),0)}.navbars~.page-with-navbar-large:not(.no-navbar) .page-content .searchbar,.page-with-navbar-large .page-content .searchbar{top:0;transform:none}.searchbar~*{--f7-page-searchbar-offset:var(--f7-searchbar-height)}.aurora .page>.toolbar-top-aurora~.searchbar,.ios .page>.toolbar-top-ios~.searchbar,.md .page>.toolbar-top-md~.searchbar,.page>.toolbar-top~.searchbar{top:var(--f7-toolbar-height)}.aurora .page>.tabbar-labels.toolbar-top-aurora~.searchbar,.ios .page>.tabbar-labels.toolbar-top-ios~.searchbar,.md .page>.tabbar-labels.toolbar-top-md~.searchbar,.page>.tabbar-labels.toolbar-top~.searchbar{top:var(--f7-tabbar-labels-height)}.aurora .page>.navbar~.toolbar-top-aurora~.searchbar,.ios .page>.navbar~.toolbar-top-ios~.searchbar,.md .page>.navbar~.toolbar-top-md~.searchbar,.page>.navbar~.toolbar-top~.searchbar{top:calc(var(--f7-navbar-height) + var(--f7-toolbar-height) + var(--f7-safe-area-top))}.aurora .page>.navbar~.tabbar-labels.toolbar-top-aurora~.searchbar,.ios .page>.navbar~.tabbar-labels.toolbar-top-ios~.searchbar,.md .page>.navbar~.tabbar-labels.toolbar-top-md~.searchbar,.page>.navbar~.tabbar-labels.toolbar-top~.searchbar{top:calc(var(--f7-navbar-height) + var(--f7-tabbar-labels-height) + var(--f7-safe-area-top))}.searchbar.searchbar-inline{width:auto;height:auto;background-color:transparent;background-image:none}.searchbar.searchbar-inline:after,.searchbar.searchbar-inline:before{display:none!important}.searchbar.searchbar-inline .searchbar-input-wrap{height:var(--f7-searchbar-inline-input-height,var(--f7-searchbar-input-height))}.searchbar.searchbar-inline .searchbar-inner{padding:0;position:static;width:auto;height:auto}.searchbar.searchbar-inline input[type=search],.searchbar.searchbar-inline input[type=text]{font-size:var(--f7-searchbar-inline-input-font-size, var(--f7-searchbar-input-font-size));border-radius:var(--f7-searchbar-inline-input-border-radius,var(--f7-searchbar-input-border-radius));padding-left:calc(var(--f7-searchbar-inline-input-padding-horizontal,var(--f7-searchbar-input-padding-horizontal)) + var(--f7-searchbar-input-extra-padding-left,0px));padding-right:calc(var(--f7-searchbar-inline-input-padding-horizontal,var(--f7-searchbar-input-padding-horizontal)) + var(--f7-searchbar-input-extra-padding-right,0px))}.ios .searchbar input[type=search],.ios .searchbar input[type=text]{z-index:30}.ios .searchbar .input-clear-button{z-index:40;right:7px}.ios .searchbar-icon{width:13px;height:13px;position:absolute;top:50%;margin-top:-6px;z-index:40;left:8px}.ios .searchbar-icon:after{content:'search_ios';line-height:13px}.ios .searchbar-disable-button{font-size:17px;flex-shrink:0;transform:translate3d(0,0,0);transition-duration:.3s;color:var(--f7-searchbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)));display:none}.ios .searchbar-disable-button.active-state{transition-duration:0s;opacity:.3!important}.ios .searchbar-enabled .searchbar-disable-button{pointer-events:auto;opacity:1;margin-left:8px}.ios .searchbar:not(.searchbar-enabled) .searchbar-disable-button{transition-duration:.3s!important}.ios .searchbar-expandable{left:0;bottom:0;opacity:1;width:100%;height:0%;transform:translate3d(0,0,0);overflow:hidden}.ios .searchbar-expandable .searchbar-disable-button{margin-left:8px;opacity:1;display:block}.ios .searchbar-expandable .searchbar-inner{height:var(--f7-searchbar-expandable-size)}.ios .navbar.with-searchbar-expandable-closing .navbar-bg,.ios .navbar.with-searchbar-expandable-enabled .navbar-bg{transition-property:transform,opacity}.ios .navbar.with-searchbar-expandable-closing .left,.ios .navbar.with-searchbar-expandable-closing .navbar-bg,.ios .navbar.with-searchbar-expandable-closing .right,.ios .navbar.with-searchbar-expandable-closing .title,.ios .navbar.with-searchbar-expandable-enabled .left,.ios .navbar.with-searchbar-expandable-enabled .navbar-bg,.ios .navbar.with-searchbar-expandable-enabled .right,.ios .navbar.with-searchbar-expandable-enabled .title{transition-duration:.3s}.ios .navbar.with-searchbar-expandable-enabled .left,.ios .navbar.with-searchbar-expandable-enabled .right,.ios .navbar.with-searchbar-expandable-enabled .title,.ios .navbar.with-searchbar-expandable-enabled-no-transition .left,.ios .navbar.with-searchbar-expandable-enabled-no-transition .right,.ios .navbar.with-searchbar-expandable-enabled-no-transition .title{transform:translateY(calc(-1 * var(--f7-navbar-height)));opacity:0!important}.ios .searchbar-expandable.searchbar-enabled{opacity:1;height:var(--f7-searchbar-expandable-size);pointer-events:auto}.md .searchbar-disable-button,.md .searchbar-icon{position:absolute;left:calc(-4px + var(--f7-safe-area-left));top:50%;transition-duration:.3s}.md .searchbar-icon{width:24px;height:24px;margin-left:12px;margin-top:-12px}.md .searchbar-icon:after{content:'search_md';line-height:1.2}.md .searchbar-disable-button{width:48px;height:48px;transform:rotate(-90deg) scale(.5);font-size:0!important;display:block;margin-top:-24px;color:var(--f7-searchbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.md .searchbar-disable-button:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .searchbar-disable-button.icon-only:before,.md .searchbar-disable-button.input-clear-button:before,.md .searchbar-disable-button.notification-close-button:before,.md .searchbar-disable-button.ripple-inset:before,.md .searchbar-disable-button.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .searchbar-disable-button.active-state:before{opacity:1;transition-duration:150ms}.md .searchbar-disable-button:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';text-align:center;display:block;width:100%;height:100%;font-size:20px;line-height:48px;content:'arrow_left_md'}.md .searchbar-enabled:not(.searchbar-enabled-no-disable-button) .searchbar-disable-button{transform:rotate(0deg) scale(1);pointer-events:auto;opacity:1}.md .searchbar-enabled:not(.searchbar-enabled-no-disable-button) .searchbar-icon{opacity:0;transform:rotate(90deg) scale(.5)}.md .searchbar{--f7-searchbar-input-extra-padding-left:16px}.md .searchbar .input-clear-button{width:48px;height:48px;margin-top:-24px;right:0}.md .searchbar .input-clear-button:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .searchbar .input-clear-button.icon-only:before,.md .searchbar .input-clear-button.input-clear-button:before,.md .searchbar .input-clear-button.notification-close-button:before,.md .searchbar .input-clear-button.ripple-inset:before,.md .searchbar .input-clear-button.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .searchbar .input-clear-button.active-state:before{opacity:1;transition-duration:150ms}.md .searchbar .input-clear-button:after{line-height:48px;content:'delete_md';opacity:1}.md .searchbar .input-clear-button:before{margin-left:0;margin-top:0}.md .page>.searchbar,.md .searchbar-expandable,.md .subnavbar .searchbar{--f7-searchbar-input-extra-padding-left:24px}.md .page>.searchbar .searchbar-disable-button,.md .page>.searchbar .searchbar-icon,.md .searchbar-expandable .searchbar-disable-button,.md .searchbar-expandable .searchbar-icon,.md .subnavbar .searchbar .searchbar-disable-button,.md .subnavbar .searchbar .searchbar-icon{left:calc(-4px + 8px + var(--f7-safe-area-left))}.md .searchbar-expandable{height:var(--f7-searchbar-expandable-size);opacity:0;bottom:0;border-radius:calc(var(--f7-searchbar-expandable-size));width:calc(var(--f7-searchbar-expandable-size));margin-top:calc(var(--f7-searchbar-expandable-size) * -1 / 2);transform:translate3d(0px,0px,0px);background-color:var(--f7-searchbar-input-bg-color);left:100%;margin-left:calc(var(--f7-searchbar-expandable-size) * -1)}.md .searchbar-expandable.searchbar-enabled{width:100%;border-radius:0;opacity:1;pointer-events:auto;margin-top:0;left:0;margin-left:0}.aurora .searchbar input[type=search],.aurora .searchbar input[type=text]{z-index:30}.aurora .searchbar .input-clear-button{z-index:40;right:8px}.aurora .searchbar-icon{width:24px;height:24px;position:absolute;top:50%;margin-top:-12px;z-index:40;left:5px}.aurora .searchbar-icon:after{content:'search_md';line-height:24px}.aurora .searchbar-disable-button{font-size:14px;flex-shrink:0;transform:translate3d(0,0,0);transition-duration:.3s;color:var(--f7-searchbar-link-color,var(--f7-bars-link-color,var(--f7-theme-color)));display:none}.aurora .searchbar-disable-button.active-state{transition-duration:0s;opacity:.3!important}.aurora .searchbar-enabled .searchbar-disable-button{pointer-events:auto;opacity:1;margin-left:8px}.aurora .searchbar:not(.searchbar-enabled) .searchbar-disable-button{transition-duration:.3s!important}.aurora .searchbar-expandable{left:0;top:auto;bottom:0;opacity:0;width:100%;transform:translate3d(0,0,0);overflow:hidden}.aurora .searchbar-expandable .searchbar-disable-button{margin-left:8px;opacity:1;display:block}.aurora .searchbar-expandable .searchbar-inner{height:var(--f7-searchbar-expandable-size)}.aurora .searchbar-expandable.searchbar-enabled{opacity:1;pointer-events:auto}:root{--f7-message-text-header-text-color:inherit;--f7-message-text-header-opacity:0.65;--f7-message-text-header-font-size:12px;--f7-message-text-footer-text-color:inherit;--f7-message-text-footer-opacity:0.65;--f7-message-text-footer-font-size:12px;--f7-message-bubble-line-height:1.2;--f7-message-header-font-size:12px;--f7-message-footer-font-size:11px;--f7-message-name-font-size:12px;--f7-message-name-font-weight:inherit;--f7-message-avatar-border-radius:50%;--f7-messages-title-font-weight:inherit;--f7-message-sent-text-color:#fff;--f7-messages-content-bg-color:#fff;--f7-message-typing-indicator-bg-color:#000;--f7-message-received-bg-color:#e5e5ea;--f7-message-received-text-color:#000}:root .theme-dark,:root.theme-dark{--f7-messages-title-text-color:rgba(255, 255, 255, 0.54);--f7-message-header-text-color:rgba(255, 255, 255, 0.54);--f7-message-name-text-color:rgba(255, 255, 255, 0.54);--f7-message-footer-text-color:rgba(255, 255, 255, 0.54);--f7-messages-content-bg-color:transparent;--f7-message-received-bg-color:#252525;--f7-message-received-text-color:#fff;--f7-message-typing-indicator-bg-color:#fff}.ios{--f7-messages-title-text-color:rgba(0, 0, 0, 0.45);--f7-messages-title-font-size:11px;--f7-message-header-text-color:rgba(0, 0, 0, 0.45);--f7-message-footer-text-color:rgba(0, 0, 0, 0.45);--f7-message-name-text-color:rgba(0, 0, 0, 0.45);--f7-message-avatar-size:29px;--f7-message-margin:10px;--f7-message-bubble-min-height:32px;--f7-message-bubble-font-size:17px;--f7-message-bubble-border-radius:16px;--f7-message-bubble-padding-vertical:6px;--f7-message-bubble-padding-horizontal:16px;--f7-message-typing-indicator-opacity:0.35}.md{--f7-messages-title-font-size:12px;--f7-message-avatar-size:32px;--f7-message-margin:16px;--f7-message-bubble-min-height:32px;--f7-message-bubble-font-size:16px;--f7-message-bubble-border-radius:4px;--f7-message-bubble-padding-vertical:6px;--f7-message-bubble-padding-horizontal:8px;--f7-message-typing-indicator-opacity:0.6;--f7-messages-title-text-color:rgba(0, 0, 0, 0.51);--f7-message-header-text-color:rgba(0, 0, 0, 0.51);--f7-message-footer-text-color:rgba(0, 0, 0, 0.51);--f7-message-name-text-color:rgba(0, 0, 0, 0.51)}.aurora{--f7-messages-title-font-size:14px;--f7-message-avatar-size:32px;--f7-message-margin:16px;--f7-message-bubble-min-height:34px;--f7-message-bubble-font-size:16px;--f7-message-bubble-line-height:1.4;--f7-message-bubble-border-radius:16px;--f7-message-bubble-padding-vertical:6px;--f7-message-bubble-padding-horizontal:10px;--f7-message-typing-indicator-opacity:0.5;--f7-message-header-font-size:14px;--f7-message-footer-font-size:12px;--f7-message-name-font-size:14px;--f7-messages-title-text-color:rgba(0, 0, 0, 0.51);--f7-message-header-text-color:rgba(0, 0, 0, 0.51);--f7-message-footer-text-color:rgba(0, 0, 0, 0.51);--f7-message-name-text-color:rgba(0, 0, 0, 0.51)}.messages,.messages-content{background:var(--f7-messages-content-bg-color)}.messages{display:flex;flex-direction:column;min-height:100%;position:relative;z-index:1}.message,.messages-title{margin-top:var(--f7-message-margin)}.message:last-child,.messages-title:last-child{margin-bottom:var(--f7-message-margin)}.messages-title{text-align:center;width:100%;line-height:1;color:var(--f7-messages-title-text-color);font-size:var(--f7-messages-title-font-size);font-weight:var(--f7-messages-title-font-weight)}.message{max-width:70%;box-sizing:border-box;display:flex;align-items:flex-end;position:relative;z-index:1;transform:translate3d(0,0,0)}.message-avatar{border-radius:var(--f7-message-avatar-border-radius);position:relative;background-size:cover;align-self:flex-end;flex-shrink:0;width:var(--f7-message-avatar-size);height:var(--f7-message-avatar-size)}.message-content{position:relative;display:flex;flex-direction:column}.message-footer,.message-header,.message-name{line-height:1}.message-header{color:var(--f7-message-header-text-color);font-size:var(--f7-message-header-font-size)}.message-footer{color:var(--f7-message-footer-text-color);font-size:var(--f7-message-footer-font-size);margin-bottom:-1em}.message-name{color:var(--f7-message-name-text-color);font-size:var(--f7-message-name-font-size);font-weight:var(--f7-message-name-font-weight)}.message-bubble{box-sizing:border-box;word-break:break-word;display:flex;flex-direction:column;position:relative;line-height:var(--f7-message-bubble-line-height);font-size:var(--f7-message-bubble-font-size);border-radius:var(--f7-message-bubble-border-radius);padding:var(--f7-message-bubble-padding-vertical) var(--f7-message-bubble-padding-horizontal);min-height:var(--f7-message-bubble-min-height)}.message-image img{display:block;max-width:100%;height:auto;width:auto}.message-text-footer,.message-text-header{line-height:1}.message-text-header{color:var(--f7-message-text-header-text-color);opacity:var(--f7-message-text-header-opacity);font-size:var(--f7-message-text-header-font-size)}.message-text-footer{color:var(--f7-message-text-footer-text-color);opacity:var(--f7-message-text-footer-opacity);font-size:var(--f7-message-text-footer-font-size)}.message-text{text-align:left}.message-sent{text-align:right;flex-direction:row-reverse;align-self:flex-end}.message-sent .message-bubble{color:var(--f7-message-sent-text-color);background:var(--f7-message-sent-bg-color,var(--f7-theme-color))}.message-sent .message-content{align-items:flex-end}.message-sent.message-tail .message-bubble{border-radius:var(--f7-message-bubble-border-radius) var(--f7-message-bubble-border-radius) 0 var(--f7-message-bubble-border-radius)}.message-received{flex-direction:row}.message-received .message-bubble{color:var(--f7-message-received-text-color);background:var(--f7-message-received-bg-color)}.message-received .message-content{align-items:flex-start}.message-received.message-tail .message-bubble{border-radius:var(--f7-message-bubble-border-radius) var(--f7-message-bubble-border-radius) var(--f7-message-bubble-border-radius) 0}.message:not(.message-last) .message-avatar{opacity:0}.message:not(.message-first) .message-name{display:none}.message.message-same-name .message-name{display:none}.message.message-same-header .message-header{display:none}.message.message-same-footer .message-footer{display:none}.message-appear-from-bottom{animation:message-appear-from-bottom .3s}.message-appear-from-top{animation:message-appear-from-top .3s}.message-typing-indicator{display:inline-block;font-size:0;vertical-align:middle}.message-typing-indicator>div{display:inline-block;position:relative;background:var(--f7-message-typing-indicator-bg-color);opacity:var(--f7-message-typing-indicator-opacity);vertical-align:middle;border-radius:50%}@keyframes message-appear-from-bottom{from{transform:translate3d(0,100%,0)}to{transform:translate3d(0,0,0)}}@keyframes message-appear-from-top{from{transform:translate3d(0,-100%,0)}to{transform:translate3d(0,0,0)}}.ios .message-footer b,.ios .message-header b,.ios .message-name b,.ios .messages-title b{font-weight:600}.ios .message-header,.ios .message-name{margin-bottom:3px}.ios .message-footer{margin-top:3px}.ios .message-bubble{min-width:48px}.ios .message-image{margin:var(--f7-message-bubble-padding-vertical) calc(-1 * var(--f7-message-bubble-padding-horizontal))}.ios .message-image:first-child{margin-top:calc(-1 * var(--f7-message-bubble-padding-vertical))}.ios .message-image:first-child img{border-top-left-radius:var(--f7-message-bubble-border-radius);border-top-right-radius:var(--f7-message-bubble-border-radius)}.ios .message-image:last-child{margin-bottom:calc(-1 * var(--f7-message-bubble-padding-vertical))}.ios .message-image:last-child img{border-bottom-left-radius:var(--f7-message-bubble-border-radius);border-bottom-right-radius:var(--f7-message-bubble-border-radius)}.ios .message-text-header{margin-bottom:3px}.ios .message-text-footer{margin-top:3px}.ios .message-received{margin-left:calc(10px + var(--f7-safe-area-left))}.ios .message-received .message-footer,.ios .message-received .message-header,.ios .message-received .message-name{margin-left:var(--f7-message-bubble-padding-horizontal)}.ios .message-received .message-bubble{padding-left:calc(var(--f7-message-bubble-padding-horizontal) + 6px);-webkit-mask-box-image:url(\"data:image/svg+xml;charset=utf-8,\") 50% 42% 46% 56%}.ios .message-received .message-image{margin-left:calc(-1 * (var(--f7-message-bubble-padding-horizontal) + 6px))}.ios .message-received.message-tail:not(.message-typing) .message-bubble{-webkit-mask-box-image:url(\"data:image/svg+xml;charset=utf-8,\") 50% 42% 46% 56%}.ios .message-received.message-tail:not(.message-typing) .message-bubble .message-image:last-child img{border-bottom-left-radius:0px}.ios .message-sent{margin-right:calc(10px + var(--f7-safe-area-right))}.ios .message-sent .message-footer,.ios .message-sent .message-header,.ios .message-sent .message-name{margin-right:var(--f7-message-bubble-padding-horizontal)}.ios .message-sent .message-bubble{padding-right:calc(var(--f7-message-bubble-padding-horizontal) + 6px);-webkit-mask-box-image:url(\"data:image/svg+xml;charset=utf-8,\") 50% 56% 46% 42%}.ios .message-sent .message-image{margin-right:calc(-1 * (var(--f7-message-bubble-padding-horizontal) + 6px))}.ios .message-sent.message-tail .message-bubble{-webkit-mask-box-image:url(\"data:image/svg+xml;charset=utf-8,\") 50% 56% 46% 42%}.ios .message-sent.message-tail .message-bubble .message-image:last-child img{border-bottom-right-radius:0px}.ios .message+.message:not(.message-first){margin-top:1px}.ios .message-received.message-typing .message-content:after,.ios .message-received.message-typing .message-content:before{content:'';position:absolute;background:var(--f7-message-received-bg-color);border-radius:50%}.ios .message-received.message-typing .message-content:after{width:11px;height:11px;left:4px;bottom:0px}.ios .message-received.message-typing .message-content:before{width:6px;height:6px;left:-1px;bottom:-4px}.ios .message-typing-indicator>div{width:9px;height:9px}.ios .message-typing-indicator>div+div{margin-left:4px}.ios .message-typing-indicator>div:nth-child(1){animation:ios-message-typing-indicator .9s infinite}.ios .message-typing-indicator>div:nth-child(2){animation:ios-message-typing-indicator .9s 150ms infinite}.ios .message-typing-indicator>div:nth-child(3){animation:ios-message-typing-indicator .9s .3s infinite}@keyframes ios-message-typing-indicator{0%{opacity:.35}25%{opacity:.2}50%{opacity:.2}}.md .message-footer b,.md .message-header b,.md .message-name b,.md .messages-title b{font-weight:500}.md .message-header,.md .message-name{margin-bottom:2px}.md .message-footer{margin-top:2px}.md .message-text-header{margin-bottom:4px}.md .message-text-footer{margin-top:4px}.md .message-received.message-tail .message-bubble:before,.md .message-sent.message-tail .message-bubble:before{position:absolute;content:'';bottom:0;width:0;height:0}.md .message-received{margin-left:calc(8px + var(--f7-safe-area-left))}.md .message-received .message-avatar+.message-content{margin-left:var(--f7-message-bubble-padding-horizontal)}.md .message-received.message-tail .message-bubble:before{border-left:8px solid transparent;border-right:0 solid transparent;border-bottom:8px solid var(--f7-message-received-bg-color);right:100%}.md .message-sent{margin-right:calc(8px + var(--f7-safe-area-right))}.md .message-sent .message-avatar+.message-content{margin-right:var(--f7-message-bubble-padding-horizontal)}.md .message-sent.message-tail .message-bubble:before{border-left:0 solid transparent;border-right:8px solid transparent;border-bottom:8px solid var(--f7-message-sent-bg-color,var(--f7-theme-color));left:100%}.md .message+.message:not(.message-first){margin-top:8px}.md .message-typing-indicator>div{width:6px;height:6px}.md .message-typing-indicator>div+div{margin-left:6px}.md .message-typing-indicator>div:nth-child(1){animation:md-message-typing-indicator .9s infinite}.md .message-typing-indicator>div:nth-child(2){animation:md-message-typing-indicator .9s 150ms infinite}.md .message-typing-indicator>div:nth-child(3){animation:md-message-typing-indicator .9s .3s infinite}@keyframes md-message-typing-indicator{0%{transform:translateY(0%)}25%{transform:translateY(-5px)}50%{transform:translateY(0%)}}.aurora .message-footer b,.aurora .message-header b,.aurora .message-name b,.aurora .messages-title b{font-weight:500}.aurora .message-header,.aurora .message-name{margin-bottom:2px}.aurora .message-footer{margin-top:2px}.aurora .message-text-header{margin-bottom:2px}.aurora .message-text-footer{margin-top:2px}.aurora .message-received.message-tail .message-bubble:before,.aurora .message-sent.message-tail .message-bubble:before{position:absolute;content:'';bottom:0;width:0;height:0}.aurora .message-image{margin:var(--f7-message-bubble-padding-vertical) calc(-1 * var(--f7-message-bubble-padding-horizontal) + 4px)}.aurora .message-image:first-child{margin-top:calc(-1 * var(--f7-message-bubble-padding-vertical) + 4px)}.aurora .message-image:first-child img{border-top-left-radius:var(--f7-message-bubble-border-radius);border-top-right-radius:var(--f7-message-bubble-border-radius)}.aurora .message-image:last-child{margin-bottom:calc(-1 * var(--f7-message-bubble-padding-vertical) + 4px)}.aurora .message-image:last-child img{border-bottom-left-radius:var(--f7-message-bubble-border-radius);border-bottom-right-radius:var(--f7-message-bubble-border-radius)}.aurora .message-received{margin-left:calc(16px + var(--f7-safe-area-left))}.aurora .message-received .message-avatar+.message-content{margin-left:5px}.aurora .message-received .message-footer,.aurora .message-received .message-header,.aurora .message-received .message-name{margin-left:var(--f7-message-bubble-padding-horizontal)}.aurora .message-received.message-tail .message-bubble:before{border-left:6px solid transparent;border-right:0 solid transparent;border-bottom:6px solid var(--f7-message-received-bg-color);right:100%;transform:translate(2px,0px) rotate(-15deg);transform-origin:right bottom}.aurora .message-sent{margin-right:calc(16px + var(--f7-safe-area-right))}.aurora .message-sent .message-avatar+.message-content{margin-right:5px}.aurora .message-sent .message-footer,.aurora .message-sent .message-header,.aurora .message-sent .message-name{margin-right:var(--f7-message-bubble-padding-horizontal)}.aurora .message-sent.message-tail .message-bubble:before{border-left:0 solid transparent;border-right:6px solid transparent;border-bottom:6px solid var(--f7-message-sent-bg-color,var(--f7-theme-color));left:100%;transform:translate(-2px,0px) rotate(15deg);transform-origin:left bottom}.aurora .message+.message:not(.message-first){margin-top:5px}.aurora .message-typing-indicator>div{width:6px;height:6px}.aurora .message-typing-indicator>div+div{margin-left:4px}.aurora .message-typing-indicator>div:nth-child(1){animation:aurora-message-typing-indicator .9s infinite}.aurora .message-typing-indicator>div:nth-child(2){animation:aurora-message-typing-indicator .9s 150ms infinite}.aurora .message-typing-indicator>div:nth-child(3){animation:aurora-message-typing-indicator .9s .3s infinite}@keyframes aurora-message-typing-indicator{0%{transform:translateY(0%)}50%{transform:translateY(-5px)}100%{transform:translateY(0%)}}:root{--f7-messagebar-shadow-image:none;--f7-messagebar-textarea-bg-color:transparent;--f7-messagebar-attachments-height:155px;--f7-messagebar-attachment-height:155px;--f7-messagebar-attachment-landscape-height:120px;--f7-messagebar-sheet-height:252px;--f7-messagebar-sheet-landscape-height:192px;--f7-messagebar-bg-color:#fff;--f7-messagebar-bg-color-rgb:255,255,255}:root .theme-dark,:root.theme-dark{--f7-messagebar-bg-color:var(--f7-bars-bg-color);--f7-messagebar-bg-color-rgb:var(--f7-bars-bg-color-rgb)}.ios{--f7-messagebar-height:44px;--f7-messagebar-font-size:17px;--f7-messagebar-border-color:transparent;--f7-messagebar-textarea-border-radius:17px;--f7-messagebar-textarea-padding:6px 16px;--f7-messagebar-textarea-height:34px;--f7-messagebar-textarea-font-size:17px;--f7-messagebar-textarea-line-height:20px;--f7-messagebar-sheet-bg-color:#d1d5da;--f7-messagebar-attachment-border-radius:12px;--f7-messagebar-textarea-text-color:#000;--f7-messagebar-textarea-border:1px solid #c8c8cd;--f7-messagebar-attachments-border-color:#c8c8cd}.ios .theme-dark,.ios.theme-dark{--f7-messagebar-textarea-text-color:#fff;--f7-messagebar-textarea-border:1px solid var(--f7-bars-border-color);--f7-messagebar-attachments-border-color:var(--f7-bars-border-color)}.md{--f7-messagebar-height:48px;--f7-messagebar-font-size:16px;--f7-messagebar-textarea-border-radius:0px;--f7-messagebar-textarea-padding:5px 8px;--f7-messagebar-textarea-height:32px;--f7-messagebar-textarea-font-size:16px;--f7-messagebar-textarea-line-height:22px;--f7-messagebar-textarea-border:1px solid transparent;--f7-messagebar-sheet-bg-color:#fff;--f7-messagebar-attachment-border-radius:4px;--f7-messagebar-link-color:#333;--f7-messagebar-border-color:#d1d1d1;--f7-messagebar-textarea-text-color:#333;--f7-messagebar-attachments-border-color:#ddd}.md .theme-dark,.md.theme-dark{--f7-messagebar-border-color:transparent;--f7-messagebar-link-color:rgba(255, 255, 255, 0.87);--f7-messagebar-textarea-text-color:rgba(255, 255, 255, 0.87);--f7-messagebar-attachments-border-color:rgba(255, 255, 255, 0.2)}.aurora{--f7-messagebar-height:48px;--f7-messagebar-font-size:16px;--f7-messagebar-border-color:transparent;--f7-messagebar-textarea-border-radius:8px;--f7-messagebar-textarea-padding:4px 8px;--f7-messagebar-textarea-height:32px;--f7-messagebar-textarea-font-size:16px;--f7-messagebar-textarea-line-height:22px;--f7-messagebar-sheet-bg-color:#fff;--f7-messagebar-attachment-border-radius:8px;--f7-messagebar-textarea-text-color:#000;--f7-messagebar-textarea-border:1px solid #c8c8cd;--f7-messagebar-attachments-border-color:#c8c8cd}.aurora .theme-dark,.aurora.theme-dark{--f7-messagebar-textarea-text-color:#fff;--f7-messagebar-textarea-border:1px solid var(--f7-bars-border-color);--f7-messagebar-attachments-border-color:var(--f7-bars-border-color)}.messagebar{transform:translate3d(0,0,0);background:var(--f7-messagebar-bg-color);height:auto;min-height:var(--f7-messagebar-height);font-size:var(--f7-messagebar-font-size);padding-bottom:var(--f7-safe-area-bottom);bottom:0}.messagebar:before{content:'';position:absolute;background-color:var(--f7-messagebar-border-color);display:block;z-index:15;top:0;right:auto;bottom:auto;left:0;height:1px;width:100%;transform-origin:50% 0%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}.messagebar:after{content:'';position:absolute;right:0;width:100%;bottom:100%;height:8px;top:auto;pointer-events:none;background:var(--f7-messagebar-shadow-image);transform:translate3d(0,0,0)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-bars .messagebar{background-color:rgba(var(--f7-messagebar-bg-color-rgb),var(--f7-bars-translucent-opacity));-webkit-backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur));backdrop-filter:saturate(180%) blur(var(--f7-bars-translucent-blur))}}.messagebar.no-border:before,.messagebar.no-hairline:before{display:none!important}.messagebar.no-shadow:after,.messagebar.toolbar-hidden:after{display:none!important}.messagebar .toolbar-inner{top:auto;position:relative;height:auto;bottom:auto;padding-left:calc(var(--f7-messagebar-inner-padding-left,var(--f7-toolbar-inner-padding-left)) + var(--f7-safe-area-left));padding-right:calc(var(--f7-messagebar-inner-padding-right,var(--f7-toolbar-inner-padding-right)) + var(--f7-safe-area-right))}.messagebar.messagebar-sheet-visible>.toolbar-inner{bottom:0}.messagebar .messagebar-area{width:100%;flex-shrink:1;overflow:hidden;position:relative}.messagebar textarea{width:100%;flex-shrink:1;background-color:var(--f7-messagebar-textarea-bg-color);border-radius:var(--f7-messagebar-textarea-border-radius);padding:var(--f7-messagebar-textarea-padding);height:var(--f7-messagebar-textarea-height);color:var(--f7-messagebar-textarea-text-color);font-size:var(--f7-messagebar-textarea-font-size);line-height:var(--f7-messagebar-textarea-line-height);border:var(--f7-messagebar-textarea-border)}.messagebar a.link{align-self:flex-end;flex-shrink:0;color:var(--f7-messagebar-link-color,var(--f7-theme-color))}.messagebar-attachments{width:100%;overflow:auto;-webkit-overflow-scrolling:touch;font-size:0;white-space:nowrap;box-sizing:border-box;position:relative}.messagebar:not(.messagebar-attachments-visible) .messagebar-attachments{display:none}.messagebar-attachment{background-size:cover;background-position:center;background-repeat:no-repeat;display:inline-block;vertical-align:middle;white-space:normal;height:var(--f7-messagebar-attachment-height);position:relative;border-radius:var(--f7-messagebar-attachment-border-radius)}@media (orientation:landscape){.messagebar-attachment{height:var(--f7-messagebar-attachment-landscape-height)}}.messagebar-attachment img{display:block;width:auto;height:100%;border-radius:var(--f7-messagebar-attachment-border-radius)}.messagebar-attachment+.messagebar-attachment{margin-left:8px}.messagebar-sheet{overflow:auto;-webkit-overflow-scrolling:touch;display:flex;flex-wrap:wrap;flex-direction:column;align-content:flex-start;height:var(--f7-messagebar-sheet-height);background-color:var(--f7-messagebar-sheet-bg-color);padding-left:var(--f7-safe-area-left);padding-right:var(--f7-safe-area-right)}@media (orientation:landscape){.messagebar-sheet{height:var(--f7-messagebar-sheet-landscape-height)}}.messagebar-sheet-image,.messagebar-sheet-item{box-sizing:border-box;flex-shrink:0;margin-top:1px;position:relative;overflow:hidden;height:calc((var(--f7-messagebar-sheet-height) - 2px)/ 2);width:calc((var(--f7-messagebar-sheet-height) - 2px)/ 2);margin-left:1px}@media (orientation:landscape){.messagebar-sheet-image,.messagebar-sheet-item{width:calc((var(--f7-messagebar-sheet-landscape-height) - 2px)/ 2);height:calc((var(--f7-messagebar-sheet-landscape-height) - 2px)/ 2)}}.messagebar-sheet-image .icon-checkbox,.messagebar-sheet-image .icon-radio,.messagebar-sheet-item .icon-checkbox,.messagebar-sheet-item .icon-radio{position:absolute;right:8px;bottom:8px}.messagebar-sheet-image{background-size:cover;background-position:center;background-repeat:no-repeat}.messagebar-attachment-delete{display:block;position:absolute;border-radius:50%;box-sizing:border-box;cursor:pointer;box-shadow:0px 0px 2px rgba(0,0,0,.2)}.messagebar-attachment-delete:after,.messagebar-attachment-delete:before{position:absolute;content:'';left:50%;top:50%}.messagebar-attachment-delete:after{transform:rotate(45deg)}.messagebar-attachment-delete:before{transform:rotate(-45deg)}.messagebar:not(.messagebar-sheet-visible) .messagebar-sheet{display:none}.messagebar~*{--f7-page-toolbar-bottom-offset:var(--f7-messagebar-height)}.ios .messagebar a.link.icon-only:first-child{margin-left:-8px}.ios .messagebar a.link.icon-only:last-child{margin-right:-8px}.ios .messagebar a.link:not(.icon-only)+.messagebar-area{margin-left:8px}.ios .messagebar .messagebar-area+a.link:not(.icon-only){margin-left:8px}.ios .messagebar-area{margin-top:5px;margin-bottom:5px}.ios .messagebar-attachments{padding:5px;border-radius:var(--f7-messagebar-textarea-border-radius) var(--f7-messagebar-textarea-border-radius) 0 0;border:1px solid var(--f7-messagebar-attachments-border-color);border-bottom:none}.ios .messagebar-attachments-visible .messagebar-attachments+textarea{border-radius:0 0 var(--f7-messagebar-textarea-border-radius) var(--f7-messagebar-textarea-border-radius)}.ios .messagebar-attachment{font-size:14px}.ios .messagebar-attachment-delete{right:5px;top:5px;width:20px;height:20px;background:#7d7e80;border:2px solid #fff}.ios .messagebar-attachment-delete:after,.ios .messagebar-attachment-delete:before{width:10px;height:2px;background:#fff;margin-left:-5px;margin-top:-1px}.md .messagebar-attachments{padding:8px;border-bottom:1px solid var(--f7-messagebar-attachments-border-color)}.md .messagebar-area{margin-top:8px;margin-bottom:8px}.md .messagebar-sheet-image .icon-checkbox,.md .messagebar-sheet-item .icon-checkbox{border-color:#fff;background:rgba(255,255,255,.25);box-shadow:0px 0px 10px rgba(0,0,0,.5)}.md .messagebar-attachment-delete{right:8px;top:8px;width:24px;height:24px;background-color:var(--f7-theme-color);border-radius:4px}.md .messagebar-attachment-delete:after,.md .messagebar-attachment-delete:before{width:14px;height:2px;background:#fff;margin-left:-7px;margin-top:-1px}.aurora .messagebar a.link+.messagebar-area{margin-left:8px}.aurora .messagebar .messagebar-area+a.link{margin-left:8px}.aurora .messagebar-area{margin-top:8px;margin-bottom:8px}.aurora .messagebar-sheet-image .icon-checkbox,.aurora .messagebar-sheet-item .icon-checkbox{border-color:#fff;background:rgba(255,255,255,.25);box-shadow:0px 0px 10px rgba(0,0,0,.5)}.aurora .messagebar-attachments{padding:8px;border-radius:var(--f7-messagebar-textarea-border-radius) var(--f7-messagebar-textarea-border-radius) 0 0;border:1px solid var(--f7-messagebar-attachments-border-color);border-bottom:none}.aurora .messagebar-attachments-visible .messagebar-attachments+textarea{border-radius:0 0 var(--f7-messagebar-textarea-border-radius) var(--f7-messagebar-textarea-border-radius)}.aurora .messagebar-attachment{font-size:14px}.aurora .messagebar-attachment-delete{right:8px;top:8px;width:24px;height:24px;background-color:var(--f7-theme-color)}.aurora .messagebar-attachment-delete:after,.aurora .messagebar-attachment-delete:before{width:14px;height:2px;background:#fff;margin-left:-7px;margin-top:-1px}@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, 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') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}:root{--swiper-theme-color:var(--f7-theme-color)}.color-theme-red{--swiper-theme-color:#ff3b30}.color-theme-green{--swiper-theme-color:#4cd964}.color-theme-blue{--swiper-theme-color:#2196f3}.color-theme-pink{--swiper-theme-color:#ff2d55}.color-theme-yellow{--swiper-theme-color:#ffcc00}.color-theme-orange{--swiper-theme-color:#ff9500}.color-theme-purple{--swiper-theme-color:#9c27b0}.color-theme-deeppurple{--swiper-theme-color:#673ab7}.color-theme-lightblue{--swiper-theme-color:#5ac8fa}.color-theme-teal{--swiper-theme-color:#009688}.color-theme-lime{--swiper-theme-color:#cddc39}.color-theme-deeporange{--swiper-theme-color:#ff6b22}.color-theme-gray{--swiper-theme-color:#8e8e93}.color-theme-white{--swiper-theme-color:#ffffff}.color-theme-black{--swiper-theme-color:#000000}.color-red{--swiper-theme-color:#ff3b30}.color-green{--swiper-theme-color:#4cd964}.color-blue{--swiper-theme-color:#2196f3}.color-pink{--swiper-theme-color:#ff2d55}.color-yellow{--swiper-theme-color:#ffcc00}.color-orange{--swiper-theme-color:#ff9500}.color-purple{--swiper-theme-color:#9c27b0}.color-deeppurple{--swiper-theme-color:#673ab7}.color-lightblue{--swiper-theme-color:#5ac8fa}.color-teal{--swiper-theme-color:#009688}.color-lime{--swiper-theme-color:#cddc39}.color-deeporange{--swiper-theme-color:#ff6b22}.color-gray{--swiper-theme-color:#8e8e93}.color-white{--swiper-theme-color:#ffffff}.color-black{--swiper-theme-color:#000000}:root{--f7-photobrowser-bg-color:#fff;--f7-photobrowser-bars-bg-image:none;--f7-photobrowser-caption-font-size:14px;--f7-photobrowser-caption-light-text-color:#000;--f7-photobrowser-caption-light-bg-color:rgba(255, 255, 255, 0.8);--f7-photobrowser-caption-dark-text-color:#fff;--f7-photobrowser-caption-dark-bg-color:rgba(0, 0, 0, 0.8);--f7-photobrowser-exposed-bg-color:#000;--f7-photobrowser-dark-bg-color:#000;--f7-photobrowser-dark-bars-bg-color:rgba(27, 27, 27, 0.8);--f7-photobrowser-dark-bars-text-color:#fff;--f7-photobrowser-dark-bars-link-color:#fff}.photo-browser{position:absolute;left:0;top:0;width:100%;height:100%;z-index:400}.photo-browser-standalone.modal-in{transition-duration:0s;animation:photo-browser-in .4s}.photo-browser-standalone.modal-out{transition-duration:0s;animation:photo-browser-out .4s!important}.photo-browser-standalone.modal-out.swipe-close-to-bottom,.photo-browser-standalone.modal-out.swipe-close-to-top{animation:none!important}.photo-browser-standalone.photo-browser-transitioning{transition:.4s;transition-property:transform;animation:none!important}.photo-browser-popup.modal-out.swipe-close-to-bottom,.photo-browser-popup.modal-out.swipe-close-to-top{transition-duration:.3s}.photo-browser-popup.modal-out.swipe-close-to-bottom{transform:translate3d(0,100vh,0)}.photo-browser-popup.modal-out.swipe-close-to-top{transform:translate3d(0,-100vh,0)}.photo-browser-page{background:0 0}.photo-browser-page .toolbar{transform:none}.photo-browser-popup{background:0 0}.photo-browser-of{margin:0 5px}.photo-browser-captions{pointer-events:none;position:absolute;left:0;width:100%;bottom:var(--f7-safe-area-bottom);z-index:10;opacity:1;transition:.4s}.photo-browser-captions.photo-browser-captions-exposed{opacity:0}.toolbar~.photo-browser-captions{bottom:calc(var(--f7-toolbar-height) + var(--f7-safe-area-bottom));transform:translate3d(0,0px,0)}.toolbar~.photo-browser-captions.photo-browser-captions-exposed{transform:translate3d(0,0px,0)}.photo-browser-caption{box-sizing:border-box;transition:.3s;position:absolute;bottom:0;left:0;opacity:0;padding:4px 5px;width:100%;text-align:center;font-size:var(--f7-photobrowser-caption-font-size)}.photo-browser-caption:empty{display:none}.photo-browser-caption.photo-browser-caption-active{opacity:1}.photo-browser-captions-light .photo-browser-caption{color:var(--f7-photobrowser-caption-light-text-color);background:var(--f7-photobrowser-caption-light-bg-color)}.photo-browser-captions-dark .photo-browser-caption{color:var(--f7-photobrowser-caption-dark-text-color);background:var(--f7-photobrowser-caption-dark-bg-color)}.photo-browser-swiper-container{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;background:var(--f7-photobrowser-bg-color);transition:.4s;transition-property:background-color}.photo-browser-next.swiper-button-disabled,.photo-browser-prev.swiper-button-disabled{opacity:.3;pointer-events:none}.photo-browser-slide{width:100%;height:100%;position:relative;overflow:hidden;display:flex;justify-content:center;align-items:center;flex-shrink:0;box-sizing:border-box}.photo-browser-slide span.swiper-zoom-container{display:none}.photo-browser-slide img{width:auto;height:auto;max-width:100%;max-height:100%;display:none}.photo-browser-slide.swiper-slide-active span.swiper-zoom-container,.photo-browser-slide.swiper-slide-next span.swiper-zoom-container,.photo-browser-slide.swiper-slide-prev span.swiper-zoom-container{display:flex}.photo-browser-slide.swiper-slide-active img,.photo-browser-slide.swiper-slide-next img,.photo-browser-slide.swiper-slide-prev img{display:inline}.photo-browser-slide.swiper-slide-active.photo-browser-slide-lazy .preloader,.photo-browser-slide.swiper-slide-next.photo-browser-slide-lazy .preloader,.photo-browser-slide.swiper-slide-prev.photo-browser-slide-lazy .preloader{display:block}.photo-browser-slide iframe{width:100%;height:100%}.photo-browser-slide .preloader{display:none;position:absolute;width:42px;height:42px;margin-left:-21px;margin-top:-21px;left:50%;top:50%}.navbar-photo-browser .navbar-bg,.photo-browser-page .navbar-bg,.photo-browser-page .toolbar{background-color:var(--f7-photobrowser-bars-bg-color,rgba(var(--f7-bars-bg-color-rgb),.95));background-image:var(--f7-photobrowser-bars-bg-image)}.photo-browser-page .navbar,.photo-browser-page .toolbar{transform:translate3d(0,0,0);transition:.4s;color:var(--f7-photobrowser-bars-text-color,var(--f7-bars-text-color))}.photo-browser-page .navbar a,.photo-browser-page .toolbar a{color:var(--f7-photobrowser-bars-link-color,var(--f7-bars-link-color,var(--f7-theme-color)))}.photo-browser-exposed .navbar,.photo-browser-exposed .toolbar{opacity:0;visibility:hidden;pointer-events:none}.photo-browser-exposed .toolbar~.photo-browser-captions{transform:translate3d(0,var(--f7-toolbar-height),0)}.photo-browser-exposed .photo-browser-swiper-container{background:var(--f7-photobrowser-exposed-bg-color)}.photo-browser-exposed .photo-browser-caption{color:var(--f7-photobrowser-caption-dark-text-color);background:var(--f7-photobrowser-caption-dark-bg-color)}.view.with-photo-browser-page-exposed .navbar{opacity:0;pointer-events:none}.navbar-photo-browser-dark .navbar-bg,.photo-browser-page-dark .navbar-bg,.photo-browser-page-dark .toolbar{background:var(--f7-photobrowser-dark-bars-bg-color)}.navbar-photo-browser-dark .navbar-bg:after,.navbar-photo-browser-dark .navbar-bg:before,.photo-browser-page-dark .navbar-bg:after,.photo-browser-page-dark .navbar-bg:before,.photo-browser-page-dark .toolbar:after,.photo-browser-page-dark .toolbar:before{display:none!important}.navbar-photo-browser-dark,.photo-browser-dark .navbar,.photo-browser-dark .toolbar,.photo-browser-page-dark .navbar,.photo-browser-page-dark .toolbar{color:var(--f7-photobrowser-dark-bars-text-color)}.navbar-photo-browser-dark a,.photo-browser-dark .navbar a,.photo-browser-dark .toolbar a,.photo-browser-page-dark .navbar a,.photo-browser-page-dark .toolbar a{color:var(--f7-photobrowser-dark-bars-link-color)}.photo-browser-dark .photo-browser-swiper-container,.photo-browser-page-dark .photo-browser-swiper-container{background:var(--f7-photobrowser-dark-bg-color)}@keyframes photo-browser-in{0%{transform:translate3d(0,0,0) scale(.5);opacity:0}50%{transform:translate3d(0,0,0) scale(1.05);opacity:1}100%{transform:translate3d(0,0,0) scale(1);opacity:1}}@keyframes photo-browser-out{0%{transform:translate3d(0,0,0) scale(1);opacity:1}50%{transform:translate3d(0,0,0) scale(1.05);opacity:1}100%{transform:translate3d(0,0,0) scale(.5);opacity:0}}:root{--f7-notification-max-width:568px;--f7-notification-subtitle-text-transform:none;--f7-notification-subtitle-line-height:1.35;--f7-notification-text-text-transform:none;--f7-notification-text-font-weight:400}:root .theme-dark,:root.theme-dark{--f7-notification-subtitle-color:#fff}.ios{--f7-notification-margin:8px;--f7-notification-padding:10px;--f7-notification-border-radius:12px;--f7-notification-box-shadow:0px 5px 25px -10px rgba(0, 0, 0, 0.7);--f7-notification-icon-size:20px;--f7-notification-title-font-size:13px;--f7-notification-title-text-transform:uppercase;--f7-notification-title-line-height:1.4;--f7-notification-title-font-weight:400;--f7-notification-title-letter-spacing:0.02em;--f7-notification-title-right-font-size:13px;--f7-notification-subtitle-font-size:15px;--f7-notification-subtitle-font-weight:600;--f7-notification-text-font-size:15px;--f7-notification-text-line-height:1.2;--f7-notification-bg-color:rgba(250, 250, 250, 0.95);--f7-notification-bg-color-rgb:255,255,255;--f7-notification-title-color:#000;--f7-notification-title-right-color:rgba(0, 0, 0, 0.45);--f7-notification-subtitle-color:#000;--f7-notification-text-color:#000}.ios .theme-dark,.ios.theme-dark{--f7-notification-bg-color:rgba(30, 30, 30, 0.95);--f7-notification-bg-color-rgb:30,30,30;--f7-notification-title-color:#fff;--f7-notification-text-color:#fff;--f7-notification-title-right-color:rgba(255, 255, 255, 0.55)}.md{--f7-notification-margin:0px;--f7-notification-padding:16px;--f7-notification-border-radius:0px;--f7-notification-box-shadow:0 2px 4px rgba(0, 0, 0, 0.22),0 1px 2px rgba(0, 0, 0, 0.24);--f7-notification-icon-size:16px;--f7-notification-title-color:var(--f7-theme-color);--f7-notification-title-font-size:12px;--f7-notification-title-text-transform:none;--f7-notification-title-line-height:1;--f7-notification-title-font-weight:400;--f7-notification-title-right-font-size:12px;--f7-notification-subtitle-font-size:14px;--f7-notification-subtitle-font-weight:400;--f7-notification-text-font-size:14px;--f7-notification-text-line-height:1.35;--f7-notification-bg-color:#fff;--f7-notification-title-right-color:rgba(0, 0, 0, 0.54);--f7-notification-subtitle-color:#212121;--f7-notification-text-color:rgba(0, 0, 0, 0.54)}.md .theme-dark,.md.theme-dark{--f7-notification-bg-color:#242424;--f7-notification-title-right-color:rgba(255, 255, 255, 0.54);--f7-notification-text-color:rgba(255, 255, 255, 0.54)}.aurora{--f7-notification-margin:16px;--f7-notification-padding:16px;--f7-notification-border-radius:8px;--f7-notification-box-shadow:0px 5px 25px -10px rgba(0, 0, 0, 0.7);--f7-notification-icon-size:24px;--f7-notification-title-font-size:16px;--f7-notification-title-text-transform:none;--f7-notification-title-line-height:1.4;--f7-notification-title-font-weight:600;--f7-notification-title-letter-spacing:0.02em;--f7-notification-title-right-font-size:14px;--f7-notification-subtitle-font-size:14px;--f7-notification-subtitle-font-weight:600;--f7-notification-text-font-size:14px;--f7-notification-text-line-height:1.35;--f7-notification-bg-color:#fff;--f7-notification-title-color:#000;--f7-notification-title-right-color:rgba(0, 0, 0, 0.6);--f7-notification-subtitle-color:#000;--f7-notification-text-color:#000}.aurora .theme-dark,.aurora.theme-dark{--f7-notification-bg-color:#242424;--f7-notification-title-color:#fff;--f7-notification-text-color:#fff;--f7-notification-title-right-color:rgba(255, 255, 255, 0.54)}.notification{--f7-link-highlight-color:var(--f7-link-highlight-black);--f7-touch-ripple-color:var(--f7-touch-ripple-black);position:absolute;left:var(--f7-notification-margin);top:var(--f7-notification-margin);width:calc(100% - var(--f7-notification-margin) * 2);z-index:20000;font-size:14px;margin:0;border:none;display:none;box-sizing:border-box;transition-property:transform;direction:ltr;max-width:var(--f7-notification-max-width);padding:var(--f7-notification-padding);border-radius:var(--f7-notification-border-radius);box-shadow:var(--f7-notification-box-shadow);background:var(--f7-notification-bg-color);margin-top:var(--f7-safe-area-top)}@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))){.ios-translucent-modals .notification{background-color:rgba(var(--f7-notification-bg-color-rgb),.8);-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}}@media (min-width:568px){.notification{left:50%;width:var(--f7-notification-max-width);margin-left:calc(-1 * var(--f7-notification-max-width)/ 2)}}.notification-title{color:var(--f7-notification-title-color,var(--f7-theme-color));font-size:var(--f7-notification-title-font-size);text-transform:var(--f7-notification-title-text-transform);line-height:var(--f7-notification-title-line-height);font-weight:var(--f7-notification-title-font-weight);letter-spacing:var(--f7-notification-title-letter-spacing)}.notification-subtitle{color:var(--f7-notification-subtitle-color);font-size:var(--f7-notification-subtitle-font-size);text-transform:var(--f7-notification-subtitle-text-transform);line-height:var(--f7-notification-subtitle-line-height);font-weight:var(--f7-notification-subtitle-font-weight)}.notification-text{color:var(--f7-notification-text-color);font-size:var(--f7-notification-text-font-size);text-transform:var(--f7-notification-text-text-transform);line-height:var(--f7-notification-text-line-height);font-weight:var(--f7-notification-text-font-weight)}.notification-title-right-text{color:var(--f7-notification-title-right-color);font-size:var(--f7-notification-title-right-font-size)}.notification-icon{font-size:0;line-height:var(--f7-notification-icon-size)}.notification-icon,.notification-icon i{width:var(--f7-notification-icon-size)!important;height:var(--f7-notification-icon-size)!important}.notification-icon i{font-size:var(--f7-notification-icon-size)}.notification-icon img{height:var(--f7-notification-icon-size)}.notification-header{display:flex;justify-content:flex-start;align-items:center}.notification-close-button{margin-left:auto;cursor:pointer;position:relative}.notification-close-button:after{font-family:framework7-core-icons;font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga';display:block;width:100%;height:100%;font-size:20px;position:absolute;left:50%;top:50%;text-align:center}.ios .notification{transition-duration:450ms;transform:translate3d(0%,-200%,0)}.ios .notification.modal-in{transform:translate3d(0%,0%,0);opacity:1}.ios .notification.modal-out{transform:translate3d(0%,-200%,0)}.ios .notification-icon{margin-right:8px}.ios .notification-header+.notification-content{margin-top:10px}.ios .notification-title-right-text{margin-right:6px;margin-left:auto}.ios .notification-title-right-text+.notification-close-button{margin-left:10px}.ios .notification-close-button{font-size:14px;width:20px;height:20px;opacity:.3;transition-duration:.3s}.ios .notification-close-button.active-state{transition-duration:0s;opacity:.1}.ios .notification-close-button:after{color:#000;content:'notification_close_ios';font-size:.65em;line-height:44px;width:44px;height:44px;margin-left:-22px;margin-top:-22px}.ios .theme-dark .notification-close-button:after,.ios.theme-dark .notification-close-button:after{color:#fff}.md .notification{transform:translate3d(0,-150%,0)}.md .notification.modal-in{transition-duration:0s;animation:notification-md-in .4s ease-out;transform:translate3d(0,0%,0)}.md .notification.modal-in.notification-transitioning{transition-duration:.2s}.md .notification.modal-out{animation:none;transition-duration:.2s;transition-timing-function:ease-in;transform:translate3d(0,-150%,0)}.md .notification-icon{margin-right:8px}.md .notification-subtitle+.notification-text{margin-top:2px}.md .notification-header+.notification-content{margin-top:6px}.md .notification-title-right-text{margin-left:4px}.md .notification-title-right-text:before{content:'';width:3px;height:3px;border-radius:50%;display:inline-block;vertical-align:middle;margin-right:4px;background:var(--f7-notification-title-right-color)}.md .notification-close-button{width:16px;height:16px;transition-duration:.3s}.md .notification-close-button:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md .notification-close-button.icon-only:before,.md .notification-close-button.input-clear-button:before,.md .notification-close-button.notification-close-button:before,.md .notification-close-button.ripple-inset:before,.md .notification-close-button.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md .notification-close-button.active-state:before{opacity:1;transition-duration:150ms}.md .notification-close-button:after,.md .notification-close-button:before{width:48px;height:48px;left:50%;top:50%;margin-left:-24px;margin-top:-24px}.md .notification-close-button:after{color:#737373;content:'delete_md';line-height:48px;font-size:14px}@keyframes notification-md-in{0%{transform:translate3d(0,-150%,0)}50%{transform:translate3d(0,10%,0)}100%{transform:translate3d(0,0%,0)}}.aurora .notification{transition-duration:450ms;transform:translate3d(0%,-200%,0)}.aurora .notification.modal-in{transform:translate3d(0%,0%,0);opacity:1}.aurora .notification.modal-out{transform:translate3d(0%,-200%,0)}.aurora .notification-icon{margin-right:8px}.aurora .notification-header+.notification-content{margin-top:8px}.aurora .notification-title-right-text{margin-right:0px;margin-left:auto}.aurora .notification-title-right-text+.notification-close-button{margin-left:8px}.aurora .notification-close-button{font-size:14px;width:20px;height:20px;opacity:.4;transition-duration:.3s}.aurora .notification-close-button:hover{transition-duration:0s;opacity:.5}.aurora .notification-close-button.active-state{transition-duration:0s;opacity:.6}.aurora .notification-close-button:after{color:#000;content:'notification_close_ios';font-size:.65em;line-height:44px;width:44px;height:44px;margin-left:-22px;margin-top:-22px}.aurora .theme-dark .notification-close-button:after,.aurora.theme-dark .notification-close-button:after{color:#fff}:root{--f7-autocomplete-dropdown-placeholder-color:#a9a9a9;--f7-autocomplete-dropdown-preloader-size:20px;--f7-autocomplete-dropdown-font-size:var(--f7-list-font-size);--f7-autocomplete-dropdown-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-autocomplete-dropdown-bg-color:#1c1c1d}.ios{--f7-autocomplete-dropdown-box-shadow:0px 3px 3px rgba(0, 0, 0, 0.2);--f7-autocomplete-dropdown-text-matching-font-weight:600;--f7-autocomplete-dropdown-text-color:#000;--f7-autocomplete-dropdown-text-matching-color:#000}.ios .theme-dark,.ios.theme-dark{--f7-autocomplete-dropdown-text-color:#fff;--f7-autocomplete-dropdown-text-matching-color:#fff}.md{--f7-autocomplete-dropdown-box-shadow:0 2px 2px rgba(0, 0, 0, 0.25);--f7-autocomplete-dropdown-text-matching-font-weight:400;--f7-autocomplete-dropdown-text-color:rgba(0, 0, 0, 0.54);--f7-autocomplete-dropdown-text-matching-color:#212121}.md .theme-dark,.md.theme-dark{--f7-autocomplete-dropdown-text-color:rgba(255, 255, 255, 0.54);--f7-autocomplete-dropdown-text-matching-color:rgba(255, 255, 255, 0.87)}.aurora{--f7-autocomplete-dropdown-box-shadow:0px 1px 2px rgba(0, 0, 0, 0.2);--f7-autocomplete-dropdown-text-matching-font-weight:700;--f7-autocomplete-dropdown-text-color:#000;--f7-autocomplete-dropdown-text-matching-color:#000}.aurora .theme-dark,.aurora.theme-dark{--f7-autocomplete-dropdown-text-color:#fff;--f7-autocomplete-dropdown-text-matching-color:#fff}.autocomplete-page .autocomplete-found{display:block}.autocomplete-page .autocomplete-not-found{display:none}.autocomplete-page .autocomplete-values{display:block}.autocomplete-page .list ul:empty{display:none}.autocomplete-preloader:not(.autocomplete-preloader-visible){visibility:hidden}.autocomplete-preloader:not(.autocomplete-preloader-visible),.autocomplete-preloader:not(.autocomplete-preloader-visible) *{animation:none}.autocomplete-dropdown{background:var(--f7-autocomplete-dropdown-bg-color);box-shadow:var(--f7-autocomplete-dropdown-box-shadow);box-sizing:border-box;position:absolute;z-index:500;width:100%;left:0}.autocomplete-dropdown .autocomplete-dropdown-inner{position:relative;overflow:auto;-webkit-overflow-scrolling:touch;height:100%;z-index:1}.autocomplete-dropdown .autocomplete-preloader{display:none;position:absolute;bottom:100%;width:var(--f7-autocomplete-dropdown-preloader-size);height:var(--f7-autocomplete-dropdown-preloader-size)}.autocomplete-dropdown .autocomplete-preloader-visible{display:block}.autocomplete-dropdown .autocomplete-dropdown-placeholder{color:var(--f7-autocomplete-dropdown-placeholder-color)}.autocomplete-dropdown .list{margin:0;color:var(--f7-autocomplete-dropdown-text-color);font-size:var(--f7-autocomplete-dropdown-font-size)}.autocomplete-dropdown .list b{color:var(--f7-autocomplete-dropdown-text-matching-color);font-weight:var(--f7-autocomplete-dropdown-text-matching-font-weight)}.autocomplete-dropdown .list ul{background:0 0!important}.autocomplete-dropdown .list ul:after,.autocomplete-dropdown .list ul:before{display:none!important}.autocomplete-dropdown .autocomplete-dropdown-selected{background:var(--f7-autocomplete-dropdown-selected-bg-color,rgba(var(--f7-theme-color-rgb),.2))}.searchbar-input-wrap .autocomplete-dropdown{background-color:var(--f7-searchbar-input-bg-color,var(--f7-searchbar-bg-color));border-radius:var(--f7-searchbar-input-border-radius)}.searchbar-input-wrap .autocomplete-dropdown .autocomplete-dropdown-placeholder{color:var(--f7-searchbar-placeholder-color)}.searchbar-input-wrap .autocomplete-dropdown li:last-child{border-radius:0 0 var(--f7-searchbar-input-border-radius) var(--f7-searchbar-input-border-radius);position:relative;overflow:hidden}.searchbar-input-wrap .autocomplete-dropdown .item-content{padding-left:calc(var(--f7-searchbar-input-padding-horizontal) + var(--f7-searchbar-input-extra-padding-left,0px))}.list .item-content-dropdown-expanded .item-title.item-label{width:0;flex-shrink:10;overflow:hidden}.list .item-content-dropdown-expanded .item-title.item-label+.item-input-wrap{margin-left:0}.list .item-content-dropdown-expanded .item-input-wrap{width:100%}.ios .autocomplete-dropdown .autocomplete-preloader{right:16px;margin-bottom:12px}.ios .searchbar-input-wrap .autocomplete-dropdown{margin-top:calc(-1 * var(--f7-searchbar-input-height));top:100%;z-index:20}.ios .searchbar-input-wrap .autocomplete-dropdown .autocomplete-dropdown-inner{padding-top:var(--f7-searchbar-input-height)}.md .autocomplete-page .navbar .autocomplete-preloader{margin-right:8px}.md .autocomplete-popup .navbar .autocomplete-preloader{margin-left:8px;margin-right:16px}.md .autocomplete-dropdown .autocomplete-preloader{right:16px;margin-bottom:8px}.md .autocomplete-dropdown .autocomplete-preloader circle{stroke-width:3}.aurora .autocomplete-dropdown .autocomplete-preloader{right:16px;margin-bottom:2px}.aurora .searchbar-input-wrap .autocomplete-dropdown{margin-top:calc(-1 * var(--f7-searchbar-input-height));top:100%;z-index:20}.aurora .searchbar-input-wrap .autocomplete-dropdown .autocomplete-dropdown-inner{padding-top:var(--f7-searchbar-input-height)}:root{--f7-tooltip-bg-color:rgba(0, 0, 0, 0.87);--f7-tooltip-text-color:#fff;--f7-tooltip-border-radius:4px;--f7-tooltip-padding:8px 16px;--f7-tooltip-font-size:14px;--f7-tooltip-font-weight:500;--f7-tooltip-desktop-padding:6px 8px;--f7-tooltip-desktop-font-size:12px}.tooltip{position:absolute;z-index:20000;background:var(--f7-tooltip-bg-color);border-radius:var(--f7-tooltip-border-radius);padding:var(--f7-tooltip-padding);color:var(--f7-tooltip-text-color);font-size:var(--f7-tooltip-font-size);font-weight:var(--f7-tooltip-font-weight);box-sizing:border-box;line-height:1.2;opacity:0;transform:scale(.9);transition-duration:150ms;transition-property:opacity,transform;z-index:99000}.tooltip.tooltip-in{transform:scale(1);opacity:1}.tooltip.tooltip-out{opacity:0;transform:scale(1)}.device-desktop .tooltip{font-size:var(--f7-tooltip-desktop-font-size);padding:var(--f7-tooltip-desktop-padding)}.gauge{position:relative;text-align:center;margin-left:auto;margin-right:auto;display:inline-block}.gauge svg,.gauge-svg{max-width:100%;height:auto}.gauge svg circle,.gauge svg path,.gauge-svg circle,.gauge-svg path{transition-duration:.4s}:root{--skeleton-color:#ccc;--skeleton-icon-color:rgba(0, 0, 0, 0.25)}.skeleton-block{height:1em;background:var(--skeleton-color)!important;width:100%;display:block}@font-face{font-family:skeleton;src:url(\"data:application/font-woff;charset=utf-8;base64,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\") format(\"woff\");font-weight:100,200,300,400,500,600,700,800,900;font-style:normal,italic;font-display:block}.skeleton-text{font-family:skeleton!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.skeleton-text,.skeleton-text *{color:var(--skeleton-color)!important;letter-spacing:-.03em!important}.skeleton-image{display:inline-block}.skeleton-image svg{max-width:100%;height:auto}.skeleton-image polygon{fill:var(--skeleton-color)}.skeleton-image path{fill:var(--skeleton-icon-color)}.skeleton-avatar{display:inline-block}.skeleton-avatar svg{max-width:100%;height:auto}.skeleton-avatar rect{fill:var(--skeleton-color)}.skeleton-avatar path{fill:var(--skeleton-icon-color)}.skeleton-effect-blink,.skeleton-effect-wave{-webkit-mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-position:50% top;mask-position:50% top;animation:skeleton-effect-wave 1s infinite}.skeleton-effect-fade{animation:skeleton-effect-fade 1s infinite}.skeleton-effect-pulse{animation:skeleton-effect-pulse 1s infinite}@keyframes skeleton-effect-fade{0%{opacity:1}50%{opacity:.2}100%{opacity:1}}@keyframes skeleton-effect-wave{0%{-webkit-mask-position:50% top;mask-position:50% top}100%{-webkit-mask-position:-150% top;mask-position:-150% top}}@keyframes skeleton-effect-pulse{0%{transform:scale(1)}40%{transform:scale(1)}50%{transform:scale(.975)}100%{transform:scale(1)}}:root{--skeleton-color:#ccc;--skeleton-icon-color:rgba(0, 0, 0, 0.25)}.theme-dark{--skeleton-color:#515151;--skeleton-icon-color:rgba(255, 255, 255, 0.25)}:root{--f7-menu-text-color:#fff;--f7-menu-font-size:16px;--f7-menu-font-weight:500;--f7-menu-line-height:1.2;--f7-menu-bg-color:rgba(0, 0, 0, 0.9);--f7-menu-item-pressed-bg-color:rgba(20, 20, 20, 0.9);--f7-menu-item-padding-horizontal:12px;--f7-menu-item-spacing:6px;--f7-menu-item-height:40px;--f7-menu-item-dropdown-icon-color:rgba(255, 255, 255, 0.4);--f7-menu-item-border-radius:8px;--f7-menu-dropdown-item-height:32px;--f7-menu-dropdown-divider-color:rgba(255, 255, 255, 0.2);--f7-menu-dropdown-padding-vertical:6px}.menu{z-index:1000;position:relative;transform:translate3d(0,0,0);--f7-touch-ripple-color:var(--f7-touch-ripple-white)}.menu-inner{display:flex;justify-content:flex-start;align-items:flex-start;padding-left:var(--f7-menu-item-spacing);padding-right:var(--f7-menu-item-spacing)}.menu-inner:after{content:'';width:var(--f7-menu-item-spacing);height:100%;flex-shrink:0}.menu-item{height:var(--f7-menu-item-height);min-width:var(--f7-menu-item-height);flex-shrink:0;background:var(--f7-menu-bg-color);color:var(--f7-menu-text-color);border-radius:var(--f7-menu-item-border-radius);position:relative;box-sizing:border-box;font-size:var(--f7-menu-font-size);font-weight:var(--f7-menu-font-weight);cursor:pointer;margin-left:var(--f7-menu-item-spacing)}.menu-item:first-child{margin-left:0}.menu-item.active-state:not(.menu-item-dropdown-opened){background-color:rgba(0,0,0,.7)}.menu-item.icon-only{padding-left:0;padding-right:0}.menu-item-content{display:flex;justify-content:center;align-items:center;padding:0 var(--f7-menu-item-padding-horizontal);height:100%;box-sizing:border-box;width:100%;overflow:hidden;border-radius:var(--f7-menu-item-border-radius);position:relative}.icon-only .menu-item-content,.menu-item-content.icon-only{padding-left:0;padding-right:0}.menu-item-dropdown .menu-item-content:after{content:'';position:absolute;width:20px;height:2px;left:50%;transform:translateX(-50%);bottom:4px;background:var(--f7-menu-item-dropdown-icon-color);border-radius:4px}.menu-dropdown{opacity:0;visibility:hidden;pointer-events:none;cursor:auto;height:10px;background:var(--f7-menu-bg-color);position:relative}.menu-dropdown-content{position:absolute;top:100%;border-radius:var(--f7-menu-dropdown-border-radius,var(--f7-menu-item-border-radius));padding-top:var(--f7-menu-dropdown-padding-vertical);padding-bottom:var(--f7-menu-dropdown-padding-vertical);box-sizing:border-box;background:var(--f7-menu-bg-color);overflow:auto;-webkit-overflow-scrolling:touch;min-width:calc(100% + 24px)}.menu-dropdown-item,.menu-dropdown-link{display:flex;position:relative;justify-content:space-between;align-items:center;padding-left:var(--f7-menu-item-padding-horizontal);padding-right:var(--f7-menu-item-padding-horizontal);min-height:var(--f7-menu-dropdown-item-height);line-height:var(--f7-menu-line-height);font-size:var(--f7-menu-font-size);color:var(--f7-menu-text-color);font-weight:var(--f7-menu-font-weight);white-space:nowrap;min-width:100px;z-index:1}.menu-dropdown-item i,.menu-dropdown-item i.f7-icons,.menu-dropdown-item i.icon,.menu-dropdown-item i.material-icons,.menu-dropdown-link i,.menu-dropdown-link i.f7-icons,.menu-dropdown-link i.icon,.menu-dropdown-link i.material-icons{font-size:20px}.menu-dropdown-link:before{content:'';position:absolute;left:4px;top:2px;right:4px;bottom:2px;border-radius:4px;background:var(--f7-menu-dropdown-pressed-bg-color,var(--f7-theme-color));z-index:-1;opacity:0;pointer-events:none}.menu-dropdown-link.active-state{color:var(--f7-menu-text-color)}.menu-dropdown-link.active-state:before{opacity:1}.menu-dropdown-divider{height:1px;margin-top:2px;margin-bottom:2px;background:var(--f7-menu-dropdown-divider-color)}.menu-item-dropdown-opened{border-bottom-left-radius:0px;border-bottom-right-radius:0px}.menu-item-dropdown-opened .menu-item-content:after{opacity:0}.menu-item-dropdown-opened .menu-dropdown{opacity:1;visibility:visible;pointer-events:auto}.menu-dropdown-center:after,.menu-dropdown-left:after,.menu-item-dropdown-center .menu-dropdown:after,.menu-item-dropdown-left .menu-dropdown:after{content:'';position:absolute;left:100%;bottom:0;width:var(--f7-menu-item-border-radius);height:var(--f7-menu-item-border-radius);background-image:radial-gradient(ellipse at 100% 0%,transparent 0%,transparent 70%,var(--f7-menu-bg-color) 72%)}.menu-dropdown-center:before,.menu-dropdown-right:before,.menu-item-dropdown-center .menu-dropdown:before,.menu-item-dropdown-right .menu-dropdown:before{content:'';position:absolute;right:100%;bottom:0;width:var(--f7-menu-item-border-radius);height:var(--f7-menu-item-border-radius);background-image:radial-gradient(ellipse at 0% 0%,transparent 0%,transparent 70%,var(--f7-menu-bg-color) 72%)}.menu-dropdown-left .menu-dropdown-content,.menu-item-dropdown-left .menu-dropdown-content{left:0;border-top-left-radius:0px}.menu-dropdown-right .menu-dropdown-content,.menu-item-dropdown-right .menu-dropdown-content{right:0;border-top-right-radius:0px}.menu-dropdown-center .menu-dropdown-content,.menu-item-dropdown-center .menu-dropdown-content{left:50%;min-width:calc(100% + 24px + 24px);transform:translateX(-50%)}.aurora.device-desktop .menu-dropdown-link:not(.no-hover):not(.active-state):hover:before{background:var(--f7-menu-dropdown-hover-bg-color,rgba(255,255,255,.15));opacity:1}:root{--f7-color-picker-popover-width:350px;--f7-color-picker-slider-size:6px;--f7-color-picker-slider-knob-size:16px;--f7-color-picker-bar-size:50px;--f7-color-picker-bar-min-height:260px;--f7-color-picker-value-width:64px;--f7-color-picker-value-height:32px;--f7-color-picker-value-font-size:16px;--f7-color-picker-value-border-radius:4px;--f7-color-picker-hex-value-width:84px;--f7-color-picker-label-font-size:14px;--f7-color-picker-label-width:10px;--f7-color-picker-label-height:14px;--f7-color-picker-sb-spectrum-height:260px;--f7-color-picker-sb-spectrum-handle-size:16px;--f7-color-picker-wheel-width:330px;--f7-color-picker-palette-value-width:36px;--f7-color-picker-palette-value-height:36px;--f7-color-picker-initial-current-color-height:40px;--f7-color-picker-initial-current-color-border-radius:4px;--f7-color-picker-sheet-bg-color:#fff;--f7-color-picker-popup-bg-color:#fff;--f7-color-picker-value-bg-color:rgba(0, 0, 0, 0.05);--f7-color-picker-group-bg-color:rgba(0, 0, 0, 0.05);--f7-color-picker-group-value-bg-color:#fff}:root .theme-dark,:root.theme-dark{--f7-color-picker-sheet-bg-color:#121212;--f7-color-picker-popup-bg-color:#121212;--f7-color-picker-value-bg-color:rgba(255, 255, 255, 0.1);--f7-color-picker-group-bg-color:#000;--f7-color-picker-group-value-bg-color:rgba(255, 255, 255, 0.12)}.color-picker{overflow:hidden;width:100%;display:flex;flex-direction:column}.color-picker-popover .color-picker,.color-picker-popup .color-picker,.color-picker.color-picker-inline{position:relative}.color-picker-sheet-modal{background:var(--f7-color-picker-sheet-bg-color)}.color-picker-sheet-modal:before{z-index:600}.color-picker-sheet-modal .sheet-modal-inner{margin-bottom:var(--f7-safe-area-bottom)}.color-picker-popup .page{background:var(--f7-color-picker-popup-bg-color)}.color-picker-popup .page-content{padding-bottom:var(--f7-safe-area-bottom)}.color-picker-page .color-picker,.color-picker-popover .color-picker,.color-picker-popup .color-picker{height:100%}.color-picker-page .color-picker .toolbar,.color-picker-popover .color-picker .toolbar,.color-picker-popup .color-picker .toolbar{position:absolute}.color-picker-popover{width:var(--f7-color-picker-popover-width);max-width:90vw;max-height:80vh}.color-picker-popover .color-picker{max-height:80vh}.color-picker-popover .toolbar-top{border-top-left-radius:var(--f7-popover-border-radius);border-top-right-radius:var(--f7-popover-border-radius)}.color-picker-popover .color-picker-module-palette{overflow:hidden;flex-shrink:0}.color-picker-popover .color-picker-module-palette:first-child{border-top-left-radius:var(--f7-popover-border-radius);border-top-right-radius:var(--f7-popover-border-radius)}.color-picker-popover .color-picker-module-palette:last-child{border-bottom-left-radius:var(--f7-popover-border-radius);border-bottom-right-radius:var(--f7-popover-border-radius)}.color-picker-popover .color-picker-module-palette:first-child:last-child{border-radius:var(--f7-popover-border-radius)}.color-picker-popover .toolbar~.page-content .color-picker-module-palette:first-child{border-top-left-radius:0;border-top-right-radius:0}.color-picker-page .page-content,.color-picker-popover .page-content,.color-picker-popup .page-content,.color-picker-sheet-modal .page-content{display:flex;justify-content:flex-start;align-items:stretch;flex-direction:column;overflow-x:hidden}.color-picker-module{margin-top:5px}.color-picker-module:last-child{margin-bottom:5px}.color-picker-module-hs-spectrum,.color-picker-module-sb-spectrum{margin-left:10px;margin-right:10px}.color-picker-module-hs-spectrum:first-child,.color-picker-module-sb-spectrum:first-child{margin-top:10px}.color-picker-module-hs-spectrum .color-picker-hs-spectrum,.color-picker-module-hs-spectrum .color-picker-sb-spectrum,.color-picker-module-sb-spectrum .color-picker-hs-spectrum,.color-picker-module-sb-spectrum .color-picker-sb-spectrum{border-radius:4px;height:var(--f7-color-picker-sb-spectrum-height)}.color-picker-sb-spectrum{background-color:#000;background-image:linear-gradient(to bottom,rgba(0,0,0,0) 0%,#000 100%),linear-gradient(to left,rgba(255,255,255,0) 0%,#fff 100%);position:relative}.color-picker-hs-spectrum{position:relative;background-image:linear-gradient(to right,red,#feff00,#0f0,#00feff,#00f,#ff00fe,red)}.color-picker-hs-spectrum:after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background-image:linear-gradient(to bottom,rgba(255,255,255,0),#fff)}.color-picker-hs-spectrum-handle,.color-picker-sb-spectrum-handle{width:4px;height:4px;position:absolute;left:-2px;top:-2px;z-index:1}.color-picker-hs-spectrum-handle:after,.color-picker-sb-spectrum-handle:after{background-color:inherit;content:'';position:absolute;width:var(--f7-color-picker-sb-spectrum-handle-size);height:var(--f7-color-picker-sb-spectrum-handle-size);border:1px solid #fff;border-radius:50%;box-shadow:0px 0px 2px rgba(0,0,0,.5);box-sizing:border-box;left:50%;top:50%;transform:translate(-50%,-50%);transition:150ms;transition-property:transform;transform-origin:center}.color-picker-hs-spectrum-handle.color-picker-hs-spectrum-handle-pressed:after,.color-picker-hs-spectrum-handle.color-picker-sb-spectrum-handle-pressed:after,.color-picker-sb-spectrum-handle.color-picker-hs-spectrum-handle-pressed:after,.color-picker-sb-spectrum-handle.color-picker-sb-spectrum-handle-pressed:after{transform:scale(1.5) translate(-33.333%,-33.333%)}.color-picker-module-wheel{margin-left:10px;margin-right:10px}.color-picker-wheel{position:relative;width:var(--f7-color-picker-wheel-width);max-width:100%;height:auto;font-size:0;margin-left:auto;margin-right:auto}.color-picker-wheel svg{width:100%;height:auto}.color-picker-wheel .color-picker-wheel-handle{width:16.66666667%;height:16.66666667%;position:absolute;box-sizing:border-box;border:2px solid #fff;box-shadow:0px 0px 5px rgba(0,0,0,.5);background:red;border-radius:50%;left:0;top:0}.color-picker-wheel .color-picker-sb-spectrum{width:45%;height:45%;left:50%;top:50%;transform:translate3d(-50%,-50%,0);position:absolute}.color-picker-slider-wrap{display:flex;align-items:center;margin-bottom:2px}.color-picker-slider-wrap+.color-picker-slider-wrap{margin-top:5px}.color-picker-hex-wrap{justify-content:space-between;display:flex;align-items:center}.color-picker-hex-label,.color-picker-slider-label{font-size:var(--f7-color-picker-label-font-size);width:var(--f7-color-picker-label-size);flex-shrink:0;margin-right:12px}.color-picker-hex-label{width:auto}.color-picker-bar-value,.color-picker-hex-value,.color-picker-slider-value{width:var(--f7-color-picker-value-width);height:var(--f7-color-picker-value-height);background:var(--f7-color-picker-value-bg-color);border-radius:var(--f7-color-picker-value-border-radius);text-align:center;font-size:var(--f7-color-picker-value-font-size);display:flex;justify-content:center;align-items:center;flex-shrink:0;margin-left:10px}.color-picker-bar-value input,.color-picker-hex-value input,.color-picker-slider-value input{width:100%;height:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:0;background:0 0;color:inherit;font-family:inherit;font-size:inherit;text-align:center;display:block;border-radius:4px}.color-picker-bar-value input::-webkit-inner-spin-button,.color-picker-bar-value input::-webkit-outer-spin-button,.color-picker-hex-value input::-webkit-inner-spin-button,.color-picker-hex-value input::-webkit-outer-spin-button,.color-picker-slider-value input::-webkit-inner-spin-button,.color-picker-slider-value input::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0;display:none}.color-picker-hex-value{width:var(--f7-color-picker-hex-value-width)}.color-picker-hex-value:first-child{margin-left:auto}.color-picker-slider{--f7-range-bar-active-bg-color:transparent;--f7-range-bar-size:var(--f7-color-picker-slider-size);--f7-range-bar-border-radius:var(--f7-color-picker-slider-size);--f7-range-knob-size:var(--f7-color-picker-slider-knob-size);--f7-range-knob-box-shadow:0 1px 2px rgba(0, 0, 0, 0.3)}.color-picker-slider .range-knob{transition-duration:.2s;transition-property:transform}.color-picker-slider .range-knob:after{width:30px;height:30px;margin-left:-16px;margin-top:-16px}.color-picker-slider .range-knob-active-state .range-knob{transform:scale(1.5)}.md .color-picker-slider.range-slider-min:not(.range-slider-dual) .range-knob{background:var(--f7-range-knob-color)!important;border:none}.color-picker-module-rgb-bars{display:flex;justify-content:space-around;justify-content:space-evenly;align-items:stretch;height:100%;min-height:var(--f7-color-picker-bar-min-height);padding-bottom:10px;padding-top:10px;box-sizing:border-box}.color-picker-bar-wrap{display:flex;align-items:center;flex-direction:column-reverse}.color-picker-bar{--f7-range-bar-active-bg-color:transparent;--f7-range-bar-size:var(--f7-color-picker-bar-size);--f7-range-bar-border-radius:2px;--f7-range-knob-size:6px;--f7-range-knob-box-shadow:0 0px 3px rgba(0, 0, 0, 0.3);--f7-range-knob-color:#fff}.color-picker-bar .range-knob{transition-duration:0s;transition-property:transform;border-radius:3px}.color-picker-bar .range-knob-wrap{height:6px;width:calc(var(--f7-color-picker-bar-size) - 4px);margin-left:calc(-.5 * (var(--f7-color-picker-bar-size) - 4px))}.color-picker-bar .range-knob-active-state .range-knob{transform:scale(1)}.md .color-picker-bar.range-slider-min:not(.range-slider-dual) .range-knob{background:var(--f7-range-knob-color)!important;border:none}.color-picker-bar-label{font-size:var(--f7-color-picker-label-size);margin-top:12px;line-height:1;height:var(--f7-color-picker-label-height);flex-shrink:0}.color-picker-bar-value{margin-left:0;margin-bottom:10px}.color-picker-slider-alpha{--f7-range-knob-color:#fff}.color-picker-slider-alpha .range-bar{background-image:linear-gradient(to right,rgba(0,0,0,0),#000),linear-gradient(to right,rgba(255,255,255,.2) 50%,rgba(0,0,0,.2) 50%),linear-gradient(to left,rgba(255,255,255,.2) 50%,rgba(0,0,0,.2) 50%);background-size:100% 100%,6px 3px,6px 3px;background-position:0 0,0px 3px,0 0;background-repeat:repeat-y,repeat-x,repeat-x}.color-picker-slider-hue .range-bar{background-image:linear-gradient(to right,red,#feff00,#0f0,#00feff,#00f,#ff00fe,red)}.color-picker-slider-brightness .range-bar{background-image:linear-gradient(to right,#000,#fff)}.color-picker-module-palette{margin-top:16px}.color-picker-module-palette:first-child{margin-top:0}.color-picker-module-palette:last-child{margin-bottom:0}.color-picker-module-palette:first-child:last-child{margin:0}.color-picker-palette{display:flex;flex-wrap:wrap}.color-picker-palette-row{width:100%;display:flex;flex-wrap:nowrap}.color-picker-palette-row .color-picker-palette-value{width:100%}.color-picker-palette-value{width:var(--f7-color-picker-palette-value-width);height:var(--f7-color-picker-palette-value-height);cursor:pointer}.color-picker-module-current-color,.color-picker-module-initial-current-colors{margin-left:10px;margin-right:10px;border-radius:var(--f7-color-picker-initial-current-color-border-radius);overflow:hidden;flex-shrink:0}.color-picker-current-color,.color-picker-initial-color{height:var(--f7-color-picker-initial-current-color-height)}.color-picker-initial-current-colors{display:flex}.color-picker-initial-current-colors .color-picker-current-color,.color-picker-initial-current-colors .color-picker-initial-color{width:50%}.color-picker-module-alpha-slider,.color-picker-module-brightness-slider,.color-picker-module-hex,.color-picker-module-hsb-sliders,.color-picker-module-hue-slider,.color-picker-module-rgb-sliders{margin-left:10px;margin-right:10px}.color-picker-grouped-modules .color-picker-module-alpha-slider,.color-picker-grouped-modules .color-picker-module-brightness-slider,.color-picker-grouped-modules .color-picker-module-hex,.color-picker-grouped-modules .color-picker-module-hsb-sliders,.color-picker-grouped-modules .color-picker-module-hue-slider,.color-picker-grouped-modules .color-picker-module-rgb-sliders{background:var(--f7-color-picker-group-bg-color);padding:5px;border-radius:4px;margin-top:16px;margin-left:5px;margin-right:5px}.color-picker-grouped-modules .color-picker-module-alpha-slider:last-child,.color-picker-grouped-modules .color-picker-module-brightness-slider:last-child,.color-picker-grouped-modules .color-picker-module-hex:last-child,.color-picker-grouped-modules .color-picker-module-hsb-sliders:last-child,.color-picker-grouped-modules .color-picker-module-hue-slider:last-child,.color-picker-grouped-modules .color-picker-module-rgb-sliders:last-child{margin-bottom:16px}.color-picker-grouped-modules .color-picker-hex-value,.color-picker-grouped-modules .color-picker-slider-value{background:var(--f7-color-picker-group-value-bg-color)}.color-picker-grouped-modules .color-picker-hex-label,.color-picker-grouped-modules .color-picker-slider-label{margin-left:5px}.color-picker-grouped-modules .color-picker-module-alpha-slider .range-slider:first-child,.color-picker-grouped-modules .color-picker-module-brightness-slider .range-slider:first-child,.color-picker-grouped-modules .color-picker-module-hsb-sliders .range-slider:first-child,.color-picker-grouped-modules .color-picker-module-hue-slider .range-slider:first-child,.color-picker-grouped-modules .color-picker-module-rgb-sliders .range-slider:first-child{margin-left:5px}.color-picker-grouped-modules .color-picker-module-alpha-slider .range-slider:last-child,.color-picker-grouped-modules .color-picker-module-brightness-slider .range-slider:last-child,.color-picker-grouped-modules .color-picker-module-hsb-sliders .range-slider:last-child,.color-picker-grouped-modules .color-picker-module-hue-slider .range-slider:last-child,.color-picker-grouped-modules .color-picker-module-rgb-sliders .range-slider:last-child{margin-right:5px}:root{--f7-treeview-item-height:34px;--f7-treeview-item-padding-left:16px;--f7-treeview-item-padding-right:16px;--f7-treeview-toggle-size:24px;--f7-treeview-children-offset:29px;--f7-treeview-label-font-weight:400;--f7-treeview-label-text-color:inherit;--f7-treeview-icon-size:24px;--f7-treeview-toggle-color:rgba(0, 0, 0, 0.5);--f7-treeview-toggle-hover-bg-color:rgba(0, 0, 0, 0.1);--f7-treeview-toggle-pressed-bg-color:rgba(0, 0, 0, 0.15);--f7-treeview-icon-color:rgba(0, 0, 0, 0.5);--f7-treeview-selectable-hover-bg-color:rgba(0, 0, 0, 0.1);--f7-treeview-link-hover-bg-color:rgba(0, 0, 0, 0.1);--f7-treeview-link-pressed-bg-color:rgba(0, 0, 0, 0.15)}:root .theme-dark,:root.theme-dark{--f7-treeview-toggle-color:rgba(255, 255, 255, 0.5);--f7-treeview-toggle-hover-bg-color:rgba(255, 255, 255, 0.03);--f7-treeview-toggle-pressed-bg-color:rgba(255, 255, 255, 0.1);--f7-treeview-icon-color:rgba(255, 255, 255, 0.75);--f7-treeview-selectable-hover-bg-color:rgba(255, 255, 255, 0.03);--f7-treeview-link-hover-bg-color:rgba(255, 255, 255, 0.03);--f7-treeview-link-pressed-bg-color:rgba(255, 255, 255, 0.11)}.ios{--f7-treeview-label-font-size:17px}.md{--f7-treeview-label-font-size:16px}.aurora{--f7-treeview-label-font-size:16px}.treeview-item-root{padding-left:var(--f7-treeview-item-padding-left);padding-right:var(--f7-treeview-item-padding-right);min-height:var(--f7-treeview-item-height);display:flex;align-items:center;justify-content:flex-start}.treeview-item-content{display:flex;justify-content:flex-start;align-items:center}.treeview-item-content>.f7-icons,.treeview-item-content>.material-icons,.treeview-item-content>i{font-size:var(--f7-treeview-icon-size);color:var(--f7-treeview-icon-color)}.treeview-item-content:first-child{margin-left:calc(var(--f7-treeview-toggle-size) + 5px)}.treeview-item-content>*+*{margin-left:5px}.treeview-item-label{font-size:var(--f7-treeview-label-font-size);font-weight:var(--f7-treeview-label-font-weight);color:var(--f7-treeview-label-text-color)}.treeview-toggle{width:var(--f7-treeview-toggle-size);height:var(--f7-treeview-toggle-size);cursor:pointer;border-radius:4px;background-color:rgba(0,0,0,0);transition-duration:.2s;position:relative;margin-right:5px}.treeview-toggle.active-state{background-color:var(--f7-treeview-toggle-pressed-bg-color)}.treeview-toggle:after{transition-duration:.2s;content:'';position:absolute;left:50%;top:50%;width:0;height:0;border-top:5px solid transparent;border-bottom:5px solid transparent;transform:translate(-50%,-50%);border-left:6px solid var(--f7-treeview-toggle-color)}.treeview-toggle-hidden{opacity:0;pointer-events:none;visibility:hidden}.treeview-preloader{--f7-preloader-size:var(--f7-treeview-toggle-size);margin-right:calc(-1 * var(--f7-treeview-toggle-size))}.treeview-item-children{display:none}.treeview-item-opened>.treeview-item-children{display:block}.treeview-item-opened>.treeview-item-root .treeview-toggle:after{transform:translate(-50%,-50%) rotate(90deg)}a.treeview-item-root{color:var(--f7-treeview-label-text-color)}.treeview-item-selectable.treeview-item-root,.treeview-item-selectable>.treeview-item-root{cursor:pointer;transition-duration:150ms}a.treeview-item-root{transition-duration:150ms}a.treeview-item-root.active-state{background:var(--f7-treeview-link-pressed-bg-color)}.treeview-item-toggle.treeview-item-root,.treeview-item-toggle>.treeview-item-root{cursor:pointer}.treeview-item-selected.treeview-item-root,.treeview-item-selected>.treeview-item-root{background:var(--f7-treeview-selectable-selected-bg-color,rgba(var(--f7-theme-color-rgb),.2))}.treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 1)}.treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 2)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 3)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 4)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 5)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 6)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 7)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 8)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 9)}.treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item .treeview-item-root{padding-left:calc(var(--f7-treeview-item-padding-left) + var(--f7-treeview-children-offset) * 10)}.aurora .treeview-toggle:hover{background-color:var(--f7-treeview-toggle-hover-bg-color)}.aurora .treeview-toggle.active-state{background-color:var(--f7-treeview-toggle-pressed-bg-color)}.aurora .treeview-item-selectable.treeview-item-root:hover,.aurora .treeview-item-selectable>.treeview-item-root:hover{background:var(--f7-treeview-selectable-hover-bg-color)}.aurora a.treeview-item-root:hover{background:var(--f7-treeview-link-hover-bg-color)}.aurora a.treeview-item-root.active-state{background:var(--f7-treeview-link-pressed-bg-color)}.aurora .treeview-item-selected.treeview-item-root:hover,.aurora .treeview-item-selected>.treeview-item-root:hover{background:var(--f7-treeview-selectable-selected-bg-color,rgba(var(--f7-theme-color-rgb),.2))}:root{--f7-text-editor-font-size:inherit;--f7-text-editor-font-weight:inherit;--f7-text-editor-border-width:1px;--f7-text-editor-height:250px;--f7-text-editor-margin:16px;--f7-text-editor-padding:8px;--f7-text-editor-button-bg-color:transparent;--f7-text-editor-button-size:28px;--f7-text-editor-button-icon-size:20px;--f7-text-editor-button-margin:2px;--f7-text-editor-button-border-radius:2px;--f7-text-editor-text-color:#000;--f7-text-editor-bg-color:#fff;--f7-text-editor-border-color:rgba(0, 0, 0, 0.1);--f7-text-editor-toolbar-bg-color:#fff;--f7-text-editor-button-text-color:#333;--f7-text-editor-button-divider-color:rgba(0, 0, 0, 0.15);--f7-text-editor-placeholder-color:rgba(0, 0, 0, 0.35)}:root .theme-dark,:root.theme-dark{--f7-text-editor-bg-color:#121212;--f7-text-editor-border-color:rgba(255, 255, 255, 0.1);--f7-text-editor-toolbar-bg-color:#202020;--f7-text-editor-text-color:#fff;--f7-text-editor-placeholder-color:rgba(255, 255, 255, 0.35);--f7-text-editor-button-text-color:#fff;--f7-text-editor-button-divider-color:rgba(255, 255, 255, 0.15)}.ios{--f7-text-editor-toolbar-padding:6px;--f7-text-editor-toolbar-border-color:rgba(0, 0, 0, 0.25)}.ios .theme-dark,.ios.theme-dark{--f7-text-editor-toolbar-bg-color:#121212;--f7-text-editor-toolbar-border-color:rgba(255, 255, 255, 0.1)}.md{--f7-text-editor-toolbar-padding:8px;--f7-text-editor-toolbar-box-shadow:0px 2px 3px -1px rgba(0, 0, 0, 0.25)}.aurora{--f7-text-editor-toolbar-padding:8px;--f7-text-editor-toolbar-border-color:rgba(0, 0, 0, 0.25)}.aurora .theme-dark,.aurora.theme-dark{--f7-text-editor-toolbar-border-color:rgba(255, 255, 255, 0.1)}.text-editor{margin:var(--f7-text-editor-margin);background-color:var(--f7-text-editor-bg-color);display:block;position:relative;border:var(--f7-text-editor-border-width) solid var(--f7-text-editor-border-color);display:flex;flex-direction:column;align-items:stretch;height:var(--f7-text-editor-height);box-sizing:border-box}.text-editor.text-editor-resizable{height:auto}.text-editor-toolbar{display:flex;flex-wrap:wrap;background:var(--f7-text-editor-toolbar-bg-color);z-index:100;position:relative;position:-webkit-sticky;position:sticky;left:0;top:0;padding:var(--f7-text-editor-toolbar-padding);flex-shrink:0;box-shadow:var(--f7-text-editor-toolbar-box-shadow);box-sizing:border-box}.text-editor-toolbar:after{content:'';position:absolute;background-color:var(--f7-text-editor-toolbar-border-color);display:block;z-index:15;top:auto;right:auto;bottom:0;left:0;height:1px;width:100%;transform-origin:50% 100%;transform:scaleY(calc(1 / var(--f7-device-pixel-ratio)))}button.text-editor-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;padding:0;margin:0;outline:0;font-family:inherit;background:0 0;cursor:pointer;box-shadow:none;border-radius:var(--f7-text-editor-button-border-radius);position:relative;z-index:1;display:flex;width:auto;overflow:hidden;width:var(--f7-text-editor-button-size);height:var(--f7-text-editor-button-size);align-items:center;justify-content:center;margin:var(--f7-text-editor-button-margin);box-sizing:border-box;color:var(--f7-text-editor-button-text-color);background-color:var(--f7-text-editor-button-bg-color);flex-shrink:0}button.text-editor-button .f7-icons,button.text-editor-button .material-icons,button.text-editor-button i{font-size:var(--f7-text-editor-button-icon-size);font-style:normal}button.text-editor-button .f7-icons sub,button.text-editor-button .f7-icons sup,button.text-editor-button .material-icons sub,button.text-editor-button .material-icons sup,button.text-editor-button i sub,button.text-editor-button i sup{font-size:60%}.text-editor-button-divider{width:1px;background:var(--f7-text-editor-button-divider-color);margin:0 2px;flex-shrink:0}.text-editor-content{-webkit-user-modify:read-write;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:0;height:100%;-webkit-user-select:text;-moz-user-select:text;user-select:text;padding:var(--f7-text-editor-padding);overflow:auto;flex-shrink:10;box-sizing:border-box;color:var(--f7-text-editor-text-color);font-size:var(--f7-text-editor-font-size);font-weight:var(--f7-text-editor-font-weight)}.text-editor-content .text-editor-placeholder{pointer-events:none;color:var(--f7-text-editor-placeholder-color)}.text-editor-content img{max-width:100%}.text-editor-content a{pointer-events:none}.text-editor-popover{z-index:12500;width:auto;max-width:80vw}.text-editor-popover .popover-inner{display:flex;flex-wrap:wrap;padding:3px}.text-editor-keyboard-toolbar{position:absolute;z-index:6000;--f7-safe-area-bottom:0px}.text-editor-keyboard-toolbar .toolbar-inner{justify-content:flex-start!important;overflow:auto;-webkit-overflow-scrolling:touch}.text-editor-keyboard-toolbar .toolbar-inner::-webkit-scrollbar{display:none}.text-editor-keyboard-toolbar .toolbar-inner .text-editor-button-divider{height:100%}.item-input .text-editor{border:none;margin:0;background-color:var(--f7-input-bg-color,transparent)}.item-input .text-editor-content{padding-top:var(--f7-textarea-padding-vertical);padding-bottom:var(--f7-textarea-padding-vertical);padding-left:var(--f7-input-padding-left);padding-right:var(--f7-input-padding-right);color:var(--f7-input-text-color);font-size:var(--f7-input-font-size)}.item-input .text-editor-toolbar{box-shadow:none}.item-input .text-editor-toolbar:after{display:none!important}.item-input-outline .text-editor-content{border-radius:var(--f7-input-outline-border-radius);padding-left:var(--f7-input-outline-padding-horizontal);padding-right:var(--f7-input-outline-padding-horizontal)}.ios button.text-editor-button{transition:opacity .3s}.ios button.text-editor-button.active-state{opacity:.3;transition-duration:0s}.md button.text-editor-button{--f7-touch-ripple-color:rgba(var(--f7-theme-color-rgb), 0.25)}.md button.text-editor-button:before{content:'';width:152%;height:152%;left:-26%;top:-26%;position:absolute;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 66%,rgba(255,255,255,0) 66%);background-repeat:no-repeat;background-position:center;background-size:100% 100%;opacity:0;pointer-events:none;transition-duration:.3s;transition-property:opacity}.md button.text-editor-button.icon-only:before,.md button.text-editor-button.input-clear-button:before,.md button.text-editor-button.notification-close-button:before,.md button.text-editor-button.ripple-inset:before,.md button.text-editor-button.searchbar-disable-button:before{width:100%;height:100%;left:0;top:0;background-image:radial-gradient(circle at center,var(--f7-link-highlight-color) 71%,rgba(255,255,255,0) 71%)}.md button.text-editor-button.active-state:before{opacity:1;transition-duration:150ms}.md .text-editor-keyboard-toolbar .toolbar-inner{padding-left:8px;padding-right:8px}.aurora button.text-editor-button{transition:opacity .3s}.aurora button.text-editor-button.active-state{opacity:.3;transition-duration:0s}.pie-chart{position:relative}.pie-chart svg{display:block;width:100%;font-size:0;height:auto;margin:0 auto}.pie-chart path{transition-duration:150ms}.pie-chart-hidden{opacity:.4}.pie-chart-tooltip{pointer-events:none;text-align:left;font-size:12px;line-height:1.4;white-space:nowrap;width:auto;max-width:none}.pie-chart-tooltip-label{display:flex;align-items:center}.pie-chart-tooltip-color{display:inline-block;width:10px;height:10px;border-radius:50%;margin-right:4px}:root{--f7-area-chart-current-line-stroke-width:2px;--f7-area-chart-current-line-stroke:rgba(0, 0, 0, 0.15);--f7-area-chart-axis-text-color:inherit;--f7-area-chart-axis-height:1px;--f7-area-chart-axis-font-size:10px;--f7-area-chart-axis-font-weight:500;--f7-area-chart-tooltip-font-size:12px;--f7-area-chart-tooltip-total-label-text-color:rgba(255, 255, 255, 0.75);--f7-area-chart-tooltip-total-font-size:16px;--f7-area-chart-tooltip-total-font-weight:bold;--f7-area-chart-tooltip-color-size:10px;--f7-area-chart-legend-font-size:14px;--f7-area-chart-legend-font-weight:500;--f7-area-chart-legend-text-color:inherit;--f7-area-chart-legend-padding:4px 8px;--f7-area-chart-legend-border-radius:4px;--f7-area-chart-legend-color-size:14px;--f7-area-chart-line-stroke-width:2px;--f7-area-chart-axis-bg-color:rgba(0, 0, 0, 0.15);--f7-area-chart-legend-disabled-text-color:rgba(0, 0, 0, 0.22)}:root .theme-dark,:root.theme-dark{--f7-area-chart-axis-bg-color:rgba(255, 255, 255, 0.15);--f7-area-chart-legend-disabled-text-color:rgba(255, 255, 255, 0.22)}.area-chart{position:relative}.area-chart svg{display:block;width:100%;font-size:0;height:auto;margin:0 auto}.area-chart path{fill:none;stroke-width:var(--f7-area-chart-line-stroke-width)}.area-chart-current-line{stroke:var(--f7-area-chart-current-line-stroke);stroke-width:var(--f7-area-chart-current-line-stroke-width)}.area-chart-axis{height:var(--f7-area-chart-axis-height);background:var(--f7-area-chart-axis-bg-color);color:var(--f7-area-chart-axis-text-color);display:flex;font-size:var(--f7-area-chart-axis-font-size);font-weight:var(--f7-area-chart-axis-font-weight);justify-content:space-between;line-height:1;margin-bottom:2em}.area-chart-axis>span{padding-top:10px;width:0;display:flex;align-items:flex-start;justify-content:center;white-space:nowrap}.area-chart-axis>span:first-child{justify-content:flex-start}.area-chart-axis>span:last-child{justify-content:flex-end}.area-chart-tooltip{pointer-events:none;text-align:left;font-size:var(--f7-area-chart-tooltip-font-size);line-height:1.4}.area-chart-tooltip-label{color:var(--f7-area-chart-tooltip-total-label-text-color)}.area-chart-tooltip-total{font-size:var(--f7-area-chart-tooltip-total-font-size);font-weight:var(--f7-area-chart-tooltip-total-font-weight)}.area-chart-tooltip-list{list-style:none;margin:0;padding:0}.area-chart-tooltip-list li{white-space:nowrap}.area-chart-tooltip-list span{display:inline-block;width:var(--f7-area-chart-tooltip-color-size);height:var(--f7-area-chart-tooltip-color-size);border-radius:50%;margin-right:4px}.area-chart-axis~.area-chart-legend{margin-top:2em}.area-chart-legend{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:var(--f7-area-chart-legend-font-size);width:100%;margin-top:1em}.area-chart-legend-button{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;background-color:transparent;border-radius:0;border:none;outline:0!important;cursor:pointer;font-family:inherit;font-size:inherit;box-shadow:none!important}.area-chart-legend-item{position:relative;color:var(--f7-area-chart-legend-text-color);width:auto;display:flex;align-items:center;font-weight:var(--f7-area-chart-legend-font-weight);transition-duration:.2s;padding:var(--f7-area-chart-legend-padding);border-radius:var(--f7-area-chart-legend-border-radius);overflow:hidden}.area-chart-legend-item span{width:var(--f7-area-chart-legend-color-size);height:var(--f7-area-chart-legend-color-size);margin-right:4px;border-radius:50%;transition-duration:.2s}.area-chart-legend-item-hidden{color:var(--f7-area-chart-legend-disabled-text-color)}.area-chart-legend-item-hidden span{background-color:var(--f7-area-chart-legend-disabled-text-color)!important}:root{--f7-elevation-0:0px 0px 0px 0px rgba(0, 0, 0, 0);--f7-elevation-1:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12);--f7-elevation-2:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12);--f7-elevation-3:0px 3px 3px -2px rgba(0, 0, 0, 0.2),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 1px 8px 0px rgba(0, 0, 0, 0.12);--f7-elevation-4:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12);--f7-elevation-5:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 5px 8px 0px rgba(0, 0, 0, 0.14),0px 1px 14px 0px rgba(0, 0, 0, 0.12);--f7-elevation-6:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12);--f7-elevation-7:0px 4px 5px -2px rgba(0, 0, 0, 0.2),0px 7px 10px 1px rgba(0, 0, 0, 0.14),0px 2px 16px 1px rgba(0, 0, 0, 0.12);--f7-elevation-8:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12);--f7-elevation-9:0px 5px 6px -3px rgba(0, 0, 0, 0.2),0px 9px 12px 1px rgba(0, 0, 0, 0.14),0px 3px 16px 2px rgba(0, 0, 0, 0.12);--f7-elevation-10:0px 6px 6px -3px rgba(0, 0, 0, 0.2),0px 10px 14px 1px rgba(0, 0, 0, 0.14),0px 4px 18px 3px rgba(0, 0, 0, 0.12);--f7-elevation-11:0px 6px 7px -4px rgba(0, 0, 0, 0.2),0px 11px 15px 1px rgba(0, 0, 0, 0.14),0px 4px 20px 3px rgba(0, 0, 0, 0.12);--f7-elevation-12:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 12px 17px 2px rgba(0, 0, 0, 0.14),0px 5px 22px 4px rgba(0, 0, 0, 0.12);--f7-elevation-13:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px 4px rgba(0, 0, 0, 0.12);--f7-elevation-14:0px 7px 9px -4px rgba(0, 0, 0, 0.2),0px 14px 21px 2px rgba(0, 0, 0, 0.14),0px 5px 26px 4px rgba(0, 0, 0, 0.12);--f7-elevation-15:0px 8px 9px -5px rgba(0, 0, 0, 0.2),0px 15px 22px 2px rgba(0, 0, 0, 0.14),0px 6px 28px 5px rgba(0, 0, 0, 0.12);--f7-elevation-16:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12);--f7-elevation-17:0px 8px 11px -5px rgba(0, 0, 0, 0.2),0px 17px 26px 2px rgba(0, 0, 0, 0.14),0px 6px 32px 5px rgba(0, 0, 0, 0.12);--f7-elevation-18:0px 9px 11px -5px rgba(0, 0, 0, 0.2),0px 18px 28px 2px rgba(0, 0, 0, 0.14),0px 7px 34px 6px rgba(0, 0, 0, 0.12);--f7-elevation-19:0px 9px 12px -6px rgba(0, 0, 0, 0.2),0px 19px 29px 2px rgba(0, 0, 0, 0.14),0px 7px 36px 6px rgba(0, 0, 0, 0.12);--f7-elevation-20:0px 10px 13px -6px rgba(0, 0, 0, 0.2),0px 20px 31px 3px rgba(0, 0, 0, 0.14),0px 8px 38px 7px rgba(0, 0, 0, 0.12);--f7-elevation-21:0px 10px 13px -6px rgba(0, 0, 0, 0.2),0px 21px 33px 3px rgba(0, 0, 0, 0.14),0px 8px 40px 7px rgba(0, 0, 0, 0.12);--f7-elevation-22:0px 10px 14px -6px rgba(0, 0, 0, 0.2),0px 22px 35px 3px rgba(0, 0, 0, 0.14),0px 8px 42px 7px rgba(0, 0, 0, 0.12);--f7-elevation-23:0px 11px 14px -7px rgba(0, 0, 0, 0.2),0px 23px 36px 3px rgba(0, 0, 0, 0.14),0px 9px 44px 8px rgba(0, 0, 0, 0.12);--f7-elevation-24:0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0, 0, 0, 0.12)}.elevation-0{box-shadow:var(--f7-elevation-0)!important}.elevation-1{box-shadow:var(--f7-elevation-1)!important}.elevation-2{box-shadow:var(--f7-elevation-2)!important}.elevation-3{box-shadow:var(--f7-elevation-3)!important}.elevation-4{box-shadow:var(--f7-elevation-4)!important}.elevation-5{box-shadow:var(--f7-elevation-5)!important}.elevation-6{box-shadow:var(--f7-elevation-6)!important}.elevation-7{box-shadow:var(--f7-elevation-7)!important}.elevation-8{box-shadow:var(--f7-elevation-8)!important}.elevation-9{box-shadow:var(--f7-elevation-9)!important}.elevation-10{box-shadow:var(--f7-elevation-10)!important}.elevation-11{box-shadow:var(--f7-elevation-11)!important}.elevation-12{box-shadow:var(--f7-elevation-12)!important}.elevation-13{box-shadow:var(--f7-elevation-13)!important}.elevation-14{box-shadow:var(--f7-elevation-14)!important}.elevation-15{box-shadow:var(--f7-elevation-15)!important}.elevation-16{box-shadow:var(--f7-elevation-16)!important}.elevation-17{box-shadow:var(--f7-elevation-17)!important}.elevation-18{box-shadow:var(--f7-elevation-18)!important}.elevation-19{box-shadow:var(--f7-elevation-19)!important}.elevation-20{box-shadow:var(--f7-elevation-20)!important}.elevation-21{box-shadow:var(--f7-elevation-21)!important}.elevation-22{box-shadow:var(--f7-elevation-22)!important}.elevation-23{box-shadow:var(--f7-elevation-23)!important}.elevation-24{box-shadow:var(--f7-elevation-24)!important}.device-desktop .elevation-hover-0:hover{box-shadow:var(--f7-elevation-0)!important}.device-desktop .elevation-hover-1:hover{box-shadow:var(--f7-elevation-1)!important}.device-desktop .elevation-hover-2:hover{box-shadow:var(--f7-elevation-2)!important}.device-desktop .elevation-hover-3:hover{box-shadow:var(--f7-elevation-3)!important}.device-desktop .elevation-hover-4:hover{box-shadow:var(--f7-elevation-4)!important}.device-desktop .elevation-hover-5:hover{box-shadow:var(--f7-elevation-5)!important}.device-desktop .elevation-hover-6:hover{box-shadow:var(--f7-elevation-6)!important}.device-desktop .elevation-hover-7:hover{box-shadow:var(--f7-elevation-7)!important}.device-desktop .elevation-hover-8:hover{box-shadow:var(--f7-elevation-8)!important}.device-desktop .elevation-hover-9:hover{box-shadow:var(--f7-elevation-9)!important}.device-desktop .elevation-hover-10:hover{box-shadow:var(--f7-elevation-10)!important}.device-desktop .elevation-hover-11:hover{box-shadow:var(--f7-elevation-11)!important}.device-desktop .elevation-hover-12:hover{box-shadow:var(--f7-elevation-12)!important}.device-desktop .elevation-hover-13:hover{box-shadow:var(--f7-elevation-13)!important}.device-desktop .elevation-hover-14:hover{box-shadow:var(--f7-elevation-14)!important}.device-desktop .elevation-hover-15:hover{box-shadow:var(--f7-elevation-15)!important}.device-desktop .elevation-hover-16:hover{box-shadow:var(--f7-elevation-16)!important}.device-desktop .elevation-hover-17:hover{box-shadow:var(--f7-elevation-17)!important}.device-desktop .elevation-hover-18:hover{box-shadow:var(--f7-elevation-18)!important}.device-desktop .elevation-hover-19:hover{box-shadow:var(--f7-elevation-19)!important}.device-desktop .elevation-hover-20:hover{box-shadow:var(--f7-elevation-20)!important}.device-desktop .elevation-hover-21:hover{box-shadow:var(--f7-elevation-21)!important}.device-desktop .elevation-hover-22:hover{box-shadow:var(--f7-elevation-22)!important}.device-desktop .elevation-hover-23:hover{box-shadow:var(--f7-elevation-23)!important}.device-desktop .elevation-hover-24:hover{box-shadow:var(--f7-elevation-24)!important}.active-state.elevation-pressed-0,.device-desktop .active-state.elevation-pressed-0{box-shadow:var(--f7-elevation-0)!important}.active-state.elevation-pressed-1,.device-desktop .active-state.elevation-pressed-1{box-shadow:var(--f7-elevation-1)!important}.active-state.elevation-pressed-2,.device-desktop .active-state.elevation-pressed-2{box-shadow:var(--f7-elevation-2)!important}.active-state.elevation-pressed-3,.device-desktop .active-state.elevation-pressed-3{box-shadow:var(--f7-elevation-3)!important}.active-state.elevation-pressed-4,.device-desktop .active-state.elevation-pressed-4{box-shadow:var(--f7-elevation-4)!important}.active-state.elevation-pressed-5,.device-desktop .active-state.elevation-pressed-5{box-shadow:var(--f7-elevation-5)!important}.active-state.elevation-pressed-6,.device-desktop .active-state.elevation-pressed-6{box-shadow:var(--f7-elevation-6)!important}.active-state.elevation-pressed-7,.device-desktop .active-state.elevation-pressed-7{box-shadow:var(--f7-elevation-7)!important}.active-state.elevation-pressed-8,.device-desktop .active-state.elevation-pressed-8{box-shadow:var(--f7-elevation-8)!important}.active-state.elevation-pressed-9,.device-desktop .active-state.elevation-pressed-9{box-shadow:var(--f7-elevation-9)!important}.active-state.elevation-pressed-10,.device-desktop .active-state.elevation-pressed-10{box-shadow:var(--f7-elevation-10)!important}.active-state.elevation-pressed-11,.device-desktop .active-state.elevation-pressed-11{box-shadow:var(--f7-elevation-11)!important}.active-state.elevation-pressed-12,.device-desktop .active-state.elevation-pressed-12{box-shadow:var(--f7-elevation-12)!important}.active-state.elevation-pressed-13,.device-desktop .active-state.elevation-pressed-13{box-shadow:var(--f7-elevation-13)!important}.active-state.elevation-pressed-14,.device-desktop .active-state.elevation-pressed-14{box-shadow:var(--f7-elevation-14)!important}.active-state.elevation-pressed-15,.device-desktop .active-state.elevation-pressed-15{box-shadow:var(--f7-elevation-15)!important}.active-state.elevation-pressed-16,.device-desktop .active-state.elevation-pressed-16{box-shadow:var(--f7-elevation-16)!important}.active-state.elevation-pressed-17,.device-desktop .active-state.elevation-pressed-17{box-shadow:var(--f7-elevation-17)!important}.active-state.elevation-pressed-18,.device-desktop .active-state.elevation-pressed-18{box-shadow:var(--f7-elevation-18)!important}.active-state.elevation-pressed-19,.device-desktop .active-state.elevation-pressed-19{box-shadow:var(--f7-elevation-19)!important}.active-state.elevation-pressed-20,.device-desktop .active-state.elevation-pressed-20{box-shadow:var(--f7-elevation-20)!important}.active-state.elevation-pressed-21,.device-desktop .active-state.elevation-pressed-21{box-shadow:var(--f7-elevation-21)!important}.active-state.elevation-pressed-22,.device-desktop .active-state.elevation-pressed-22{box-shadow:var(--f7-elevation-22)!important}.active-state.elevation-pressed-23,.device-desktop .active-state.elevation-pressed-23{box-shadow:var(--f7-elevation-23)!important}.active-state.elevation-pressed-24,.device-desktop .active-state.elevation-pressed-24{box-shadow:var(--f7-elevation-24)!important}.elevation-transition-100{transition-duration:.1s;transition-property:box-shadow}.elevation-transition,.elevation-transition-200{transition-duration:.2s;transition-property:box-shadow}.elevation-transition-300{transition-duration:.3s;transition-property:box-shadow}.elevation-transition-400{transition-duration:.4s;transition-property:box-shadow}.elevation-transition-500{transition-duration:.5s;transition-property:box-shadow}:root{--f7-typography-padding:16px;--f7-typography-margin:16px}.display-flex{display:flex!important}.display-block{display:block!important}.display-inline-flex{display:inline-flex!important}.display-inline-block{display:inline-block!important}.display-inline{display:inline!important}.display-none{display:none!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-shrink-2{flex-shrink:2!important}.flex-shrink-3{flex-shrink:3!important}.flex-shrink-4{flex-shrink:4!important}.flex-shrink-5{flex-shrink:5!important}.flex-shrink-6{flex-shrink:6!important}.flex-shrink-7{flex-shrink:7!important}.flex-shrink-8{flex-shrink:8!important}.flex-shrink-9{flex-shrink:9!important}.flex-shrink-10{flex-shrink:10!important}.flex-direction-row{flex-direction:row!important}.flex-direction-row-reverse{flex-direction:row-reverse!important}.flex-direction-column{flex-direction:column!important}.flex-direction-column-reverse{flex-direction:column-reverse!important}.justify-content-flex-start{justify-content:flex-start!important}.justify-content-center{justify-content:center!important}.justify-content-flex-end{justify-content:flex-end!important}.justify-content-space-between{justify-content:space-between!important}.justify-content-space-around{justify-content:space-around!important}.justify-content-space-evenly{justify-content:space-evenly!important}.justify-content-stretch{justify-content:stretch!important}.justify-content-start{justify-content:start!important}.justify-content-end{justify-content:end!important}.justify-content-left{justify-content:left!important}.justify-content-right{justify-content:right!important}.align-content-flex-start{align-content:flex-start!important}.align-content-flex-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-space-between{align-content:space-between!important}.align-content-space-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-items-baseline{align-items:baseline!important}.align-items-flex-start{align-items:flex-start!important}.align-items-flex-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-stretch{align-items:stretch!important}.align-self-flex-start{align-self:flex-start!important}.align-self-flex-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.text-align-left{text-align:left!important}.text-align-center{text-align:center!important}.text-align-right{text-align:right!important}.text-align-justify{text-align:justify!important}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-top{vertical-align:top!important}.no-padding{padding:0!important}.no-padding-left{padding-left:0!important}.no-padding-right{padding-right:0!important}.no-padding-horizontal{padding-left:0!important;padding-right:0!important}.no-padding-top{padding-top:0!important}.no-padding-bottom{padding-bottom:0!important}.no-padding-vertical{padding-top:0!important;padding-bottom:0!important}.no-margin{margin:0!important}.no-margin-left{margin-left:0!important}.no-margin-right{margin-right:0!important}.no-margin-horizontal{margin-left:0!important;margin-right:0!important}.no-margin-top{margin-top:0!important}.no-margin-bottom{margin-bottom:0!important}.no-margin-vertical{margin-top:0!important;margin-bottom:0!important}.width-auto{width:auto!important}.width-100{width:100%!important}.padding{padding:var(--f7-typography-padding)!important}.padding-half{padding:calc(var(--f7-typography-padding)/ 2)!important}.padding-top{padding-top:var(--f7-typography-padding)!important}.padding-top-half{padding-top:calc(var(--f7-typography-padding)/ 2)!important}.padding-bottom{padding-bottom:var(--f7-typography-padding)!important}.padding-bottom-half{padding-bottom:calc(var(--f7-typography-padding)/ 2)!important}.padding-left{padding-left:var(--f7-typography-padding)!important}.padding-left-half{padding-left:calc(var(--f7-typography-padding)/ 2)!important}.padding-right{padding-right:var(--f7-typography-padding)!important}.padding-right-half{padding-right:calc(var(--f7-typography-padding)/ 2)!important}.padding-vertical{padding-top:var(--f7-typography-padding)!important;padding-bottom:var(--f7-typography-padding)!important}.padding-vertical-half{padding-top:calc(var(--f7-typography-padding)/ 2)!important;padding-bottom:calc(var(--f7-typography-padding)/ 2)!important}.padding-horizontal{padding-left:var(--f7-typography-padding)!important;padding-right:var(--f7-typography-padding)!important}.padding-horizontal-half{padding-left:calc(var(--f7-typography-padding)/ 2)!important;padding-right:calc(var(--f7-typography-padding)/ 2)!important}.margin{margin:var(--f7-typography-margin)!important}.margin-half{margin:calc(var(--f7-typography-margin)/ 2)!important}.margin-top{margin-top:var(--f7-typography-margin)!important}.margin-top-half{margin-top:calc(var(--f7-typography-margin)/ 2)!important}.margin-bottom{margin-bottom:var(--f7-typography-margin)!important}.margin-bottom-half{margin-bottom:calc(var(--f7-typography-margin)/ 2)!important}.margin-left{margin-left:var(--f7-typography-margin)!important}.margin-left-half{margin-left:calc(var(--f7-typography-margin)/ 2)!important}.margin-right{margin-right:var(--f7-typography-margin)!important}.margin-right-half{margin-right:calc(var(--f7-typography-margin)/ 2)!important}.margin-vertical{margin-top:var(--f7-typography-margin)!important;margin-bottom:var(--f7-typography-margin)!important}.margin-vertical-half{margin-top:calc(var(--f7-typography-margin)/ 2)!important;margin-bottom:calc(var(--f7-typography-margin)/ 2)!important}.margin-horizontal{margin-left:var(--f7-typography-margin)!important;margin-right:var(--f7-typography-margin)!important}.margin-horizontal-half{margin-left:calc(var(--f7-typography-margin)/ 2)!important;margin-right:calc(var(--f7-typography-margin)/ 2)!important}[class*=text-color-]{color:var(--f7-theme-color-text-color)!important}[class*=bg-color-]{background-color:var(--f7-theme-color-bg-color)!important}[class*=border-color-]{border-color:var(--f7-theme-color-border-color)!important}","/*\n Note: The content of this file must be manually minified and added to\n f7.welcomescreen.js and assign the result to the variable \"css\".\n*/\n.welcomescreen-container {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: #fff;\n z-index: 10500;\n color: #666;\n font-size: 16px;\n}\n\n.welcomescreen-closebtn{\n top: 5px;\n right: 5px;\n position: absolute;\n text-align: right;\n z-index: 9998;\n font-size: 14px;\n padding: 15px;\n cursor: pointer;\n}\n\n.welcomescreen-swiper {\n position:relative;\n width: 100%;\n height: 100%;\n}\n\n.welcomescreen-title{\n width: 100%;\n text-align: center;\n margin-top: 20%;\n}\n\n.welcomescreen-picture{\n width: 100%;\n text-align: center;\n margin-top: 20%;\n}\n\n.welcomescreen-text {\n position:absolute;\n bottom: 65px;\n left: 0;\n right: 0;\n padding-left: 20px;\n padding-right: 20px;\n text-align:center;\n}\n.welcomescreen-content {\n padding: 15px;\n}\n\n.welcomescreen-container .swiper-pagination-bullet{\n background: rgba(255, 255, 255, 0.9) !important;\n}\n\n.welcomescreen-container .swiper-pagination-bullet-active{\n background: #fff;\n}\n\n.swiper-container-horizontal>.swiper-pagination{\n bottom: 20px;\n}\n\nhtml.with-statusbar-overlay .welcomescreen-container{\n top: 20px;\n}\n\n/*\n Parallax Background Effect\n*/\n.parallax-bg {\n position: absolute;\n left: 0;\n top: 0;\n width: 130%;\n height: 100%;\n -webkit-background-size: cover;\n background-size: cover;\n background-position: center;\n}\n\n.hide-title {\n opacity: 0;\n}","@import '~framework7/framework7-bundle.min.css';\n@import '~f7-welcomescreen/dist/main.css';\n\n#app {\n height: 100%;\n}\n\n.page-content {\n padding: 64px 20px 20px 20px;\n}\n\n.tutorialicon {\n font-size: 250px;\n line-height: 170px;\n}\n\n.tutorial-close-btn {\n background: #fff;\n padding: 10px;\n border-radius: 10px;\n color: #0da6ec;\n}\n\n.welcomescreen-container .welcomescreen-text a {\n color: #fff;\n text-decoration: underline;\n}\n\n.tutorial-close-btn {\n background: #fff;\n padding: 10px;\n border-radius: 10px;\n color: #0da6ec !important;\n text-decoration: none !important;\n}\n"],"names":[],"sourceRoot":""}
\ No newline at end of file
diff --git a/demo/package.json b/demo/package.json
index 45d1b45..ff7b378 100644
--- a/demo/package.json
+++ b/demo/package.json
@@ -22,7 +22,7 @@
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
- "f7-welcomescreen": "^3.0.3",
+ "f7-welcomescreen": "^3.0.4",
"framework7": "^6.2.0",
"http-server": "^13.0.0",
"mini-css-extract-plugin": "^2.2.0",
diff --git a/demo/yarn.lock b/demo/yarn.lock
index 60547bc..4bb11f5 100644
--- a/demo/yarn.lock
+++ b/demo/yarn.lock
@@ -14,6 +14,27 @@
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176"
integrity sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==
+"@babel/core@^7.15.0":
+ version "7.15.0"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.15.0.tgz#749e57c68778b73ad8082775561f67f5196aafa8"
+ integrity sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==
+ dependencies:
+ "@babel/code-frame" "^7.14.5"
+ "@babel/generator" "^7.15.0"
+ "@babel/helper-compilation-targets" "^7.15.0"
+ "@babel/helper-module-transforms" "^7.15.0"
+ "@babel/helpers" "^7.14.8"
+ "@babel/parser" "^7.15.0"
+ "@babel/template" "^7.14.5"
+ "@babel/traverse" "^7.15.0"
+ "@babel/types" "^7.15.0"
+ convert-source-map "^1.7.0"
+ debug "^4.1.0"
+ gensync "^1.0.0-beta.2"
+ json5 "^2.1.2"
+ semver "^6.3.0"
+ source-map "^0.5.0"
+
"@babel/generator@^7.15.0":
version "7.15.0"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.0.tgz#a7d0c172e0d814974bad5aa77ace543b97917f15"
@@ -212,6 +233,15 @@
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
+"@babel/helpers@^7.14.8":
+ version "7.15.3"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.3.tgz#c96838b752b95dcd525b4e741ed40bb1dc2a1357"
+ integrity sha512-HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g==
+ dependencies:
+ "@babel/template" "^7.14.5"
+ "@babel/traverse" "^7.15.0"
+ "@babel/types" "^7.15.0"
+
"@babel/highlight@^7.14.5":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9"
@@ -1446,6 +1476,13 @@ configstore@^5.0.1:
write-file-atomic "^3.0.0"
xdg-basedir "^4.0.0"
+convert-source-map@^1.7.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
+ integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
+ dependencies:
+ safe-buffer "~5.1.1"
+
copy-descriptor@^0.1.0:
version "0.1.1"
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
@@ -1765,10 +1802,17 @@ extglob@^2.0.4:
snapdragon "^0.8.1"
to-regex "^3.0.1"
-f7-welcomescreen@^2.1.5:
- version "2.1.5"
- resolved "https://registry.yarnpkg.com/f7-welcomescreen/-/f7-welcomescreen-2.1.5.tgz#6b01120bc512ee6bb63bfd3dea390766e00b695e"
- integrity sha512-ATOyAWHKDmROGQRnhkqoGf+oBOAQg53fIAte4GalcQgaVz7PMJq35lAmCVydPJOzJ75l2xgvGcVt/ul5nK1x2w==
+f7-welcomescreen@^3.0.3:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/f7-welcomescreen/-/f7-welcomescreen-3.0.3.tgz#6bfad62bad324c81a20b628de277d95aef8ead1d"
+ integrity sha512-iHDy36AMSGYZ9Rt7Rt4uZnEh7NGM6713TBGVG44ULX+sDPxEjUD6pXqkpCotKoTFFadqfGt0wjoUeSwYcmc8cw==
+ dependencies:
+ "@babel/core" "^7.15.0"
+ "@babel/preset-env" "^7.15.0"
+ babel-loader "^8.2.2"
+ swiper "^6.8.1"
+ template7 "^1.4.2"
+ webpack "^5.50.0"
fast-deep-equal@^3.1.1:
version "3.1.3"
@@ -1870,6 +1914,11 @@ function-bind@^1.1.1:
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+gensync@^1.0.0-beta.2:
+ version "1.0.0-beta.2"
+ resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
+ integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
+
get-caller-file@^2.0.1:
version "2.0.5"
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
@@ -2371,6 +2420,13 @@ json5@^1.0.1:
dependencies:
minimist "^1.2.0"
+json5@^2.1.2:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
+ integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
+ dependencies:
+ minimist "^1.2.5"
+
keyv@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9"
@@ -3414,7 +3470,7 @@ supports-color@^8.0.0:
dependencies:
has-flag "^4.0.0"
-swiper@^6.6.2:
+swiper@^6.6.2, swiper@^6.8.1:
version "6.8.1"
resolved "https://registry.yarnpkg.com/swiper/-/swiper-6.8.1.tgz#79a48ee5c9105c16d55da035eb0245cc2f696f2b"
integrity sha512-Gc2rKe0XH3zoB0ogonlielduGM9DDQCJtXAeFeD2ujwzhEqw+5udwebCMNjhAcQ+xl9ygM5PnRoziAUol3Dx5w==
@@ -3432,6 +3488,11 @@ tapable@^2.1.1, tapable@^2.2.0:
resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.0.tgz#5c373d281d9c672848213d0e037d1c4165ab426b"
integrity sha512-FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw==
+template7@^1.4.2:
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/template7/-/template7-1.4.2.tgz#62f32959361e455ec171ef9ef33d29ca7130e009"
+ integrity sha512-eoKnScBMDk7lyj7+iCzKbxGiSLLlQk0DNvmclyJuMCUKxy9JrFuAB+GD5iplF4WiQPtMdI06CHHks3avL22JXA==
+
term-size@^2.1.0:
version "2.2.1"
resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54"
diff --git a/dist/f7-welcomescreen.min.css b/dist/f7-welcomescreen.min.css
new file mode 100644
index 0000000..aaf5e9b
--- /dev/null
+++ b/dist/f7-welcomescreen.min.css
@@ -0,0 +1 @@
+.welcomescreen-container{background-color:#fff;bottom:0;color:#666;font-size:16px;left:0;position:absolute;right:0;top:0;z-index:10500}.welcomescreen-closebtn{cursor:pointer;font-size:14px;padding:15px;position:absolute;right:5px;text-align:right;top:5px;z-index:9998}.welcomescreen-swiper{height:100%;position:relative;width:100%}.welcomescreen-picture,.welcomescreen-title{margin-top:20%;text-align:center;width:100%}.welcomescreen-text{bottom:65px;left:0;padding-left:20px;padding-right:20px;position:absolute;right:0;text-align:center}.welcomescreen-content{padding:15px}.welcomescreen-container .swiper-pagination-bullet{background:hsla(0,0%,100%,.9)!important}.welcomescreen-container .swiper-pagination-bullet-active{background:#fff}.swiper-container-horizontal>.swiper-pagination{bottom:20px}html.with-statusbar-overlay .welcomescreen-container{top:20px}.parallax-bg{background-position:50%;-webkit-background-size:cover;background-size:cover;height:100%;left:0;position:absolute;top:0;width:130%}.hide-title{opacity:0}
\ No newline at end of file
diff --git a/dist/f7-welcomescreen.min.js b/dist/f7-welcomescreen.min.js
new file mode 100644
index 0000000..e00a9e1
--- /dev/null
+++ b/dist/f7-welcomescreen.min.js
@@ -0,0 +1,15 @@
+import Template7 from'template7';import Swiper from'swiper';// A plugin for Framework7 to show a slideable welcome screen
+var F7WelcomescreenPlugin={name:'welcomescreen',Welcomescreen:function(a,b,c){function d(){l=new Swiper('.welcomescreen-swiper',{direction:'horizontal',loop:c.loop,pagination:c.pagination?{el:'.swiper-pagination'}:void 0,parallax:c.parallax,speed:c.parallaxSpeed})}function e(){c.bgcolor&&k.css({"background-color":c.bgcolor,color:c.fontcolor})}function f(){i=' '}function g(){for(var a in c=c||{},o)'undefined'==typeof c[a]&&(c[a]=o[a])}function h(){const a=window.Template7||Template7;j=c.template?a.compile(c.template):a.compile(i)}// Private properties
+var i,j,k,l,m,n=this,o={closeButton:!0,// enabled/disable close button
+closeButtonText:'Skip',// close button text
+cssClass:'',// additional class on container
+pagination:!0,// swiper pagination,
+navigation:!1,// swiper navigation
+loop:!1,// swiper loop
+open:!0,// open welcome screen on init
+parallax:!1,// adds parallax capabilities
+parallaxSpeed:600,// parallax default speed
+parallaxBackgroundImage:'http://lorempixel.com/900/600/nightlife/2/',// parallax default background image
+parallaxBackground:'-23%',// parallax default background effect
+parallaxSlideElements:{title:-100,subtitle:-300,text:-500}};// Return instance
+return n.open=function(){k=window.Dom7(j({options:c,slides:b})),m=k.find('.welcomescreen-swiper'),e(),window.Dom7('body').append(k),d(),k[0].f7Welcomescreen=n,'function'==typeof c.onOpened&&c.onOpened()},n.close=function(){l&&l.destroy(!0),k&&k.remove(),k=m=l=void 0,'function'==typeof c.onClosed&&c.onClosed()},n.next=function(){l&&l.slideNext()},n.previous=function(){l&&l.slidePrev()},n.slideTo=function(a){l&&l.slideTo(a)},function(){f(),h(),g(),c.open&&n.open()}(),n},params:{welcomescreen:{options:{},slides:[]}},/* Event handlers */on:{init:function(){window.Dom7=this.$,window.swiper=this.swiper,window.Dom7(document).on('click','.close-welcomescreen',function(a){a.preventDefault();var b=window.Dom7(this).parents('.welcomescreen-container');0=0&&(T=parseFloat(T.replace("%",""))/100*n),e.virtualSize=-T,a?c.css({marginLeft:"",marginBottom:"",marginTop:""}):c.css({marginRight:"",marginBottom:"",marginTop:""}),r.slidesPerColumn>1&&(y=Math.floor(p/r.slidesPerColumn)===p/e.params.slidesPerColumn?p:Math.ceil(p/r.slidesPerColumn)*r.slidesPerColumn,"auto"!==r.slidesPerView&&"row"===r.slidesPerColumnFill&&(y=Math.max(y,r.slidesPerView*r.slidesPerColumn)));for(var _,M,k,P=r.slidesPerColumn,O=y/P,L=Math.floor(p/r.slidesPerColumn),z=0;z