diff --git a/.env.example b/.env.example index e69eb806..8c0ea449 100644 --- a/.env.example +++ b/.env.example @@ -1,12 +1,13 @@ -APP_NAME=Laravel -APP_ENV=local -APP_KEY= +APP_NAME=VueFileManager +APP_ENV=production +APP_KEY=base64:sB1YuKsbWv7MdWugb9ZsYBqv2QZJ+QOuHZHEddOsUuo= APP_DEBUG=true APP_URL=http://localhost +APP_DEMO=false LOG_CHANNEL=stack SCOUT_DRIVER=tntsearch -FILESYSTEM_DRIVER=local +FILESYSTEM_DRIVER= DB_CONNECTION=mysql DB_HOST=127.0.0.1 @@ -25,18 +26,18 @@ REDIS_HOST=127.0.0.1 REDIS_PASSWORD=null REDIS_PORT=6379 -MAIL_DRIVER=smtp -MAIL_HOST=smtp.mailtrap.io -MAIL_PORT=2525 -MAIL_USERNAME=null -MAIL_PASSWORD=null -MAIL_ENCRYPTION=null -MAIL_FROM_ADDRESS=null -MAIL_FROM_NAME="${APP_NAME}" +MAIL_DRIVER= +MAIL_HOST= +MAIL_PORT= +MAIL_USERNAME= +MAIL_PASSWORD= +MAIL_ENCRYPTION= +MAIL_FROM_ADDRESS="${MAIL_USERNAME}" +MAIL_FROM_NAME="${MAIL_USERNAME}" AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= -AWS_DEFAULT_REGION=us-east-1 +AWS_DEFAULT_REGION= AWS_BUCKET= DO_SPACES_KEY= @@ -45,10 +46,26 @@ DO_SPACES_ENDPOINT= DO_SPACES_REGION= DO_SPACES_BUCKET= -MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" -MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" +WASABI_KEY= +WASABI_SECRET= +WASABI_ENDPOINT= +WASABI_REGION= +WASABI_BUCKET= + +BACKBLAZE_KEY= +BACKBLAZE_SECRET= +BACKBLAZE_ENDPOINT= +BACKBLAZE_REGION= +BACKBLAZE_BUCKET= PASSPORT_CLIENT_ID= PASSPORT_CLIENT_SECRET= -APP_DEPLOY_SECRET= \ No newline at end of file +APP_DEPLOY_SECRET= + +CASHIER_LOGGER=stack +CASHIER_CURRENCY= +STRIPE_KEY= +STRIPE_SECRET= +STRIPE_WEBHOOK_SECRET= +CASHIER_PAYMENT_NOTIFICATION=App\Notifications\ConfirmPayment \ No newline at end of file diff --git a/.gitignore b/.gitignore index 9184766f..aa9e9758 100644 --- a/.gitignore +++ b/.gitignore @@ -3,11 +3,15 @@ /public/storage /storage/*.key /storage/*.index +/storage/framework/cache/* /vendor +/resources/babel.babel .idea .env .env.backup .phpunit.result.cache +.phpstorm.meta.php +_ide_helper.php Homestead.json Homestead.yaml npm-debug.log diff --git a/README.md b/README.md index 1f84ed25..a065b6b0 100644 --- a/README.md +++ b/README.md @@ -1,46 +1,224 @@ -### Documentation -[Read online documentation](https://vuefilemanager.com/docs/) +![logo](https://vuefilemanager.com/assets/images/vuefilemanager-horizontal-logo.svg) +# Private Cloud Storage Build on Laravel & Vue.js -### Demo & dev preview links -* For visit demo version click here [demo.vuefilemanager.com](https://demo.vuefilemanager.com/) -* For visit dev version click here [dev.vuefilemanager.com](https://dev.vuefilemanager.com/) (It's auto deployed dev branch. Can be unstable and not ready for production) +## Supporting VueFileManager +Hi, we are trying make the best experience with VueFileManager. There is a lot things to do, and a lot of features we can make. -### Installation setup +But, it can't be done without you, development is more and more complicated and we have to hire new colleagues to help with it. There is couple way you can support us, and then, we support you with all great new features which can be. Thanks! + +- [Become a backer or sponsor on Patreon](https://www.patreon.com/vuefilemanager) +- [One-time donation via PayPal](https://www.paypal.me/peterpapp) +- [Purchase Licence on CodeCanyon](https://codecanyon.net/item/vue-file-manager-with-laravel-backend/25815986) + +## Contents + +- [Installation](#installation) + - [Server Requirements](#server-requirements) + - [Installation](#installation) + - [PHP Configuration](#php-configuration) + - [Nginx Configuration](#nginx-configuration) + - [Apache Configuration](#apache-configuration) + - [Recover Failed Installation](#installation-failed) + - [Update VueFileManager from 1.6.x to 1.7 ](#update-vuefilemanager-from-16x-to-17) +- [Payments](#payments) + - [Get your active plans](#get-your-active-plans) + - [Manage Failed Payments](#manage-failed-payments) + - [Tax Rates](#tax-rates) +- [Technical Informations](#technical-informations) + - [For Developers](#for-developers) + - [Supported Storages](#supported-storages) + - [How to Create New Language](#how-to-create-new-language) +- [Others](#others) + - [Changelog](#changelog) + - [GitHub Repository](#github-repository) + - [Support](#support) + - [Security Vulnerabilities](#security-vulnerabilities) + + +# Installation +## Server Requirements + + +**For running app make sure you have installed:** + +- PHP >= 7.2.5 version +- MySQL 5.6+ +- Nginx or Apache + + + +**These PHP Extensions are required:** + +- GD +- BCMath +- PDO +- Ctype +- Fileinfo +- JSON +- Mbstring +- OpenSSL +- Tokenizer +- XML + +## Installation + +Copy project files to web root folder of your domain. It's mostly located in `html`, `www` or `public_html` folder name. + +Make sure `.env` file was uploaded. This type of file can be hidden in default. + +Set `755` permission (CHMOD) to these file and folders directory within all children subdirectories: + +- /bootstrap/cache +- /storage +- /.env + +Then open your application in web browser. If everything works fine, you will be redirect to setup wizard installation process. + +At first step you have to verify your purchase code. **Subscription service with stripe payments is available only for Extended License.** + +That was the hardest part of installation proces. Please follow instructions in every step of Setup Wizard to successfully install VueFileManager. + +## PHP Configuration +There are several PHP settings good to know to setup before you try upload any file. Please set these values in your php.ini, we provide minimal setup for you. When you set `-1` then you set infinity limits. -Run these commands to install vendors: ``` -composer install -``` -``` -npm install +memory_limit = 512M +upload_max_filesize = 1024M +post_max_size = 1024M +max_file_uploads = 50 ``` -Setup your database in .env and run this command: +## Nginx Configuration +If you running VueFileManager undex Nginx, don't forget set this value in your `nginx.conf` file: ``` -php artisan setup:prod +http { + client_max_body_size 1024M; +} ``` -It automatically: -* Migrate database -* Generate Application key -* Create Passport Encryption keys -* Create Password grant client -* Create Personal access client - -Then, copy generated password grant client `Client ID`, `Client secret` and paste it to .env files here: +And example Nginx config for your domain: ``` -PASSPORT_CLIENT_ID= -PASSPORT_CLIENT_SECRET= +server { + listen 80; + listen [::]:80; + + # Log files for Debugging + access_log /var/log/nginx/laravel-access.log; + error_log /var/log/nginx/laravel-error.log; + + # Webroot Directory for Laravel project + root /var/www/vuefilemanager/public; + index index.php index.html index.htm; + + # Your Domain Name + server_name example.com; + location / { + try_files $uri $uri/ /index.php?$query_string; + } + + # PHP-FPM Configuration Nginx + location ~ \.php$ { + try_files $uri =404; + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_pass unix:/run/php/php7.3-fpm.sock; + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + include fastcgi_params; + } +} +``` + +## Apache Configuration +Make sure you have enabled mod_rewrite. There is an example config for running VueFileManager under apache: + +``` + + DocumentRoot /var/www/vuefilemanager/public + ServerName example.com + + + AllowOverride All + allow from all + Options +Indexes + Require all granted + + + RewriteEngine on + RewriteCond %{SERVER_NAME} =example.com + RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] + +``` + +## Installation Failed + +What to do when installation fail and you can't continue, at first, try to fix issue why installation fail. Probably missing PHP extension or permissions wasn't set correctly. + +At worst scenarios, to reset Setup Wizard, delete all tables in your previously created database, delete content of `/storage/framework/cache`. Then replace content in your `.env` file from `.env.example` file. + +After these steps, installation will be reseted. + +## Update VueFileManager from 1.6.x to 1.7 +`Don't forget create backup of your database and storage before make any changes in your production application.` + +For those, who purchase extended licence, place these lines at the end of your `/.env` file: +``` +CASHIER_LOGGER=stack +CASHIER_CURRENCY= +STRIPE_KEY= +STRIPE_SECRET= +STRIPE_WEBHOOK_SECRET= +CASHIER_PAYMENT_NOTIFICATION=App\Notifications\ConfirmPayment +``` + +Then follow this steps: + +- Make sure you have PHP >= 7.2.5 version +- Make a backup of the .env config file located on your server. +- Upload and replace all the files on your server with what's inside the app folder. +- Restore your `.env` config file on your server. +- Go to https://your-domain.com/upgrade and follow the setup wizard instructions. + +# Payments +VueFileManager is packed with **Stripe** payment options. To configure Stripe, you will be asked in Setup Wizard to set up. Or, if you skip this installation process, you will find stripe set up in you admin `Dashboard / Settings / Payments`. + +## Get your active plans +Would you like to get your subscription plans for your custom front-end page? Create GET request and get all your active plans: +``` +GET /api/public/pricing +``` + +## Manage Failed Payments +VueFileManager manage failed payments with additional email notification. But, there is more you can do for better User Experience. There is some additionals option in Stripe, look on [prevent failed payments](https://dashboard.stripe.com/settings/billing/automatic). + +## Tax Rates +You are able to manage tax rates. When adding a new tax rate, if no Region is specified, the tax rate will apply to everyone. Add a [ISO 3166-1 alpha-2 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) to the Region field if you wish to apply taxes per country. + +Just log in to your stripe dashboard, and you will find taxes under `Dashboard / Products / Tax Rates`. + +# Technical Informations +## For Developers +Installation process on your localhost is the same. But, there are some good hints. + +After successfully installation with setup wizard, you have to set your `APP_ENV` to local mode, in default, it's in production mode. +``` +APP_ENV=local +``` + +Also, to debug application, set `APP_DEBUG` on true: +``` +APP_DEBUG=true ``` -For sending forgoten password request via email, fill your mail driver in .env -### Run Application To start server on your localhost, run this command ``` php artisan serve ``` +To develop your front-end, you have to install npm modules by this command: +``` +npm install +``` -To compiles and hot-reloads for development, run this command +To compiles and hot-reloads for development. Then run this command: ``` npm run hot ``` @@ -49,4 +227,87 @@ To compiles for production, run this command ``` npm run prod ``` -That's all, happy coding! :tada: :tada: :tada: + +## Supported Storages +VueFileManager support these storages for your files: + +- [Amazon Web Services S3](https://aws.amazon.com/s3/) +- [Digital Ocean Spaces](https://www.digitalocean.com/products/spaces/) +- [Object Cloud Storage by Wasabi](https://wasabi.com/) +- [Backblaze B2 Cloud Storage](https://www.backblaze.com/b2/cloud-storage.html) +- Your local disk + +In case of installation process, you will be able to set storage driver and credentials. After this, you can change your credentials later in `/.env` file. + +To set or change your storage driver, you have to edit `FILESYSTEM_DRIVER` in your `/.env` file. Supported drivers are `s3`, `spaces`, `wasabi`,`backblaze` or `local`: +``` +FILESYSTEM_DRIVER=local +``` +Then you can find corresponding credentials options for your storage driver like key, secret, region in `/.env` file. + + +## How to Create New Language +VueFileManager front-end support i18n standard for localization. This mean, you can translate app to any language + +### How to create translation for Vue Front-End +Go to `/resources/js/i18n/lang` And make copy of `en.json` and rename it to your local name (eg: Slovak language has 'sk' shortcut, it means `sk.json`). If you have created your copy, then feel free to translate this file. + +Open `/resources/js/i18n/index.js` import your new language and assign it to languages object: + +``` +import Vue from 'vue'; +import VueI18n from 'vue-i18n'; + +import en from './lang/en.json' +import sk from './lang/sk.json' + +Vue.use(VueI18n); + +const i18n = new VueI18n({ + locale: config.locale, + messages: Object.assign({ + en, + sk + }), +}); + +export default i18n; +``` +After this, you have to compile language to your application code via this command in your terminal: +``` +npm run prod +``` + +### How to Create Translation for Laravel Back-End +Go to `/resources/lang/` And make copy of `en` folder and rename it to your local name (eg: Slovak language has 'sk' shortcut, it means `sk`). If you have created your copy, then feel free to translate this file. + +### Set locale +To set your locale in app, go to `/config/app.php` and set your locale string in `locale` option: + +``` +'locale' => 'YOUR_LOCALE', +``` + +**Small hint:** We use for translating localizations this awesome software, [check it](https://www.codeandweb.com/babeledit). + +# Others +## Changelog + +Refer to the [Changelog](https://vuefilemanager.com/changelog) for a full history of the project. + +## GitHub Repository +[Join our GitHub repository](https://vuefilemanager.com/github-access) to submit your issues or suggestions, track VueFileManager progress and get new updates as fast as possible. + +## Support + +The following support channels are available at your fingertips: + +- [CodeCanyon support message](https://codecanyon.net/item/vue-file-manager-with-laravel-backend/25815986/support) +- [GitHub repository](https://vuefilemanager.com/github-access) + +## Security Vulnerabilities + +If you discover a security vulnerability within this project, please send an e-mail to [peterpapp@makingcg.com](peterpapp@makingcg.com). All security vulnerabilities will be promptly addressed. + + + diff --git a/_ide_helper.php b/_ide_helper.php index 099bb772..7c881b2e 100644 --- a/_ide_helper.php +++ b/_ide_helper.php @@ -3,7 +3,7 @@ /** * A helper file for Laravel, to provide autocomplete information to your IDE - * Generated for Laravel 6.18.3 on 2020-04-28 07:53:27. + * Generated for Laravel 7.14.1 on 2020-06-18 06:11:46. * * This file should not be included in your code, only analyzed by your IDE! * @@ -700,6 +700,19 @@ namespace Illuminate\Support\Facades { return $instance->getCachedEventsPath(); } + /** + * Add new prefix to list of absolute path prefixes. + * + * @param string $prefix + * @return \Illuminate\Foundation\Application + * @static + */ + public static function addAbsoluteCachePathPrefix($prefix) + { + /** @var \Illuminate\Foundation\Application $instance */ + return $instance->addAbsoluteCachePathPrefix($prefix); + } + /** * Determine if the application is currently down for maintenance. * @@ -1228,9 +1241,10 @@ namespace Illuminate\Support\Facades { * Call the given Closure / class@method and inject its dependencies. * * @param callable|string $callback - * @param array $parameters + * @param \Illuminate\Container\array $parameters * @param string|null $defaultMethod * @return mixed + * @throws \InvalidArgumentException * @static */ public static function call($callback, $parameters = [], $defaultMethod = null) @@ -1260,6 +1274,7 @@ namespace Illuminate\Support\Facades { * @param string $abstract * @param array $parameters * @return mixed + * @throws \Illuminate\Contracts\Container\BindingResolutionException * @static */ public static function makeWith($abstract, $parameters = []) @@ -1288,7 +1303,7 @@ namespace Illuminate\Support\Facades { /** * Instantiate a concrete instance of the given type. * - * @param string $concrete + * @param \Closure|string $concrete * @return mixed * @throws \Illuminate\Contracts\Container\BindingResolutionException * @static @@ -1844,7 +1859,7 @@ namespace Illuminate\Support\Facades { /** * Get the ID for the currently authenticated user. * - * @return int|null + * @return int|string|null * @static */ public static function id() @@ -2415,6 +2430,47 @@ namespace Illuminate\Support\Facades { return $instance->check($name, ...$parameters); } + /** + * Register a class-based component alias directive. + * + * @param string $class + * @param string|null $alias + * @param string $prefix + * @return void + * @static + */ + public static function component($class, $alias = null, $prefix = '') + { + /** @var \Illuminate\View\Compilers\BladeCompiler $instance */ + $instance->component($class, $alias, $prefix); + } + + /** + * Register an array of class-based components. + * + * @param array $components + * @param string $prefix + * @return void + * @static + */ + public static function components($components, $prefix = '') + { + /** @var \Illuminate\View\Compilers\BladeCompiler $instance */ + $instance->components($components, $prefix); + } + + /** + * Get the registered class component aliases. + * + * @return array + * @static + */ + public static function getClassComponentAliases() + { + /** @var \Illuminate\View\Compilers\BladeCompiler $instance */ + return $instance->getClassComponentAliases(); + } + /** * Register a component alias directive. * @@ -2423,10 +2479,10 @@ namespace Illuminate\Support\Facades { * @return void * @static */ - public static function component($path, $alias = null) + public static function aliasComponent($path, $alias = null) { /** @var \Illuminate\View\Compilers\BladeCompiler $instance */ - $instance->component($path, $alias); + $instance->aliasComponent($path, $alias); } /** @@ -2443,6 +2499,20 @@ namespace Illuminate\Support\Facades { $instance->include($path, $alias); } + /** + * Register an include alias directive. + * + * @param string $path + * @param string|null $alias + * @return void + * @static + */ + public static function aliasInclude($path, $alias = null) + { + /** @var \Illuminate\View\Compilers\BladeCompiler $instance */ + $instance->aliasInclude($path, $alias); + } + /** * Register a handler for custom directives. * @@ -2470,6 +2540,19 @@ namespace Illuminate\Support\Facades { return $instance->getCustomDirectives(); } + /** + * Register a new precompiler. + * + * @param callable $precompiler + * @return void + * @static + */ + public static function precompiler($precompiler) + { + /** @var \Illuminate\View\Compilers\BladeCompiler $instance */ + $instance->precompiler($precompiler); + } + /** * Set the echo format to be used by the compiler. * @@ -2507,6 +2590,18 @@ namespace Illuminate\Support\Facades { $instance->withoutDoubleEncoding(); } + /** + * Indicate that component tags should not be compiled. + * + * @return void + * @static + */ + public static function withoutComponentTags() + { + /** @var \Illuminate\View\Compilers\BladeCompiler $instance */ + $instance->withoutComponentTags(); + } + /** * Get the path to the compiled version of a view. * @@ -2534,6 +2629,70 @@ namespace Illuminate\Support\Facades { /** @var \Illuminate\View\Compilers\BladeCompiler $instance */ return $instance->isExpired($path); } + + /** + * Get a new component hash for a component name. + * + * @param string $component + * @return string + * @static + */ + public static function newComponentHash($component) + { + return \Illuminate\View\Compilers\BladeCompiler::newComponentHash($component); + } + + /** + * Compile a class component opening. + * + * @param string $component + * @param string $alias + * @param string $data + * @param string $hash + * @return string + * @static + */ + public static function compileClassComponentOpening($component, $alias, $data, $hash) + { + return \Illuminate\View\Compilers\BladeCompiler::compileClassComponentOpening($component, $alias, $data, $hash); + } + + /** + * Compile the end-component statements into valid PHP. + * + * @return string + * @static + */ + public static function compileEndComponentClass() + { + /** @var \Illuminate\View\Compilers\BladeCompiler $instance */ + return $instance->compileEndComponentClass(); + } + + /** + * Sanitize the given component attribute value. + * + * @param mixed $value + * @return mixed + * @static + */ + public static function sanitizeComponentAttribute($value) + { + return \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($value); + } + + /** + * Compile Blade echos into valid PHP. + * + * @param string $value + * @return string + * @static + */ + public static function compileEchos($value) + { + /** @var \Illuminate\View\Compilers\BladeCompiler $instance */ + return $instance->compileEchos($value); + } } @@ -2781,7 +2940,7 @@ namespace Illuminate\Support\Facades { /** * Assert if a job was dispatched based on a truth-test callback. * - * @param string $command + * @param string|\Closure $command * @param callable|int|null $callback * @return void * @static @@ -2809,7 +2968,7 @@ namespace Illuminate\Support\Facades { /** * Determine if a job was dispatched based on a truth-test callback. * - * @param string $command + * @param string|\Closure $command * @param callable|null $callback * @return void * @static @@ -2823,7 +2982,7 @@ namespace Illuminate\Support\Facades { /** * Assert if a job was dispatched after the response was sent based on a truth-test callback. * - * @param string $command + * @param string|\Closure $command * @param callable|int|null $callback * @return void * @static @@ -2851,7 +3010,7 @@ namespace Illuminate\Support\Facades { /** * Determine if a job was dispatched based on a truth-test callback. * - * @param string $command + * @param string|\Closure $command * @param callable|null $callback * @return void * @static @@ -2921,6 +3080,8 @@ namespace Illuminate\Support\Facades { /** * * + * @method static \Illuminate\Contracts\Cache\Lock lock(string $name, int $seconds = 0, mixed $owner = null) + * @method static \Illuminate\Contracts\Cache\Lock restoreLock(string $name, string $owner) * @see \Illuminate\Cache\CacheManager * @see \Illuminate\Cache\Repository */ @@ -3810,7 +3971,7 @@ namespace Illuminate\Support\Facades { * @param string $key * @param mixed $default * @param string|null $path - * @return \Symfony\Component\HttpFoundation\Cookie + * @return \Symfony\Component\HttpFoundation\Cookie|null * @static */ public static function queued($key, $default = null, $path = null) @@ -4079,6 +4240,20 @@ namespace Illuminate\Support\Facades { return $instance->reconnect($name); } + /** + * Set the default database connection for the callback execution. + * + * @param string $name + * @param callable $callback + * @return mixed + * @static + */ + public static function usingConnection($name, $callback) + { + /** @var \Illuminate\Database\DatabaseManager $instance */ + return $instance->usingConnection($name, $callback); + } + /** * Get the default connection name. * @@ -4973,7 +5148,7 @@ namespace Illuminate\Support\Facades { * @param \Closure $callback * @param int $attempts * @return mixed - * @throws \Exception|\Throwable + * @throws \Throwable * @static */ public static function transaction($callback, $attempts = 1) @@ -4987,7 +5162,7 @@ namespace Illuminate\Support\Facades { * Start a new database transaction. * * @return void - * @throws \Exception + * @throws \Throwable * @static */ public static function beginTransaction() @@ -5001,6 +5176,7 @@ namespace Illuminate\Support\Facades { * Commit the active database transaction. * * @return void + * @throws \Throwable * @static */ public static function commit() @@ -5015,7 +5191,7 @@ namespace Illuminate\Support\Facades { * * @param int|null $toLevel * @return void - * @throws \Exception + * @throws \Throwable * @static */ public static function rollBack($toLevel = null) @@ -5277,7 +5453,7 @@ namespace Illuminate\Support\Facades { /** * Assert if an event was dispatched based on a truth-test callback. * - * @param string $event + * @param string|\Closure $event * @param callable|int|null $callback * @return void * @static @@ -5305,7 +5481,7 @@ namespace Illuminate\Support\Facades { /** * Determine if an event was dispatched based on a truth-test callback. * - * @param string $event + * @param string|\Closure $event * @param callable|null $callback * @return void * @static @@ -5624,6 +5800,19 @@ namespace Illuminate\Support\Facades { return $instance->extension($path); } + /** + * Guess the file extension from the mime-type of a given file. + * + * @param string $path + * @return string|null + * @static + */ + public static function guessExtension($path) + { + /** @var \Illuminate\Filesystem\Filesystem $instance */ + return $instance->guessExtension($path); + } + /** * Get the file type of a given file. * @@ -6324,7 +6513,7 @@ namespace Illuminate\Support\Facades { /** * Get a driver instance. * - * @param string $driver + * @param string|null $driver * @return mixed * @throws \InvalidArgumentException * @static @@ -6932,339 +7121,87 @@ namespace Illuminate\Support\Facades { class Mail { /** - * Set the global from address and name. + * Get a mailer instance by name. * - * @param string $address * @param string|null $name - * @return void - * @static - */ - public static function alwaysFrom($address, $name = null) - { - /** @var \Illuminate\Mail\Mailer $instance */ - $instance->alwaysFrom($address, $name); - } - - /** - * Set the global reply-to address and name. - * - * @param string $address - * @param string|null $name - * @return void - * @static - */ - public static function alwaysReplyTo($address, $name = null) - { - /** @var \Illuminate\Mail\Mailer $instance */ - $instance->alwaysReplyTo($address, $name); - } - - /** - * Set the global to address and name. - * - * @param string $address - * @param string|null $name - * @return void - * @static - */ - public static function alwaysTo($address, $name = null) - { - /** @var \Illuminate\Mail\Mailer $instance */ - $instance->alwaysTo($address, $name); - } - - /** - * Begin the process of mailing a mailable class instance. - * - * @param mixed $users - * @return \Illuminate\Mail\PendingMail - * @static - */ - public static function to($users) - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->to($users); - } - - /** - * Begin the process of mailing a mailable class instance. - * - * @param mixed $users - * @return \Illuminate\Mail\PendingMail - * @static - */ - public static function cc($users) - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->cc($users); - } - - /** - * Begin the process of mailing a mailable class instance. - * - * @param mixed $users - * @return \Illuminate\Mail\PendingMail - * @static - */ - public static function bcc($users) - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->bcc($users); - } - - /** - * Send a new message with only an HTML part. - * - * @param string $html - * @param mixed $callback - * @return void - * @static - */ - public static function html($html, $callback) - { - /** @var \Illuminate\Mail\Mailer $instance */ - $instance->html($html, $callback); - } - - /** - * Send a new message with only a raw text part. - * - * @param string $text - * @param mixed $callback - * @return void - * @static - */ - public static function raw($text, $callback) - { - /** @var \Illuminate\Mail\Mailer $instance */ - $instance->raw($text, $callback); - } - - /** - * Send a new message with only a plain part. - * - * @param string $view - * @param array $data - * @param mixed $callback - * @return void - * @static - */ - public static function plain($view, $data, $callback) - { - /** @var \Illuminate\Mail\Mailer $instance */ - $instance->plain($view, $data, $callback); - } - - /** - * Render the given message as a view. - * - * @param string|array $view - * @param array $data - * @return string - * @static - */ - public static function render($view, $data = []) - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->render($view, $data); - } - - /** - * Send a new message using a view. - * - * @param \Illuminate\Contracts\Mail\Mailable|string|array $view - * @param array $data - * @param \Closure|string|null $callback - * @return void - * @static - */ - public static function send($view, $data = [], $callback = null) - { - /** @var \Illuminate\Mail\Mailer $instance */ - $instance->send($view, $data, $callback); - } - - /** - * Queue a new e-mail message for sending. - * - * @param \Illuminate\Contracts\Mail\Mailable $view - * @param string|null $queue - * @return mixed - * @throws \InvalidArgumentException - * @static - */ - public static function queue($view, $queue = null) - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->queue($view, $queue); - } - - /** - * Queue a new e-mail message for sending on the given queue. - * - * @param string $queue - * @param \Illuminate\Contracts\Mail\Mailable $view - * @return mixed - * @static - */ - public static function onQueue($queue, $view) - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->onQueue($queue, $view); - } - - /** - * Queue a new e-mail message for sending on the given queue. - * - * This method didn't match rest of framework's "onQueue" phrasing. Added "onQueue". - * - * @param string $queue - * @param \Illuminate\Contracts\Mail\Mailable $view - * @return mixed - * @static - */ - public static function queueOn($queue, $view) - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->queueOn($queue, $view); - } - - /** - * Queue a new e-mail message for sending after (n) seconds. - * - * @param \DateTimeInterface|\DateInterval|int $delay - * @param \Illuminate\Contracts\Mail\Mailable $view - * @param string|null $queue - * @return mixed - * @throws \InvalidArgumentException - * @static - */ - public static function later($delay, $view, $queue = null) - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->later($delay, $view, $queue); - } - - /** - * Queue a new e-mail message for sending after (n) seconds on the given queue. - * - * @param string $queue - * @param \DateTimeInterface|\DateInterval|int $delay - * @param \Illuminate\Contracts\Mail\Mailable $view - * @return mixed - * @static - */ - public static function laterOn($queue, $delay, $view) - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->laterOn($queue, $delay, $view); - } - - /** - * Get the array of failed recipients. - * - * @return array - * @static - */ - public static function failures() - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->failures(); - } - - /** - * Get the Swift Mailer instance. - * - * @return \Swift_Mailer - * @static - */ - public static function getSwiftMailer() - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->getSwiftMailer(); - } - - /** - * Get the view factory instance. - * - * @return \Illuminate\Contracts\View\Factory - * @static - */ - public static function getViewFactory() - { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->getViewFactory(); - } - - /** - * Set the Swift Mailer instance. - * - * @param \Swift_Mailer $swift - * @return void - * @static - */ - public static function setSwiftMailer($swift) - { - /** @var \Illuminate\Mail\Mailer $instance */ - $instance->setSwiftMailer($swift); - } - - /** - * Set the queue manager instance. - * - * @param \Illuminate\Contracts\Queue\Factory $queue * @return \Illuminate\Mail\Mailer * @static */ - public static function setQueue($queue) + public static function mailer($name = null) { - /** @var \Illuminate\Mail\Mailer $instance */ - return $instance->setQueue($queue); + /** @var \Illuminate\Mail\MailManager $instance */ + return $instance->mailer($name); } /** - * Register a custom macro. + * Get a mailer driver instance. + * + * @param string|null $driver + * @return \Illuminate\Mail\Mailer + * @static + */ + public static function driver($driver = null) + { + /** @var \Illuminate\Mail\MailManager $instance */ + return $instance->driver($driver); + } + + /** + * Create a new transport instance. + * + * @param array $config + * @return \Swift_Transport + * @static + */ + public static function createTransport($config) + { + /** @var \Illuminate\Mail\MailManager $instance */ + return $instance->createTransport($config); + } + + /** + * Get the default mail driver name. + * + * @return string + * @static + */ + public static function getDefaultDriver() + { + /** @var \Illuminate\Mail\MailManager $instance */ + return $instance->getDefaultDriver(); + } + + /** + * Set the default mail driver name. * * @param string $name - * @param object|callable $macro * @return void * @static */ - public static function macro($name, $macro) + public static function setDefaultDriver($name) { - \Illuminate\Mail\Mailer::macro($name, $macro); + /** @var \Illuminate\Mail\MailManager $instance */ + $instance->setDefaultDriver($name); } /** - * Mix another object into the class. + * Register a custom transport creator Closure. * - * @param object $mixin - * @param bool $replace - * @return void - * @throws \ReflectionException + * @param string $driver + * @param \Closure $callback + * @return \Illuminate\Mail\MailManager * @static */ - public static function mixin($mixin, $replace = true) + public static function extend($driver, $callback) { - \Illuminate\Mail\Mailer::mixin($mixin, $replace); - } - - /** - * Checks if macro is registered. - * - * @param string $name - * @return bool - * @static - */ - public static function hasMacro($name) - { - return \Illuminate\Mail\Mailer::hasMacro($name); + /** @var \Illuminate\Mail\MailManager $instance */ + return $instance->extend($driver, $callback); } /** * Assert if a mailable was sent based on a truth-test callback. * - * @param string $mailable + * @param string|\Closure $mailable * @param callable|int|null $callback * @return void * @static @@ -7304,7 +7241,7 @@ namespace Illuminate\Support\Facades { /** * Assert if a mailable was queued based on a truth-test callback. * - * @param string $mailable + * @param string|\Closure $mailable * @param callable|int|null $callback * @return void * @static @@ -7394,6 +7331,102 @@ namespace Illuminate\Support\Facades { /** @var \Illuminate\Support\Testing\Fakes\MailFake $instance */ return $instance->hasQueued($mailable); } + + /** + * Begin the process of mailing a mailable class instance. + * + * @param mixed $users + * @return \Illuminate\Mail\PendingMail + * @static + */ + public static function to($users) + { + /** @var \Illuminate\Support\Testing\Fakes\MailFake $instance */ + return $instance->to($users); + } + + /** + * Begin the process of mailing a mailable class instance. + * + * @param mixed $users + * @return \Illuminate\Mail\PendingMail + * @static + */ + public static function bcc($users) + { + /** @var \Illuminate\Support\Testing\Fakes\MailFake $instance */ + return $instance->bcc($users); + } + + /** + * Send a new message with only a raw text part. + * + * @param string $text + * @param \Closure|string $callback + * @return void + * @static + */ + public static function raw($text, $callback) + { + /** @var \Illuminate\Support\Testing\Fakes\MailFake $instance */ + $instance->raw($text, $callback); + } + + /** + * Send a new message using a view. + * + * @param string|array $view + * @param array $data + * @param \Closure|string|null $callback + * @return void + * @static + */ + public static function send($view, $data = [], $callback = null) + { + /** @var \Illuminate\Support\Testing\Fakes\MailFake $instance */ + $instance->send($view, $data, $callback); + } + + /** + * Queue a new e-mail message for sending. + * + * @param string|array $view + * @param string|null $queue + * @return mixed + * @static + */ + public static function queue($view, $queue = null) + { + /** @var \Illuminate\Support\Testing\Fakes\MailFake $instance */ + return $instance->queue($view, $queue); + } + + /** + * Queue a new e-mail message for sending after (n) seconds. + * + * @param \DateTimeInterface|\DateInterval|int $delay + * @param \Illuminate\Contracts\Mail\Mailable|string|array $view + * @param string|null $queue + * @return mixed + * @static + */ + public static function later($delay, $view, $queue = null) + { + /** @var \Illuminate\Support\Testing\Fakes\MailFake $instance */ + return $instance->later($delay, $view, $queue); + } + + /** + * Get the array of failed recipients. + * + * @return array + * @static + */ + public static function failures() + { + /** @var \Illuminate\Support\Testing\Fakes\MailFake $instance */ + return $instance->failures(); + } } @@ -7499,7 +7532,7 @@ namespace Illuminate\Support\Facades { /** * Get a driver instance. * - * @param string $driver + * @param string|null $driver * @return mixed * @throws \InvalidArgumentException * @static @@ -7543,7 +7576,7 @@ namespace Illuminate\Support\Facades { * Assert if a notification was sent based on a truth-test callback. * * @param mixed $notifiable - * @param string $notification + * @param string|\Closure $notification * @param callable|null $callback * @return void * @throws \Exception @@ -7574,7 +7607,7 @@ namespace Illuminate\Support\Facades { * Determine if a notification was sent based on a truth-test callback. * * @param mixed $notifiable - * @param string $notification + * @param string|\Closure $notification * @param callable|null $callback * @return void * @throws \Exception @@ -7685,8 +7718,8 @@ namespace Illuminate\Support\Facades { /** * * - * @method static string sendResetLink(array $credentials) * @method static mixed reset(array $credentials, \Closure $callback) + * @method static string sendResetLink(array $credentials) * @see \Illuminate\Auth\Passwords\PasswordBroker */ class Password { @@ -7912,7 +7945,7 @@ namespace Illuminate\Support\Facades { /** * Assert if a job was pushed based on a truth-test callback. * - * @param string $job + * @param string|\Closure $job * @param callable|int|null $callback * @return void * @static @@ -7927,7 +7960,7 @@ namespace Illuminate\Support\Facades { * Assert if a job was pushed based on a truth-test callback. * * @param string $queue - * @param string $job + * @param string|\Closure $job * @param callable|null $callback * @return void * @static @@ -7970,7 +8003,7 @@ namespace Illuminate\Support\Facades { /** * Determine if a job was pushed based on a truth-test callback. * - * @param string $job + * @param string|\Closure $job * @param callable|null $callback * @return void * @static @@ -8388,6 +8421,40 @@ namespace Illuminate\Support\Facades { return $instance->route($route, $parameters, $status, $headers); } + /** + * Create a new redirect response to a signed named route. + * + * @param string $route + * @param mixed $parameters + * @param \DateTimeInterface|\DateInterval|int|null $expiration + * @param int $status + * @param array $headers + * @return \Illuminate\Http\RedirectResponse + * @static + */ + public static function signedRoute($route, $parameters = [], $expiration = null, $status = 302, $headers = []) + { + /** @var \Illuminate\Routing\Redirector $instance */ + return $instance->signedRoute($route, $parameters, $expiration, $status, $headers); + } + + /** + * Create a new redirect response to a signed named route. + * + * @param string $route + * @param \DateTimeInterface|\DateInterval|int|null $expiration + * @param mixed $parameters + * @param int $status + * @param array $headers + * @return \Illuminate\Http\RedirectResponse + * @static + */ + public static function temporarySignedRoute($route, $expiration, $parameters = [], $status = 302, $headers = []) + { + /** @var \Illuminate\Routing\Redirector $instance */ + return $instance->temporarySignedRoute($route, $expiration, $parameters, $status, $headers); + } + /** * Create a new redirect response to a controller action. * @@ -8726,7 +8793,7 @@ namespace Illuminate\Support\Facades { /** * Get the client user agent. * - * @return string + * @return string|null * @static */ public static function userAgent() @@ -9102,7 +9169,6 @@ namespace Illuminate\Support\Facades { * to keep BC with an existing system. It should not be used for any * other purpose. * - * @param callable|null $callable A PHP callable * @static */ public static function setFactory($callable) @@ -9198,7 +9264,6 @@ namespace Illuminate\Support\Facades { * It builds a normalized query string, where keys/value pairs are alphabetized, * have consistent escaping and unneeded delimiters are removed. * - * @param string $qs Query string * @return string A normalized query string for the Request * @static */ @@ -9570,7 +9635,6 @@ namespace Illuminate\Support\Facades { * - "/a/b/c/other" -> "other" * - "/a/x/y" -> "../../x/y" * - * @param string $path The target path * @return string The relative target path * @static */ @@ -9637,7 +9701,6 @@ namespace Illuminate\Support\Facades { /** * Sets the request method. * - * @param string $method * @static */ public static function setMethod($method) @@ -9686,7 +9749,6 @@ namespace Illuminate\Support\Facades { /** * Gets the mime type associated with the format. * - * @param string $format The format * @return string|null The associated mime type (null if not found) * @static */ @@ -9700,7 +9762,6 @@ namespace Illuminate\Support\Facades { /** * Gets the mime types associated with the format. * - * @param string $format The format * @return array The associated mime types * @static */ @@ -9713,7 +9774,6 @@ namespace Illuminate\Support\Facades { /** * Gets the format associated with the mime type. * - * @param string $mimeType The associated mime type * @return string|null The format (null if not found) * @static */ @@ -9727,7 +9787,6 @@ namespace Illuminate\Support\Facades { /** * Associates a format with mime types. * - * @param string $format The format * @param string|array $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type) * @static */ @@ -9748,7 +9807,6 @@ namespace Illuminate\Support\Facades { * * $default * * @see getPreferredFormat - * @param string|null $default The default format * @return string|null The request format * @static */ @@ -9762,7 +9820,6 @@ namespace Illuminate\Support\Facades { /** * Sets the request format. * - * @param string $format The request format * @static */ public static function setRequestFormat($format) @@ -9788,7 +9845,6 @@ namespace Illuminate\Support\Facades { /** * Sets the default locale. * - * @param string $locale * @static */ public static function setDefaultLocale($locale) @@ -9814,7 +9870,6 @@ namespace Illuminate\Support\Facades { /** * Sets the locale. * - * @param string $locale * @static */ public static function setLocale($locale) @@ -9954,8 +10009,8 @@ namespace Illuminate\Support\Facades { /** * Gets the preferred format for the response by inspecting, in the following order: - * * the request format set using setRequestFormat - * * the values of the Accept HTTP header + * * the request format set using setRequestFormat; + * * the values of the Accept HTTP header. * * Note that if you use this method, you should send the "Vary: Accept" header * in the response to prevent any issues with intermediary HTTP caches. @@ -10052,6 +10107,19 @@ namespace Illuminate\Support\Facades { return $instance->isXmlHttpRequest(); } + /** + * Checks whether the client browser prefers safe content or not according to RFC8674. + * + * @see https://tools.ietf.org/html/rfc8674 + * @static + */ + public static function preferSafeContent() + { + //Method inherited from \Symfony\Component\HttpFoundation\Request + /** @var \Illuminate\Http\Request $instance */ + return $instance->preferSafeContent(); + } + /** * Indicates whether this request originated from a trusted proxy. * @@ -10799,7 +10867,7 @@ namespace Illuminate\Support\Facades { * Create a new redirect response to a named route. * * @param string $route - * @param array $parameters + * @param mixed $parameters * @param int $status * @param array $headers * @return \Illuminate\Http\RedirectResponse @@ -10815,7 +10883,7 @@ namespace Illuminate\Support\Facades { * Create a new redirect response to a controller action. * * @param string $action - * @param array $parameters + * @param mixed $parameters * @param int $status * @param array $headers * @return \Illuminate\Http\RedirectResponse @@ -10903,13 +10971,13 @@ namespace Illuminate\Support\Facades { /** * * - * @method static \Illuminate\Routing\RouteRegistrar prefix(string $prefix) - * @method static \Illuminate\Routing\RouteRegistrar where(array $where) - * @method static \Illuminate\Routing\RouteRegistrar middleware(array|string|null $middleware) * @method static \Illuminate\Routing\RouteRegistrar as(string $value) * @method static \Illuminate\Routing\RouteRegistrar domain(string $value) + * @method static \Illuminate\Routing\RouteRegistrar middleware(array|string|null $middleware) * @method static \Illuminate\Routing\RouteRegistrar name(string $value) * @method static \Illuminate\Routing\RouteRegistrar namespace(string $value) + * @method static \Illuminate\Routing\RouteRegistrar prefix(string $prefix) + * @method static \Illuminate\Routing\RouteRegistrar where(array $where) * @see \Illuminate\Routing\Router */ class Route { @@ -10918,7 +10986,7 @@ namespace Illuminate\Support\Facades { * Register a new GET route with the router. * * @param string $uri - * @param \Closure|array|string|callable|null $action + * @param array|string|callable|null $action * @return \Illuminate\Routing\Route * @static */ @@ -10932,7 +11000,7 @@ namespace Illuminate\Support\Facades { * Register a new POST route with the router. * * @param string $uri - * @param \Closure|array|string|callable|null $action + * @param array|string|callable|null $action * @return \Illuminate\Routing\Route * @static */ @@ -10946,7 +11014,7 @@ namespace Illuminate\Support\Facades { * Register a new PUT route with the router. * * @param string $uri - * @param \Closure|array|string|callable|null $action + * @param array|string|callable|null $action * @return \Illuminate\Routing\Route * @static */ @@ -10960,7 +11028,7 @@ namespace Illuminate\Support\Facades { * Register a new PATCH route with the router. * * @param string $uri - * @param \Closure|array|string|callable|null $action + * @param array|string|callable|null $action * @return \Illuminate\Routing\Route * @static */ @@ -10974,7 +11042,7 @@ namespace Illuminate\Support\Facades { * Register a new DELETE route with the router. * * @param string $uri - * @param \Closure|array|string|callable|null $action + * @param array|string|callable|null $action * @return \Illuminate\Routing\Route * @static */ @@ -10988,7 +11056,7 @@ namespace Illuminate\Support\Facades { * Register a new OPTIONS route with the router. * * @param string $uri - * @param \Closure|array|string|callable|null $action + * @param array|string|callable|null $action * @return \Illuminate\Routing\Route * @static */ @@ -11002,7 +11070,7 @@ namespace Illuminate\Support\Facades { * Register a new route responding to all verbs. * * @param string $uri - * @param \Closure|array|string|callable|null $action + * @param array|string|callable|null $action * @return \Illuminate\Routing\Route * @static */ @@ -11015,7 +11083,7 @@ namespace Illuminate\Support\Facades { /** * Register a new Fallback route with the router. * - * @param \Closure|array|string|callable|null $action + * @param array|string|callable|null $action * @return \Illuminate\Routing\Route * @static */ @@ -11074,7 +11142,7 @@ namespace Illuminate\Support\Facades { * * @param array|string $methods * @param string $uri - * @param \Closure|array|string|callable|null $action + * @param array|string|callable|null $action * @return \Illuminate\Routing\Route * @static */ @@ -11160,13 +11228,14 @@ namespace Illuminate\Support\Facades { * Merge the given array with the last group stack. * * @param array $new + * @param bool $prependExistingPrefix * @return array * @static */ - public static function mergeWithLastGroup($new) + public static function mergeWithLastGroup($new, $prependExistingPrefix = true) { /** @var \Illuminate\Routing\Router $instance */ - return $instance->mergeWithLastGroup($new); + return $instance->mergeWithLastGroup($new, $prependExistingPrefix); } /** @@ -11186,7 +11255,7 @@ namespace Illuminate\Support\Facades { * * @param array|string $methods * @param string $uri - * @param \Closure|array|string|callable|null $action + * @param array|string|callable|null $action * @return \Illuminate\Routing\Route * @static */ @@ -11196,6 +11265,21 @@ namespace Illuminate\Support\Facades { return $instance->addRoute($methods, $uri, $action); } + /** + * Create a new Route object. + * + * @param array|string $methods + * @param string $uri + * @param mixed $action + * @return \Illuminate\Routing\Route + * @static + */ + public static function newRoute($methods, $uri, $action) + { + /** @var \Illuminate\Routing\Router $instance */ + return $instance->newRoute($methods, $uri, $action); + } + /** * Return the response returned by the given route. * @@ -11657,55 +11741,6 @@ namespace Illuminate\Support\Facades { return $instance->currentRouteUses($action); } - /** - * Register the typical authentication routes for an application. - * - * @param array $options - * @return void - * @static - */ - public static function auth($options = []) - { - /** @var \Illuminate\Routing\Router $instance */ - $instance->auth($options); - } - - /** - * Register the typical reset password routes for an application. - * - * @return void - * @static - */ - public static function resetPassword() - { - /** @var \Illuminate\Routing\Router $instance */ - $instance->resetPassword(); - } - - /** - * Register the typical confirm password routes for an application. - * - * @return void - * @static - */ - public static function confirmPassword() - { - /** @var \Illuminate\Routing\Router $instance */ - $instance->confirmPassword(); - } - - /** - * Register the typical email verification routes for an application. - * - * @return void - * @static - */ - public static function emailVerification() - { - /** @var \Illuminate\Routing\Router $instance */ - $instance->emailVerification(); - } - /** * Set the unmapped global resource parameters to singular. * @@ -11748,7 +11783,7 @@ namespace Illuminate\Support\Facades { /** * Get the underlying route collection. * - * @return \Illuminate\Routing\RouteCollection + * @return \Illuminate\Routing\RouteCollectionInterface * @static */ public static function getRoutes() @@ -11770,6 +11805,19 @@ namespace Illuminate\Support\Facades { $instance->setRoutes($routes); } + /** + * Set the compiled route collection instance. + * + * @param array $routes + * @return void + * @static + */ + public static function setCompiledRoutes($routes) + { + /** @var \Illuminate\Routing\Router $instance */ + $instance->setCompiledRoutes($routes); + } + /** * Register a custom macro. * @@ -12147,6 +12195,30 @@ namespace Illuminate\Support\Facades { */ class Session { + /** + * Determine if requests for the same session should wait for each to finish before executing. + * + * @return bool + * @static + */ + public static function shouldBlock() + { + /** @var \Illuminate\Session\SessionManager $instance */ + return $instance->shouldBlock(); + } + + /** + * Get the name of the cache store / driver that should be used to acquire session locks. + * + * @return string|null + * @static + */ + public static function blockDriver() + { + /** @var \Illuminate\Session\SessionManager $instance */ + return $instance->blockDriver(); + } + /** * Get the session configuration. * @@ -12187,7 +12259,7 @@ namespace Illuminate\Support\Facades { /** * Get a driver instance. * - * @param string $driver + * @param string|null $driver * @return mixed * @throws \InvalidArgumentException * @static @@ -13832,7 +13904,7 @@ namespace Illuminate\Support\Facades { /** * Set the route collection. * - * @param \Illuminate\Routing\RouteCollection $routes + * @param \Illuminate\Routing\RouteCollectionInterface $routes * @return \Illuminate\Routing\UrlGenerator * @static */ @@ -14508,15 +14580,15 @@ namespace Illuminate\Support\Facades { /** * Start a component rendering process. * - * @param string $name + * @param \Illuminate\View\View|\Closure|string $view * @param array $data * @return void * @static */ - public static function startComponent($name, $data = []) + public static function startComponent($view, $data = []) { /** @var \Illuminate\View\Factory $instance */ - $instance->startComponent($name, $data); + $instance->startComponent($view, $data); } /** @@ -15041,6 +15113,227 @@ namespace Intervention\Image\Facades { } +namespace Cartalyst\Stripe\Laravel\Facades { + + /** + * + * + */ + class Stripe { + + /** + * Create a new Stripe API instance. + * + * @param string $apiKey + * @param string $apiVersion + * @return \Cartalyst\Stripe\Stripe + * @static + */ + public static function make($apiKey = null, $apiVersion = null) + { + return \Cartalyst\Stripe\Stripe::make($apiKey, $apiVersion); + } + + /** + * Returns the current package version. + * + * @return string + * @static + */ + public static function getVersion() + { + return \Cartalyst\Stripe\Stripe::getVersion(); + } + + /** + * Returns the Config repository instance. + * + * @return \Cartalyst\Stripe\ConfigInterface + * @static + */ + public static function getConfig() + { + /** @var \Cartalyst\Stripe\Stripe $instance */ + return $instance->getConfig(); + } + + /** + * Sets the Config repository instance. + * + * @param \Cartalyst\Stripe\ConfigInterface $config + * @return \Cartalyst\Stripe\Stripe + * @static + */ + public static function setConfig($config) + { + /** @var \Cartalyst\Stripe\Stripe $instance */ + return $instance->setConfig($config); + } + + /** + * Returns the Stripe API key. + * + * @return string + * @static + */ + public static function getApiKey() + { + /** @var \Cartalyst\Stripe\Stripe $instance */ + return $instance->getApiKey(); + } + + /** + * Sets the Stripe API key. + * + * @param string $apiKey + * @return \Cartalyst\Stripe\Stripe + * @static + */ + public static function setApiKey($apiKey) + { + /** @var \Cartalyst\Stripe\Stripe $instance */ + return $instance->setApiKey($apiKey); + } + + /** + * Returns the Stripe API version. + * + * @return string + * @static + */ + public static function getApiVersion() + { + /** @var \Cartalyst\Stripe\Stripe $instance */ + return $instance->getApiVersion(); + } + + /** + * Sets the Stripe API version. + * + * @param string $apiVersion + * @return \Cartalyst\Stripe\Stripe + * @static + */ + public static function setApiVersion($apiVersion) + { + /** @var \Cartalyst\Stripe\Stripe $instance */ + return $instance->setApiVersion($apiVersion); + } + + /** + * Sets the idempotency key. + * + * @param string $idempotencyKey + * @return \Cartalyst\Stripe\Stripe + * @static + */ + public static function idempotent($idempotencyKey) + { + /** @var \Cartalyst\Stripe\Stripe $instance */ + return $instance->idempotent($idempotencyKey); + } + + /** + * Sets the account id. + * + * @param string $accountId + * @return \Cartalyst\Stripe\Stripe + * @static + */ + public static function accountId($accountId) + { + /** @var \Cartalyst\Stripe\Stripe $instance */ + return $instance->accountId($accountId); + } + + /** + * Returns the application's information. + * + * @return array|null + * @static + */ + public static function getAppInfo() + { + /** @var \Cartalyst\Stripe\Stripe $instance */ + return $instance->getAppInfo(); + } + + /** + * Sets the application's information. + * + * @param string $appName + * @param string $appVersion + * @param string $appUrl + * @param string $appPartnerId + * @return \Cartalyst\Stripe\Stripe + * @static + */ + public static function setAppInfo($appName, $appVersion = null, $appUrl = null, $appPartnerId = null) + { + /** @var \Cartalyst\Stripe\Stripe $instance */ + return $instance->setAppInfo($appName, $appVersion, $appUrl, $appPartnerId); + } + + /** + * Returns the amount converter class and method name. + * + * @return string + * @static + */ + public static function getAmountConverter() + { + return \Cartalyst\Stripe\Stripe::getAmountConverter(); + } + + /** + * Sets the amount converter class and method name. + * + * @param $amountConverter string + * @return void + * @static + */ + public static function setAmountConverter($amountConverter) + { + \Cartalyst\Stripe\Stripe::setAmountConverter($amountConverter); + } + + /** + * Disables the amount converter. + * + * @return void + * @static + */ + public static function disableAmountConverter() + { + \Cartalyst\Stripe\Stripe::disableAmountConverter(); + } + + /** + * Returns the default amount converter. + * + * @return string + * @static + */ + public static function getDefaultAmountConverter() + { + return \Cartalyst\Stripe\Stripe::getDefaultAmountConverter(); + } + + /** + * Sets the default amount converter; + * + * @return void + * @static + */ + public static function setDefaultAmountConverter() + { + \Cartalyst\Stripe\Stripe::setDefaultAmountConverter(); + } + + } + +} + namespace Facade\Ignition\Facades { /** @@ -15463,7 +15756,7 @@ namespace { * @param \Closure|array|string $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder|static + * @return \Illuminate\Database\Eloquent\Builder * @static */ public static function orWhere($column, $operator = null, $value = null) @@ -15590,7 +15883,7 @@ namespace { * @return \Illuminate\Database\Eloquent\Model|static * @static */ - public static function firstOrNew($attributes, $values = []) + public static function firstOrNew($attributes = [], $values = []) { /** @var \Illuminate\Database\Eloquent\Builder $instance */ return $instance->firstOrNew($attributes, $values); @@ -15853,6 +16146,19 @@ namespace { return $instance->newModelInstance($attributes); } + /** + * Apply query-time casts to the model instance. + * + * @param array $casts + * @return \Illuminate\Database\Eloquent\Builder + * @static + */ + public static function withCasts($casts) + { + /** @var \Illuminate\Database\Eloquent\Builder $instance */ + return $instance->withCasts($casts); + } + /** * Get the underlying query builder instance. * @@ -16187,7 +16493,7 @@ namespace { * Add a relationship count / exists condition to the query with where clauses and an "or". * * @param string $relation - * @param \Closure $callback + * @param \Closure|null $callback * @param string $operator * @param int $count * @return \Illuminate\Database\Eloquent\Builder|static @@ -16217,7 +16523,7 @@ namespace { * Add a relationship count / exists condition to the query with where clauses and an "or". * * @param string $relation - * @param \Closure $callback + * @param \Closure|null $callback * @return \Illuminate\Database\Eloquent\Builder|static * @static */ @@ -16313,7 +16619,7 @@ namespace { * * @param string $relation * @param string|array $types - * @param \Closure $callback + * @param \Closure|null $callback * @param string $operator * @param int $count * @return \Illuminate\Database\Eloquent\Builder|static @@ -16345,7 +16651,7 @@ namespace { * * @param string $relation * @param string|array $types - * @param \Closure $callback + * @param \Closure|null $callback * @return \Illuminate\Database\Eloquent\Builder|static * @static */ @@ -16399,7 +16705,7 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|string $query * @param string $as - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException * @static */ @@ -16414,7 +16720,7 @@ namespace { * * @param string $expression * @param array $bindings - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function selectRaw($expression, $bindings = []) @@ -16428,7 +16734,7 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|string $query * @param string $as - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException * @static */ @@ -16443,7 +16749,7 @@ namespace { * * @param string $expression * @param mixed $bindings - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function fromRaw($expression, $bindings = []) @@ -16517,7 +16823,7 @@ namespace { * @param string $operator * @param string $second * @param string $type - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function joinWhere($table, $first, $operator, $second, $type = 'inner') @@ -16536,7 +16842,7 @@ namespace { * @param string|null $second * @param string $type * @param bool $where - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException * @static */ @@ -16553,7 +16859,7 @@ namespace { * @param \Closure|string $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function leftJoin($table, $first, $operator = null, $second = null) @@ -16569,7 +16875,7 @@ namespace { * @param \Closure|string $first * @param string $operator * @param string $second - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function leftJoinWhere($table, $first, $operator, $second) @@ -16586,7 +16892,7 @@ namespace { * @param \Closure|string $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function leftJoinSub($query, $as, $first, $operator = null, $second = null) @@ -16602,7 +16908,7 @@ namespace { * @param \Closure|string $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function rightJoin($table, $first, $operator = null, $second = null) @@ -16618,7 +16924,7 @@ namespace { * @param \Closure|string $first * @param string $operator * @param string $second - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function rightJoinWhere($table, $first, $operator, $second) @@ -16635,7 +16941,7 @@ namespace { * @param \Closure|string $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function rightJoinSub($query, $as, $first, $operator = null, $second = null) @@ -16651,7 +16957,7 @@ namespace { * @param \Closure|string|null $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function crossJoin($table, $first = null, $operator = null, $second = null) @@ -16697,7 +17003,7 @@ namespace { * @param string|null $operator * @param string|null $second * @param string|null $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereColumn($first, $operator = null, $second = null, $boolean = 'and') @@ -16712,7 +17018,7 @@ namespace { * @param string|array $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereColumn($first, $operator = null, $second = null) @@ -16741,7 +17047,7 @@ namespace { * * @param string $sql * @param mixed $bindings - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereRaw($sql, $bindings = []) @@ -16771,7 +17077,7 @@ namespace { * * @param string $column * @param mixed $values - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereIn($column, $values) @@ -16786,7 +17092,7 @@ namespace { * @param string $column * @param mixed $values * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereNotIn($column, $values, $boolean = 'and') @@ -16800,7 +17106,7 @@ namespace { * * @param string $column * @param mixed $values - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereNotIn($column, $values) @@ -16825,6 +17131,20 @@ namespace { return $instance->whereIntegerInRaw($column, $values, $boolean, $not); } + /** + * Add an "or where in raw" clause for integer values to the query. + * + * @param string $column + * @param \Illuminate\Contracts\Support\Arrayable|array $values + * @return \Illuminate\Database\Query\Builder + * @static + */ + public static function orWhereIntegerInRaw($column, $values) + { + /** @var \Illuminate\Database\Query\Builder $instance */ + return $instance->orWhereIntegerInRaw($column, $values); + } + /** * Add a "where not in raw" clause for integer values to the query. * @@ -16840,6 +17160,20 @@ namespace { return $instance->whereIntegerNotInRaw($column, $values, $boolean); } + /** + * Add an "or where not in raw" clause for integer values to the query. + * + * @param string $column + * @param \Illuminate\Contracts\Support\Arrayable|array $values + * @return \Illuminate\Database\Query\Builder + * @static + */ + public static function orWhereIntegerNotInRaw($column, $values) + { + /** @var \Illuminate\Database\Query\Builder $instance */ + return $instance->orWhereIntegerNotInRaw($column, $values); + } + /** * Add a "where null" clause to the query. * @@ -16859,7 +17193,7 @@ namespace { * Add an "or where null" clause to the query. * * @param string $column - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereNull($column) @@ -16873,7 +17207,7 @@ namespace { * * @param string|array $columns * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereNotNull($columns, $boolean = 'and') @@ -16903,7 +17237,7 @@ namespace { * * @param string $column * @param array $values - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereBetween($column, $values) @@ -16918,7 +17252,7 @@ namespace { * @param string $column * @param array $values * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereNotBetween($column, $values, $boolean = 'and') @@ -16932,7 +17266,7 @@ namespace { * * @param string $column * @param array $values - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereNotBetween($column, $values) @@ -16945,7 +17279,7 @@ namespace { * Add an "or where not null" clause to the query. * * @param string $column - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereNotNull($column) @@ -16961,7 +17295,7 @@ namespace { * @param string $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereDate($column, $operator, $value = null, $boolean = 'and') @@ -16976,7 +17310,7 @@ namespace { * @param string $column * @param string $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereDate($column, $operator, $value = null) @@ -16992,7 +17326,7 @@ namespace { * @param string $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereTime($column, $operator, $value = null, $boolean = 'and') @@ -17007,7 +17341,7 @@ namespace { * @param string $column * @param string $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereTime($column, $operator, $value = null) @@ -17023,7 +17357,7 @@ namespace { * @param string $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereDay($column, $operator, $value = null, $boolean = 'and') @@ -17038,7 +17372,7 @@ namespace { * @param string $column * @param string $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereDay($column, $operator, $value = null) @@ -17054,7 +17388,7 @@ namespace { * @param string $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereMonth($column, $operator, $value = null, $boolean = 'and') @@ -17069,7 +17403,7 @@ namespace { * @param string $column * @param string $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereMonth($column, $operator, $value = null) @@ -17085,7 +17419,7 @@ namespace { * @param string $operator * @param \DateTimeInterface|string|int|null $value * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereYear($column, $operator, $value = null, $boolean = 'and') @@ -17100,7 +17434,7 @@ namespace { * @param string $column * @param string $operator * @param \DateTimeInterface|string|int|null $value - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereYear($column, $operator, $value = null) @@ -17114,7 +17448,7 @@ namespace { * * @param \Closure $callback * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereNested($callback, $boolean = 'and') @@ -17138,7 +17472,7 @@ namespace { /** * Add another query builder as a nested where to the query builder. * - * @param \Illuminate\Database\Query\Builder|static $query + * @param $this $query * @param string $boolean * @return \Illuminate\Database\Query\Builder * @static @@ -17169,7 +17503,7 @@ namespace { * * @param \Closure $callback * @param bool $not - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereExists($callback, $not = false) @@ -17183,7 +17517,7 @@ namespace { * * @param \Closure $callback * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function whereNotExists($callback, $boolean = 'and') @@ -17196,7 +17530,7 @@ namespace { * Add a where not exists clause to the query. * * @param \Closure $callback - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orWhereNotExists($callback) @@ -17405,7 +17739,7 @@ namespace { * @param string $column * @param string|null $operator * @param string|null $value - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orHaving($column, $operator = null, $value = null) @@ -17421,7 +17755,7 @@ namespace { * @param array $values * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function havingBetween($column, $values, $boolean = 'and', $not = false) @@ -17450,7 +17784,7 @@ namespace { * * @param string $sql * @param array $bindings - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function orHavingRaw($sql, $bindings = []) @@ -17462,7 +17796,7 @@ namespace { /** * Add an "order by" clause to the query. * - * @param \Closure|\Illuminate\Database\Query\Builder|string $column + * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Query\Expression|string $column * @param string $direction * @return \Illuminate\Database\Query\Builder * @throws \InvalidArgumentException @@ -17518,7 +17852,7 @@ namespace { * Alias to set the "offset" value of the query. * * @param int $value - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function skip($value) @@ -17544,7 +17878,7 @@ namespace { * Alias to set the "limit" value of the query. * * @param int $value - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function take($value) @@ -17571,7 +17905,7 @@ namespace { * * @param int $page * @param int $perPage - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function forPage($page, $perPage = 15) @@ -17586,7 +17920,7 @@ namespace { * @param int $perPage * @param int|null $lastId * @param string $column - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function forPageBeforeId($perPage = 15, $lastId = 0, $column = 'id') @@ -17601,7 +17935,7 @@ namespace { * @param int $perPage * @param int|null $lastId * @param string $column - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function forPageAfterId($perPage = 15, $lastId = 0, $column = 'id') @@ -17610,12 +17944,24 @@ namespace { return $instance->forPageAfterId($perPage, $lastId, $column); } + /** + * Remove all existing orders and optionally add a new order. + * + * @return \Illuminate\Database\Query\Builder + * @static + */ + public static function reorder($column = null, $direction = 'asc') + { + /** @var \Illuminate\Database\Query\Builder $instance */ + return $instance->reorder($column, $direction); + } + /** * Add a union statement to the query. * * @param \Illuminate\Database\Query\Builder|\Closure $query * @param bool $all - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function union($query, $all = false) @@ -17628,7 +17974,7 @@ namespace { * Add a union all statement to the query. * * @param \Illuminate\Database\Query\Builder|\Closure $query - * @return \Illuminate\Database\Query\Builder|static + * @return \Illuminate\Database\Query\Builder * @static */ public static function unionAll($query) @@ -18202,6 +18548,8 @@ namespace { class Image extends \Intervention\Image\Facades\Image {} + class Stripe extends \Cartalyst\Stripe\Laravel\Facades\Stripe {} + class Flare extends \Facade\Ignition\Facades\Flare {} } diff --git a/app/Console/Commands/SetupDevEnvironment.php b/app/Console/Commands/SetupDevEnvironment.php index c7700e66..cd895aa4 100644 --- a/app/Console/Commands/SetupDevEnvironment.php +++ b/app/Console/Commands/SetupDevEnvironment.php @@ -66,6 +66,7 @@ class SetupDevEnvironment extends Command public function migrateDatabase() { $this->call('migrate:fresh'); + $this->call('db:seed'); } /** diff --git a/app/Console/Commands/UpgradeApp.php b/app/Console/Commands/UpgradeApp.php index a4e79d90..36d829b4 100644 --- a/app/Console/Commands/UpgradeApp.php +++ b/app/Console/Commands/UpgradeApp.php @@ -42,6 +42,11 @@ class UpgradeApp extends Command $this->info('Upgrading your application to version ' . $this->argument('version')); $this->call('down'); + // Version 1.7 + if ($this->argument('version') === 'v1.7') { + $this->version_1_7(); + } + // Version 1.6 if ($this->argument('version') === 'v1.6') { $this->version_1_6(); @@ -51,6 +56,20 @@ class UpgradeApp extends Command $this->info('Your application was upgraded! 🥳🥳🥳'); } + /** + * Upgrade script to version 1.7 + */ + public function version_1_7() { + + // Migrate new tables and changes + $this->call('migrate'); + $this->call('rinvex:migrate:subscriptions'); + + /*$this->call('db:seed', [ + '--class' => 'PaymentGatewaysSeeder' + ]);*/ + } + /** * Upgrade script to version 1.6 */ diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 364621e4..dcba3ebc 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -2,8 +2,8 @@ namespace App\Exceptions; -use Exception; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; +use Throwable; class Handler extends ExceptionHandler { @@ -29,12 +29,12 @@ class Handler extends ExceptionHandler /** * Report or log an exception. * - * @param \Exception $exception + * @param \Throwable $exception * @return void * * @throws \Exception */ - public function report(Exception $exception) + public function report(Throwable $exception) { parent::report($exception); } @@ -43,13 +43,13 @@ class Handler extends ExceptionHandler * Render an exception into an HTTP response. * * @param \Illuminate\Http\Request $request - * @param \Exception $exception + * @param \Throwable $exception * @return \Symfony\Component\HttpFoundation\Response * - * @throws \Exception + * @throws \Throwable */ - public function render($request, Exception $exception) + public function render($request, Throwable $exception) { return parent::render($request, $exception); } -} +} \ No newline at end of file diff --git a/app/FileManagerFile.php b/app/FileManagerFile.php index bf2a4cbd..5bd052e4 100644 --- a/app/FileManagerFile.php +++ b/app/FileManagerFile.php @@ -116,14 +116,14 @@ class FileManagerFile extends Model */ public function getThumbnailAttribute() { - // Get thumbnail from s3 - if ($this->attributes['thumbnail'] && is_storage_driver(['s3', 'spaces'])) { + // Get thumbnail from external storage + if ($this->attributes['thumbnail'] && is_storage_driver(['s3', 'spaces', 'wasabi', 'backblaze'])) { - return Storage::temporaryUrl('file-manager/' . $this->attributes['thumbnail'], now()->addDay()); + return Storage::temporaryUrl('file-manager/' . $this->attributes['thumbnail'], now()->addHour()); } // Get thumbnail from local storage - if ($this->attributes['thumbnail'] && is_storage_driver('local')) { + if ($this->attributes['thumbnail']) { // Thumbnail route $route = route('thumbnail', ['name' => $this->attributes['thumbnail']]); @@ -146,7 +146,7 @@ class FileManagerFile extends Model public function getFileUrlAttribute() { // Get file from s3 - if (is_storage_driver(['s3', 'spaces'])) { + if (is_storage_driver(['s3', 'spaces', 'wasabi', 'backblaze'])) { $header = [ "ResponseAcceptRanges" => "bytes", @@ -160,16 +160,13 @@ class FileManagerFile extends Model } // Get thumbnail from local storage - if (is_storage_driver('local')) { + $route = route('file', ['name' => $this->attributes['basename']]); - $route = route('file', ['name' => $this->attributes['basename']]); - - if ($this->public_access) { - return $route . '/public/' . $this->public_access; - } - - return $route; + if ($this->public_access) { + return $route . '/public/' . $this->public_access; } + + return $route; } /** diff --git a/app/Http/Controllers/Admin/DashboardController.php b/app/Http/Controllers/Admin/DashboardController.php new file mode 100644 index 00000000..7999a3b5 --- /dev/null +++ b/app/Http/Controllers/Admin/DashboardController.php @@ -0,0 +1,66 @@ +stripe = $stripe; + } + + /** + * Get data for dashboard + * + * @return array + */ + public function index() + { + // Get total users + $total_users = User::all()->count(); + + // Get total used space + $total_used_space = FileManagerFile::all()->map(function ($item) { + return (int)$item->getRawOriginal('filesize'); + })->sum(); + + // Get total premium users + $total_premium_users = Subscription::where('stripe_status', 'active')->get()->count(); + + // Get License + $license = Setting::where('name', 'license')->first(); + + return [ + 'license' => $license ? $license->value : null, + 'app_version' => config('vuefilemanager.version'), + 'total_users' => $total_users, + 'total_used_space' => Metric::bytes($total_used_space)->format(), + 'total_premium_users' => $total_premium_users, + ]; + } + + /** + * Get the newest users + * + * @return UsersCollection + */ + public function new_registrations() + { + return new UsersCollection( + User::take(7)->orderByDesc('created_at')->get() + ); + } +} diff --git a/app/Http/Controllers/Admin/InvoiceController.php b/app/Http/Controllers/Admin/InvoiceController.php new file mode 100644 index 00000000..381aa3f9 --- /dev/null +++ b/app/Http/Controllers/Admin/InvoiceController.php @@ -0,0 +1,52 @@ +stripe = $stripe; + } + + /** + * Get all invoices + * + * @return InvoiceAdminCollection + */ + public function index() + { + return new InvoiceAdminCollection( + $this->stripe->getInvoices()['data'] + ); + } + + /** + * Get single invoice by $token + * + * @param $customer + * @param $token + * @return InvoiceResource + */ + public function show($customer, $token) + { + $settings = json_decode(Setting::all()->pluck('value', 'name')->toJson()); + + $invoice = $this->stripe->getUserInvoice($customer, $token); + + return view('vuefilemanager.invoice') + ->with('settings', $settings) + ->with('invoice', $invoice); + } +} diff --git a/app/Http/Controllers/Admin/PagesController.php b/app/Http/Controllers/Admin/PagesController.php new file mode 100644 index 00000000..ab523bef --- /dev/null +++ b/app/Http/Controllers/Admin/PagesController.php @@ -0,0 +1,61 @@ +first() + ); + } + + /** + * Update page content + * + * @param Request $request + * @param $slug + * @return \Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Http\Response + */ + public function update(Request $request, $slug) + { + // Check if is demo + if (env('APP_DEMO')) { + return Demo::response_204(); + } + + // Get page + $page = Page::where('slug', $slug)->first(); + + // Update page + $page->update(make_single_input($request)); + + return response('Done', 204); + } +} diff --git a/app/Http/Controllers/Admin/PlanController.php b/app/Http/Controllers/Admin/PlanController.php new file mode 100644 index 00000000..908c22b6 --- /dev/null +++ b/app/Http/Controllers/Admin/PlanController.php @@ -0,0 +1,159 @@ +stripe = $stripe; + } + + /** + * Get all plans + * + * @return PlanCollection + */ + public function index() + { + // Store or Get plans to cache + if (Cache::has('plans')) { + $plans = Cache::get('plans'); + } else { + $plans = Cache::rememberForever('plans', function () { + return $this->stripe->getPlans(); + }); + } + + return new PlanCollection($plans); + } + + /** + * Get plan record + * + * @param $id + * @return PlanResource + */ + public function show($id) + { + // Store or Get plan to cache + if (Cache::has('plan-' . $id)) { + $plan = Cache::get('plan-' . $id); + } else { + $plan = Cache::rememberForever('plan-' . $id, function () use ($id) { + return $this->stripe->getPlan($id); + }); + } + + return new PlanResource($plan); + } + + /** + * Create new plan + * + * @param Request $request + * @return PlanResource + */ + public function store(Request $request) + { + // Check if is demo + if (env('APP_DEMO')) { + + if (Cache::has('plan-starter-pack')) { + $plan = Cache::get('plan-starter-pack'); + } else { + $plan = Cache::rememberForever('plan-starter-pack', function () { + return $this->stripe->getPlan('starter-pack'); + }); + } + + return new PlanResource($plan); + } + + $plan = new PlanResource( + $this->stripe->createPlan($request) + ); + + // Clear cached plans + cache_forget_many(['plans', 'pricing']); + + return $plan; + } + + /** + * Update plan attribute + * + * @param Request $request + * @param $id + * @return \Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Http\Response + */ + public function update(Request $request, $id) + { + // Check if is demo + if (env('APP_DEMO')) { + return Demo::response_204(); + } + + // Update plan + $this->stripe->updatePlan($request, $id); + + // Clear cached plans + cache_forget_many(['plans', 'pricing', 'plan-' . $id]); + + return response('Saved!', 204); + } + + /** + * Delete plan + * + * @param $id + * @return \Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Http\Response + */ + public function delete($id) + { + // Check if is demo + if (env('APP_DEMO')) { + return Demo::response_204(); + } + + // Delete plan + $this->stripe->deletePlan($id); + + // Clear cached plans + cache_forget_many(['plans', 'pricing']); + + return response('Done!', 204); + } + + /** + * Get subscriptions + * + * @param $id + * @return mixed + */ + public function subscribers($id) + { + $subscribers = Subscription::where('stripe_plan', $id)->pluck('user_id'); + + return new UsersCollection( + User::findMany($subscribers) + ); + } +} diff --git a/app/Http/Controllers/Admin/UserController.php b/app/Http/Controllers/Admin/UserController.php index b133593c..73ce6185 100644 --- a/app/Http/Controllers/Admin/UserController.php +++ b/app/Http/Controllers/Admin/UserController.php @@ -9,10 +9,13 @@ use App\Http\Requests\Admin\ChangeRoleRequest; use App\Http\Requests\Admin\ChangeStorageCapacityRequest; use App\Http\Requests\Admin\CreateUserByAdmin; use App\Http\Requests\Admin\DeleteUserRequest; +use App\Http\Resources\InvoiceCollection; use App\Http\Resources\UsersCollection; use App\Http\Resources\UserResource; use App\Http\Resources\UserStorageResource; +use App\Http\Resources\UserSubscription; use App\Http\Tools\Demo; +use App\Services\StripeService; use App\Share; use App\User; use App\UserSettings; @@ -27,6 +30,11 @@ use Storage; class UserController extends Controller { + public function __construct(StripeService $stripe) + { + $this->stripe = $stripe; + } + /** * Get user details * @@ -35,7 +43,9 @@ class UserController extends Controller */ public function details($id) { - return new UserResource(User::findOrFail($id)); + return new UserResource( + User::findOrFail($id) + ); } /** @@ -46,7 +56,42 @@ class UserController extends Controller */ public function storage($id) { - return new UserStorageResource(User::findOrFail($id)); + return new UserStorageResource( + User::findOrFail($id) + ); + } + + /** + * Get user storage details + * + * @return InvoiceCollection + */ + public function invoices($id) + { + $user = User::find($id); + + return new InvoiceCollection( + $this->stripe->getUserInvoices($user) + ); + } + + /** + * Get user subscription details + * + * @param $id + * @return UserSubscription + */ + public function subscription($id) + { + $user = User::find($id); + + if (! $user->stripeId()) { + return response('User is not stripe customer', 404); + } + + return new UserSubscription( + User::find($id) + ); } /** @@ -56,7 +101,9 @@ class UserController extends Controller */ public function users() { - return new UsersCollection(User::all()); + return new UsersCollection( + User::all() + ); } /** @@ -75,7 +122,9 @@ class UserController extends Controller return new UserResource($user); } - $user->update($request->input('attributes')); + // Update user role + $user->role = $request->input('attributes.role'); + $user->save(); return new UserResource($user); } @@ -130,13 +179,11 @@ class UserController extends Controller { // Store avatar if ($request->hasFile('avatar')) { - - // Update avatar $avatar = store_avatar($request->file('avatar'), 'avatars'); } // Create user - $user = User::create([ + $user = User::forceCreate([ 'avatar' => $request->hasFile('avatar') ? $avatar : null, 'name' => $request->name, 'role' => $request->role, @@ -145,7 +192,7 @@ class UserController extends Controller ]); // Create settings - $settings = UserSettings::create([ + UserSettings::forceCreate([ 'user_id' => $user->id, 'storage_capacity' => $request->storage_capacity, ]); @@ -165,6 +212,10 @@ class UserController extends Controller { $user = User::findOrFail($id); + if ($user->subscribed('main')) { + abort(202, 'You can\'t delete this account while user have active subscription.'); + } + // Demo preview if (env('APP_DEMO')) { return response('Done!', 204); @@ -179,6 +230,7 @@ class UserController extends Controller if ($user->name !== $request->name) abort(403); $shares = Share::where('user_id', $user->id)->get(); + $files = FileManagerFile::withTrashed() ->where('user_id', $user->id) ->get(); @@ -194,7 +246,7 @@ class UserController extends Controller // Delete thumbnail if exist if (!is_null($file->thumbnail)) { - Storage::delete('/file-manager/' . $file->getOriginal('thumbnail')); + Storage::delete('/file-manager/' . $file->getRawOriginal('thumbnail')); } // Delete file permanently @@ -212,7 +264,7 @@ class UserController extends Controller // Remove favourites $user->settings->delete(); - $user->favourites()->sync([]); + $user->favourite_folders()->sync([]); // Delete user $user->delete(); diff --git a/app/Http/Controllers/AppFunctionsController.php b/app/Http/Controllers/AppFunctionsController.php index fb20afed..e23cb8ed 100644 --- a/app/Http/Controllers/AppFunctionsController.php +++ b/app/Http/Controllers/AppFunctionsController.php @@ -2,13 +2,47 @@ namespace App\Http\Controllers; -use Illuminate\Support\Facades\File; -use Illuminate\Support\Facades\Auth; +use App\Content; +use App\Http\Requests\PublicPages\SendMessageRequest; +use App\Http\Resources\PageResource; +use App\Mail\SendSupportForm; +use App\Page; +use App\Setting; +use Artisan; +use Doctrine\DBAL\Driver\PDOException; use Illuminate\Http\Request; -use Response; +use Illuminate\Support\Facades\Mail; +use Schema; class AppFunctionsController extends Controller { + /** + * List of allowed settings to get from public request + * + * @var array + */ + private $whitelist = [ + 'footer_content', + 'get_started_description', + 'get_started_title', + 'pricing_description', + 'pricing_title', + 'feature_description_3', + 'feature_title_3', + 'feature_description_2', + 'feature_title_2', + 'feature_description_1', + 'feature_title_1', + 'features_description', + 'features_title', + 'header_description', + 'header_title', + 'section_get_started', + 'section_pricing_content', + 'section_feature_boxes', + 'section_features', + ]; + /** * Show index page * @@ -16,6 +50,118 @@ class AppFunctionsController extends Controller */ public function index() { - return view("index"); + try { + // Try to connect to database + \DB::getPdo(); + + // Check settings table + $settings_table = Schema::hasTable('settings'); + $users_table = Schema::hasTable('users'); + + // If settings table don't exist, then run migrations + if ($users_table && ! $settings_table) { + Artisan::call('migrate', [ + '--force' => true + ]); + } + + // Get settings + $upgraded = Setting::where('name', 'latest_upgrade')->first(); + + // Get connection string + if ($upgraded && $upgraded->value !== '1.7') { + $connection = 'quiet-update'; + } else if (! $upgraded) { + $connection = 'quiet-update'; + } else { + $connection = $this->get_setup_status(); + } + + // Get all settings + $settings = Setting::all(); + + // Get legal pages + $legal = Page::whereIn('slug', ['terms-of-service', 'privacy-policy', 'cookie-policy']) + ->get(['visibility', 'title', 'slug']); + + } catch (PDOException $e) { + $connection = 'setup-database'; + $settings = null; + } + + return view("index") + ->with('settings', $settings ? json_decode($settings->pluck('value', 'name')->toJson()) : null) + ->with('legal', isset($legal) ? $legal : null) + ->with('installation', $connection); + } + + /** + * Check if setup wizard was passed + * + * @return string + */ + private function get_setup_status(): string + { + $setup_success = get_setting('setup_wizard_success'); + + $connection = boolval($setup_success) ? 'setup-done' : 'setup-disclaimer'; + + return $connection; + } + + /** + * Send contact message from pages + * + * @param SendMessageRequest $request + * @return \Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Http\Response + */ + public function contact_form(SendMessageRequest $request) + { + // Get receiver email + $receiver = Setting::where('name', 'contact_email')->first(); + + // Send message + Mail::to($receiver->value)->send(new SendSupportForm($request->all())); + + return response('Done', 200); + } + + /** + * Get single page content + * + * @param $slug + * @return PageResource + */ + public function get_page($slug) + { + return new PageResource( + Page::where('slug', $slug)->first() + ); + } + + /** + * Get selected settings from public route + * + * @param Request $request + * @return mixed + */ + public function get_settings(Request $request) + { + $column = $request->get('column'); + + if (strpos($column, '|') !== false) { + + $columns = collect(explode('|', $column)); + + $columns->each(function ($column) { + if (!in_array($column, $this->whitelist)) abort(401); + }); + + return Setting::whereIn('name', $columns)->pluck('value', 'name'); + } + + if (!in_array($column, $this->whitelist)) abort(401); + + return Setting::where('name', $column)->pluck('value', 'name'); } } diff --git a/app/Http/Controllers/Auth/AuthController.php b/app/Http/Controllers/Auth/AuthController.php index 8601688a..240c630c 100644 --- a/app/Http/Controllers/Auth/AuthController.php +++ b/app/Http/Controllers/Auth/AuthController.php @@ -3,6 +3,7 @@ namespace App\Http\Controllers\Auth; use App\Http\Requests\Auth\CheckAccountRequest; +use App\Setting; use App\User; use App\UserSettings; use Illuminate\Http\Request; @@ -20,20 +21,21 @@ class AuthController extends Controller * @param Request $request * @return mixed */ - public function check_account(CheckAccountRequest $request) { - + public function check_account(CheckAccountRequest $request) + { // Get User $user = User::where('email', $request->input('email'))->select(['name', 'avatar'])->first(); // Return user info if ($user) return [ - 'name' => $user->name, + 'name' => $user->name, 'avatar' => $user->avatar, ]; // Abort with 404, user not found return abort('404', __('vuefilemanager.user_not_fount')); } + /** * Login user * @@ -42,17 +44,16 @@ class AuthController extends Controller */ public function login(Request $request) { - $response = Route::dispatch(self::make_request($request)); + $response = Route::dispatch(self::make_login_request($request)); if ($response->isSuccessful()) { $data = json_decode($response->content(), true); return response('Login Successfull!', 200)->cookie('access_token', $data['access_token'], 43200); - } else { - - return $response; } + + return $response; } /** @@ -63,12 +64,14 @@ class AuthController extends Controller */ public function register(Request $request) { + $settings = Setting::whereIn('name', ['storage_default', 'registration'])->pluck('value', 'name'); + // Check if account registration is enabled - if (! config('vuefilemanager.registration') ) abort(401); + if (! intval($settings['registration'])) abort(401); // Validate request $request->validate([ - 'name' => ['required', 'string', 'max:255'], + 'name' => ['required', 'string', 'max:255'], 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], 'password' => ['required', 'string', 'min:6', 'confirmed'], ]); @@ -81,21 +84,21 @@ class AuthController extends Controller ]); // Create settings - $settings = UserSettings::create([ - 'user_id' => $user->id + UserSettings::forceCreate([ + 'user_id' => $user->id, + 'storage_capacity' => $settings['storage_default'], ]); - $response = Route::dispatch(self::make_request($request)); + $response = Route::dispatch(self::make_login_request($request)); if ($response->isSuccessful()) { $data = json_decode($response->content(), true); return response('Register Successfull!', 200)->cookie('access_token', $data['access_token'], 43200); - } else { - - return $response; } + + return $response; } /** @@ -106,7 +109,7 @@ class AuthController extends Controller public function logout() { // Demo preview - if (is_demo( Auth::id())) { + if (is_demo(Auth::id())) { return response('Logout successfull', 204) ->cookie('access_token', '', -1); } @@ -118,18 +121,17 @@ class AuthController extends Controller $token->delete(); }); - return response('Logout successfull', 204) + return response('Logout successful', 204) ->cookie('access_token', '', -1); } /** - * Make request for get user token + * Make login request for get access token * * @param Request $request - * @param string $provider * @return Request */ - private static function make_request($request) + private static function make_login_request($request) { $request->request->add([ 'grant_type' => 'password', diff --git a/app/Http/Controllers/FileAccessController.php b/app/Http/Controllers/FileAccessController.php index 100fdd28..2847d15f 100644 --- a/app/Http/Controllers/FileAccessController.php +++ b/app/Http/Controllers/FileAccessController.php @@ -36,6 +36,25 @@ class FileAccessController extends Controller return Storage::download($path, $basename); } + /** + * Get system image + * + * @param $basename + * @return mixed + * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException + */ + public function get_system_image($basename) + { + // Get file path + $path = '/system/' . $basename; + + // Check if file exist + if (!Storage::exists($path)) abort(404); + + // Return avatar + return Storage::download($path, $basename); + } + /** * Get file * @@ -206,12 +225,12 @@ class FileAccessController extends Controller private function thumbnail_file($file) { // Get file path - $path = '/file-manager/' . $file->getOriginal('thumbnail'); + $path = '/file-manager/' . $file->getRawOriginal('thumbnail'); // Check if file exist if (!Storage::exists($path)) abort(404); // Return image thumbnail - return Storage::download($path, $file->getOriginal('thumbnail')); + return Storage::download($path, $file->getRawOriginal('thumbnail')); } } diff --git a/app/Http/Controllers/FileFunctions/EditItemsController.php b/app/Http/Controllers/FileFunctions/EditItemsController.php index cc018293..6527dc51 100644 --- a/app/Http/Controllers/FileFunctions/EditItemsController.php +++ b/app/Http/Controllers/FileFunctions/EditItemsController.php @@ -258,11 +258,6 @@ class EditItemsController extends Controller return Demo::upload($request); } - // Check if user can upload - if (config('vuefilemanager.limit_storage_by_capacity') && user_storage_percentage() >= 100) { - abort(423, 'You exceed your storage limit!'); - } - // Check permission to upload for authenticated editor if ($request->user()->tokenCan('editor')) { diff --git a/app/Http/Controllers/FileFunctions/FavouriteController.php b/app/Http/Controllers/FileFunctions/FavouriteController.php index 3019ae16..90f9cb42 100644 --- a/app/Http/Controllers/FileFunctions/FavouriteController.php +++ b/app/Http/Controllers/FileFunctions/FavouriteController.php @@ -39,10 +39,10 @@ class FavouriteController extends Controller if ($folder->user_id !== $user->id) abort(403); // Add folder to user favourites - $user->favourites()->syncWithoutDetaching($request->unique_id); + $user->favourite_folders()->syncWithoutDetaching($request->unique_id); // Return updated favourites - return $user->favourites->makeHidden(['pivot']); + return $user->favourite_folders; } /** @@ -61,9 +61,9 @@ class FavouriteController extends Controller } // Remove folder from user favourites - $user->favourites()->detach($unique_id); + $user->favourite_folders()->detach($unique_id); // Return updated favourites - return $user->favourites->makeHidden(['pivot']); + return $user->favourite_folders; } } diff --git a/app/Http/Controllers/FileFunctions/TrashController.php b/app/Http/Controllers/FileFunctions/TrashController.php index 2ae35da0..2cd7c807 100644 --- a/app/Http/Controllers/FileFunctions/TrashController.php +++ b/app/Http/Controllers/FileFunctions/TrashController.php @@ -42,7 +42,7 @@ class TrashController extends Controller Storage::delete('/file-manager/' . $file->basename); // Delete thumbnail if exist - if ($file->thumbnail) Storage::delete('/file-manager/' . $file->getOriginal('thumbnail')); + if ($file->thumbnail) Storage::delete('/file-manager/' . $file->getRawOriginal('thumbnail')); // Delete file permanently $file->forceDelete(); diff --git a/app/Http/Controllers/General/PricingController.php b/app/Http/Controllers/General/PricingController.php new file mode 100644 index 00000000..b3034baf --- /dev/null +++ b/app/Http/Controllers/General/PricingController.php @@ -0,0 +1,48 @@ +stripe = $stripe; + } + + /** + * Get all active plans + * + * @return PricingCollection + */ + public function index() + { + if (Cache::has('pricing')) { + + // Get pricing from cache + $pricing = Cache::get('pricing'); + } else { + + // Store pricing to cache + $pricing = Cache::rememberForever('pricing', function () { + return $this->stripe->getActivePlans(); + }); + } + + // Format pricing to collection + $collection = new PricingCollection($pricing); + + // Sort and return pricing + return $collection->sortBy('product.metadata.capacity') + ->values() + ->all(); + } +} diff --git a/app/Http/Controllers/General/SetupWizardController.php b/app/Http/Controllers/General/SetupWizardController.php new file mode 100644 index 00000000..815f39d0 --- /dev/null +++ b/app/Http/Controllers/General/SetupWizardController.php @@ -0,0 +1,697 @@ +stripe = $stripe; + } + + /** + * Verify Envato purchase code + * + * @param Request $request + * @return ResponseFactory|\Illuminate\Http\Response|mixed + */ + public function verify_purchase_code(Request $request) + { + // Check setup status + if ($this->get_setup_status()) abort(410, 'Gone'); + + // Verify purchase code + $response = Http::get('https://verify.vuefilemanager.com/api/verify-code/' . $request->purchaseCode); + + if ($response->successful()) { + return $response; + } + + return response('Purchase code is invalid.', 400); + } + + /** + * Set up database credentials + * + * @param StoreDatabaseCredentialsRequest $request + * @return ResponseFactory|\Illuminate\Http\Response + */ + public function setup_database(StoreDatabaseCredentialsRequest $request) + { + // Check setup status + if ($this->get_setup_status()) abort(410, 'Gone'); + + try { + // Set temporary database connection + config(['database.connections.test.driver' => $request->connection]); + config(['database.connections.test.host' => $request->host]); + config(['database.connections.test.port' => $request->port]); + config(['database.connections.test.database' => $request->name]); + config(['database.connections.test.username' => $request->username]); + config(['database.connections.test.password' => $request->password]); + + // Test connection + \DB::connection('test')->getPdo(); + + } catch (PDOException $e) { + throw new HttpException(500, $e->getMessage()); + } + + $database_credentials = collect([ + [ + 'name' => 'DB_CONNECTION', + 'value' => $request->connection, + ], + [ + 'name' => 'DB_HOST', + 'value' => $request->host, + ], + [ + 'name' => 'DB_PORT', + 'value' => $request->port, + ], + [ + 'name' => 'DB_DATABASE', + 'value' => $request->name, + ], + [ + 'name' => 'DB_USERNAME', + 'value' => $request->username, + ], + [ + 'name' => 'DB_PASSWORD', + 'value' => $request->password, + ], + ]); + + // Store database credentials + $database_credentials->each(function ($col) { + setEnvironmentValue($col['name'], $col['value']); + }); + + // Clear cache + Artisan::call('config:cache'); + + // Set up application + $this->set_up_application(); + + // Store setup wizard progress + Setting::create([ + 'name' => 'setup_wizard_database', + 'value' => 1, + ]); + + return response('Done', 200); + } + + /** + * Store and test stripe credentials + * + * @param StoreStripeCredentialsRequest $request + * @return ResponseFactory|\Illuminate\Http\Response + */ + public function store_stripe_credentials(StoreStripeCredentialsRequest $request) + { + // Check setup status + if ($this->get_setup_status()) abort(410, 'Gone'); + + // Create stripe instance + $stripe = Stripe::make($request->secret, '2020-03-02'); + + // Try to get stripe account details + try { + $stripe->account()->details(); + } catch (UnauthorizedException $e) { + throw new HttpException(401, $e->getMessage()); + } + + // Get options + $settings = collect([ + [ + 'name' => 'stripe_currency', + 'value' => $request->currency, + ], + [ + 'name' => 'payments_configured', + 'value' => 1, + ], + [ + 'name' => 'payments_active', + 'value' => 1, + ], + ]); + + // Store options + $settings->each(function ($col) { + Setting::updateOrCreate(['name' => $col['name']], $col); + }); + + // Set stripe credentials to .env + setEnvironmentValue('CASHIER_CURRENCY', $request->currency); + setEnvironmentValue('STRIPE_KEY', $request->key); + setEnvironmentValue('STRIPE_SECRET', $request->secret); + setEnvironmentValue('STRIPE_WEBHOOK_SECRET', $request->webhookSecret); + + // Clear cache + Artisan::call('config:cache'); + + return response('Done', 200); + } + + /** + * Store Stripe billings + * + * @param StoreStripeBillingRequest $request + * @return ResponseFactory|\Illuminate\Http\Response + */ + public function store_stripe_billings(StoreStripeBillingRequest $request) + { + // Check setup status + if ($this->get_setup_status()) abort(410, 'Gone'); + + // Get options + $settings = collect([ + [ + 'name' => 'billing_phone_number', + 'value' => $request->billing_phone_number, + ], + [ + 'name' => 'billing_postal_code', + 'value' => $request->billing_postal_code, + ], + [ + 'name' => 'billing_vat_number', + 'value' => $request->billing_vat_number, + ], + [ + 'name' => 'billing_address', + 'value' => $request->billing_address, + ], + [ + 'name' => 'billing_country', + 'value' => $request->billing_country, + ], + [ + 'name' => 'billing_state', + 'value' => $request->billing_state, + ], + [ + 'name' => 'billing_city', + 'value' => $request->billing_city, + ], + [ + 'name' => 'billing_name', + 'value' => $request->billing_name, + ], + ]); + + // Store options + $settings->each(function ($col) { + Setting::updateOrCreate(['name' => $col['name']], $col); + }); + + // Clear cache + Artisan::call('config:cache'); + + return response('Done', 200); + } + + /** + * Create Stripe subscription plan + * + * @param StoreStripePlansRequest $request + */ + public function store_stripe_plans(StoreStripePlansRequest $request) + { + // Check setup status + if ($this->get_setup_status()) abort(410, 'Gone'); + + foreach ($request->input('plans') as $plan) { + $this->stripe->createPlan($plan); + } + } + + /** + * Store environment setup + * + * @param StoreEnvironmentSetupRequest $request + * @return string + */ + public function store_environment_setup(StoreEnvironmentSetupRequest $request) + { + // Check setup status + if ($this->get_setup_status()) abort(410, 'Gone'); + + $storage_driver = $request->input('storage.driver'); + + if ($storage_driver === 'local') { + + $storage = collect([ + [ + 'name' => 'FILESYSTEM_DRIVER', + 'value' => 'local', + ], + ]); + + } + + if ($storage_driver === 's3') { + + $storage = collect([ + [ + 'name' => 'FILESYSTEM_DRIVER', + 'value' => $request->input('storage.driver'), + ], + [ + 'name' => 'AWS_ACCESS_KEY_ID', + 'value' => $request->input('storage.key'), + ], + [ + 'name' => 'AWS_SECRET_ACCESS_KEY', + 'value' => $request->input('storage.secret'), + ], + [ + 'name' => 'AWS_DEFAULT_REGION', + 'value' => $request->input('storage.region'), + ], + [ + 'name' => 'AWS_BUCKET', + 'value' => $request->input('storage.bucket'), + ], + ]); + + } + + if ($storage_driver === 'spaces') { + + $storage = collect([ + [ + 'name' => 'FILESYSTEM_DRIVER', + 'value' => $request->input('storage.driver'), + ], + [ + 'name' => 'DO_SPACES_KEY', + 'value' => $request->input('storage.key'), + ], + [ + 'name' => 'DO_SPACES_SECRET', + 'value' => $request->input('storage.secret'), + ], + [ + 'name' => 'DO_SPACES_ENDPOINT', + 'value' => $request->input('storage.endpoint'), + ], + [ + 'name' => 'DO_SPACES_REGION', + 'value' => $request->input('storage.region'), + ], + [ + 'name' => 'DO_SPACES_BUCKET', + 'value' => $request->input('storage.bucket'), + ], + ]); + + } + + if ($storage_driver === 'wasabi') { + + $storage = collect([ + [ + 'name' => 'FILESYSTEM_DRIVER', + 'value' => $request->input('storage.driver'), + ], + [ + 'name' => 'WASABI_KEY', + 'value' => $request->input('storage.key'), + ], + [ + 'name' => 'WASABI_SECRET', + 'value' => $request->input('storage.secret'), + ], + [ + 'name' => 'WASABI_ENDPOINT', + 'value' => $request->input('storage.endpoint'), + ], + [ + 'name' => 'WASABI_REGION', + 'value' => $request->input('storage.region'), + ], + [ + 'name' => 'WASABI_BUCKET', + 'value' => $request->input('storage.bucket'), + ], + ]); + + } + + if ($storage_driver === 'backblaze') { + + $storage = collect([ + [ + 'name' => 'FILESYSTEM_DRIVER', + 'value' => $request->input('storage.driver'), + ], + [ + 'name' => 'BACKBLAZE_KEY', + 'value' => $request->input('storage.key'), + ], + [ + 'name' => 'BACKBLAZE_SECRET', + 'value' => $request->input('storage.secret'), + ], + [ + 'name' => 'BACKBLAZE_ENDPOINT', + 'value' => $request->input('storage.endpoint'), + ], + [ + 'name' => 'BACKBLAZE_REGION', + 'value' => $request->input('storage.region'), + ], + [ + 'name' => 'BACKBLAZE_BUCKET', + 'value' => $request->input('storage.bucket'), + ], + ]); + } + + // Store storage options + $storage->each(function ($col) { + setEnvironmentValue($col['name'], $col['value']); + }); + + // Get options + $mail = collect([ + [ + 'name' => 'MAIL_DRIVER', + 'value' => $request->input('mail.driver'), + ], + [ + 'name' => 'MAIL_HOST', + 'value' => $request->input('mail.host'), + ], + [ + 'name' => 'MAIL_PORT', + 'value' => $request->input('mail.port'), + ], + [ + 'name' => 'MAIL_USERNAME', + 'value' => $request->input('mail.username'), + ], + [ + 'name' => 'MAIL_PASSWORD', + 'value' => $request->input('mail.password'), + ], + [ + 'name' => 'MAIL_ENCRYPTION', + 'value' => $request->input('mail.encryption'), + ], + ]); + + // Store mail options + $mail->each(function ($col) { + setEnvironmentValue($col['name'], $col['value']); + }); + + // Clear cache + Artisan::call('config:cache'); + + return response('Done', 200); + } + + /** + * Store app settings + * @param StoreAppSetupRequest $request + * @return ResponseFactory|\Illuminate\Http\Response + */ + public function store_app_settings(StoreAppSetupRequest $request) + { + // Check setup status + if ($this->get_setup_status()) abort(410, 'Gone'); + + // Store Logo + if ($request->hasFile('logo')) { + $logo = store_system_image($request->file('logo'), 'system'); + } + + // Store Logo horizontal + if ($request->hasFile('logo_horizontal')) { + $logo_horizontal = store_system_image($request->file('logo_horizontal'), 'system'); + } + + // Store favicon + if ($request->hasFile('favicon')) { + $favicon = store_system_image($request->file('favicon'), 'system'); + } + + // Get options + $settings = collect([ + [ + 'name' => 'app_title', + 'value' => $request->title, + ], + [ + 'name' => 'app_description', + 'value' => $request->description, + ], + [ + 'name' => 'app_logo', + 'value' => $request->hasFile('logo') ? $logo : null, + ], + [ + 'name' => 'app_logo_horizontal', + 'value' => $request->hasFile('logo_horizontal') ? $logo_horizontal : null, + ], + [ + 'name' => 'app_favicon', + 'value' => $request->hasFile('favicon') ? $favicon : null, + ], + [ + 'name' => 'google_analytics', + 'value' => $request->googleAnalytics, + ], + [ + 'name' => 'contact_email', + 'value' => $request->contactMail, + ], + [ + 'name' => 'registration', + 'value' => $request->userRegistration, + ], + [ + 'name' => 'storage_limitation', + 'value' => $request->storageLimitation, + ], + [ + 'name' => 'storage_default', + 'value' => $request->defaultStorage ? $request->defaultStorage : 5, + ], + ]); + + // Store options + $settings->each(function ($col) { + Setting::updateOrCreate(['name' => $col['name']], $col); + }); + + return response('Done', 200); + } + + /** + * Create and login admin account + * + * @param Request $request + * @return ResponseFactory|\Illuminate\Http\Response|\Symfony\Component\HttpFoundation\Response + */ + public function create_admin_account(Request $request) + { + // Check setup status + if ($this->get_setup_status()) abort(410, 'Gone'); + + // Validate request + $request->validate([ + 'email' => 'required|string|email|unique:users', + 'password' => 'required|string|min:6|confirmed', + 'name' => 'required|string', + 'purchase_code' => 'required|string', + 'license' => 'required|string', + 'avatar' => 'sometimes|file', + ]); + + // Store avatar + if ($request->hasFile('avatar')) { + $avatar = store_avatar($request->file('avatar'), 'avatars'); + } + + // Create user + $user = User::forceCreate([ + 'avatar' => $request->hasFile('avatar') ? $avatar : null, + 'name' => $request->name, + 'role' => 'admin', + 'email' => $request->email, + 'password' => Hash::make($request->password), + ]); + + // Get default storage capacity + $storage_capacity = Setting::where('name', 'storage_default')->first(); + + // Create settings + UserSettings::forceCreate([ + 'user_id' => $user->id, + 'storage_capacity' => $storage_capacity->value, + ]); + + // Store setup wizard progress + Setting::updateOrCreate([ + 'name' => 'setup_wizard_success', + 'value' => 1, + ]); + + // Store License + Setting::updateOrCreate([ + 'name' => 'license', + 'value' => $request->license, + ]); + + // Store Purchase Code + Setting::updateOrCreate([ + 'name' => 'purchase_code', + 'value' => $request->purchase_code, + ]); + + // Create legal pages and index content + if ($request->license === 'Extended') { + + $pages = collect(config('vuefilemanager.pages')); + $content = collect(config('vuefilemanager.content')); + + $content->each(function ($content) { + Setting::updateOrCreate($content); + }); + + $pages->each(function ($page) { + Page::updateOrCreate($page); + }); + } + + // Retrieve access token + $response = Route::dispatch(self::make_login_request($request)); + + // Send access token to user if request is successful + if ($response->isSuccessful()) { + + $data = json_decode($response->content(), true); + + return response('Admin was created', 200)->cookie('access_token', $data['access_token'], 43200); + } + + return $response; + } + + /** + * Migrate database and generate necessary things + */ + private function set_up_application() + { + // Generate app key + Artisan::call('key:generate', [ + '--force' => true + ]); + + // Migrate database + Artisan::call('migrate:fresh', [ + '--force' => true + ]); + + // Create Passport Keys + Artisan::call('passport:keys', [ + '--force' => true + ]); + + // Create Password grant client + Artisan::call('passport:client', [ + '--password' => true, + '--name' => 'vuefilemanager', + ]); + + // Create Personal access client + Artisan::call('passport:client', [ + '--personal' => true, + '--name' => 'shared', + ]); + + // Get generated client + $client = \DB::table('oauth_clients')->where('name', '=', 'vuefilemanager')->first(); + + // Set passport client to .env + setEnvironmentValue('PASSPORT_CLIENT_ID', $client->id); + setEnvironmentValue('PASSPORT_CLIENT_SECRET', $client->secret); + } + + /** + * Make login request for get access token + * + * @param Request $request + * @return Request + */ + private static function make_login_request($request) + { + $request->request->add([ + 'grant_type' => 'password', + 'client_id' => config('services.passport.client_id'), + 'client_secret' => config('services.passport.client_secret'), + 'username' => $request->email, + 'password' => $request->password, + 'scope' => 'master', + ]); + + return Request::create(url('/oauth/token'), 'POST', $request->all()); + } + + /** + * Get setup wizard status + * + * @return |null + */ + private function get_setup_status() + { + try { + // Check database connections + DB::getPdo(); + + // Get setup_wizard status + return Schema::hasTable('settings') ? Setting::where('name', 'setup_wizard_success')->first() : false; + + } catch (PDOException $e) { + + return false; + } + } +} diff --git a/app/Http/Controllers/General/UpgradeAppController.php b/app/Http/Controllers/General/UpgradeAppController.php new file mode 100644 index 00000000..d5bea679 --- /dev/null +++ b/app/Http/Controllers/General/UpgradeAppController.php @@ -0,0 +1,126 @@ +first(); + + if ($upgraded && $upgraded->value === '1.7') abort(401); + + // Create legal pages and index content + if ($request->license === 'Extended') { + + $pages = collect(config('vuefilemanager.pages')); + $content = collect(config('vuefilemanager.content')); + + $content->each(function ($content) { + Setting::updateOrCreate($content); + }); + + $pages->each(function ($page) { + Page::updateOrCreate($page); + }); + } + + // Store Logo + if ($request->hasFile('logo')) { + $logo = store_system_image($request->file('logo'), 'system'); + } + + // Store Logo horizontal + if ($request->hasFile('logo_horizontal')) { + $logo_horizontal = store_system_image($request->file('logo_horizontal'), 'system'); + } + + // Store favicon + if ($request->hasFile('favicon')) { + $favicon = store_system_image($request->file('favicon'), 'system'); + } + + // Get options + $settings = collect([ + [ + 'name' => 'setup_wizard_database', + 'value' => 1, + ], + [ + 'name' => 'setup_wizard_success', + 'value' => 1, + ], + [ + 'name' => 'license', + 'value' => $request->license, + ], + [ + 'name' => 'purchase_code', + 'value' => $request->purchase_code, + ], + [ + 'name' => 'app_title', + 'value' => $request->title, + ], + [ + 'name' => 'app_description', + 'value' => $request->description, + ], + [ + 'name' => 'app_logo', + 'value' => $request->hasFile('logo') ? $logo : null, + ], + [ + 'name' => 'app_logo_horizontal', + 'value' => $request->hasFile('logo_horizontal') ? $logo_horizontal : null, + ], + [ + 'name' => 'app_favicon', + 'value' => $request->hasFile('favicon') ? $favicon : null, + ], + [ + 'name' => 'google_analytics', + 'value' => $request->googleAnalytics, + ], + [ + 'name' => 'contact_email', + 'value' => $request->contactMail, + ], + [ + 'name' => 'registration', + 'value' => $request->userRegistration, + ], + [ + 'name' => 'storage_limitation', + 'value' => $request->storageLimitation, + ], + [ + 'name' => 'storage_default', + 'value' => $request->defaultStorage ? $request->defaultStorage : 5, + ], + [ + 'name' => 'latest_upgrade', + 'value' => '1.7', + ], + ]); + + // Store options + $settings->each(function ($col) { + Setting::updateOrCreate(['name' => $col['name']], $col); + }); + + return response('Done', 200); + } +} diff --git a/app/Http/Controllers/SettingController.php b/app/Http/Controllers/SettingController.php new file mode 100644 index 00000000..65a33a3b --- /dev/null +++ b/app/Http/Controllers/SettingController.php @@ -0,0 +1,118 @@ +get('column'); + + if (strpos($column, '|') !== false) { + + $columns = explode('|', $column); + + return Setting::whereIn('name', $columns)->pluck('value', 'name'); + } + + return Setting::where('name', $column)->pluck('value', 'name'); + } + + /** + * Update the specified resource in storage. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\Response + */ + public function update(Request $request) + { + // Check if is demo + if (env('APP_DEMO')) { + return Demo::response_204(); + } + + // Store image if exist + if ($request->hasFile($request->name)) { + + // Store image + $image_path = store_system_image($request->file($request->name), 'system'); + + // Find and update image path + Setting::updateOrCreate(['name' => $request->name], [ + 'value' => $image_path + ]); + + return response('Done', 204); + } + + // Find and update variable + Setting::updateOrCreate(['name' => $request->name], [ + 'value' => $request->value + ]); + + return response('Done', 204); + } + + /** + * Set new email credentials to .env file + * + * @param Request $request + * @return \Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Http\Response + */ + public function set_email(Request $request) + { + // Check if is demo + if (env('APP_DEMO')) { + return Demo::response_204(); + } + + // Get options + $mail = collect([ + [ + 'name' => 'MAIL_DRIVER', + 'value' => $request->input('driver'), + ], + [ + 'name' => 'MAIL_HOST', + 'value' => $request->input('host'), + ], + [ + 'name' => 'MAIL_PORT', + 'value' => $request->input('port'), + ], + [ + 'name' => 'MAIL_USERNAME', + 'value' => $request->input('username'), + ], + [ + 'name' => 'MAIL_PASSWORD', + 'value' => $request->input('password'), + ], + [ + 'name' => 'MAIL_ENCRYPTION', + 'value' => $request->input('encryption'), + ], + ]); + + // Store mail options + $mail->each(function ($col) { + setEnvironmentValue($col['name'], $col['value']); + }); + + // Clear config cache + Artisan::call('config:clear'); + + return response('Done', 204); + } +} diff --git a/app/Http/Controllers/User/AccountController.php b/app/Http/Controllers/User/AccountController.php index 2e22d0dc..e4b2346d 100644 --- a/app/Http/Controllers/User/AccountController.php +++ b/app/Http/Controllers/User/AccountController.php @@ -4,7 +4,9 @@ namespace App\Http\Controllers\User; use App\FileManagerFile; use App\FileManagerFolder; +use App\Http\Resources\InvoiceCollection; use App\Http\Resources\StorageDetailResource; +use App\Http\Resources\UserResource; use App\Http\Resources\UserStorageResource; use App\Http\Tools\Demo; use Illuminate\Contracts\Routing\ResponseFactory; @@ -21,31 +23,13 @@ class AccountController extends Controller /** * Get all user data to frontend * - * @return array + * @return UserResource */ public function user() { - // Get User - $user = User::with(['favourites', 'latest_uploads']) - ->where('id', Auth::id()) - ->first(); - - // Get folder tree - $tree = FileManagerFolder::with(['folders.shared', 'shared:token,id,item_id,permission,protected']) - ->where('parent_id', 0) - ->where('user_id', $user->id) - ->get(); - - return [ - 'user' => $user->only(['name', 'email', 'avatar', 'role']), - 'favourites' => $user->favourites->makeHidden(['pivot']), - 'tree' => $tree, - 'storage' => [ - 'used' => Metric::bytes($user->used_capacity)->format(), - 'capacity' => format_gigabytes($user->settings->storage_capacity), - 'percentage' => get_storage_fill_percentage($user->used_capacity, $user->settings->storage_capacity), - ], - ]; + return new UserResource( + Auth::user() + ); } /** @@ -55,7 +39,20 @@ class AccountController extends Controller */ public function storage() { - return new UserStorageResource(Auth::user()); + return new UserStorageResource( + Auth::user() + ); + } + + /** + * Get user invoices + * + * @return InvoiceCollection + */ + public function invoices() { + return new InvoiceCollection( + Auth::user()->invoices() + ); } /** @@ -84,9 +81,6 @@ class AccountController extends Controller return Demo::response_204(); } - // Check role - if ($request->has('role')) abort(403); - // Update data if ($request->hasFile('avatar')) { @@ -105,6 +99,29 @@ class AccountController extends Controller return response('Saved!', 204); } + /** + * Update user settings relationship + * + * @param Request $request + * @return ResponseFactory|\Illuminate\Http\Response + */ + public function update_user_settings(Request $request) + { + // TODO: validation + // Get user + $user = Auth::user(); + + // Check if is demo + if (is_demo($user->id)) { + return Demo::response_204(); + } + + // Update text data + $user->settings->update(make_single_input($request)); + + return response('Saved!', 204); + } + /** * Change user password * diff --git a/app/Http/Controllers/User/PaymentMethodsController.php b/app/Http/Controllers/User/PaymentMethodsController.php new file mode 100644 index 00000000..d73481bd --- /dev/null +++ b/app/Http/Controllers/User/PaymentMethodsController.php @@ -0,0 +1,172 @@ +stripe = $stripe; + } + + /** + * Get user payment methods grouped by default and others + * + * @return array + */ + public function index() + { + $user = Auth::user(); + + if (!$user->hasPaymentMethod()) { + return abort(204, 'User don\'t have any payment methods'); + } + + $slug_payment_methods = 'payment-methods-user-' . $user->id; + $slug_default_payment_method = 'default-payment-methods-user-' . $user->id; + + if (Cache::has($slug_payment_methods) && Cache::has($slug_default_payment_method)) { + + $defaultPaymentMethod = Cache::get($slug_default_payment_method); + $paymentMethodsMapped = Cache::get($slug_payment_methods); + + } else { + + // Get default payment method + $defaultPaymentMethod = Cache::rememberForever($slug_default_payment_method, function () use ($user) { + + $defaultPaymentMethodObject = $user->defaultPaymentMethod(); + + return $defaultPaymentMethodObject instanceof PaymentMethod + ? $defaultPaymentMethodObject->asStripePaymentMethod() + : $defaultPaymentMethodObject; + }); + + // filter payment methods without default payment + $paymentMethodsMapped = Cache::rememberForever($slug_payment_methods, function () use ($defaultPaymentMethod, $user) { + + $paymentMethods = $user->paymentMethods()->filter(function ($paymentMethod) use ($defaultPaymentMethod) { + return $paymentMethod->id !== $defaultPaymentMethod->id; + }); + + // Get payment methods + return $paymentMethods->map(function ($paymentMethod) { + return $paymentMethod->asStripePaymentMethod(); + })->values()->all(); + }); + } + + if (!$user->card_brand || !$user->stripe_id || is_null($paymentMethodsMapped) && is_null($paymentMethodsMapped)) { + return [ + 'default' => null, + 'others' => [], + ]; + } + + return [ + 'default' => $defaultPaymentMethod instanceof PaymentMethod + ? new PaymentCardResource($defaultPaymentMethod) + : new PaymentDefaultCardResource($defaultPaymentMethod), + 'others' => new PaymentCardCollection($paymentMethodsMapped), + ]; + } + + /** + * Update default payment method + * + * @param Request $request + * @param $id + * @return \Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Http\Response + */ + public function update($id) + { + $user = Auth::user(); + + // Check if is demo + if (is_demo($user->id)) { + return Demo::response_204(); + } + + // Update DefaultPayment Method + $user->updateDefaultPaymentMethod($id); + + // Sync default payment method + $user->updateDefaultPaymentMethodFromStripe(); + + // Clear cached payment methods + cache_forget_many([ + 'payment-methods-user-' . $user->id, + 'default-payment-methods-user-' . $user->id + ]); + + return response('Done', 204); + } + + /** + * Register new payment method for user + * + * @param Request $request + * @return \Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Http\Response + */ + public function store(RegisterNewPaymentMethodRequest $request) + { + // Get user + $user = Auth::user(); + + // Check if is demo + if (is_demo($user->id)) { + return response('Done', 201); + } + + // Register new payment method + $this->stripe->registerNewPaymentMethod($request, $user); + + return response('Done', 201); + } + + /** + * Delete user payment method + * + */ + public function delete($id) + { + $user = Auth::user(); + + // Check if is demo + if (is_demo($user->id)) { + return Demo::response_204(); + } + + // Get payment method + $paymentMethod = $user->findPaymentMethod($id); + + // Delete payment method + $paymentMethod->delete(); + + // Sync default payment method + $user->updateDefaultPaymentMethodFromStripe(); + + // Clear cached payment methods + cache_forget_many([ + 'payment-methods-user-' . $user->id, + 'default-payment-methods-user-' . $user->id + ]); + + return response('Done!', 204); + } +} diff --git a/app/Http/Controllers/User/SubscriptionController.php b/app/Http/Controllers/User/SubscriptionController.php new file mode 100644 index 00000000..2c50a01c --- /dev/null +++ b/app/Http/Controllers/User/SubscriptionController.php @@ -0,0 +1,154 @@ +stripe = $stripe; + } + + /** + * Generate setup intent + * + * @return \Stripe\SetupIntent + */ + public function stripe_setup_intent() + { + $user = Auth::user(); + + return $this->stripe->getSetupIntent($user); + } + + /** + * Get user subscription detail + * + * @return array + */ + public function show() + { + $user = Auth::user(); + + if (! $user->subscription('main')) { + return abort(204, 'User don\'t have any subscription'); + } + + $slug_user_subscription = 'subscription-user-' . $user->id; + + if (Cache::has($slug_user_subscription)) { + return Cache::get($slug_user_subscription); + } + + return Cache::rememberForever($slug_user_subscription, function () { + return new UserSubscription( + Auth::user() + ); + }); + } + + /** + * Upgrade account to subscription + * + * @param StoreUpgradeAccountRequest $request + * @return ResponseFactory|\Illuminate\Http\Response + */ + public function upgrade(StoreUpgradeAccountRequest $request) + { + // Get user + $user = Auth::user(); + + // Check if is demo + if (is_demo($user->id)) { + return Demo::response_204(); + } + + // Forget user subscription + Cache::forget('subscription-user-' . $user->id); + + // Get requested plan + $plan = $this->stripe->getPlan($request->input('plan.data.id')); + + // Set user billing + $user->setBilling($request->input('billing')); + + // Update stripe customer billing info + $this->stripe->updateCustomerDetails($user); + + // Make subscription + $this->stripe->createOrReplaceSubscription($request, $user); + + // Update user storage limit + $user->settings()->update([ + 'storage_capacity' => $plan['product']['metadata']['capacity'] + ]); + + return response('Done!', 204); + } + + /** + * Cancel Subscription + * + * @return ResponseFactory|\Illuminate\Http\Response + */ + public function cancel() + { + $user = Auth::user(); + + // Check if is demo + if (is_demo($user->id)) { + return Demo::response_204(); + } + + // Cancel subscription + $user->subscription('main')->cancel(); + + // Forget user subscription + Cache::forget('subscription-user-' . $user->id); + + return response('Done!', 204); + } + + /** + * Resume Subscription + * + * @return ResponseFactory|\Illuminate\Http\Response + */ + public function resume() + { + $user = Auth::user(); + + // Check if is demo + if (is_demo($user->id)) { + return Demo::response_204(); + } + + // Resume subscription + $user->subscription('main')->resume(); + + // Forget user subscription + Cache::forget('subscription-user-' . $user->id); + + return response('Done!', 204); + } +} diff --git a/app/Http/Controllers/WebhookController.php b/app/Http/Controllers/WebhookController.php new file mode 100644 index 00000000..05aef00f --- /dev/null +++ b/app/Http/Controllers/WebhookController.php @@ -0,0 +1,68 @@ +stripe = $stripe; + } + + /** + * Handle a cancelled customer from a Stripe subscription. + * + * @param array $payload + * @return \Symfony\Component\HttpFoundation\Response + */ + public function handleCustomerSubscriptionDeleted($payload) + { + if ($user = $this->getUserByStripeId($payload['data']['object']['customer'])) { + $user->subscriptions->filter(function ($subscription) use ($payload) { + return $subscription->stripe_id === $payload['data']['object']['id']; + })->each(function ($subscription) { + $subscription->markAsCancelled(); + }); + } + + // Get user + $user = User::where('stripe_id', $payload['data']['object']['customer'])->firstOrFail(); + + // Get default storage capacity + $default_storage = Setting::where('name', 'storage_default')->first(); + + // Update storage capacity + $user->settings()->update(['storage_capacity' => $default_storage->value]); + + return $this->successMethod(); + } + + /** + * Handle Invoice Payment Succeeded + * + * @param $payload + * @return \Symfony\Component\HttpFoundation\Response + */ + public function handleInvoicePaymentSucceeded($payload) + { + // Get user + $user = User::where('stripe_id', $payload['data']['object']['customer'])->firstOrFail(); + + // Get requested plan + $plan = $this->stripe->getPlan($user->subscription('main')->stripe_plan); + + // Update user storage limit + $user->settings()->update([ + 'storage_capacity' => $plan['product']['metadata']['capacity'] + ]); + + return $this->successMethod(); + } +} diff --git a/app/Http/helpers.php b/app/Http/Helpers/helpers.php similarity index 56% rename from app/Http/helpers.php rename to app/Http/Helpers/helpers.php index b39bf56e..2ac980fb 100644 --- a/app/Http/helpers.php +++ b/app/Http/Helpers/helpers.php @@ -2,21 +2,141 @@ use App\FileManagerFile; use App\FileManagerFolder; +use App\Setting; use App\Share; use ByteUnits\Metric; use Carbon\Carbon; use Illuminate\Database\Eloquent\Model; -use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Storage; use Illuminate\Support\Str; use Intervention\Image\ImageManagerStatic as Image; +/** + * Obfuscate email + * + * @param $email + * @return string + */ +function obfuscate_email($email) +{ + $em = explode("@",$email); + $name = implode('@', array_slice($em, 0, count($em)-1)); + $len = floor(strlen($name)/2); + + return substr($name,0, $len) . str_repeat('*', $len) . "@" . end($em); +} + +/** + * Get single value from settings table + * + * @param $setting + * @return |null + */ +function get_setting($setting) +{ + $row = Setting::where('name', $setting)->first(); + + return $row ? $row->value : null; +} + +/** + * Create paragraph from text + * + * @param $str + * @return mixed|null|string|string[] + */ +function add_paragraphs($str) +{ + // Trim whitespace + if (($str = trim($str)) === '') return ''; + + // Standardize newlines + $str = str_replace(array("\r\n", "\r"), "\n", $str); + + // Trim whitespace on each line + $str = preg_replace('~^[ \t]+~m', '', $str); + $str = preg_replace('~[ \t]+$~m', '', $str); + + // The following regexes only need to be executed if the string contains html + if ($html_found = (strpos($str, '<') !== FALSE)) { + // Elements that should not be surrounded by p tags + $no_p = '(?:p|div|article|header|aside|hgroup|canvas|output|progress|section|figcaption|audio|video|nav|figure|footer|video|details|main|menu|summary|h[1-6r]|ul|ol|li|blockquote|d[dlt]|pre|t[dhr]|t(?:able|body|foot|head)|c(?:aption|olgroup)|form|s(?:elect|tyle)|a(?:ddress|rea)|ma(?:p|th))'; + + // Put at least two linebreaks before and after $no_p elements + $str = preg_replace('~^<' . $no_p . '[^>]*+>~im', "\n$0", $str); + $str = preg_replace('~$~im', "$0\n", $str); + } + + // Do the

magic! + $str = '

' . trim($str) . '

'; + $str = preg_replace('~\n{2,}~', "

\n\n

", $str); + + // The following regexes only need to be executed if the string contains html + if ($html_found !== FALSE) { + // Remove p tags around $no_p elements + $str = preg_replace('~

(?=]*+>)~i', '', $str); + $str = preg_replace('~(]*+>)

~i', '$1', $str); + } + + // Convert single linebreaks to
+ $str = preg_replace('~(?\n", $str); + + return $str; +} + +/** + * Set environment value + * + * @param $key + * @param $value + */ +function setEnvironmentValue($key, $value) +{ + $env_path = app()->environmentFilePath(); + + $escaped = preg_quote('=' . env($key), '/'); + + file_put_contents($env_path, preg_replace( + "/^{$key}{$escaped}/m", + $key . '=' . $value, + file_get_contents($env_path) + )); +} + +/** + * Get invoice number + * + * @return string + */ +function get_invoice_number() +{ + $invoices = \App\Invoice::all(); + + if ($invoices->isEmpty()) { + return Carbon::now()->year . '001'; + } else { + return (int)$invoices->last()->order + 1; + } +} + +/** + * Forget many cache keys at once + * @param $cache + */ +function cache_forget_many($cache) +{ + foreach ($cache as $item) { + \Illuminate\Support\Facades\Cache::forget($item); + } +} + /** * Get app version from config * * @return \Illuminate\Config\Repository|mixed */ -function get_storage() { +function get_storage() +{ return env('FILESYSTEM_DRIVER'); } @@ -25,13 +145,13 @@ function get_storage() { * * @return bool */ -function is_storage_driver($driver) { - +function is_storage_driver($driver) +{ if (is_array($driver)) { - return in_array(env('FILESYSTEM_DRIVER'), $driver); + return in_array(config('filesystem.default'), $driver); } - return env('FILESYSTEM_DRIVER') === $driver; + return config('filesystem.default') === $driver; } /** @@ -39,7 +159,8 @@ function is_storage_driver($driver) { * * @return \Illuminate\Config\Repository|mixed */ -function get_version() { +function get_version() +{ return config('vuefilemanager.version'); } @@ -48,8 +169,8 @@ function get_version() { * * @return mixed */ -function is_demo($user_id) { - +function is_demo($user_id) +{ return env('APP_DEMO', false) && $user_id === 1; } @@ -61,7 +182,8 @@ function is_demo($user_id) { * @param $user_id * @return \Illuminate\Database\Eloquent\Builder|Model */ -function get_item($type, $unique_id, $user_id) { +function get_item($type, $unique_id, $user_id) +{ if ($type === 'folder') { @@ -83,7 +205,8 @@ function get_item($type, $unique_id, $user_id) { * @param $token * @return \Illuminate\Database\Eloquent\Builder|Model */ -function get_shared($token) { +function get_shared($token) +{ return Share::where(DB::raw('BINARY `token`'), $token) ->firstOrFail(); @@ -95,7 +218,8 @@ function get_shared($token) { * @param $shared * @return bool */ -function is_editor($shared) { +function is_editor($shared) +{ return $shared->permission === 'editor'; } @@ -149,6 +273,28 @@ function store_avatar($image, $path) return $path . '/' . $image_path; } +/** + * Store system image + * + * @param $image + * @param $path + * @return string + */ +function store_system_image($image, $path) +{ + // Get directory + $path = check_directory($path); + + // Store avatar + $image_path = Str::random(8) . '-' . str_replace(' ', '', $image->getClientOriginalName()); + + // Store image to disk + Storage::putFileAs($path, $image, $image_path); + + // Return path to image + return $path . '/' . $image_path; +} + /** * Check if directory exist, if no, then create it * @@ -190,7 +336,11 @@ function make_single_input($request) */ function format_gigabytes($gigabytes) { - return Metric::gigabytes($gigabytes)->format(); + if ($gigabytes >= 1000) { + return Metric::gigabytes($gigabytes)->format('Tb/'); + } else { + return Metric::gigabytes($gigabytes)->format('GB/'); + } } /** @@ -213,15 +363,21 @@ function get_storage_fill_percentage($used, $capacity) } /** - * Get user capacity fill percentage + * Get user capacity fill by percentage * * @return string */ -function user_storage_percentage() +function user_storage_percentage($id, $additionals = null) { - $user = Auth::user(); + $user = \App\User::findOrFail($id); - return get_storage_fill_percentage($user->used_capacity, $user->settings->storage_capacity); + $used = $user->used_capacity; + + if ($additionals) { + $used = $user->used_capacity + $additionals; + } + + return get_storage_fill_percentage($used, $user->settings->storage_capacity); } /** diff --git a/app/Http/Helpers/subscription.php b/app/Http/Helpers/subscription.php new file mode 100644 index 00000000..62b31d41 --- /dev/null +++ b/app/Http/Helpers/subscription.php @@ -0,0 +1,23 @@ +all(); + + $unsubscribed = $plans->filter(function ($item) use ($plan) { + return $item->id !== $plan->id; + }); + + $capacities = $unsubscribed->map(function ($item) { + return $item->features->first()->value; + }); + + return max(Arr::flatten($capacities)) < $plan->features->first()->value ? 1 : 0; +} diff --git a/app/Http/Mail/SendSupportForm.php b/app/Http/Mail/SendSupportForm.php new file mode 100644 index 00000000..889f8a9b --- /dev/null +++ b/app/Http/Mail/SendSupportForm.php @@ -0,0 +1,40 @@ +request = $request; + } + + /** + * Build the message. + * + * @return $this + */ + public function build() + { + $from = config('mail.from')['address']; + + return $this->from($from) + ->replyTo($this->request['email']) + ->subject('New Contact Message from ' . $this->request['email']) + ->view('mails.contact-message') + ->with('request', $this->request); + } +} diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php index c30df162..288ff6d5 100644 --- a/app/Http/Middleware/VerifyCsrfToken.php +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -20,5 +20,6 @@ class VerifyCsrfToken extends Middleware */ protected $except = [ '/deploy', + '/stripe/*', ]; } diff --git a/app/Http/Notifications/ConfirmPayment.php b/app/Http/Notifications/ConfirmPayment.php new file mode 100644 index 00000000..cd1be734 --- /dev/null +++ b/app/Http/Notifications/ConfirmPayment.php @@ -0,0 +1,68 @@ +paymentId = $payment->id; + $this->amount = $payment->amount(); + } + + /** + * Get the notification's delivery channels. + * + * @param mixed $notifiable + * @return array + */ + public function via($notifiable) + { + return ['mail']; + } + + /** + * Get the mail representation of the notification. + * + * @param mixed $notifiable + * @return \Illuminate\Notifications\Messages\MailMessage + */ + public function toMail($notifiable) + { + $url = route('cashier.payment', ['id' => $this->paymentId]); + + return (new MailMessage) + ->subject(__('cashier.confirm_payment')) + ->greeting(__('cashier.confirm_amount', ['amount' => $this->amount])) + ->line(__('cashier.confirm_description')) + ->action(__('cashier.confirm_button'), $url); + } +} diff --git a/app/Http/Requests/Payments/RegisterNewPaymentMethodRequest.php b/app/Http/Requests/Payments/RegisterNewPaymentMethodRequest.php new file mode 100644 index 00000000..ea8bccb4 --- /dev/null +++ b/app/Http/Requests/Payments/RegisterNewPaymentMethodRequest.php @@ -0,0 +1,31 @@ + 'required|string', + 'default' => 'required|boolean' + ]; + } +} diff --git a/app/Http/Requests/PublicPages/SendMessageRequest.php b/app/Http/Requests/PublicPages/SendMessageRequest.php new file mode 100644 index 00000000..1aafebf6 --- /dev/null +++ b/app/Http/Requests/PublicPages/SendMessageRequest.php @@ -0,0 +1,31 @@ + 'required|email', + 'message' => 'required|string', + ]; + } +} diff --git a/app/Http/Requests/SetupWizard/StoreAppSetupRequest.php b/app/Http/Requests/SetupWizard/StoreAppSetupRequest.php new file mode 100644 index 00000000..02e9c1d2 --- /dev/null +++ b/app/Http/Requests/SetupWizard/StoreAppSetupRequest.php @@ -0,0 +1,38 @@ + 'required|string', + 'description' => 'required|string', + 'logo' => 'sometimes|file', + 'favicon' => 'sometimes|file', + 'contactMail' => 'required|email', + 'googleAnalytics' => 'sometimes|string', + 'defaultStorage' => 'sometimes|digits_between:1,9', + 'userRegistration' => 'required|boolean', + 'storageLimitation' => 'required|boolean', + ]; + } +} diff --git a/app/Http/Requests/SetupWizard/StoreDatabaseCredentialsRequest.php b/app/Http/Requests/SetupWizard/StoreDatabaseCredentialsRequest.php new file mode 100644 index 00000000..c81fd16e --- /dev/null +++ b/app/Http/Requests/SetupWizard/StoreDatabaseCredentialsRequest.php @@ -0,0 +1,35 @@ + 'required|string', + 'host' => 'required|string', + 'port' => 'required|string', + 'name' => 'required|string', + 'username' => 'required|string', + 'password' => 'required|string', + ]; + } +} diff --git a/app/Http/Requests/SetupWizard/StoreEnvironmentSetupRequest.php b/app/Http/Requests/SetupWizard/StoreEnvironmentSetupRequest.php new file mode 100644 index 00000000..5834d31d --- /dev/null +++ b/app/Http/Requests/SetupWizard/StoreEnvironmentSetupRequest.php @@ -0,0 +1,43 @@ + 'required|array', + 'storage.driver' => 'required|string', + 'storage.key' => 'sometimes|nullable|string', + 'storage.secret' => 'sometimes|nullable|string', + 'storage.endpoint' => 'sometimes|nullable|string', + 'storage.region' => 'sometimes|nullable|string', + 'storage.bucket' => 'sometimes|nullable|string', + 'mail' => 'required|array', + 'mail.driver' => 'required|string', + 'mail.host' => 'required|string', + 'mail.port' => 'required|string', + 'mail.username' => 'required|string', + 'mail.password' => 'required|string', + 'mail.encryption' => 'required|string', + ]; + } +} diff --git a/app/Http/Requests/SetupWizard/StoreStripeBillingRequest.php b/app/Http/Requests/SetupWizard/StoreStripeBillingRequest.php new file mode 100644 index 00000000..3b825a9f --- /dev/null +++ b/app/Http/Requests/SetupWizard/StoreStripeBillingRequest.php @@ -0,0 +1,37 @@ + 'sometimes|nullable|string', + 'billing_postal_code' => 'required|string', + 'billing_vat_number' => 'required|string', + 'billing_address' => 'required|string', + 'billing_country' => 'required|string', + 'billing_state' => 'required|string', + 'billing_city' => 'required|string', + 'billing_name' => 'required|string', + ]; + } +} diff --git a/app/Http/Requests/SetupWizard/StoreStripeCredentialsRequest.php b/app/Http/Requests/SetupWizard/StoreStripeCredentialsRequest.php new file mode 100644 index 00000000..e6f81a88 --- /dev/null +++ b/app/Http/Requests/SetupWizard/StoreStripeCredentialsRequest.php @@ -0,0 +1,33 @@ + 'required|string', + 'webhookSecret' => 'required|string', + 'secret' => 'required|string', + 'key' => 'required|string', + ]; + } +} diff --git a/app/Http/Requests/SetupWizard/StoreStripePlansRequest.php b/app/Http/Requests/SetupWizard/StoreStripePlansRequest.php new file mode 100644 index 00000000..5543fb35 --- /dev/null +++ b/app/Http/Requests/SetupWizard/StoreStripePlansRequest.php @@ -0,0 +1,35 @@ + 'required|array', + 'plans.*.type' => 'required|string', + 'plans.*.attributes.name' => 'required|string', + 'plans.*.attributes.price' => 'required|string', + 'plans.*.attributes.description' => 'sometimes|nullable|string', + 'plans.*.attributes.capacity' => 'required|digits_between:1,9', + ]; + } +} diff --git a/app/Http/Requests/Subscription/StoreUpgradeAccountRequest.php b/app/Http/Requests/Subscription/StoreUpgradeAccountRequest.php new file mode 100644 index 00000000..1ce25905 --- /dev/null +++ b/app/Http/Requests/Subscription/StoreUpgradeAccountRequest.php @@ -0,0 +1,56 @@ + 'required|array', + 'billing.billing_address' => 'required|string', + 'billing.billing_city' => 'required|string', + 'billing.billing_country' => 'required|string', + 'billing.billing_name' => 'required|string', + 'billing.billing_phone_number' => 'required|string', + 'billing.billing_postal_code' => 'required|string', + 'billing.billing_state' => 'required|string', + + // Payment + 'payment' => 'required|array', + 'payment.type' => 'required|string', + 'payment.meta' => 'required|sometimes|array', + 'payment.meta.pm' => 'required|sometimes|string', + + // Plan + 'plan.data' => 'required|array', + 'plan.data.attributes' => 'required|array', + 'plan.data.attributes.capacity' => 'required|digits_between:1,9', + 'plan.data.attributes.capacity_formatted' => 'required|string', + 'plan.data.attributes.currency' => 'required|string', + 'plan.data.attributes.description' => 'required|string', + 'plan.data.attributes.name' => 'required|string', + 'plan.data.attributes.price' => 'required|string', + 'plan.data.id' => 'required|string', + 'plan.data.type' => 'required|string', + ]; + } +} diff --git a/app/Http/Resources/GatewayCollection.php b/app/Http/Resources/GatewayCollection.php new file mode 100644 index 00000000..7944bcf1 --- /dev/null +++ b/app/Http/Resources/GatewayCollection.php @@ -0,0 +1,23 @@ + $this->collection, + ]; + } +} diff --git a/app/Http/Resources/GatewayResource.php b/app/Http/Resources/GatewayResource.php new file mode 100644 index 00000000..8c7a02fc --- /dev/null +++ b/app/Http/Resources/GatewayResource.php @@ -0,0 +1,36 @@ + [ + 'id' => (string)$this->id, + 'type' => 'gateways', + 'attributes' => [ + 'status' => $this->status, + 'sandbox' => $this->sandbox, + 'name' => $this->name, + 'slug' => $this->slug, + 'logo' => $this->logo, + 'client_id' => $this->client_id, + 'secret' => $this->secret, + 'webhook' => $this->webhook, + 'payment_processed' => $this->payment_processed, + 'optional' => $this->optional, + ] + ] + ]; + } +} diff --git a/app/Http/Resources/InvoiceAdminCollection.php b/app/Http/Resources/InvoiceAdminCollection.php new file mode 100644 index 00000000..e461720d --- /dev/null +++ b/app/Http/Resources/InvoiceAdminCollection.php @@ -0,0 +1,23 @@ + $this->collection, + ]; + } +} diff --git a/app/Http/Resources/InvoiceAdminResource.php b/app/Http/Resources/InvoiceAdminResource.php new file mode 100644 index 00000000..3ddb775e --- /dev/null +++ b/app/Http/Resources/InvoiceAdminResource.php @@ -0,0 +1,65 @@ +first(); + + return [ + 'data' => [ + 'id' => $this['id'], + 'type' => 'invoices', + 'attributes' => [ + 'customer' => $this['customer'], + 'total' => Cashier::formatAmount($this['total']), + 'currency' => $this['currency'], + 'created_at_formatted' => format_date($this['created']), + 'created_at' => $this['created'], + 'order' => $this['number'], + 'user_id' => $user ? $user->id : null, + 'client' => [ + 'billing_address' => $this['customer_address'], + 'billing_name' => $this['customer_name'], + 'billing_phone_number' => $this['customer_phone'], + ], + 'bag' => [ + 'amount' => $this['lines']['data'][0]['amount'], + 'currency' => $this['lines']['data'][0]['currency'], + 'type' => $this['lines']['data'][0]['type'], + 'description' => $this['lines']['data'][0]['description'], + ], + 'seller' => null, + ] + ], + $this->mergeWhen($user, function () use ($user) { + return [ + 'relationships' => [ + 'user' => [ + 'data' => [ + 'id' => (string)$user->id, + 'type' => 'user', + 'attributes' => [ + 'name' => $user->name, + 'avatar' => $user->avatar, + ] + ] + ] + ] + ]; + }), + ]; + } +} diff --git a/app/Http/Resources/InvoiceCollection.php b/app/Http/Resources/InvoiceCollection.php new file mode 100644 index 00000000..947c39a0 --- /dev/null +++ b/app/Http/Resources/InvoiceCollection.php @@ -0,0 +1,23 @@ + $this->collection, + ]; + } +} diff --git a/app/Http/Resources/InvoiceResource.php b/app/Http/Resources/InvoiceResource.php new file mode 100644 index 00000000..2856d3d5 --- /dev/null +++ b/app/Http/Resources/InvoiceResource.php @@ -0,0 +1,80 @@ +customer)->first(); + $invoice_items = []; + $invoice_subscriptions = []; + + // Format bag + foreach ($this->invoiceItems() as $item) { + array_push($invoice_items, [ + 'amount' => $item->total(), + 'description' => $item->description, + 'currency' => $item->currency, + 'type' => $item->type, + ]); + } + + // Format bag + foreach ($this->subscriptions() as $item) { + array_push($invoice_subscriptions, [ + 'amount' => $item->total(), + 'description' => $item->description, + 'currency' => $item->currency, + 'type' => $item->type, + ]); + } + + return [ + 'data' => [ + 'id' => $this->id, + 'type' => 'invoices', + 'attributes' => [ + 'customer' => $this->customer, + 'total' => $this->total(), + 'currency' => $this->currency, + 'created_at_formatted' => format_date($this->date(), '%d. %B. %Y'), + 'created_at' => $this->created, + 'order' => $this->number, + 'user_id' => $user ? $user->id : null, + 'client' => [ + 'billing_address' => $this->customer_address, + 'billing_name' => $this->customer_name, + 'billing_phone_number' => $this->customer_phone, + ], + 'seller' => null, + 'invoice_items' => $invoice_items, + 'invoice_subscriptions' => $invoice_subscriptions, + ] + ], + $this->mergeWhen($user, [ + 'relationships' => [ + 'user' => [ + 'data' => [ + 'id' => (string)$user->id, + 'type' => 'user', + 'attributes' => [ + 'name' => $user->name, + 'avatar' => $user->avatar, + ] + ] + ] + ] + ]), + ]; + } +} diff --git a/app/Http/Resources/PageCollection.php b/app/Http/Resources/PageCollection.php new file mode 100644 index 00000000..9d693b0f --- /dev/null +++ b/app/Http/Resources/PageCollection.php @@ -0,0 +1,23 @@ + $this->collection, + ]; + } +} diff --git a/app/Http/Resources/PageResource.php b/app/Http/Resources/PageResource.php new file mode 100644 index 00000000..966dbf6f --- /dev/null +++ b/app/Http/Resources/PageResource.php @@ -0,0 +1,31 @@ + [ + 'id' => $this->id, + 'type' => 'pages', + 'attributes' => [ + 'visibility' => $this->visibility, + 'title' => $this->title, + 'slug' => $this->slug, + 'content' => $this->content, + 'content_formatted' => add_paragraphs($this->content), + ] + ], + ]; + } +} diff --git a/app/Http/Resources/PaymentCardCollection.php b/app/Http/Resources/PaymentCardCollection.php new file mode 100644 index 00000000..96cb6cc8 --- /dev/null +++ b/app/Http/Resources/PaymentCardCollection.php @@ -0,0 +1,23 @@ + $this->collection, + ]; + } +} diff --git a/app/Http/Resources/PaymentCardResource.php b/app/Http/Resources/PaymentCardResource.php new file mode 100644 index 00000000..ccb9c8b7 --- /dev/null +++ b/app/Http/Resources/PaymentCardResource.php @@ -0,0 +1,35 @@ + [ + 'id' => (string)$this['id'], + 'type' => 'payment_method', + 'attributes' => [ + 'provider' => 'stripe', + 'card_id' => $this['id'], + 'brand' => strtolower($this['card']['brand']), + 'last4' => $this['card']['last4'], + 'exp_month' => $this['card']['exp_month'], + 'exp_year' => $this['card']['exp_year'], + 'created_at' => format_date($this['created_at'], '%d. %B. %Y'), + 'status' => 'active', + 'default' => 0, + ] + ] + ]; + } +} diff --git a/app/Http/Resources/PaymentDefaultCardResource.php b/app/Http/Resources/PaymentDefaultCardResource.php new file mode 100644 index 00000000..3c102cbc --- /dev/null +++ b/app/Http/Resources/PaymentDefaultCardResource.php @@ -0,0 +1,35 @@ + [ + 'id' => (string)$this['id'], + 'type' => 'payment_method', + 'attributes' => [ + 'provider' => 'stripe', + 'card_id' => $this['id'], + 'brand' => isset($this['brand']) ? strtolower($this['brand']) : strtolower($this['card']['brand']), + 'last4' => isset($this['last4']) ? $this['last4'] : $this['card']['last4'], + 'exp_month' => isset($this['exp_month']) ? $this['exp_month'] : $this['card']['exp_month'], + 'exp_year' => isset($this['exp_year']) ? $this['exp_year'] : $this['card']['exp_year'], + 'created_at' => format_date($this['created_at'], '%d. %B. %Y'), + 'status' => 'active', + 'default' => 0, + ] + ] + ]; + } +} diff --git a/app/Http/Resources/PlanCollection.php b/app/Http/Resources/PlanCollection.php new file mode 100644 index 00000000..322ca842 --- /dev/null +++ b/app/Http/Resources/PlanCollection.php @@ -0,0 +1,23 @@ + $this->collection, + ]; + } +} diff --git a/app/Http/Resources/PlanResource.php b/app/Http/Resources/PlanResource.php new file mode 100644 index 00000000..eb041cdd --- /dev/null +++ b/app/Http/Resources/PlanResource.php @@ -0,0 +1,41 @@ +where('stripe_status', 'active')->get(); + + return [ + 'data' => [ + 'id' => $this['plan']['id'], + 'type' => 'plans', + 'attributes' => [ + 'subscribers' => $subscriber_count->count(), + 'status' => $this['plan']['active'] ? 1 : 0, + 'name' => $this['product']['name'], + 'description' => $this['product']['description'], + 'price' => $this['plan']['amount'], + 'price_formatted' => Cashier::formatAmount($this['plan']['amount']), + 'capacity_formatted' => format_gigabytes($this['product']['metadata']['capacity']), + 'capacity' => (int) $this['product']['metadata']['capacity'], + 'created_at_formatted' => format_date($this['plan']['created']), + 'created_at' => $this['plan']['created'], + ] + ] + ]; + } +} diff --git a/app/Http/Resources/PricingCollection.php b/app/Http/Resources/PricingCollection.php new file mode 100644 index 00000000..41f9c862 --- /dev/null +++ b/app/Http/Resources/PricingCollection.php @@ -0,0 +1,23 @@ + $this->collection, + ]; + } +} diff --git a/app/Http/Resources/PricingResource.php b/app/Http/Resources/PricingResource.php new file mode 100644 index 00000000..c5aea6b8 --- /dev/null +++ b/app/Http/Resources/PricingResource.php @@ -0,0 +1,68 @@ + [ + 'id' => $this['plan']['id'], + 'type' => 'plans', + 'attributes' => [ + 'name' => $this['product']['name'], + 'description' => $this['product']['description'], + 'price' => Cashier::formatAmount($this['plan']['amount']), + 'capacity_formatted' => format_gigabytes($this['product']['metadata']['capacity']), + 'capacity' => (int)$this['product']['metadata']['capacity'], + 'currency' => config('cashier.currency'), + 'tax_rates' => $this->get_tax_rates(), + ] + ] + ]; + } + + /** + * Get plan tax rates + * + * @return array + */ + private function get_tax_rates(): array + { + $stripe = resolve('App\Services\StripeService'); + + $rates_puplic = []; + + // Get tax rates + $rates = $stripe->getTaxRates(); + + foreach ($rates as $rate) { + + // Continue when is not active + if (!$rate['active']) continue; + + // Calculate tax + $tax = $this['plan']['amount'] * ($rate['percentage'] / 100); + + array_push($rates_puplic, [ + 'id' => $rate['id'], + 'active' => $rate['active'], + 'jurisdiction' => $rate['jurisdiction'], + 'percentage' => $rate['percentage'], + 'plan_price_formatted' => Cashier::formatAmount(round($this['plan']['amount'] + $tax)), + ]); + } + + return $rates_puplic; + } +} diff --git a/app/Http/Resources/UserResource.php b/app/Http/Resources/UserResource.php index 68161c0b..865d287c 100644 --- a/app/Http/Resources/UserResource.php +++ b/app/Http/Resources/UserResource.php @@ -2,6 +2,9 @@ namespace App\Http\Resources; +use App\Services\StripeService; +use App\User; +use Cartalyst\Stripe\Api\PaymentMethods; use Faker\Factory; use Illuminate\Http\Resources\Json\JsonResource; @@ -15,22 +18,64 @@ class UserResource extends JsonResource */ public function toArray($request) { - // Faker only for demo purpose - $faker = Factory::create(); - return [ - 'data' => [ + 'data' => [ 'id' => (string)$this->id, 'type' => 'user', 'attributes' => [ - 'name' => env('APP_DEMO') ? $faker->name : $this->name, - 'email' => env('APP_DEMO') ? $faker->email : $this->email, - 'avatar' => $this->avatar, - 'role' => $this->role, - 'storage' => $this->storage, - 'created_at_formatted' => format_date($this->created_at, '%d. %B. %Y'), - 'created_at' => $this->created_at, - 'updated_at' => $this->updated_at, + 'storage_capacity' => $this->settings->storage_capacity, + 'subscription' => $this->subscribed('main'), + 'incomplete_payment' => $this->hasIncompletePayment('main') ? route('cashier.payment', $this->subscription('main')->latestPayment()->id) : null, + 'stripe_customer' => is_null($this->stripe_id) ? false : true, + 'name' => $this->name, + 'email' => env('APP_DEMO') ? obfuscate_email($this->email) : $this->email, + 'avatar' => $this->avatar, + 'role' => $this->role, + 'created_at_formatted' => format_date($this->created_at, '%d. %B. %Y'), + 'created_at' => $this->created_at, + 'updated_at' => $this->updated_at, + ] + ], + 'relationships' => [ + 'settings' => [ + 'data' => [ + 'id' => (string)$this->settings->id, + 'type' => 'settings', + 'attributes' => [ + 'billing_name' => $this->settings->billing_name, + 'billing_address' => $this->settings->billing_address, + 'billing_state' => $this->settings->billing_state, + 'billing_city' => $this->settings->billing_city, + 'billing_postal_code' => $this->settings->billing_postal_code, + 'billing_country' => $this->settings->billing_country, + 'billing_phone_number' => $this->settings->billing_phone_number, + ] + ] + ], + 'storage' => [ + 'data' => [ + 'id' => '1', + 'type' => 'storage', + 'attributes' => $this->storage + ] + ], + 'favourites' => [ + 'data' => [ + 'id' => '1', + 'type' => 'folders_favourite', + 'attributes' => [ + 'folders' => $this->favourite_folders->makeHidden(['pivot']) + ], + ], + ], + 'tree' => [ + 'data' => [ + 'id' => '1', + 'type' => 'folders_tree', + 'attributes' => [ + 'folders' => $this->folder_tree + ], + ], ] ] ]; diff --git a/app/Http/Resources/UserStorageResource.php b/app/Http/Resources/UserStorageResource.php index 87a872a9..89779197 100644 --- a/app/Http/Resources/UserStorageResource.php +++ b/app/Http/Resources/UserStorageResource.php @@ -23,25 +23,25 @@ class UserStorageResource extends JsonResource // Get all images $images = FileManagerFile::where('user_id', $this->id) ->where('type', 'image')->get()->map(function ($item) { - return (int)$item->getOriginal('filesize'); + return (int)$item->getRawOriginal('filesize'); })->sum(); // Get all audios $audios = FileManagerFile::where('user_id', $this->id) ->where('type', 'audio')->get()->map(function ($item) { - return (int)$item->getOriginal('filesize'); + return (int)$item->getRawOriginal('filesize'); })->sum(); // Get all videos $videos = FileManagerFile::where('user_id', $this->id) ->where('type', 'video')->get()->map(function ($item) { - return (int)$item->getOriginal('filesize'); + return (int)$item->getRawOriginal('filesize'); })->sum(); // Get all documents $documents = FileManagerFile::where('user_id', $this->id) ->whereIn('mimetype', $document_mimetypes)->get()->map(function ($item) { - return (int)$item->getOriginal('filesize'); + return (int)$item->getRawOriginal('filesize'); })->sum(); // Get all other files @@ -49,13 +49,13 @@ class UserStorageResource extends JsonResource ->whereNotIn('mimetype', $document_mimetypes) ->whereNotIn('type', ['audio', 'video', 'image']) ->get()->map(function ($item) { - return (int)$item->getOriginal('filesize'); + return (int)$item->getRawOriginal('filesize'); })->sum(); return [ 'data' => [ 'id' => (string)$this->id, - 'type' => 'user-storage', + 'type' => 'storage', 'attributes' => [ 'used' => Metric::bytes($this->used_capacity)->format(), 'capacity' => format_gigabytes($this->settings->storage_capacity), diff --git a/app/Http/Resources/UserSubscription.php b/app/Http/Resources/UserSubscription.php new file mode 100644 index 00000000..05cd5ede --- /dev/null +++ b/app/Http/Resources/UserSubscription.php @@ -0,0 +1,48 @@ +subscription('main')->asStripeSubscription(); + + // Get subscription details + $subscription = $stripe->getPlan($this->subscription('main')->stripe_plan); + + // Retrieve the timestamp from Stripe + $current_period_end = $active_subscription["current_period_end"]; + $current_period_start = $active_subscription["current_period_start"]; + $canceled_at = $active_subscription["canceled_at"]; + + return [ + 'data' => [ + 'id' => $subscription['plan']['id'], + 'type' => 'subscription', + 'attributes' => [ + 'incomplete' => $this->subscription('main')->incomplete(), + 'active' => $this->subscription('main')->active(), + 'canceled' => $this->subscription('main')->cancelled(), + 'name' => $subscription['product']['name'], + 'capacity' => (int)$subscription['product']['metadata']['capacity'], + 'capacity_formatted' => format_gigabytes($subscription['product']['metadata']['capacity']), + 'slug' => $subscription['plan']['id'], + 'canceled_at' => format_date($canceled_at, '%d. %B. %Y'), + 'created_at' => format_date($current_period_start, '%d. %B. %Y'), + 'ends_at' => format_date($current_period_end, '%d. %B. %Y'), + ] + ] + ]; + } +} diff --git a/app/Http/Tools/Demo.php b/app/Http/Tools/Demo.php index 6e358080..04f68966 100644 --- a/app/Http/Tools/Demo.php +++ b/app/Http/Tools/Demo.php @@ -138,6 +138,6 @@ class Demo */ public static function favourites($user) { - return $user->favourites->makeHidden(['pivot']); + return $user->favourite_folders->makeHidden(['pivot']); } } \ No newline at end of file diff --git a/app/Http/Tools/Editor.php b/app/Http/Tools/Editor.php index d9dfd396..4dc4c39b 100644 --- a/app/Http/Tools/Editor.php +++ b/app/Http/Tools/Editor.php @@ -124,7 +124,7 @@ class Editor Storage::delete('/file-manager/' . $file->basename); // Delete thumbnail if exist - if (!is_null($file->thumbnail)) Storage::delete('/file-manager/' . $file->getOriginal('thumbnail')); + if (!is_null($file->thumbnail)) Storage::delete('/file-manager/' . $file->getRawOriginal('thumbnail')); // Delete file permanently $file->forceDelete(); @@ -138,7 +138,7 @@ class Editor if (!$request->force_delete) { // Remove folder from user favourites - $user->favourites()->detach($unique_id); + $user->favourite_folders()->detach($unique_id); // Soft delete folder record $folder->delete(); @@ -172,7 +172,7 @@ class Editor Storage::delete('/file-manager/' . $file->basename); // Delete thumbnail if exist - if ($file->thumbnail) Storage::delete('/file-manager/' . $file->getOriginal('thumbnail')); + if ($file->thumbnail) Storage::delete('/file-manager/' . $file->getRawOriginal('thumbnail')); // Delete file permanently $file->forceDelete(); @@ -197,14 +197,23 @@ class Editor */ public static function upload($request, $shared = null) { - // Get user data - $user_scope = is_null($shared) ? $request->user()->token()->scopes[0] : 'editor'; - $user_id = is_null($shared) ? Auth::id() : $shared->user_id; - // Get parent_id from request $folder_id = $request->parent_id === 0 ? 0 : $request->parent_id; $file = $request->file('file'); + // Get user data + $user_scope = is_null($shared) ? $request->user()->token()->scopes[0] : 'editor'; + $user_id = is_null($shared) ? Auth::id() : $shared->user_id; + $user_storage_used = user_storage_percentage($user_id, $file->getSize()); + + // Get storage limitation setup + $storage_limitation = get_setting('storage_limitation'); + + // Check if user can upload + if ($storage_limitation && $user_storage_used >= 100) { + abort(423, 'You exceed your storage limit!'); + } + // File $filename = Str::random() . '-' . str_replace(' ', '', $file->getClientOriginalName()); $filetype = get_file_type($file); diff --git a/app/Invoice.php b/app/Invoice.php new file mode 100644 index 00000000..7bcc7b62 --- /dev/null +++ b/app/Invoice.php @@ -0,0 +1,64 @@ + 'array', + 'client' => 'array', + 'bag' => 'array', + ]; + + /** + * Get user instance + * + * @return \Illuminate\Database\Eloquent\Relations\HasOne + */ + public function user() { + return $this->hasOne(User::class, 'id', 'user_id'); + } +} diff --git a/app/Page.php b/app/Page.php new file mode 100644 index 00000000..e227e630 --- /dev/null +++ b/app/Page.php @@ -0,0 +1,12 @@ +commands([ + InstallCommand::class, + ClientCommand::class, + KeysCommand::class, + ]); } } diff --git a/app/Services/StripeService.php b/app/Services/StripeService.php new file mode 100644 index 00000000..a781073c --- /dev/null +++ b/app/Services/StripeService.php @@ -0,0 +1,385 @@ +stripe = Stripe::make(config('cashier.secret'), '2020-03-02'); + } + + /** + * Get Stripe account details + * + * @return mixed + */ + public function getAccountDetails() + { + $account = $this->stripe->account()->details(); + + return $account; + } + + /** + * Get setup intent + * + * @param $user + * @return mixed + */ + public function getSetupIntent($user) + { + // Create stripe customer if not exist + $user->createOrGetStripeCustomer(); + + // Return setup intent + return $user->createSetupIntent(); + } + + /** + * Get tax rate ids + * @return array + */ + public function getTaxRates() + { + $tax_rates = $this->stripe->taxRates()->all(); + + return $tax_rates['data']; + } + + /** + * Get default payment option or set new default payment + * + * @param $request + * @param $user + * @return mixed + */ + public function getOrSetDefaultPaymentMethod($request, $user) + { + // Check payment method + if (!$request->has('payment.meta.pm') && $user->hasDefaultPaymentMethod()) { + + // Get default payment + return $user->defaultPaymentMethod()->paymentMethod; + } + + // Clear cached payment methods + cache_forget_many([ + 'payment-methods-user-' . $user->id, + 'default-payment-methods-user-' . $user->id + ]); + + if ($request->has('payment.meta.pm') && $user->hasDefaultPaymentMethod()) { + + // Set new payment + return $user->addPaymentMethod($request->input('payment.meta.pm'))->paymentMethod; + + } else if ($request->has('payment.meta.pm') && !$user->hasDefaultPaymentMethod()) { + + // Set new payment + return $user->updateDefaultPaymentMethod($request->input('payment.meta.pm'))->paymentMethod; + + } else { + + throw new HttpException(400, 'Something went wrong.'); + } + } + + /** + * Register new payment method + * + * @param $request + * @param $user + * @return mixed + */ + public function registerNewPaymentMethod($request, $user) + { + // Clear cached payment methods + cache_forget_many([ + 'payment-methods-user-' . $user->id, + 'default-payment-methods-user-' . $user->id + ]); + + // Set new payment method + $user->addPaymentMethod($request->token)->paymentMethod; + + // Set new default payment + if ($request->default) { + $user->updateDefaultPaymentMethod($request->token)->paymentMethod; + } + } + + /** + * Create new subscription or replace by new subscription + * + * @param $request + * @param $user + * @param $paymentMethod + * @return \Illuminate\Http\RedirectResponse + */ + public function createOrReplaceSubscription($request, $user) + { + try { + + // Get payment method + $paymentMethod = $this->getOrSetDefaultPaymentMethod($request, $user); + + // Check if user have subscription + if ($user->subscribed('main')) { + + // Change subscription plan + $user->subscription('main')->skipTrial()->swap($request->input('plan.data.id')); + + } else { + + // Create subscription + $user->newSubscription('main', $request->input('plan.data.id'))->create($paymentMethod); + } + + } catch (IncompletePayment $exception) { + + if ($exception instanceof PaymentActionRequired) { + + $cashier_route = route('cashier.payment', [$exception->payment->id, 'redirect' => url('/settings/subscription')]); + + throw new HttpException(402, $cashier_route); + } else { + throw new HttpException(400, $exception->getMessage()); + } + + } + } + + /** + * Update customer details + * + * @param $user + */ + public function updateCustomerDetails($user) + { + $user->updateStripeCustomer([ + 'name' => $user->settings->billing_name, + 'phone' => $user->settings->billing_phone_number, + 'address' => [ + 'line1' => $user->settings->billing_address, + 'city' => $user->settings->billing_city, + 'country' => $user->settings->billing_country, + 'postal_code' => $user->settings->billing_postal_code, + 'state' => $user->settings->billing_state, + ] + ]); + } + + /** + * Get all plans + * + * @return mixed + */ + public function getPlans() + { + // Get stripe plans + $stripe_plans = $this->stripe->plans()->all(); + + // Plans container + $plans = []; + + foreach ($stripe_plans['data'] as $plan) { + + // Get stripe product + $product = $this->stripe->products()->find($plan['product']); + + // Push data to $plan container + if ($product['active']) { + array_push($plans, [ + 'plan' => $plan, + 'product' => $product, + ]); + } + } + + return $plans; + } + + /** + * Get all active plans + * + * @return mixed + */ + public function getActivePlans() + { + // Get stripe plans + $stripe_plans = $this->stripe->plans()->all(); + + // Plans container + $plans = []; + + foreach ($stripe_plans['data'] as $plan) { + + if ($plan['active']) { + + // Get stripe product + $product = $this->stripe->products()->find($plan['product']); + + // Push data to $plan container + if ($product['active']) { + array_push($plans, [ + 'plan' => $plan, + 'product' => $product, + ]); + } + } + } + + return $plans; + } + + /** + * Get plan details + * + * @param $id + * @return mixed + */ + public function getPlan($id) + { + $plan = $this->stripe->plans()->find($id); + $product = $this->stripe->products()->find($plan['product']); + + return compact('plan', 'product'); + } + + /** + * Create plan + * + * @param $data + * @return mixed + */ + public function createPlan($data) + { + if ($data instanceof Request) { + $plan = [ + 'name' => $data->input('attributes.name'), + 'description' => $data->input('attributes.description'), + 'price' => $data->input('attributes.price'), + 'capacity' => $data->input('attributes.capacity'), + ]; + } else { + $plan = [ + 'name' => $data['attributes']['name'], + 'description' => $data['attributes']['description'], + 'price' => $data['attributes']['price'], + 'capacity' => $data['attributes']['capacity'], + ]; + } + + $product = $this->stripe->products()->create([ + 'name' => $plan['name'], + 'description' => $plan['description'], + 'metadata' => [ + 'capacity' => $plan['capacity'] + ] + ]); + + $plan = $this->stripe->plans()->create([ + 'id' => Str::slug($plan['name']), + 'amount' => $plan['price'], + 'currency' => config('cashier.currency'), + 'interval' => 'month', + 'product' => $product['id'], + ]); + + return compact('plan', 'product'); + } + + /** + * Update plan + * + * @param $request + * @param $id + */ + public function updatePlan($request, $id) + { + $plan_colls = ['is_active', 'price']; + $product_colls = ['name', 'description', 'capacity']; + + $plan = $this->stripe->plans()->find($id); + + // Update product + if (in_array($request->name, $product_colls)) { + + if ($request->name === 'capacity') { + $this->stripe->products()->update($plan['product'], ['metadata' => ['capacity' => $request->value]]); + } + if ($request->name === 'name') { + $this->stripe->products()->update($plan['product'], ['name' => $request->value]); + } + if ($request->name === 'description') { + $this->stripe->products()->update($plan['product'], ['description' => $request->value]); + } + } + + // Update plan + if (in_array($request->name, $plan_colls)) { + + if ($request->name === 'is_active') { + $this->stripe->plans()->update($id, ['active' => $request->value]); + } + } + } + + /** + * Delete plan + * + * @param $slug + */ + public function deletePlan($slug) + { + $this->stripe->plans()->delete($slug); + } + + /** + * Get all user invoices + * + * @param $user + * @return mixed + */ + public function getUserInvoices($user) + { + return $user->invoices(); + } + + /** + * Get user invoice by id + * + * @param $id + * @return \Laravel\Cashier\Invoice|null + */ + public function getUserInvoice($customer, $id) + { + $user = User::where('stripe_id', $customer)->firstOrFail(); + + return $user->findInvoice($id); + } + + /** + * Get all invoices + * + * @return mixed + */ + public function getInvoices() + { + return $this->stripe->invoices()->all(); + } +} \ No newline at end of file diff --git a/app/Setting.php b/app/Setting.php new file mode 100644 index 00000000..7836813b --- /dev/null +++ b/app/Setting.php @@ -0,0 +1,12 @@ + 'datetime', - 'favourites' => 'array', ]; protected $appends = [ 'used_capacity', 'storage' ]; + /** + * Get tax rate id for user + * + * @return array + */ + public function taxRates() + { + $stripe = resolve('App\Services\StripeService'); + + // Get tax rates + $rates = collect($stripe->getTaxRates()); + + // Find tax rate + $user_tax_rate = $rates->first(function ($item) { + return $item['jurisdiction'] === $this->settings->billing_country && $item['active']; + }); + + return $user_tax_rate ? [$user_tax_rate['id']] : []; + } + /** * Get user used storage details * * @return mixed */ - public function getStorageAttribute() { + public function getStorageAttribute() + { + // Get storage limitation setup + $storage_limitation = get_setting('storage_limitation'); + $is_storage_limit = $storage_limitation ? $storage_limitation : 1; + + // Get user storage usage + if (! $is_storage_limit) { + + return [ + 'used' => $this->used_capacity, + 'used_formatted' => Metric::bytes($this->used_capacity)->format(), + ]; + } return [ - 'used' => (float) get_storage_fill_percentage($this->used_capacity, $this->settings->storage_capacity), - 'capacity' => $this->settings->storage_capacity, - 'capacity_formatted' => Metric::gigabytes($this->settings->storage_capacity)->format(), + 'used' => (float)get_storage_fill_percentage($this->used_capacity, $this->settings->storage_capacity), + 'used_formatted' => get_storage_fill_percentage($this->used_capacity, $this->settings->storage_capacity) . '%', + 'capacity' => $this->settings->storage_capacity, + 'capacity_formatted' => format_gigabytes($this->settings->storage_capacity), ]; } @@ -108,15 +166,28 @@ class User extends Authenticatable * * @return mixed */ - public function getUsedCapacityAttribute() { - + public function getUsedCapacityAttribute() + { $user_capacity = $this->files_with_trashed->map(function ($item) { - return $item->getOriginal(); + return $item->getRawOriginal(); })->sum('filesize'); return $user_capacity; } + /** + * Get user full folder tree + * + * @return \Illuminate\Database\Eloquent\Builder[]|\Illuminate\Database\Eloquent\Collection + */ + public function getFolderTreeAttribute() + { + return FileManagerFolder::with(['folders.shared', 'shared:token,id,item_id,permission,protected']) + ->where('parent_id', 0) + ->where('user_id', $this->id) + ->get(); + } + /** * Format avatar to full url * @@ -124,6 +195,13 @@ class User extends Authenticatable */ public function getAvatarAttribute() { + // Get avatar from external storage + if ($this->attributes['avatar'] && is_storage_driver(['s3', 'spaces', 'wasabi', 'backblaze'])) { + + return Storage::temporaryUrl($this->attributes['avatar'], now()->addDay()); + } + + // Get avatar from local storage if ($this->attributes['avatar']) { return url('/' . $this->attributes['avatar']); } @@ -131,6 +209,27 @@ class User extends Authenticatable return url('/assets/images/' . 'default-avatar.png'); } + /** + * Set user billing info + * + * @param $billing + * @return UserSettings + */ + public function setBilling($billing) + { + $this->settings()->update([ + 'billing_address' => $billing['billing_address'], + 'billing_city' => $billing['billing_city'], + 'billing_country' => $billing['billing_country'], + 'billing_name' => $billing['billing_name'], + 'billing_phone_number' => $billing['billing_phone_number'], + 'billing_postal_code' => $billing['billing_postal_code'], + 'billing_state' => $billing['billing_state'], + ]); + + return $this->settings; + } + /** * Send the password reset notification. * @@ -147,7 +246,7 @@ class User extends Authenticatable * * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany */ - public function favourites() + public function favourite_folders() { return $this->belongsToMany(FileManagerFolder::class, 'favourite_folder', 'user_id', 'folder_unique_id', 'id', 'unique_id')->with('shared:token,id,item_id,permission,protected'); } @@ -157,8 +256,8 @@ class User extends Authenticatable * * @return \Illuminate\Database\Eloquent\Relations\HasMany|\Illuminate\Database\Query\Builder */ - public function latest_uploads() { - + public function latest_uploads() + { return $this->hasMany(FileManagerFile::class)->with(['parent'])->orderBy('created_at', 'DESC')->take(40); } @@ -167,8 +266,8 @@ class User extends Authenticatable * * @return \Illuminate\Database\Eloquent\Relations\HasMany */ - public function files() { - + public function files() + { return $this->hasMany(FileManagerFile::class); } @@ -177,8 +276,8 @@ class User extends Authenticatable * * @return \Illuminate\Database\Eloquent\Relations\HasMany */ - public function files_with_trashed() { - + public function files_with_trashed() + { return $this->hasMany(FileManagerFile::class)->withTrashed(); } @@ -187,8 +286,8 @@ class User extends Authenticatable * * @return \Illuminate\Database\Eloquent\Relations\HasOne */ - public function settings() { - + public function settings() + { return $this->hasOne(UserSettings::class); } } diff --git a/app/UserSettings.php b/app/UserSettings.php index 761e630f..6cb38157 100644 --- a/app/UserSettings.php +++ b/app/UserSettings.php @@ -8,5 +8,5 @@ class UserSettings extends Model { public $timestamps = false; - protected $guarded = ['id']; + protected $guarded = ['id', 'storage_capacity']; } diff --git a/composer.json b/composer.json index 96621022..d53acfd0 100644 --- a/composer.json +++ b/composer.json @@ -9,26 +9,29 @@ "license": "MIT", "require": { "php": "^7.2", + "cartalyst/stripe-laravel": "^12.0", "doctrine/dbal": "^2.10", "fideloper/proxy": "^4.0", "fruitcake/laravel-cors": "^1.0", "gabrielelana/byte-units": "^0.5.0", "intervention/image": "^2.5", - "laravel/framework": "^6.2", + "laravel/cashier": "^12.0", + "laravel/framework": "^7.0", "laravel/passport": "^8.4", "laravel/scout": "^7.2", "laravel/tinker": "^2.0", + "laravel/ui": "^2.0", "league/flysystem-aws-s3-v3": "^1.0", "league/flysystem-cached-adapter": "^1.0", - "teamtnt/laravel-scout-tntsearch-driver": "^7.2" + "teamtnt/laravel-scout-tntsearch-driver": "^8.3" }, "require-dev": { "barryvdh/laravel-ide-helper": "^2.7", - "facade/ignition": "^1.4", + "facade/ignition": "^2.0", "fzaninotto/faker": "^1.4", "mockery/mockery": "^1.0", - "nunomaduro/collision": "^3.0", - "phpunit/phpunit": "^8.0" + "nunomaduro/collision": "^4.1", + "phpunit/phpunit": "^8.5" }, "config": { "optimize-autoloader": true, @@ -49,7 +52,8 @@ "database/factories" ], "files": [ - "app/Http/helpers.php" + "app/Http//Helpers/helpers.php", + "app/Http//Helpers/subscription.php" ] }, "autoload-dev": { diff --git a/composer.lock b/composer.lock index 245ffb49..b3d36f3c 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "dd291c7d30131e81dbca3d2127e2fc0d", + "content-hash": "c2e0a4adcc267140dcc5f4b1ee31ae2f", "packages": [ { "name": "asm89/stack-cors", @@ -60,16 +60,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.137.2", + "version": "3.145.4", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "af91c2fc467a326e5bcb5665e4e2ad3d84d28be2" + "reference": "3c5a921f0de917f9fc3d51b2970106d3abfc6b8f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/af91c2fc467a326e5bcb5665e4e2ad3d84d28be2", - "reference": "af91c2fc467a326e5bcb5665e4e2ad3d84d28be2", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3c5a921f0de917f9fc3d51b2970106d3abfc6b8f", + "reference": "3c5a921f0de917f9fc3d51b2970106d3abfc6b8f", "shasum": "" }, "require": { @@ -92,6 +92,7 @@ "ext-pcntl": "*", "ext-sockets": "*", "nette/neon": "^2.3", + "paragonie/random_compat": ">= 2", "phpunit/phpunit": "^4.8.35|^5.4.3", "psr/cache": "^1.0", "psr/simple-cache": "^1.0", @@ -140,7 +141,169 @@ "s3", "sdk" ], - "time": "2020-05-04T18:13:52+00:00" + "time": "2020-07-09T18:13:42+00:00" + }, + { + "name": "brick/math", + "version": "0.8.15", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "9b08d412b9da9455b210459ff71414de7e6241cd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/9b08d412b9da9455b210459ff71414de7e6241cd", + "reference": "9b08d412b9da9455b210459ff71414de7e6241cd", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^7.1|^8.0" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^7.5.15|^8.5", + "vimeo/psalm": "^3.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "brick", + "math" + ], + "time": "2020-04-15T15:59:35+00:00" + }, + { + "name": "cartalyst/stripe", + "version": "v2.4.1", + "source": { + "type": "git", + "url": "https://github.com/cartalyst/stripe.git", + "reference": "f7753a8c947aa7c58abad96db8714e1594160b0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/cartalyst/stripe/zipball/f7753a8c947aa7c58abad96db8714e1594160b0c", + "reference": "f7753a8c947aa7c58abad96db8714e1594160b0c", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "~6.0", + "php": ">=5.5.9" + }, + "require-dev": { + "mockery/mockery": "~0.9", + "phpunit/phpunit": "~4.8" + }, + "type": "library", + "extra": { + "component": "package", + "branch-alias": { + "dev-master": "2.4.x-dev" + } + }, + "autoload": { + "psr-4": { + "Cartalyst\\Stripe\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Cartalyst LLC", + "email": "help@cartalyst.com", + "homepage": "https://cartalyst.com" + } + ], + "description": "A comprehensive Stripe API package.", + "keywords": [ + "cartalyst", + "php", + "stripe" + ], + "time": "2020-01-03T12:02:51+00:00" + }, + { + "name": "cartalyst/stripe-laravel", + "version": "v12.0.0", + "source": { + "type": "git", + "url": "https://github.com/cartalyst/stripe-laravel.git", + "reference": "e171e6721e3491daa7eaa8d85ca6d4536086c327" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/cartalyst/stripe-laravel/zipball/e171e6721e3491daa7eaa8d85ca6d4536086c327", + "reference": "e171e6721e3491daa7eaa8d85ca6d4536086c327", + "shasum": "" + }, + "require": { + "cartalyst/stripe": "^2.0", + "illuminate/support": "^7.0", + "php": "^7.2.5" + }, + "require-dev": { + "cartalyst/php-cs-fixer-config": "^1.0", + "phpunit/phpunit": "^8.0" + }, + "type": "library", + "extra": { + "component": "implementation", + "branch-alias": { + "dev-master": "12.0.x-dev" + }, + "laravel": { + "providers": [ + "Cartalyst\\Stripe\\Laravel\\StripeServiceProvider" + ], + "aliases": { + "Stripe": "Cartalyst\\Stripe\\Laravel\\Facades\\Stripe" + } + } + }, + "autoload": { + "psr-4": { + "Cartalyst\\Stripe\\Laravel\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Cartalyst LLC", + "email": "help@cartalyst.com", + "homepage": "https://cartalyst.com" + } + ], + "description": "Laravel 7 integration for the Cartalyst Stripe package.", + "keywords": [ + "cartalyst", + "laravel", + "php", + "stripe" + ], + "time": "2020-03-03T18:50:48+00:00" }, { "name": "defuse/php-encryption", @@ -240,20 +403,20 @@ }, { "name": "doctrine/cache", - "version": "1.10.0", + "version": "1.10.2", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62" + "reference": "13e3381b25847283a91948d04640543941309727" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62", - "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62", + "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727", + "reference": "13e3381b25847283a91948d04640543941309727", "shasum": "" }, "require": { - "php": "~7.1" + "php": "~7.1 || ^8.0" }, "conflict": { "doctrine/common": ">2.2,<2.4" @@ -318,7 +481,7 @@ "redis", "xcache" ], - "time": "2019-11-29T15:36:20+00:00" + "time": "2020-07-07T18:54:01+00:00" }, { "name": "doctrine/dbal", @@ -492,33 +655,37 @@ }, { "name": "doctrine/inflector", - "version": "1.3.1", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1" + "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1", - "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210", + "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^7.2 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^6.2" + "doctrine/coding-standard": "^7.0", + "phpstan/phpstan": "^0.11", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-strict-rules": "^0.11", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" } }, "notification-url": "https://packagist.org/downloads/", @@ -547,32 +714,38 @@ "email": "schmittjoh@gmail.com" } ], - "description": "Common String Manipulations with regard to casing and singular/plural rules.", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", "keywords": [ "inflection", - "pluralize", - "singularize", - "string" + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" ], - "time": "2019-10-30T19:59:35+00:00" + "time": "2020-05-29T15:13:26+00:00" }, { "name": "doctrine/lexer", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6" + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6", - "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", "shasum": "" }, "require": { - "php": "^7.2" + "php": "^7.2 || ^8.0" }, "require-dev": { "doctrine/coding-standard": "^6.0", @@ -617,7 +790,73 @@ "parser", "php" ], - "time": "2019-10-30T14:39:59+00:00" + "time": "2020-05-25T17:44:05+00:00" + }, + { + "name": "dompdf/dompdf", + "version": "v0.8.5", + "source": { + "type": "git", + "url": "https://github.com/dompdf/dompdf.git", + "reference": "6782abfc090b132134cd6cea0ec6d76f0fce2c56" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dompdf/dompdf/zipball/6782abfc090b132134cd6cea0ec6d76f0fce2c56", + "reference": "6782abfc090b132134cd6cea0ec6d76f0fce2c56", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "phenx/php-font-lib": "^0.5.1", + "phenx/php-svg-lib": "^0.3.3", + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.5", + "squizlabs/php_codesniffer": "^3.5" + }, + "suggest": { + "ext-gd": "Needed to process images", + "ext-gmagick": "Improves image processing performance", + "ext-imagick": "Improves image processing performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-develop": "0.7-dev" + } + }, + "autoload": { + "psr-4": { + "Dompdf\\": "src/" + }, + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1" + ], + "authors": [ + { + "name": "Fabien Ménager", + "email": "fabien.menager@gmail.com" + }, + { + "name": "Brian Sweeney", + "email": "eclecticgeek@gmail.com" + }, + { + "name": "Gabriel Bull", + "email": "me@gabrielbull.com" + } + ], + "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", + "homepage": "https://github.com/dompdf/dompdf", + "time": "2020-02-20T03:52:51+00:00" }, { "name": "dragonmantank/cron-expression", @@ -675,16 +914,16 @@ }, { "name": "egulias/email-validator", - "version": "2.1.17", + "version": "2.1.18", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "ade6887fd9bd74177769645ab5c474824f8a418a" + "reference": "cfa3d44471c7f5bfb684ac2b0da7114283d78441" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a", - "reference": "ade6887fd9bd74177769645ab5c474824f8a418a", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/cfa3d44471c7f5bfb684ac2b0da7114283d78441", + "reference": "cfa3d44471c7f5bfb684ac2b0da7114283d78441", "shasum": "" }, "require": { @@ -708,7 +947,7 @@ }, "autoload": { "psr-4": { - "Egulias\\EmailValidator\\": "EmailValidator" + "Egulias\\EmailValidator\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -729,20 +968,20 @@ "validation", "validator" ], - "time": "2020-02-13T22:36:52+00:00" + "time": "2020-06-16T20:11:17+00:00" }, { "name": "fideloper/proxy", - "version": "4.3.0", + "version": "4.4.0", "source": { "type": "git", "url": "https://github.com/fideloper/TrustedProxy.git", - "reference": "ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a" + "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a", - "reference": "ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a", + "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8", + "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8", "shasum": "" }, "require": { @@ -783,7 +1022,7 @@ "proxy", "trusted proxy" ], - "time": "2020-02-22T01:51:47+00:00" + "time": "2020-06-23T01:36:47+00:00" }, { "name": "firebase/php-jwt", @@ -957,16 +1196,16 @@ }, { "name": "guzzlehttp/guzzle", - "version": "6.5.3", + "version": "6.5.5", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "aab4ebd862aa7d04f01a4b51849d657db56d882e" + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/aab4ebd862aa7d04f01a4b51849d657db56d882e", - "reference": "aab4ebd862aa7d04f01a4b51849d657db56d882e", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", "shasum": "" }, "require": { @@ -974,7 +1213,7 @@ "guzzlehttp/promises": "^1.0", "guzzlehttp/psr7": "^1.6.1", "php": ">=5.5", - "symfony/polyfill-intl-idn": "^1.11" + "symfony/polyfill-intl-idn": "^1.17.0" }, "require-dev": { "ext-curl": "*", @@ -1020,7 +1259,7 @@ "rest", "web service" ], - "time": "2020-04-18T10:38:46+00:00" + "time": "2020-06-16T21:01:06+00:00" }, { "name": "guzzlehttp/promises", @@ -1216,16 +1455,16 @@ }, { "name": "laminas/laminas-diactoros", - "version": "2.3.0", + "version": "2.3.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-diactoros.git", - "reference": "5ab185dba63ec655a2380c97711b09adc7061f89" + "reference": "2ffc7cc816f6207b27923ee15edf6fac668390aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/5ab185dba63ec655a2380c97711b09adc7061f89", - "reference": "5ab185dba63ec655a2380c97711b09adc7061f89", + "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/2ffc7cc816f6207b27923ee15edf6fac668390aa", + "reference": "2ffc7cc816f6207b27923ee15edf6fac668390aa", "shasum": "" }, "require": { @@ -1297,22 +1536,23 @@ "http", "laminas", "psr", + "psr-17", "psr-7" ], - "time": "2020-04-27T17:07:01+00:00" + "time": "2020-07-07T15:34:31+00:00" }, { "name": "laminas/laminas-zendframework-bridge", - "version": "1.0.3", + "version": "1.0.4", "source": { "type": "git", "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "bfbbdb6c998d50dbf69d2187cb78a5f1fa36e1e9" + "reference": "fcd87520e4943d968557803919523772475e8ea3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/bfbbdb6c998d50dbf69d2187cb78a5f1fa36e1e9", - "reference": "bfbbdb6c998d50dbf69d2187cb78a5f1fa36e1e9", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3", + "reference": "fcd87520e4943d968557803919523772475e8ea3", "shasum": "" }, "require": { @@ -1351,54 +1591,133 @@ "laminas", "zf" ], - "time": "2020-04-03T16:01:00+00:00" + "time": "2020-05-20T16:45:56+00:00" }, { - "name": "laravel/framework", - - "version": "v6.18.11", + "name": "laravel/cashier", + "version": "v12.1.0", "source": { "type": "git", - "url": "https://github.com/laravel/framework.git", - "reference": "73bc10bb23aab7539c8ffae6d5dc3c4b277de557" + "url": "https://github.com/laravel/cashier.git", + "reference": "3faad324f8f37e27a05bf455c1f5b326738676e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/73bc10bb23aab7539c8ffae6d5dc3c4b277de557", - "reference": "73bc10bb23aab7539c8ffae6d5dc3c4b277de557", + "url": "https://api.github.com/repos/laravel/cashier/zipball/3faad324f8f37e27a05bf455c1f5b326738676e6", + "reference": "3faad324f8f37e27a05bf455c1f5b326738676e6", "shasum": "" }, "require": { - "doctrine/inflector": "^1.1", + "dompdf/dompdf": "^0.8.0", + "ext-json": "*", + "illuminate/contracts": "^6.0|^7.0", + "illuminate/database": "^6.0|^7.0", + "illuminate/http": "^6.0|^7.0", + "illuminate/log": "^6.0|^7.0", + "illuminate/notifications": "^6.0|^7.0", + "illuminate/routing": "^6.0|^7.0", + "illuminate/support": "^6.0|^7.0", + "illuminate/view": "^6.0|^7.0", + "moneyphp/money": "^3.2", + "nesbot/carbon": "^2.0", + "php": "^7.2", + "stripe/stripe-php": "^7.29", + "symfony/http-kernel": "^4.3|^5.0", + "symfony/intl": "^4.3|^5.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^4.0|^5.0", + "phpunit/phpunit": "^8.0|^9.0" + }, + "suggest": { + "ext-intl": "Allows for more locales besides the default \"en\" when formatting money values." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "12.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Cashier\\CashierServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Cashier\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylorotwell@gmail.com" + } + ], + "description": "Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.", + "keywords": [ + "billing", + "laravel", + "stripe" + ], + "time": "2020-06-30T19:47:11+00:00" + }, + { + "name": "laravel/framework", + "version": "v7.19.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "4f373c373915ec828e3374029919a6fe946ed6d9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/4f373c373915ec828e3374029919a6fe946ed6d9", + "reference": "4f373c373915ec828e3374029919a6fe946ed6d9", + "shasum": "" + }, + "require": { + "doctrine/inflector": "^1.4|^2.0", "dragonmantank/cron-expression": "^2.0", "egulias/email-validator": "^2.1.10", "ext-json": "*", "ext-mbstring": "*", "ext-openssl": "*", "league/commonmark": "^1.3", - "league/flysystem": "^1.0.8", - "monolog/monolog": "^1.12|^2.0", - "nesbot/carbon": "^2.0", + "league/flysystem": "^1.0.34", + "monolog/monolog": "^2.0", + "nesbot/carbon": "^2.17", "opis/closure": "^3.1", - "php": "^7.2", + "php": "^7.2.5", "psr/container": "^1.0", "psr/simple-cache": "^1.0", - "ramsey/uuid": "^3.7", + "ramsey/uuid": "^3.7|^4.0", "swiftmailer/swiftmailer": "^6.0", - "symfony/console": "^4.3.4", - "symfony/debug": "^4.3.4", - "symfony/finder": "^4.3.4", - "symfony/http-foundation": "^4.3.4", - "symfony/http-kernel": "^4.3.4", - "symfony/process": "^4.3.4", - "symfony/routing": "^4.3.4", - "symfony/var-dumper": "^4.3.4", - "tijsverkoyen/css-to-inline-styles": "^2.2.1", - "vlucas/phpdotenv": "^3.3" + "symfony/console": "^5.0", + "symfony/error-handler": "^5.0", + "symfony/finder": "^5.0", + "symfony/http-foundation": "^5.0", + "symfony/http-kernel": "^5.0", + "symfony/mime": "^5.0", + "symfony/polyfill-php73": "^1.17", + "symfony/process": "^5.0", + "symfony/routing": "^5.0", + "symfony/var-dumper": "^5.0", + "tijsverkoyen/css-to-inline-styles": "^2.2.2", + "vlucas/phpdotenv": "^4.0", + "voku/portable-ascii": "^1.4.8" }, "conflict": { "tightenco/collect": "<5.5.33" }, + "provide": { + "psr/container-implementation": "1.0" + }, "replace": { "illuminate/auth": "self.version", "illuminate/broadcasting": "self.version", @@ -1425,6 +1744,7 @@ "illuminate/routing": "self.version", "illuminate/session": "self.version", "illuminate/support": "self.version", + "illuminate/testing": "self.version", "illuminate/translation": "self.version", "illuminate/validation": "self.version", "illuminate/view": "self.version" @@ -1433,19 +1753,20 @@ "aws/aws-sdk-php": "^3.0", "doctrine/dbal": "^2.6", "filp/whoops": "^2.4", - "guzzlehttp/guzzle": "^6.3|^7.0", + "guzzlehttp/guzzle": "^6.3.1|^7.0", "league/flysystem-cached-adapter": "^1.0", "mockery/mockery": "^1.3.1", "moontoast/math": "^1.1", - "orchestra/testbench-core": "^4.0", + "orchestra/testbench-core": "^5.0", "pda/pheanstalk": "^4.0", - "phpunit/phpunit": "^7.5.15|^8.4|^9.0", + "phpunit/phpunit": "^8.4|^9.0", "predis/predis": "^1.1.1", - "symfony/cache": "^4.3.4" + "symfony/cache": "^5.0" }, "suggest": { "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).", "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).", + "ext-ftp": "Required to use the Flysystem FTP driver.", "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", "ext-memcached": "Required to use the memcache cache driver.", "ext-pcntl": "Required to use all features of the queue worker.", @@ -1453,24 +1774,27 @@ "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", "filp/whoops": "Required for friendly error pages in development (^2.4).", "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).", - "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.0|^7.0).", + "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).", "laravel/tinker": "Required to use the tinker console command (^2.0).", "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).", "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).", "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).", + "mockery/mockery": "Required to use mocking (^1.3.1).", "moontoast/math": "Required to use ordered UUIDs (^1.1).", "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).", "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).", - "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4).", - "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2).", + "symfony/cache": "Required to PSR-6 cache bridge (^5.0).", + "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).", "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "6.x-dev" + "dev-master": "7.x-dev" } }, "autoload": { @@ -1498,20 +1822,20 @@ "framework", "laravel" ], - "time": "2020-04-28T15:18:58+00:00" + "time": "2020-07-10T16:41:39+00:00" }, { "name": "laravel/passport", - "version": "v8.4.4", + "version": "v8.5.0", "source": { "type": "git", "url": "https://github.com/laravel/passport.git", - "reference": "dd4b1d96eb1fe556a6eb2c55c942360364aa02c1" + "reference": "6affa6ed600c5f8909385fbae7cf6f8af3db2d39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/passport/zipball/dd4b1d96eb1fe556a6eb2c55c942360364aa02c1", - "reference": "dd4b1d96eb1fe556a6eb2c55c942360364aa02c1", + "url": "https://api.github.com/repos/laravel/passport/zipball/6affa6ed600c5f8909385fbae7cf6f8af3db2d39", + "reference": "6affa6ed600c5f8909385fbae7cf6f8af3db2d39", "shasum": "" }, "require": { @@ -1571,7 +1895,7 @@ "oauth", "passport" ], - "time": "2020-04-21T19:24:59+00:00" + "time": "2020-05-05T14:25:53+00:00" }, { "name": "laravel/scout", @@ -1640,16 +1964,16 @@ }, { "name": "laravel/tinker", - "version": "v2.4.0", + "version": "v2.4.1", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "cde90a7335a2130a4488beb68f4b2141869241db" + "reference": "3c9ef136ca59366bc1b50b7f2500a946d5149c62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/cde90a7335a2130a4488beb68f4b2141869241db", - "reference": "cde90a7335a2130a4488beb68f4b2141869241db", + "url": "https://api.github.com/repos/laravel/tinker/zipball/3c9ef136ca59366bc1b50b7f2500a946d5149c62", + "reference": "3c9ef136ca59366bc1b50b7f2500a946d5149c62", "shasum": "" }, "require": { @@ -1700,20 +2024,75 @@ "laravel", "psysh" ], - "time": "2020-04-07T15:01:31+00:00" + "time": "2020-07-07T15:10:00+00:00" }, { - "name": "lcobucci/jwt", - "version": "3.3.1", + "name": "laravel/ui", + "version": "v2.1.0", "source": { "type": "git", - "url": "https://github.com/lcobucci/jwt.git", - "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18" + "url": "https://github.com/laravel/ui.git", + "reference": "da9350533d0da60d5dc42fb7de9c561c72129bba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", - "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", + "url": "https://api.github.com/repos/laravel/ui/zipball/da9350533d0da60d5dc42fb7de9c561c72129bba", + "reference": "da9350533d0da60d5dc42fb7de9c561c72129bba", + "shasum": "" + }, + "require": { + "illuminate/console": "^7.0", + "illuminate/filesystem": "^7.0", + "illuminate/support": "^7.0", + "php": "^7.2.5" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^8.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Ui\\UiServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Ui\\": "src/", + "Illuminate\\Foundation\\Auth\\": "auth-backend/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel UI utilities and presets.", + "keywords": [ + "laravel", + "ui" + ], + "time": "2020-06-30T20:56:33+00:00" + }, + { + "name": "lcobucci/jwt", + "version": "3.3.2", + "source": { + "type": "git", + "url": "https://github.com/lcobucci/jwt.git", + "reference": "56f10808089e38623345e28af2f2d5e4eb579455" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/56f10808089e38623345e28af2f2d5e4eb579455", + "reference": "56f10808089e38623345e28af2f2d5e4eb579455", "shasum": "" }, "require": { @@ -1755,25 +2134,25 @@ "JWS", "jwt" ], - "time": "2019-05-24T18:30:49+00:00" + "time": "2020-05-22T08:21:12+00:00" }, { "name": "league/commonmark", - "version": "1.4.2", + "version": "1.5.1", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "9e780d972185e4f737a03bade0fd34a9e67bbf31" + "reference": "6d74caf6abeed5fd85d6ec20da23d7269cd0b46f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/9e780d972185e4f737a03bade0fd34a9e67bbf31", - "reference": "9e780d972185e4f737a03bade0fd34a9e67bbf31", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6d74caf6abeed5fd85d6ec20da23d7269cd0b46f", + "reference": "6d74caf6abeed5fd85d6ec20da23d7269cd0b46f", "shasum": "" }, "require": { "ext-mbstring": "*", - "php": "^7.1" + "php": "^7.1 || ^8.0" }, "conflict": { "scrutinizer/ocular": "1.7.*" @@ -1795,11 +2174,6 @@ "bin/commonmark" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4-dev" - } - }, "autoload": { "psr-4": { "League\\CommonMark\\": "src" @@ -1829,7 +2203,7 @@ "md", "parser" ], - "time": "2020-04-24T13:39:56+00:00" + "time": "2020-06-27T12:50:08+00:00" }, { "name": "league/event", @@ -1883,16 +2257,16 @@ }, { "name": "league/flysystem", - "version": "1.0.67", + "version": "1.0.69", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "5b1f36c75c4bdde981294c2a0ebdb437ee6f275e" + "reference": "7106f78428a344bc4f643c233a94e48795f10967" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/5b1f36c75c4bdde981294c2a0ebdb437ee6f275e", - "reference": "5b1f36c75c4bdde981294c2a0ebdb437ee6f275e", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/7106f78428a344bc4f643c233a94e48795f10967", + "reference": "7106f78428a344bc4f643c233a94e48795f10967", "shasum": "" }, "require": { @@ -1963,20 +2337,20 @@ "sftp", "storage" ], - "time": "2020-04-16T13:21:26+00:00" + "time": "2020-05-18T15:13:39+00:00" }, { "name": "league/flysystem-aws-s3-v3", - "version": "1.0.24", + "version": "1.0.25", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git", - "reference": "4382036bde5dc926f9b8b337e5bdb15e5ec7b570" + "reference": "d409b97a50bf85fbde30cbc9fc10237475e696ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/4382036bde5dc926f9b8b337e5bdb15e5ec7b570", - "reference": "4382036bde5dc926f9b8b337e5bdb15e5ec7b570", + "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/d409b97a50bf85fbde30cbc9fc10237475e696ea", + "reference": "d409b97a50bf85fbde30cbc9fc10237475e696ea", "shasum": "" }, "require": { @@ -2010,7 +2384,7 @@ } ], "description": "Flysystem adapter for the AWS S3 SDK v3.x", - "time": "2020-02-23T13:31:58+00:00" + "time": "2020-06-02T18:41:58+00:00" }, { "name": "league/flysystem-cached-adapter", @@ -2061,16 +2435,16 @@ }, { "name": "league/oauth2-server", - "version": "8.1.0", + "version": "8.1.1", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-server.git", - "reference": "b53d324f774eb782250f7d8973811a33a75ecdef" + "reference": "09f22e8121fa1832962dba18213b80d4267ef8a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/b53d324f774eb782250f7d8973811a33a75ecdef", - "reference": "b53d324f774eb782250f7d8973811a33a75ecdef", + "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/09f22e8121fa1832962dba18213b80d4267ef8a3", + "reference": "09f22e8121fa1832962dba18213b80d4267ef8a3", "shasum": "" }, "require": { @@ -2134,24 +2508,106 @@ "secure", "server" ], - "time": "2020-04-29T22:14:38+00:00" + "time": "2020-07-01T11:33:50+00:00" }, { - "name": "monolog/monolog", - "version": "2.0.2", + "name": "moneyphp/money", + "version": "v3.3.1", "source": { "type": "git", - "url": "https://github.com/Seldaek/monolog.git", - "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8" + "url": "https://github.com/moneyphp/money.git", + "reference": "122664c2621a95180a13c1ac81fea1d2ef20781e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c861fcba2ca29404dc9e617eedd9eff4616986b8", - "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8", + "url": "https://api.github.com/repos/moneyphp/money/zipball/122664c2621a95180a13c1ac81fea1d2ef20781e", + "reference": "122664c2621a95180a13c1ac81fea1d2ef20781e", "shasum": "" }, "require": { - "php": "^7.2", + "ext-json": "*", + "php": ">=5.6" + }, + "require-dev": { + "cache/taggable-cache": "^0.4.0", + "doctrine/instantiator": "^1.0.5", + "ext-bcmath": "*", + "ext-gmp": "*", + "ext-intl": "*", + "florianv/exchanger": "^1.0", + "florianv/swap": "^3.0", + "friends-of-phpspec/phpspec-code-coverage": "^3.1.1 || ^4.3", + "moneyphp/iso-currencies": "^3.2.1", + "php-http/message": "^1.4", + "php-http/mock-client": "^1.0.0", + "phpspec/phpspec": "^3.4.3", + "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.18 || ^8.5", + "psr/cache": "^1.0", + "symfony/phpunit-bridge": "^4" + }, + "suggest": { + "ext-bcmath": "Calculate without integer limits", + "ext-gmp": "Calculate without integer limits", + "ext-intl": "Format Money objects with intl", + "florianv/exchanger": "Exchange rates library for PHP", + "florianv/swap": "Exchange rates library for PHP", + "psr/cache-implementation": "Used for Currency caching" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Money\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mathias Verraes", + "email": "mathias@verraes.net", + "homepage": "http://verraes.net" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + }, + { + "name": "Frederik Bosch", + "email": "f.bosch@genkgo.nl" + } + ], + "description": "PHP implementation of Fowler's Money pattern", + "homepage": "http://moneyphp.org", + "keywords": [ + "Value Object", + "money", + "vo" + ], + "time": "2020-03-18T17:49:59+00:00" + }, + { + "name": "monolog/monolog", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "38914429aac460e8e4616c8cb486ecb40ec90bb1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/38914429aac460e8e4616c8cb486ecb40ec90bb1", + "reference": "38914429aac460e8e4616c8cb486ecb40ec90bb1", + "shasum": "" + }, + "require": { + "php": ">=7.2", "psr/log": "^1.0.1" }, "provide": { @@ -2162,11 +2618,11 @@ "doctrine/couchdb": "~1.0@dev", "elasticsearch/elasticsearch": "^6.0", "graylog2/gelf-php": "^1.4.2", - "jakub-onderka/php-parallel-lint": "^0.9", "php-amqplib/php-amqplib": "~2.4", "php-console/php-console": "^3.1.3", + "php-parallel-lint/php-parallel-lint": "^1.0", "phpspec/prophecy": "^1.6.1", - "phpunit/phpunit": "^8.3", + "phpunit/phpunit": "^8.5", "predis/predis": "^1.1", "rollbar/rollbar": "^1.3", "ruflin/elastica": ">=0.90 <3.0", @@ -2215,7 +2671,7 @@ "logging", "psr-3" ], - "time": "2019-12-20T14:22:59+00:00" + "time": "2020-05-22T08:12:19+00:00" }, { "name": "mtdowling/jmespath.php", @@ -2276,16 +2732,16 @@ }, { "name": "nesbot/carbon", - "version": "2.33.0", + "version": "2.36.1", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "4d93cb95a80d9ffbff4018fe58ae3b7dd7f4b99b" + "reference": "ee7378a36cc62952100e718bcc58be4c7210e55f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4d93cb95a80d9ffbff4018fe58ae3b7dd7f4b99b", - "reference": "4d93cb95a80d9ffbff4018fe58ae3b7dd7f4b99b", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/ee7378a36cc62952100e718bcc58be4c7210e55f", + "reference": "ee7378a36cc62952100e718bcc58be4c7210e55f", "shasum": "" }, "require": { @@ -2297,9 +2753,10 @@ "require-dev": { "doctrine/orm": "^2.7", "friendsofphp/php-cs-fixer": "^2.14 || ^3.0", - "kylekatarnls/multi-tester": "^1.1", + "kylekatarnls/multi-tester": "^2.0", "phpmd/phpmd": "^2.8", - "phpstan/phpstan": "^0.11", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.30", "phpunit/phpunit": "^7.5 || ^8.0", "squizlabs/php_codesniffer": "^3.4" }, @@ -2309,12 +2766,18 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "2.x-dev", + "dev-3.x": "3.x-dev" }, "laravel": { "providers": [ "Carbon\\Laravel\\ServiceProvider" ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] } }, "autoload": { @@ -2344,20 +2807,20 @@ "datetime", "time" ], - "time": "2020-04-20T15:05:43+00:00" + "time": "2020-07-04T12:29:56+00:00" }, { "name": "nikic/php-parser", - "version": "v4.4.0", + "version": "v4.6.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120" + "reference": "c346bbfafe2ff60680258b631afb730d186ed864" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120", - "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c346bbfafe2ff60680258b631afb730d186ed864", + "reference": "c346bbfafe2ff60680258b631afb730d186ed864", "shasum": "" }, "require": { @@ -2396,20 +2859,20 @@ "parser", "php" ], - "time": "2020-04-10T16:34:50+00:00" + "time": "2020-07-02T17:12:47+00:00" }, { "name": "nyholm/psr7", - "version": "1.2.1", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/Nyholm/psr7.git", - "reference": "55ff6b76573f5b242554c9775792bd59fb52e11c" + "reference": "c17f4f73985f62054a331cbc4ffdf9868c4ef256" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Nyholm/psr7/zipball/55ff6b76573f5b242554c9775792bd59fb52e11c", - "reference": "55ff6b76573f5b242554c9775792bd59fb52e11c", + "url": "https://api.github.com/repos/Nyholm/psr7/zipball/c17f4f73985f62054a331cbc4ffdf9868c4ef256", + "reference": "c17f4f73985f62054a331cbc4ffdf9868c4ef256", "shasum": "" }, "require": { @@ -2424,8 +2887,9 @@ }, "require-dev": { "http-interop/http-factory-tests": "dev-master", - "php-http/psr7-integration-tests": "dev-master", - "phpunit/phpunit": "^7.5" + "php-http/psr7-integration-tests": "^1.0", + "phpunit/phpunit": "^7.5", + "symfony/error-handler": "^4.4" }, "type": "library", "extra": { @@ -2458,20 +2922,20 @@ "psr-17", "psr-7" ], - "time": "2019-09-05T13:24:16+00:00" + "time": "2020-05-23T11:29:07+00:00" }, { "name": "opis/closure", - "version": "3.5.1", + "version": "3.5.5", "source": { "type": "git", "url": "https://github.com/opis/closure.git", - "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969" + "reference": "dec9fc5ecfca93f45cd6121f8e6f14457dff372c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969", - "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969", + "url": "https://api.github.com/repos/opis/closure/zipball/dec9fc5ecfca93f45cd6121f8e6f14457dff372c", + "reference": "dec9fc5ecfca93f45cd6121f8e6f14457dff372c", "shasum": "" }, "require": { @@ -2519,7 +2983,7 @@ "serialization", "serialize" ], - "time": "2019-11-29T22:36:02+00:00" + "time": "2020-06-17T14:59:55+00:00" }, { "name": "paragonie/random_compat", @@ -2566,6 +3030,83 @@ ], "time": "2018-07-02T15:55:56+00:00" }, + { + "name": "phenx/php-font-lib", + "version": "0.5.2", + "source": { + "type": "git", + "url": "https://github.com/PhenX/php-font-lib.git", + "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8", + "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8", + "shasum": "" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7" + }, + "type": "library", + "autoload": { + "psr-4": { + "FontLib\\": "src/FontLib" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "authors": [ + { + "name": "Fabien Ménager", + "email": "fabien.menager@gmail.com" + } + ], + "description": "A library to read, parse, export and make subsets of different types of font files.", + "homepage": "https://github.com/PhenX/php-font-lib", + "time": "2020-03-08T15:31:32+00:00" + }, + { + "name": "phenx/php-svg-lib", + "version": "v0.3.3", + "source": { + "type": "git", + "url": "https://github.com/PhenX/php-svg-lib.git", + "reference": "5fa61b65e612ce1ae15f69b3d223cb14ecc60e32" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PhenX/php-svg-lib/zipball/5fa61b65e612ce1ae15f69b3d223cb14ecc60e32", + "reference": "5fa61b65e612ce1ae15f69b3d223cb14ecc60e32", + "shasum": "" + }, + "require": { + "sabberworm/php-css-parser": "^8.3" + }, + "require-dev": { + "phpunit/phpunit": "^5.5|^6.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Svg\\": "src/Svg" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "authors": [ + { + "name": "Fabien Ménager", + "email": "fabien.menager@gmail.com" + } + ], + "description": "A library to read, parse and export to PDF SVG files.", + "homepage": "https://github.com/PhenX/php-svg-lib", + "time": "2019-09-11T20:02:13+00:00" + }, { "name": "php-http/message-factory", "version": "v1.0.2", @@ -2618,16 +3159,16 @@ }, { "name": "phpoption/phpoption", - "version": "1.7.3", + "version": "1.7.4", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae" + "reference": "b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/4acfd6a4b33a509d8c88f50e5222f734b6aeebae", - "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3", + "reference": "b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3", "shasum": "" }, "require": { @@ -2669,20 +3210,20 @@ "php", "type" ], - "time": "2020-03-21T18:07:53+00:00" + "time": "2020-06-07T10:40:07+00:00" }, { "name": "phpseclib/phpseclib", - "version": "2.0.27", + "version": "2.0.28", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc" + "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc", - "reference": "34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", + "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260", "shasum": "" }, "require": { @@ -2761,7 +3302,7 @@ "x.509", "x509" ], - "time": "2020-04-04T23:17:33+00:00" + "time": "2020-07-08T09:08:33+00:00" }, { "name": "psr/cache", @@ -2858,6 +3399,52 @@ ], "time": "2017-02-14T16:28:37+00:00" }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "time": "2019-01-08T18:20:26+00:00" + }, { "name": "psr/http-factory", "version": "1.0.1", @@ -3057,16 +3644,16 @@ }, { "name": "psy/psysh", - "version": "v0.10.3", + "version": "v0.10.4", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "2bde2fa03e05dff0aee834598b951d6fc7c6fe02" + "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2bde2fa03e05dff0aee834598b951d6fc7c6fe02", - "reference": "2bde2fa03e05dff0aee834598b951d6fc7c6fe02", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560", + "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560", "shasum": "" }, "require": { @@ -3125,7 +3712,7 @@ "interactive", "shell" ], - "time": "2020-04-07T06:44:48+00:00" + "time": "2020-05-03T19:32:03+00:00" }, { "name": "ralouphie/getallheaders", @@ -3168,54 +3755,124 @@ "time": "2019-03-08T08:55:37+00:00" }, { - "name": "ramsey/uuid", - "version": "3.9.3", + "name": "ramsey/collection", + "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/ramsey/uuid.git", - "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92" + "url": "https://github.com/ramsey/collection.git", + "reference": "925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92", - "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92", + "url": "https://api.github.com/repos/ramsey/collection/zipball/925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca", + "reference": "925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca", "shasum": "" }, "require": { + "php": "^7.2" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0", + "fzaninotto/faker": "^1.5", + "jakub-onderka/php-parallel-lint": "^1", + "jangregor/phpstan-prophecy": "^0.6", + "mockery/mockery": "^1.3", + "phpstan/extension-installer": "^1", + "phpstan/phpdoc-parser": "0.4.1", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-mockery": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^8.5", + "slevomat/coding-standard": "^6.0", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP 7.2+ library for representing and manipulating collections.", + "homepage": "https://github.com/ramsey/collection", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "time": "2020-01-05T00:22:59+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d", + "reference": "ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d", + "shasum": "" + }, + "require": { + "brick/math": "^0.8", "ext-json": "*", - "paragonie/random_compat": "^1 | ^2 | 9.99.99", - "php": "^5.4 | ^7 | ^8", + "php": "^7.2 || ^8", + "ramsey/collection": "^1.0", "symfony/polyfill-ctype": "^1.8" }, "replace": { "rhumsaa/uuid": "self.version" }, "require-dev": { - "codeception/aspect-mock": "^1 | ^2", - "doctrine/annotations": "^1.2", - "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1", - "jakub-onderka/php-parallel-lint": "^1", - "mockery/mockery": "^0.9.11 | ^1", + "codeception/aspect-mock": "^3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2", + "doctrine/annotations": "^1.8", + "goaop/framework": "^2", + "mockery/mockery": "^1.3", "moontoast/math": "^1.1", "paragonie/random-lib": "^2", - "php-mock/php-mock-phpunit": "^0.3 | ^1.1", - "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5", - "squizlabs/php_codesniffer": "^3.5" + "php-mock/php-mock-mockery": "^1.3", + "php-mock/php-mock-phpunit": "^2.5", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpstan/extension-installer": "^1.0", + "phpstan/phpdoc-parser": "0.4.3", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-mockery": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^8.5", + "psy/psysh": "^0.10.0", + "slevomat/coding-standard": "^6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "3.9.4" }, "suggest": { - "ext-ctype": "Provides support for PHP Ctype functions", - "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", - "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator", - "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", - "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-ctype": "Enables faster processing of character classification using ctype functions.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", - "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "4.x-dev" } }, "autoload": { @@ -3230,29 +3887,116 @@ "license": [ "MIT" ], - "authors": [ - { - "name": "Ben Ramsey", - "email": "ben@benramsey.com", - "homepage": "https://benramsey.com" - }, - { - "name": "Marijn Huizendveld", - "email": "marijn.huizendveld@gmail.com" - }, - { - "name": "Thibaud Fabre", - "email": "thibaud@aztech.io" - } - ], - "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", "homepage": "https://github.com/ramsey/uuid", "keywords": [ "guid", "identifier", "uuid" ], - "time": "2020-02-21T04:36:14+00:00" + "time": "2020-03-29T20:13:32+00:00" + }, + { + "name": "sabberworm/php-css-parser", + "version": "8.3.1", + "source": { + "type": "git", + "url": "https://github.com/sabberworm/PHP-CSS-Parser.git", + "reference": "d217848e1396ef962fb1997cf3e2421acba7f796" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/d217848e1396ef962fb1997cf3e2421acba7f796", + "reference": "d217848e1396ef962fb1997cf3e2421acba7f796", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "codacy/coverage": "^1.4", + "phpunit/phpunit": "~4.8" + }, + "type": "library", + "autoload": { + "psr-0": { + "Sabberworm\\CSS": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Raphael Schweikert" + } + ], + "description": "Parser for CSS Files written in PHP", + "homepage": "http://www.sabberworm.com/blog/2010/6/10/php-css-parser", + "keywords": [ + "css", + "parser", + "stylesheet" + ], + "time": "2020-06-01T09:10:00+00:00" + }, + { + "name": "stripe/stripe-php", + "version": "v7.40.0", + "source": { + "type": "git", + "url": "https://github.com/stripe/stripe-php.git", + "reference": "04aedea5ad95b9722aa394a41787751b2b478310" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/04aedea5ad95b9722aa394a41787751b2b478310", + "reference": "04aedea5ad95b9722aa394a41787751b2b478310", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "php": ">=5.6.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "2.16.1", + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5.7", + "squizlabs/php_codesniffer": "^3.3", + "symfony/process": "~3.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "psr-4": { + "Stripe\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Stripe and contributors", + "homepage": "https://github.com/stripe/stripe-php/contributors" + } + ], + "description": "Stripe PHP Library", + "homepage": "https://stripe.com/", + "keywords": [ + "api", + "payment processing", + "stripe" + ], + "time": "2020-07-06T17:51:30+00:00" }, { "name": "swiftmailer/swiftmailer", @@ -3318,41 +4062,44 @@ }, { "name": "symfony/console", - "version": "v4.4.8", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "10bb3ee3c97308869d53b3e3d03f6ac23ff985f7" + "reference": "34ac555a3627e324b660e318daa07572e1140123" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/10bb3ee3c97308869d53b3e3d03f6ac23ff985f7", - "reference": "10bb3ee3c97308869d53b3e3d03f6ac23ff985f7", + "url": "https://api.github.com/repos/symfony/console/zipball/34ac555a3627e324b660e318daa07572e1140123", + "reference": "34ac555a3627e324b660e318daa07572e1140123", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.2.5", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php73": "^1.8", - "symfony/service-contracts": "^1.1|^2" + "symfony/polyfill-php80": "^1.15", + "symfony/service-contracts": "^1.1|^2", + "symfony/string": "^5.1" }, "conflict": { - "symfony/dependency-injection": "<3.4", - "symfony/event-dispatcher": "<4.3|>=5", + "symfony/dependency-injection": "<4.4", + "symfony/dotenv": "<5.1", + "symfony/event-dispatcher": "<4.4", "symfony/lock": "<4.4", - "symfony/process": "<3.3" + "symfony/process": "<4.4" }, "provide": { "psr/log-implementation": "1.0" }, "require-dev": { "psr/log": "~1.0", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/event-dispatcher": "^4.3", + "symfony/config": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/event-dispatcher": "^4.4|^5.0", "symfony/lock": "^4.4|^5.0", - "symfony/process": "^3.4|^4.0|^5.0", - "symfony/var-dumper": "^4.3|^5.0" + "symfony/process": "^4.4|^5.0", + "symfony/var-dumper": "^4.4|^5.0" }, "suggest": { "psr/log": "For using the console logger", @@ -3363,7 +4110,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -3390,29 +4137,29 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2020-03-30T11:41:10+00:00" + "time": "2020-06-15T12:59:21+00:00" }, { "name": "symfony/css-selector", - "version": "v5.0.8", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "5f8d5271303dad260692ba73dfa21777d38e124e" + "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/5f8d5271303dad260692ba73dfa21777d38e124e", - "reference": "5f8d5271303dad260692ba73dfa21777d38e124e", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9", + "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9", "shasum": "" }, "require": { - "php": "^7.2.5" + "php": ">=7.2.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -3443,44 +4190,38 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2020-03-27T16:56:45+00:00" + "time": "2020-05-20T17:43:50+00:00" }, { - "name": "symfony/debug", - "version": "v4.4.8", + "name": "symfony/deprecation-contracts", + "version": "v2.1.3", "source": { "type": "git", - "url": "https://github.com/symfony/debug.git", - "reference": "346636d2cae417992ecfd761979b2ab98b339a45" + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/346636d2cae417992ecfd761979b2ab98b339a45", - "reference": "346636d2cae417992ecfd761979b2ab98b339a45", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14", + "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14", "shasum": "" }, "require": { - "php": "^7.1.3", - "psr/log": "~1.0" - }, - "conflict": { - "symfony/http-kernel": "<3.4" - }, - "require-dev": { - "symfony/http-kernel": "^3.4|^4.0|^5.0" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "2.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { - "psr-4": { - "Symfony\\Component\\Debug\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "function.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -3489,46 +4230,47 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Debug Component", + "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", - "time": "2020-03-27T16:54:36+00:00" + "time": "2020-06-06T08:49:21+00:00" }, { "name": "symfony/error-handler", - "version": "v4.4.8", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "7e9828fc98aa1cf27b422fe478a84f5b0abb7358" + "reference": "7d0b927b9d3dc41d7d46cda38cbfcd20cdcbb896" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/7e9828fc98aa1cf27b422fe478a84f5b0abb7358", - "reference": "7e9828fc98aa1cf27b422fe478a84f5b0abb7358", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/7d0b927b9d3dc41d7d46cda38cbfcd20cdcbb896", + "reference": "7d0b927b9d3dc41d7d46cda38cbfcd20cdcbb896", "shasum": "" }, "require": { - "php": "^7.1.3", - "psr/log": "~1.0", - "symfony/debug": "^4.4.5", + "php": ">=7.2.5", + "psr/log": "^1.0", + "symfony/polyfill-php80": "^1.15", "symfony/var-dumper": "^4.4|^5.0" }, "require-dev": { + "symfony/deprecation-contracts": "^2.1", "symfony/http-kernel": "^4.4|^5.0", "symfony/serializer": "^4.4|^5.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -3555,41 +4297,43 @@ ], "description": "Symfony ErrorHandler Component", "homepage": "https://symfony.com", - "time": "2020-03-30T14:07:33+00:00" + "time": "2020-05-30T20:35:19+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.4.8", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "abc8e3618bfdb55e44c8c6a00abd333f831bbfed" + "reference": "cc0d059e2e997e79ca34125a52f3e33de4424ac7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/abc8e3618bfdb55e44c8c6a00abd333f831bbfed", - "reference": "abc8e3618bfdb55e44c8c6a00abd333f831bbfed", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/cc0d059e2e997e79ca34125a52f3e33de4424ac7", + "reference": "cc0d059e2e997e79ca34125a52f3e33de4424ac7", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/event-dispatcher-contracts": "^1.1" + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/event-dispatcher-contracts": "^2", + "symfony/polyfill-php80": "^1.15" }, "conflict": { - "symfony/dependency-injection": "<3.4" + "symfony/dependency-injection": "<4.4" }, "provide": { "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "1.1" + "symfony/event-dispatcher-implementation": "2.0" }, "require-dev": { "psr/log": "~1.0", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/config": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/http-foundation": "^4.4|^5.0", "symfony/service-contracts": "^1.1|^2", - "symfony/stopwatch": "^3.4|^4.0|^5.0" + "symfony/stopwatch": "^4.4|^5.0" }, "suggest": { "symfony/dependency-injection": "", @@ -3598,7 +4342,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -3625,33 +4369,37 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2020-03-27T16:54:36+00:00" + "time": "2020-05-20T17:43:50+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.7", + "version": "v2.1.3", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18" + "reference": "f6f613d74cfc5a623fc36294d3451eb7fa5a042b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18", - "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f6f613d74cfc5a623fc36294d3451eb7fa5a042b", + "reference": "f6f613d74cfc5a623fc36294d3451eb7fa5a042b", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.2.5", + "psr/event-dispatcher": "^1" }, "suggest": { - "psr/event-dispatcher": "", "symfony/event-dispatcher-implementation": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "2.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -3683,29 +4431,29 @@ "interoperability", "standards" ], - "time": "2019-09-17T09:54:03+00:00" + "time": "2020-07-06T13:23:11+00:00" }, { "name": "symfony/finder", - "version": "v4.4.8", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "5729f943f9854c5781984ed4907bbb817735776b" + "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b", - "reference": "5729f943f9854c5781984ed4907bbb817735776b", + "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187", + "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.2.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -3732,35 +4480,41 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2020-03-27T16:54:36+00:00" + "time": "2020-05-20T17:43:50+00:00" }, { "name": "symfony/http-foundation", - "version": "v4.4.8", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "ec5bd254c223786f5fa2bb49a1e705c1b8e7cee2" + "reference": "f93055171b847915225bd5b0a5792888419d8d75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ec5bd254c223786f5fa2bb49a1e705c1b8e7cee2", - "reference": "ec5bd254c223786f5fa2bb49a1e705c1b8e7cee2", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f93055171b847915225bd5b0a5792888419d8d75", + "reference": "f93055171b847915225bd5b0a5792888419d8d75", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/mime": "^4.3|^5.0", - "symfony/polyfill-mbstring": "~1.1" + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php80": "^1.15" }, "require-dev": { "predis/predis": "~1.0", - "symfony/expression-language": "^3.4|^4.0|^5.0" + "symfony/cache": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/mime": "^4.4|^5.0" + }, + "suggest": { + "symfony/mime": "To use the file extension guesser" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -3787,59 +4541,68 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2020-04-18T20:40:08+00:00" + "time": "2020-06-15T06:52:54+00:00" }, { "name": "symfony/http-kernel", - "version": "v4.4.8", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "1799a6c01f0db5851f399151abdb5d6393fec277" + "reference": "a18c27ace1ef344ffcb129a5b089bad7643b387a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1799a6c01f0db5851f399151abdb5d6393fec277", - "reference": "1799a6c01f0db5851f399151abdb5d6393fec277", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a18c27ace1ef344ffcb129a5b089bad7643b387a", + "reference": "a18c27ace1ef344ffcb129a5b089bad7643b387a", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.2.5", "psr/log": "~1.0", - "symfony/error-handler": "^4.4", - "symfony/event-dispatcher": "^4.4", + "symfony/deprecation-contracts": "^2.1", + "symfony/error-handler": "^4.4|^5.0", + "symfony/event-dispatcher": "^5.0", "symfony/http-foundation": "^4.4|^5.0", "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-php73": "^1.9" + "symfony/polyfill-php73": "^1.9", + "symfony/polyfill-php80": "^1.15" }, "conflict": { - "symfony/browser-kit": "<4.3", - "symfony/config": "<3.4", - "symfony/console": ">=5", - "symfony/dependency-injection": "<4.3", - "symfony/translation": "<4.2", - "twig/twig": "<1.34|<2.4,>=2" + "symfony/browser-kit": "<4.4", + "symfony/cache": "<5.0", + "symfony/config": "<5.0", + "symfony/console": "<4.4", + "symfony/dependency-injection": "<4.4", + "symfony/doctrine-bridge": "<5.0", + "symfony/form": "<5.0", + "symfony/http-client": "<5.0", + "symfony/mailer": "<5.0", + "symfony/messenger": "<5.0", + "symfony/translation": "<5.0", + "symfony/twig-bridge": "<5.0", + "symfony/validator": "<5.0", + "twig/twig": "<2.4" }, "provide": { "psr/log-implementation": "1.0" }, "require-dev": { "psr/cache": "~1.0", - "symfony/browser-kit": "^4.3|^5.0", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/console": "^3.4|^4.0", - "symfony/css-selector": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^4.3|^5.0", - "symfony/dom-crawler": "^3.4|^4.0|^5.0", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/finder": "^3.4|^4.0|^5.0", - "symfony/process": "^3.4|^4.0|^5.0", - "symfony/routing": "^3.4|^4.0|^5.0", - "symfony/stopwatch": "^3.4|^4.0|^5.0", - "symfony/templating": "^3.4|^4.0|^5.0", - "symfony/translation": "^4.2|^5.0", + "symfony/browser-kit": "^4.4|^5.0", + "symfony/config": "^5.0", + "symfony/console": "^4.4|^5.0", + "symfony/css-selector": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/dom-crawler": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0", + "symfony/routing": "^4.4|^5.0", + "symfony/stopwatch": "^4.4|^5.0", + "symfony/translation": "^4.4|^5.0", "symfony/translation-contracts": "^1.1|^2", - "twig/twig": "^1.34|^2.4|^3.0" + "twig/twig": "^2.4|^3.0" }, "suggest": { "symfony/browser-kit": "", @@ -3850,7 +4613,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -3877,26 +4640,103 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2020-04-28T18:47:42+00:00" + "time": "2020-06-15T13:51:38+00:00" }, { - "name": "symfony/mime", - "version": "v5.0.8", + "name": "symfony/intl", + "version": "v5.1.2", "source": { "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "5d6c81c39225a750f3f43bee15f03093fb9aaa0b" + "url": "https://github.com/symfony/intl.git", + "reference": "b21d69ebb33adfcb7e6d8b0a0a8799db7090705b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/5d6c81c39225a750f3f43bee15f03093fb9aaa0b", - "reference": "5d6c81c39225a750f3f43bee15f03093fb9aaa0b", + "url": "https://api.github.com/repos/symfony/intl/zipball/b21d69ebb33adfcb7e6d8b0a0a8799db7090705b", + "reference": "b21d69ebb33adfcb7e6d8b0a0a8799db7090705b", "shasum": "" }, "require": { - "php": "^7.2.5", + "php": ">=7.2.5", + "symfony/polyfill-intl-icu": "~1.0", + "symfony/polyfill-php80": "^1.15" + }, + "require-dev": { + "symfony/filesystem": "^4.4|^5.0" + }, + "suggest": { + "ext-intl": "to use the component with locales other than \"en\"" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Intl\\": "" + }, + "classmap": [ + "Resources/stubs" + ], + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + }, + { + "name": "Eriksen Costa", + "email": "eriksen.costa@infranology.com.br" + }, + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.", + "homepage": "https://symfony.com", + "keywords": [ + "i18n", + "icu", + "internationalization", + "intl", + "l10n", + "localization" + ], + "time": "2020-05-30T20:35:19+00:00" + }, + { + "name": "symfony/mime", + "version": "v5.1.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "c0c418f05e727606e85b482a8591519c4712cf45" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/c0c418f05e727606e85b482a8591519c4712cf45", + "reference": "c0c418f05e727606e85b482a8591519c4712cf45", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", "symfony/polyfill-intl-idn": "^1.10", - "symfony/polyfill-mbstring": "^1.0" + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.15" }, "conflict": { "symfony/mailer": "<4.4" @@ -3908,7 +4748,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -3939,20 +4779,20 @@ "mime", "mime-type" ], - "time": "2020-04-17T03:29:44+00:00" + "time": "2020-06-09T15:07:35+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.15.0", + "version": "v1.17.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14" + "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/4719fa9c18b0464d399f1a63bf624b42b6fa8d14", - "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d", + "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d", "shasum": "" }, "require": { @@ -3964,7 +4804,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.15-dev" + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -3997,20 +4841,20 @@ "polyfill", "portable" ], - "time": "2020-02-27T09:26:54+00:00" + "time": "2020-06-06T08:46:27+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.15.0", + "version": "v1.17.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "ad6d62792bfbcfc385dd34b424d4fcf9712a32c8" + "reference": "ba6c9c18db36235b859cc29b8372d1c01298c035" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/ad6d62792bfbcfc385dd34b424d4fcf9712a32c8", - "reference": "ad6d62792bfbcfc385dd34b424d4fcf9712a32c8", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/ba6c9c18db36235b859cc29b8372d1c01298c035", + "reference": "ba6c9c18db36235b859cc29b8372d1c01298c035", "shasum": "" }, "require": { @@ -4022,7 +4866,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.15-dev" + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -4056,20 +4904,146 @@ "portable", "shim" ], - "time": "2020-03-09T19:04:49+00:00" + "time": "2020-06-06T08:46:27+00:00" }, { - "name": "symfony/polyfill-intl-idn", - "version": "v1.15.0", + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.17.1", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf" + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "6e4dbcf5e81eba86e36731f94fe56b1726835846" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf", - "reference": "47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/6e4dbcf5e81eba86e36731f94fe56b1726835846", + "reference": "6e4dbcf5e81eba86e36731f94fe56b1726835846", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "time": "2020-06-06T08:46:27+00:00" + }, + { + "name": "symfony/polyfill-intl-icu", + "version": "v1.17.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-icu.git", + "reference": "7b5e03aeb88cc8b4b2b136e34b0fc0830e86cd4d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/7b5e03aeb88cc8b4b2b136e34b0fc0830e86cd4d", + "reference": "7b5e03aeb88cc8b4b2b136e34b0fc0830e86cd4d", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "symfony/intl": "~2.3|~3.0|~4.0|~5.0" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's ICU-related data and classes", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "icu", + "intl", + "polyfill", + "portable", + "shim" + ], + "time": "2020-06-06T08:46:27+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.17.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "a57f8161502549a742a63c09f0a604997bf47027" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a57f8161502549a742a63c09f0a604997bf47027", + "reference": "a57f8161502549a742a63c09f0a604997bf47027", "shasum": "" }, "require": { @@ -4083,7 +5057,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.15-dev" + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -4118,20 +5096,87 @@ "portable", "shim" ], - "time": "2020-03-09T19:04:49+00:00" + "time": "2020-06-06T08:46:27+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.15.0", + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.17.1", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac" + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "40309d1700e8f72447bb9e7b54af756eeea35620" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/81ffd3a9c6d707be22e3012b827de1c9775fc5ac", - "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/40309d1700e8f72447bb9e7b54af756eeea35620", + "reference": "40309d1700e8f72447bb9e7b54af756eeea35620", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "time": "2020-06-14T14:40:37+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.17.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "7110338d81ce1cbc3e273136e4574663627037a7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7110338d81ce1cbc3e273136e4574663627037a7", + "reference": "7110338d81ce1cbc3e273136e4574663627037a7", "shasum": "" }, "require": { @@ -4143,7 +5188,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.15-dev" + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -4177,20 +5226,20 @@ "portable", "shim" ], - "time": "2020-03-09T19:04:49+00:00" + "time": "2020-06-06T08:46:27+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.15.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "37b0976c78b94856543260ce09b460a7bc852747" + "reference": "f048e612a3905f34931127360bdd2def19a5e582" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/37b0976c78b94856543260ce09b460a7bc852747", - "reference": "37b0976c78b94856543260ce09b460a7bc852747", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582", + "reference": "f048e612a3905f34931127360bdd2def19a5e582", "shasum": "" }, "require": { @@ -4199,7 +5248,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.15-dev" + "dev-master": "1.17-dev" } }, "autoload": { @@ -4232,20 +5281,20 @@ "portable", "shim" ], - "time": "2020-02-27T09:26:54+00:00" + "time": "2020-05-12T16:47:27+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.15.0", + "version": "v1.17.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "0f27e9f464ea3da33cbe7ca3bdf4eb66def9d0f7" + "reference": "fa0837fe02d617d31fbb25f990655861bb27bd1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f27e9f464ea3da33cbe7ca3bdf4eb66def9d0f7", - "reference": "0f27e9f464ea3da33cbe7ca3bdf4eb66def9d0f7", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fa0837fe02d617d31fbb25f990655861bb27bd1a", + "reference": "fa0837fe02d617d31fbb25f990655861bb27bd1a", "shasum": "" }, "require": { @@ -4254,7 +5303,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.15-dev" + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -4290,29 +5343,96 @@ "portable", "shim" ], - "time": "2020-02-27T09:26:54+00:00" + "time": "2020-06-06T08:46:27+00:00" }, { - "name": "symfony/process", - "version": "v4.4.8", + "name": "symfony/polyfill-php80", + "version": "v1.17.1", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "4b6a9a4013baa65d409153cbb5a895bf093dc7f4" + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/4b6a9a4013baa65d409153cbb5a895bf093dc7f4", - "reference": "4b6a9a4013baa65d409153cbb5a895bf093dc7f4", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2", + "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.0.8" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "time": "2020-06-06T08:46:27+00:00" + }, + { + "name": "symfony/process", + "version": "v5.1.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "7f6378c1fa2147eeb1b4c385856ce9de0d46ebd1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/7f6378c1fa2147eeb1b4c385856ce9de0d46ebd1", + "reference": "7f6378c1fa2147eeb1b4c385856ce9de0d46ebd1", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.15" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" } }, "autoload": { @@ -4339,24 +5459,24 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2020-04-15T15:56:18+00:00" + "time": "2020-05-30T20:35:19+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v2.0.0", + "version": "v2.0.1", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "ce709cd9c90872c08c2427b45739d5f3c781ab4f" + "reference": "e44f249afab496b4e8c0f7461fb8140eaa4b24d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/ce709cd9c90872c08c2427b45739d5f3c781ab4f", - "reference": "ce709cd9c90872c08c2427b45739d5f3c781ab4f", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/e44f249afab496b4e8c0f7461fb8140eaa4b24d2", + "reference": "e44f249afab496b4e8c0f7461fb8140eaa4b24d2", "shasum": "" }, "require": { - "php": "^7.1", + "php": ">=7.1", "psr/http-message": "^1.0", "symfony/http-foundation": "^4.4 || ^5.0" }, @@ -4403,38 +5523,40 @@ "psr-17", "psr-7" ], - "time": "2020-01-02T08:07:11+00:00" + "time": "2020-06-25T08:21:47+00:00" }, { "name": "symfony/routing", - "version": "v4.4.8", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "67b4e1f99c050cbc310b8f3d0dbdc4b0212c052c" + "reference": "bbd0ba121d623f66d165a55a108008968911f3eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/67b4e1f99c050cbc310b8f3d0dbdc4b0212c052c", - "reference": "67b4e1f99c050cbc310b8f3d0dbdc4b0212c052c", + "url": "https://api.github.com/repos/symfony/routing/zipball/bbd0ba121d623f66d165a55a108008968911f3eb", + "reference": "bbd0ba121d623f66d165a55a108008968911f3eb", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/polyfill-php80": "^1.15" }, "conflict": { - "symfony/config": "<4.2", - "symfony/dependency-injection": "<3.4", - "symfony/yaml": "<3.4" + "symfony/config": "<5.0", + "symfony/dependency-injection": "<4.4", + "symfony/yaml": "<4.4" }, "require-dev": { "doctrine/annotations": "~1.2", "psr/log": "~1.0", - "symfony/config": "^4.2|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/http-foundation": "^3.4|^4.0|^5.0", - "symfony/yaml": "^3.4|^4.0|^5.0" + "symfony/config": "^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/http-foundation": "^4.4|^5.0", + "symfony/yaml": "^4.4|^5.0" }, "suggest": { "doctrine/annotations": "For using the annotation loader", @@ -4446,7 +5568,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -4479,24 +5601,24 @@ "uri", "url" ], - "time": "2020-04-21T19:59:53+00:00" + "time": "2020-06-10T11:49:58+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.0.1", + "version": "v2.1.3", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "144c5e51266b281231e947b51223ba14acf1a749" + "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749", - "reference": "144c5e51266b281231e947b51223ba14acf1a749", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442", + "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442", "shasum": "" }, "require": { - "php": "^7.2.5", + "php": ">=7.2.5", "psr/container": "^1.0" }, "suggest": { @@ -4505,7 +5627,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -4537,46 +5663,119 @@ "interoperability", "standards" ], - "time": "2019-11-18T17:27:11+00:00" + "time": "2020-07-06T13:23:11+00:00" }, { - "name": "symfony/translation", - "version": "v4.4.8", + "name": "symfony/string", + "version": "v5.1.2", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "8272bbd2b7e220ef812eba2a2b30068a5c64b191" + "url": "https://github.com/symfony/string.git", + "reference": "ac70459db781108db7c6d8981dd31ce0e29e3298" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/8272bbd2b7e220ef812eba2a2b30068a5c64b191", - "reference": "8272bbd2b7e220ef812eba2a2b30068a5c64b191", + "url": "https://api.github.com/repos/symfony/string/zipball/ac70459db781108db7c6d8981dd31ce0e29e3298", + "reference": "ac70459db781108db7c6d8981dd31ce0e29e3298", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.2.5", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", "symfony/polyfill-mbstring": "~1.0", - "symfony/translation-contracts": "^1.1.6|^2" + "symfony/polyfill-php80": "~1.15" + }, + "require-dev": { + "symfony/error-handler": "^4.4|^5.0", + "symfony/http-client": "^4.4|^5.0", + "symfony/translation-contracts": "^1.1|^2", + "symfony/var-exporter": "^4.4|^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "files": [ + "Resources/functions.php" + ], + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony String component", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "time": "2020-06-11T12:16:36+00:00" + }, + { + "name": "symfony/translation", + "version": "v5.1.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "d387f07d4c15f9c09439cf3f13ddbe0b2c5e8be2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/d387f07d4c15f9c09439cf3f13ddbe0b2c5e8be2", + "reference": "d387f07d4c15f9c09439cf3f13ddbe0b2c5e8be2", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "^1.15", + "symfony/translation-contracts": "^2" }, "conflict": { - "symfony/config": "<3.4", - "symfony/dependency-injection": "<3.4", - "symfony/http-kernel": "<4.4", - "symfony/yaml": "<3.4" + "symfony/config": "<4.4", + "symfony/dependency-injection": "<5.0", + "symfony/http-kernel": "<5.0", + "symfony/twig-bundle": "<5.0", + "symfony/yaml": "<4.4" }, "provide": { - "symfony/translation-implementation": "1.0" + "symfony/translation-implementation": "2.0" }, "require-dev": { "psr/log": "~1.0", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/console": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/finder": "~2.8|~3.0|~4.0|^5.0", - "symfony/http-kernel": "^4.4", - "symfony/intl": "^3.4|^4.0|^5.0", + "symfony/config": "^4.4|^5.0", + "symfony/console": "^4.4|^5.0", + "symfony/dependency-injection": "^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/http-kernel": "^5.0", + "symfony/intl": "^4.4|^5.0", "symfony/service-contracts": "^1.1.2|^2", - "symfony/yaml": "^3.4|^4.0|^5.0" + "symfony/yaml": "^4.4|^5.0" }, "suggest": { "psr/log-implementation": "To use logging capability in translator", @@ -4586,7 +5785,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -4613,24 +5812,24 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2020-04-12T16:45:36+00:00" + "time": "2020-05-30T20:35:19+00:00" }, { "name": "symfony/translation-contracts", - "version": "v2.0.1", + "version": "v2.1.3", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed" + "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed", - "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/616a9773c853097607cf9dd6577d5b143ffdcd63", + "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63", "shasum": "" }, "require": { - "php": "^7.2.5" + "php": ">=7.2.5" }, "suggest": { "symfony/translation-implementation": "" @@ -4638,7 +5837,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -4670,36 +5873,36 @@ "interoperability", "standards" ], - "time": "2019-11-18T17:27:11+00:00" + "time": "2020-07-06T13:23:11+00:00" }, { "name": "symfony/var-dumper", - "version": "v4.4.8", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "c587e04ce5d1aa62d534a038f574d9a709e814cf" + "reference": "46a942903059b0b05e601f00eb64179e05578c0f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c587e04ce5d1aa62d534a038f574d9a709e814cf", - "reference": "c587e04ce5d1aa62d534a038f574d9a709e814cf", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/46a942903059b0b05e601f00eb64179e05578c0f", + "reference": "46a942903059b0b05e601f00eb64179e05578c0f", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.2.5", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php72": "~1.5" + "symfony/polyfill-php80": "^1.15" }, "conflict": { - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", - "symfony/console": "<3.4" + "phpunit/phpunit": "<5.4.3", + "symfony/console": "<4.4" }, "require-dev": { "ext-iconv": "*", - "symfony/console": "^3.4|^4.0|^5.0", + "symfony/console": "^4.4|^5.0", "symfony/process": "^4.4|^5.0", - "twig/twig": "^1.34|^2.4|^3.0" + "twig/twig": "^2.4|^3.0" }, "suggest": { "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", @@ -4712,7 +5915,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -4746,30 +5949,30 @@ "debug", "dump" ], - "time": "2020-04-12T16:14:02+00:00" + "time": "2020-05-30T20:35:19+00:00" }, { "name": "teamtnt/laravel-scout-tntsearch-driver", - "version": "v7.2.0", + "version": "v8.3.0", "source": { "type": "git", "url": "https://github.com/teamtnt/laravel-scout-tntsearch-driver.git", - "reference": "72a66f92ba8934040bd0d1cbaa8fae419b2d6b71" + "reference": "a13b7cfe78a70feaf061071a4b681d449b59d875" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/teamtnt/laravel-scout-tntsearch-driver/zipball/72a66f92ba8934040bd0d1cbaa8fae419b2d6b71", - "reference": "72a66f92ba8934040bd0d1cbaa8fae419b2d6b71", + "url": "https://api.github.com/repos/teamtnt/laravel-scout-tntsearch-driver/zipball/a13b7cfe78a70feaf061071a4b681d449b59d875", + "reference": "a13b7cfe78a70feaf061071a4b681d449b59d875", "shasum": "" }, "require": { - "illuminate/bus": "~5.4|^6.0", - "illuminate/contracts": "~5.4|^6.0", - "illuminate/database": "~5.4|^6.0", - "illuminate/pagination": "~5.4|^6.0", - "illuminate/queue": "~5.4|^6.0", - "illuminate/support": "~5.4|^6.0", - "laravel/scout": "7.*", + "illuminate/bus": "~5.4|^6.0|^7.0", + "illuminate/contracts": "~5.4|^6.0|^7.0", + "illuminate/database": "~5.4|^6.0|^7.0", + "illuminate/pagination": "~5.4|^6.0|^7.0", + "illuminate/queue": "~5.4|^6.0|^7.0", + "illuminate/support": "~5.4|^6.0|^7.0", + "laravel/scout": "7.*|^8.0", "php": ">=7.1", "teamtnt/tntsearch": "2.*" }, @@ -4813,7 +6016,7 @@ "search", "tntsearch" ], - "time": "2019-09-05T07:36:04+00:00" + "time": "2020-05-12T16:42:57+00:00" }, { "name": "teamtnt/tntsearch", @@ -4922,27 +6125,28 @@ }, { "name": "vlucas/phpdotenv", - "version": "v3.6.3", + "version": "v4.1.7", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "1b3103013797f04521c6cae5560f604649484066" + "reference": "db63b2ea280fdcf13c4ca392121b0b2450b51193" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1b3103013797f04521c6cae5560f604649484066", - "reference": "1b3103013797f04521c6cae5560f604649484066", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/db63b2ea280fdcf13c4ca392121b0b2450b51193", + "reference": "db63b2ea280fdcf13c4ca392121b0b2450b51193", "shasum": "" }, "require": { - "php": "^5.4 || ^7.0", - "phpoption/phpoption": "^1.5", - "symfony/polyfill-ctype": "^1.9" + "php": "^5.5.9 || ^7.0 || ^8.0", + "phpoption/phpoption": "^1.7.3", + "symfony/polyfill-ctype": "^1.16" }, "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", "ext-filter": "*", "ext-pcre": "*", - "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0" + "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0" }, "suggest": { "ext-filter": "Required to use the boolean validator.", @@ -4951,7 +6155,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.6-dev" + "dev-master": "4.1-dev" } }, "autoload": { @@ -4981,7 +6185,55 @@ "env", "environment" ], - "time": "2020-04-12T15:18:03+00:00" + "time": "2020-06-07T18:25:35+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "1.5.2", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "618631dc601d8eb6ea0a9fbf654ec82f066c4e97" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/618631dc601d8eb6ea0a9fbf654ec82f066c4e97", + "reference": "618631dc601d8eb6ea0a9fbf654ec82f066c4e97", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "http://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "time": "2020-06-15T23:49:30+00:00" } ], "packages-dev": [ @@ -5163,16 +6415,16 @@ }, { "name": "composer/composer", - "version": "1.10.5", + "version": "1.10.8", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "7a4d5b6aa30d2118af27c04f5e897b57156ccfa9" + "reference": "56e0e094478f30935e9128552188355fa9712291" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/7a4d5b6aa30d2118af27c04f5e897b57156ccfa9", - "reference": "7a4d5b6aa30d2118af27c04f5e897b57156ccfa9", + "url": "https://api.github.com/repos/composer/composer/zipball/56e0e094478f30935e9128552188355fa9712291", + "reference": "56e0e094478f30935e9128552188355fa9712291", "shasum": "" }, "require": { @@ -5180,7 +6432,7 @@ "composer/semver": "^1.0", "composer/spdx-licenses": "^1.2", "composer/xdebug-handler": "^1.1", - "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0", + "justinrainbow/json-schema": "^5.2.10", "php": "^5.3.2 || ^7.0", "psr/log": "^1.0", "seld/jsonlint": "^1.4", @@ -5195,7 +6447,7 @@ }, "require-dev": { "phpspec/prophecy": "^1.10", - "symfony/phpunit-bridge": "^3.4" + "symfony/phpunit-bridge": "^4.2" }, "suggest": { "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", @@ -5239,7 +6491,7 @@ "dependency", "package" ], - "time": "2020-04-10T09:44:22+00:00" + "time": "2020-06-24T19:23:30+00:00" }, { "name": "composer/semver", @@ -5364,16 +6616,16 @@ }, { "name": "composer/xdebug-handler", - "version": "1.4.1", + "version": "1.4.2", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7" + "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/1ab9842d69e64fb3a01be6b656501032d1b78cb7", - "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", + "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51", "shasum": "" }, "require": { @@ -5404,24 +6656,24 @@ "Xdebug", "performance" ], - "time": "2020-03-01T12:26:26+00:00" + "time": "2020-06-04T11:16:35+00:00" }, { "name": "doctrine/instantiator", - "version": "1.3.0", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea", + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^7.1 || ^8.0" }, "require-dev": { "doctrine/coding-standard": "^6.0", @@ -5460,7 +6712,7 @@ "constructor", "instantiate" ], - "time": "2019-10-21T16:45:58+00:00" + "time": "2020-05-29T17:27:14+00:00" }, { "name": "facade/flare-client-php", @@ -5518,43 +6770,43 @@ }, { "name": "facade/ignition", - "version": "1.16.1", + "version": "2.0.7", "source": { "type": "git", "url": "https://github.com/facade/ignition.git", - "reference": "af05ac5ee8587395d7474ec0681c08776a2cb09d" + "reference": "e6bedc1e74507d584fbcb041ebe0f7f215109cf2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/ignition/zipball/af05ac5ee8587395d7474ec0681c08776a2cb09d", - "reference": "af05ac5ee8587395d7474ec0681c08776a2cb09d", + "url": "https://api.github.com/repos/facade/ignition/zipball/e6bedc1e74507d584fbcb041ebe0f7f215109cf2", + "reference": "e6bedc1e74507d584fbcb041ebe0f7f215109cf2", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", - "facade/flare-client-php": "^1.3", + "facade/flare-client-php": "^1.0", "facade/ignition-contracts": "^1.0", "filp/whoops": "^2.4", - "illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0", - "monolog/monolog": "^1.12 || ^2.0", - "php": "^7.1", + "illuminate/support": "^7.0|^8.0", + "monolog/monolog": "^2.0", + "php": "^7.2.5", "scrivo/highlight.php": "^9.15", - "symfony/console": "^3.4 || ^4.0", - "symfony/var-dumper": "^3.4 || ^4.0" + "symfony/console": "^5.0", + "symfony/var-dumper": "^5.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.14", - "mockery/mockery": "^1.2", - "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0" + "mockery/mockery": "^1.3", + "orchestra/testbench": "5.0" }, "suggest": { - "laravel/telescope": "^2.0" + "laravel/telescope": "^3.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev" }, "laravel": { "providers": [ @@ -5585,7 +6837,7 @@ "laravel", "page" ], - "time": "2020-03-05T12:39:07+00:00" + "time": "2020-06-08T09:14:08+00:00" }, { "name": "facade/ignition-contracts", @@ -5633,16 +6885,16 @@ }, { "name": "filp/whoops", - "version": "2.7.1", + "version": "2.7.3", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130" + "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130", - "reference": "fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130", + "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d", + "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d", "shasum": "" }, "require": { @@ -5690,7 +6942,7 @@ "throwable", "whoops" ], - "time": "2020-01-15T10:00:00+00:00" + "time": "2020-06-14T09:00:00+00:00" }, { "name": "fzaninotto/faker", @@ -5744,20 +6996,20 @@ }, { "name": "hamcrest/hamcrest-php", - "version": "v2.0.0", + "version": "v2.0.1", "source": { "type": "git", "url": "https://github.com/hamcrest/hamcrest-php.git", - "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad" + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad", - "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", "shasum": "" }, "require": { - "php": "^5.3|^7.0" + "php": "^5.3|^7.0|^8.0" }, "replace": { "cordoval/hamcrest-php": "*", @@ -5765,14 +7017,13 @@ "kodova/hamcrest-php": "*" }, "require-dev": { - "phpunit/php-file-iterator": "1.3.3", - "phpunit/phpunit": "~4.0", - "satooshi/php-coveralls": "^1.0" + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.1-dev" } }, "autoload": { @@ -5782,116 +7033,26 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD" + "BSD-3-Clause" ], "description": "This is the PHP port of Hamcrest Matchers", "keywords": [ "test" ], - "time": "2016-01-20T08:20:44+00:00" - }, - { - "name": "jakub-onderka/php-console-color", - "version": "v0.2", - "source": { - "type": "git", - "url": "https://github.com/JakubOnderka/PHP-Console-Color.git", - "reference": "d5deaecff52a0d61ccb613bb3804088da0307191" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191", - "reference": "d5deaecff52a0d61ccb613bb3804088da0307191", - "shasum": "" - }, - "require": { - "php": ">=5.4.0" - }, - "require-dev": { - "jakub-onderka/php-code-style": "1.0", - "jakub-onderka/php-parallel-lint": "1.0", - "jakub-onderka/php-var-dump-check": "0.*", - "phpunit/phpunit": "~4.3", - "squizlabs/php_codesniffer": "1.*" - }, - "type": "library", - "autoload": { - "psr-4": { - "JakubOnderka\\PhpConsoleColor\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-2-Clause" - ], - "authors": [ - { - "name": "Jakub Onderka", - "email": "jakub.onderka@gmail.com" - } - ], - "abandoned": "php-parallel-lint/php-console-color", - "time": "2018-09-29T17:23:10+00:00" - }, - { - "name": "jakub-onderka/php-console-highlighter", - "version": "v0.4", - "source": { - "type": "git", - "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git", - "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547", - "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547", - "shasum": "" - }, - "require": { - "ext-tokenizer": "*", - "jakub-onderka/php-console-color": "~0.2", - "php": ">=5.4.0" - }, - "require-dev": { - "jakub-onderka/php-code-style": "~1.0", - "jakub-onderka/php-parallel-lint": "~1.0", - "jakub-onderka/php-var-dump-check": "~0.1", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "~1.5" - }, - "type": "library", - "autoload": { - "psr-4": { - "JakubOnderka\\PhpConsoleHighlighter\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jakub Onderka", - "email": "acci@acci.cz", - "homepage": "http://www.acci.cz/" - } - ], - "description": "Highlight PHP code in terminal", - "abandoned": "php-parallel-lint/php-console-highlighter", - "time": "2018-09-29T18:48:56+00:00" + "time": "2020-07-09T08:09:16+00:00" }, { "name": "justinrainbow/json-schema", - "version": "5.2.9", + "version": "5.2.10", "source": { "type": "git", "url": "https://github.com/justinrainbow/json-schema.git", - "reference": "44c6787311242a979fa15c704327c20e7221a0e4" + "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4", - "reference": "44c6787311242a979fa15c704327c20e7221a0e4", + "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b", + "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b", "shasum": "" }, "require": { @@ -5944,34 +7105,37 @@ "json", "schema" ], - "time": "2019-09-25T14:49:45+00:00" + "time": "2020-05-27T16:41:55+00:00" }, { "name": "mockery/mockery", - "version": "1.3.1", + "version": "1.4.1", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be" + "reference": "1404386ca3410b04fe58b9517e85d702ab33b2c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be", - "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be", + "url": "https://api.github.com/repos/mockery/mockery/zipball/1404386ca3410b04fe58b9517e85d702ab33b2c6", + "reference": "1404386ca3410b04fe58b9517e85d702ab33b2c6", "shasum": "" }, "require": { - "hamcrest/hamcrest-php": "~2.0", + "hamcrest/hamcrest-php": "^2.0.1", "lib-pcre": ">=7.0", - "php": ">=5.6.0" + "php": "^7.3 || ^8.0" + }, + "conflict": { + "phpunit/phpunit": "<8.0" }, "require-dev": { - "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0" + "phpunit/phpunit": "^8.5 || ^9.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.4.x-dev" } }, "autoload": { @@ -6009,24 +7173,24 @@ "test double", "testing" ], - "time": "2019-12-26T09:49:15+00:00" + "time": "2020-07-09T08:31:54+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.9.5", + "version": "1.10.1", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef" + "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef", - "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5", + "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^7.1 || ^8.0" }, "replace": { "myclabs/deep-copy": "self.version" @@ -6057,33 +7221,39 @@ "object", "object graph" ], - "time": "2020-01-17T21:11:47+00:00" + "time": "2020-06-29T13:22:24+00:00" }, { "name": "nunomaduro/collision", - "version": "v3.0.1", + "version": "v4.2.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68" + "reference": "d50490417eded97be300a92cd7df7badc37a9018" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68", - "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/d50490417eded97be300a92cd7df7badc37a9018", + "reference": "d50490417eded97be300a92cd7df7badc37a9018", "shasum": "" }, "require": { - "filp/whoops": "^2.1.4", - "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*", - "php": "^7.1", - "symfony/console": "~2.8|~3.3|~4.0" + "facade/ignition-contracts": "^1.0", + "filp/whoops": "^2.4", + "php": "^7.2.5", + "symfony/console": "^5.0" }, "require-dev": { - "laravel/framework": "5.8.*", - "nunomaduro/larastan": "^0.3.0", - "phpstan/phpstan": "^0.11", - "phpunit/phpunit": "~8.0" + "facade/ignition": "^2.0", + "fideloper/proxy": "^4.2", + "friendsofphp/php-cs-fixer": "^2.16", + "fruitcake/laravel-cors": "^1.0", + "laravel/framework": "^7.0", + "laravel/tinker": "^2.0", + "nunomaduro/larastan": "^0.5", + "orchestra/testbench": "^5.0", + "phpstan/phpstan": "^0.12.3", + "phpunit/phpunit": "^8.5.1 || ^9.0" }, "type": "library", "extra": { @@ -6121,7 +7291,7 @@ "php", "symfony" ], - "time": "2019-03-07T21:35:13+00:00" + "time": "2020-04-04T19:56:08+00:00" }, { "name": "phar-io/manifest", @@ -6227,25 +7397,25 @@ }, { "name": "phpdocumentor/reflection-common", - "version": "2.1.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b" + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b", - "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", "shasum": "" }, "require": { - "php": ">=7.1" + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-2.x": "2.x-dev" } }, "autoload": { @@ -6272,7 +7442,7 @@ "reflection", "static analysis" ], - "time": "2020-04-27T09:25:28+00:00" + "time": "2020-06-27T09:03:43+00:00" }, { "name": "phpdocumentor/reflection-docblock", @@ -6329,30 +7499,29 @@ }, { "name": "phpdocumentor/type-resolver", - "version": "1.1.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "7462d5f123dfc080dfdf26897032a6513644fc95" + "reference": "e878a14a65245fbe78f8080eba03b47c3b705651" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95", - "reference": "7462d5f123dfc080dfdf26897032a6513644fc95", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651", + "reference": "e878a14a65245fbe78f8080eba03b47c3b705651", "shasum": "" }, "require": { - "php": "^7.2", + "php": "^7.2 || ^8.0", "phpdocumentor/reflection-common": "^2.0" }, "require-dev": { - "ext-tokenizer": "^7.2", - "mockery/mockery": "~1" + "ext-tokenizer": "*" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-1.x": "1.x-dev" } }, "autoload": { @@ -6371,37 +7540,37 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "time": "2020-02-18T18:59:58+00:00" + "time": "2020-06-27T10:12:23+00:00" }, { "name": "phpspec/prophecy", - "version": "v1.10.3", + "version": "1.11.1", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "451c3cd1418cf640de218914901e51b064abb093" + "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093", - "reference": "451c3cd1418cf640de218914901e51b064abb093", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160", + "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.0.2", - "php": "^5.3|^7.0", - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", - "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0", - "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0" + "doctrine/instantiator": "^1.2", + "php": "^7.2", + "phpdocumentor/reflection-docblock": "^5.0", + "sebastian/comparator": "^3.0 || ^4.0", + "sebastian/recursion-context": "^3.0 || ^4.0" }, "require-dev": { - "phpspec/phpspec": "^2.5 || ^3.2", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" + "phpspec/phpspec": "^6.0", + "phpunit/phpunit": "^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.10.x-dev" + "dev-master": "1.11.x-dev" } }, "autoload": { @@ -6434,7 +7603,7 @@ "spy", "stub" ], - "time": "2020-03-05T15:02:03+00:00" + "time": "2020-07-08T12:44:21+00:00" }, { "name": "phpunit/php-code-coverage", @@ -6690,16 +7859,16 @@ }, { "name": "phpunit/phpunit", - "version": "8.5.4", + "version": "8.5.8", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "8474e22d7d642f665084ba5ec780626cbd1efd23" + "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8474e22d7d642f665084ba5ec780626cbd1efd23", - "reference": "8474e22d7d642f665084ba5ec780626cbd1efd23", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997", + "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997", "shasum": "" }, "require": { @@ -6769,7 +7938,7 @@ "testing", "xunit" ], - "time": "2020-04-23T04:39:42+00:00" + "time": "2020-06-22T07:06:58+00:00" }, { "name": "scrivo/highlight.php", @@ -7506,16 +8675,16 @@ }, { "name": "seld/phar-utils", - "version": "1.1.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/Seldaek/phar-utils.git", - "reference": "8800503d56b9867d43d9c303b9cbcc26016e82f0" + "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8800503d56b9867d43d9c303b9cbcc26016e82f0", - "reference": "8800503d56b9867d43d9c303b9cbcc26016e82f0", + "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796", + "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796", "shasum": "" }, "require": { @@ -7546,30 +8715,30 @@ "keywords": [ "phar" ], - "time": "2020-02-14T15:25:33+00:00" + "time": "2020-07-07T18:42:57+00:00" }, { "name": "symfony/filesystem", - "version": "v5.0.8", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "7cd0dafc4353a0f62e307df90b48466379c8cc91" + "reference": "6e4320f06d5f2cce0d96530162491f4465179157" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/7cd0dafc4353a0f62e307df90b48466379c8cc91", - "reference": "7cd0dafc4353a0f62e307df90b48466379c8cc91", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/6e4320f06d5f2cce0d96530162491f4465179157", + "reference": "6e4320f06d5f2cce0d96530162491f4465179157", "shasum": "" }, "require": { - "php": "^7.2.5", + "php": ">=7.2.5", "symfony/polyfill-ctype": "~1.8" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -7596,7 +8765,7 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2020-04-12T14:40:17+00:00" + "time": "2020-05-30T20:35:19+00:00" }, { "name": "theseer/tokenizer", @@ -7640,23 +8809,24 @@ }, { "name": "webmozart/assert", - "version": "1.8.0", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6" + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6", - "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6", + "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389", + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0", + "php": "^5.3.3 || ^7.0 || ^8.0", "symfony/polyfill-ctype": "^1.8" }, "conflict": { + "phpstan/phpstan": "<0.12.20", "vimeo/psalm": "<3.9.1" }, "require-dev": { @@ -7684,7 +8854,7 @@ "check", "validate" ], - "time": "2020-04-18T12:12:48+00:00" + "time": "2020-07-08T17:02:28+00:00" } ], "aliases": [], diff --git a/config/app.php b/config/app.php index c8c8a019..0ca539d8 100644 --- a/config/app.php +++ b/config/app.php @@ -164,6 +164,7 @@ return [ TeamTNT\Scout\TNTSearchScoutServiceProvider::class, Intervention\Image\ImageServiceProvider::class, + Laravel\Passport\PassportServiceProvider::class, /* * Package Service Providers... @@ -193,76 +194,102 @@ return [ 'aliases' => [ - 'App' => Illuminate\Support\Facades\App::class, - 'Arr' => Illuminate\Support\Arr::class, - 'Artisan' => Illuminate\Support\Facades\Artisan::class, - 'Auth' => Illuminate\Support\Facades\Auth::class, - 'Blade' => Illuminate\Support\Facades\Blade::class, - 'Broadcast' => Illuminate\Support\Facades\Broadcast::class, - 'Bus' => Illuminate\Support\Facades\Bus::class, - 'Cache' => Illuminate\Support\Facades\Cache::class, - 'Config' => Illuminate\Support\Facades\Config::class, - 'Cookie' => Illuminate\Support\Facades\Cookie::class, - 'Crypt' => Illuminate\Support\Facades\Crypt::class, - 'DB' => Illuminate\Support\Facades\DB::class, - 'Eloquent' => Illuminate\Database\Eloquent\Model::class, - 'Event' => Illuminate\Support\Facades\Event::class, - 'File' => Illuminate\Support\Facades\File::class, - 'Gate' => Illuminate\Support\Facades\Gate::class, - 'Hash' => Illuminate\Support\Facades\Hash::class, - 'Lang' => Illuminate\Support\Facades\Lang::class, - 'Log' => Illuminate\Support\Facades\Log::class, - 'Mail' => Illuminate\Support\Facades\Mail::class, + 'App' => Illuminate\Support\Facades\App::class, + 'Arr' => Illuminate\Support\Arr::class, + 'Artisan' => Illuminate\Support\Facades\Artisan::class, + 'Auth' => Illuminate\Support\Facades\Auth::class, + 'Blade' => Illuminate\Support\Facades\Blade::class, + 'Broadcast' => Illuminate\Support\Facades\Broadcast::class, + 'Bus' => Illuminate\Support\Facades\Bus::class, + 'Cache' => Illuminate\Support\Facades\Cache::class, + 'Config' => Illuminate\Support\Facades\Config::class, + 'Cookie' => Illuminate\Support\Facades\Cookie::class, + 'Crypt' => Illuminate\Support\Facades\Crypt::class, + 'DB' => Illuminate\Support\Facades\DB::class, + 'Eloquent' => Illuminate\Database\Eloquent\Model::class, + 'Event' => Illuminate\Support\Facades\Event::class, + 'File' => Illuminate\Support\Facades\File::class, + 'Gate' => Illuminate\Support\Facades\Gate::class, + 'Hash' => Illuminate\Support\Facades\Hash::class, + 'Lang' => Illuminate\Support\Facades\Lang::class, + 'Log' => Illuminate\Support\Facades\Log::class, + 'Mail' => Illuminate\Support\Facades\Mail::class, 'Notification' => Illuminate\Support\Facades\Notification::class, - 'Password' => Illuminate\Support\Facades\Password::class, - 'Queue' => Illuminate\Support\Facades\Queue::class, - 'Redirect' => Illuminate\Support\Facades\Redirect::class, - 'Redis' => Illuminate\Support\Facades\Redis::class, - 'Request' => Illuminate\Support\Facades\Request::class, - 'Response' => Illuminate\Support\Facades\Response::class, - 'Route' => Illuminate\Support\Facades\Route::class, - 'Schema' => Illuminate\Support\Facades\Schema::class, - 'Session' => Illuminate\Support\Facades\Session::class, - 'Storage' => Illuminate\Support\Facades\Storage::class, - 'Str' => Illuminate\Support\Str::class, - 'URL' => Illuminate\Support\Facades\URL::class, - 'Validator' => Illuminate\Support\Facades\Validator::class, - 'View' => Illuminate\Support\Facades\View::class, - - 'Image' => Intervention\Image\Facades\Image::class - + 'Password' => Illuminate\Support\Facades\Password::class, + 'Queue' => Illuminate\Support\Facades\Queue::class, + 'Redirect' => Illuminate\Support\Facades\Redirect::class, + 'Redis' => Illuminate\Support\Facades\Redis::class, + 'Request' => Illuminate\Support\Facades\Request::class, + 'Response' => Illuminate\Support\Facades\Response::class, + 'Route' => Illuminate\Support\Facades\Route::class, + 'Schema' => Illuminate\Support\Facades\Schema::class, + 'Session' => Illuminate\Support\Facades\Session::class, + 'Storage' => Illuminate\Support\Facades\Storage::class, + 'Str' => Illuminate\Support\Str::class, + 'URL' => Illuminate\Support\Facades\URL::class, + 'Validator' => Illuminate\Support\Facades\Validator::class, + 'View' => Illuminate\Support\Facades\View::class, + 'Image' => Intervention\Image\Facades\Image::class, + 'Stripe' => Cartalyst\Stripe\Laravel\Facades\Stripe::class, ], 'deploy_secret' => env('APP_DEPLOY_SECRET'), 'deploy_branch' => env('APP_DEPLOY_BRANCH'), 'debug_blacklist' => [ - '_ENV' => [ + '_ENV' => [ 'APP_KEY', + + 'DB_USERNAME', 'DB_PASSWORD', 'REDIS_PASSWORD', 'MAIL_PASSWORD', + 'PUSHER_APP_KEY', 'PUSHER_APP_SECRET', + 'PASSPORT_CLIENT_ID', 'PASSPORT_CLIENT_SECRET', + 'AWS_SECRET_ACCESS_KEY', 'AWS_ACCESS_KEY_ID', - 'AWS_SECRET_ACCESS_KEY', + + 'DO_SPACES_KEY', + 'DO_SPACES_SECRET', + + 'WASABI_KEY', + 'WASABI_SECRET', + + 'BACKBLAZE_KEY', + 'BACKBLAZE_SECRET', ], '_SERVER' => [ 'APP_KEY', + + 'DB_USERNAME', 'DB_PASSWORD', 'REDIS_PASSWORD', 'MAIL_PASSWORD', + 'PUSHER_APP_KEY', 'PUSHER_APP_SECRET', + 'PASSPORT_CLIENT_ID', 'PASSPORT_CLIENT_SECRET', - 'AWS_ACCESS_KEY_ID', + 'AWS_SECRET_ACCESS_KEY', + 'AWS_ACCESS_KEY_ID', + + 'DO_SPACES_KEY', + 'DO_SPACES_SECRET', + + 'WASABI_KEY', + 'WASABI_SECRET', + + 'BACKBLAZE_KEY', + 'BACKBLAZE_SECRET', ], - '_POST' => [ + '_POST' => [ 'password', ], ], diff --git a/config/cashier.php b/config/cashier.php new file mode 100644 index 00000000..07cd7c26 --- /dev/null +++ b/config/cashier.php @@ -0,0 +1,129 @@ + env('STRIPE_KEY'), + + 'secret' => env('STRIPE_SECRET'), + + /* + |-------------------------------------------------------------------------- + | Cashier Path + |-------------------------------------------------------------------------- + | + | This is the base URI path where Cashier's views, such as the payment + | verification screen, will be available from. You're free to tweak + | this path according to your preferences and application design. + | + */ + + 'path' => env('CASHIER_PATH', 'stripe'), + + /* + |-------------------------------------------------------------------------- + | Stripe Webhooks + |-------------------------------------------------------------------------- + | + | Your Stripe webhook secret is used to prevent unauthorized requests to + | your Stripe webhook handling controllers. The tolerance setting will + | check the drift between the current time and the signed request's. + | + */ + + 'webhook' => [ + 'secret' => env('STRIPE_WEBHOOK_SECRET'), + 'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300), + ], + + /* + |-------------------------------------------------------------------------- + | Cashier Model + |-------------------------------------------------------------------------- + | + | This is the model in your application that implements the Billable trait + | provided by Cashier. It will serve as the primary model you use while + | interacting with Cashier related methods, subscriptions, and so on. + | + */ + + 'model' => env('CASHIER_MODEL', App\User::class), + + /* + |-------------------------------------------------------------------------- + | Currency + |-------------------------------------------------------------------------- + | + | This is the default currency that will be used when generating charges + | from your application. Of course, you are welcome to use any of the + | various world currencies that are currently supported via Stripe. + | + */ + + 'currency' => env('CASHIER_CURRENCY', 'usd'), + + /* + |-------------------------------------------------------------------------- + | Currency Locale + |-------------------------------------------------------------------------- + | + | This is the default locale in which your money values are formatted in + | for display. To utilize other locales besides the default en locale + | verify you have the "intl" PHP extension installed on the system. + | + */ + + 'currency_locale' => env('CASHIER_CURRENCY_LOCALE', 'en'), + + /* + |-------------------------------------------------------------------------- + | Payment Confirmation Notification + |-------------------------------------------------------------------------- + | + | If this setting is enabled, Cashier will automatically notify customers + | whose payments require additional verification. You should listen to + | Stripe's webhooks in order for this feature to function correctly. + | + */ + + 'payment_notification' => env('CASHIER_PAYMENT_NOTIFICATION'), + + /* + |-------------------------------------------------------------------------- + | Invoice Paper Size + |-------------------------------------------------------------------------- + | + | This option is the default paper size for all invoices generated using + | Cashier. You are free to customize this settings based on the usual + | paper size used by the customers using your Laravel applications. + | + | Supported sizes: 'letter', 'legal', 'A4' + | + */ + + 'paper' => env('CASHIER_PAPER', 'letter'), + + /* + |-------------------------------------------------------------------------- + | Stripe Logger + |-------------------------------------------------------------------------- + | + | This setting defines which logging channel will be used by the Stripe + | library to write log messages. You are free to specify any of your + | logging channels listed inside the "logging" configuration file. + | + */ + + 'logger' => env('CASHIER_LOGGER'), + +]; diff --git a/config/filesystems.php b/config/filesystems.php index c0aa78fa..a525f7f5 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -73,6 +73,24 @@ return [ 'bucket' => env('DO_SPACES_BUCKET'), ], + 'wasabi' => [ + 'driver' => 's3', + 'key' => env('WASABI_KEY'), + 'secret' => env('WASABI_SECRET'), + 'endpoint' => env('WASABI_ENDPOINT'), + 'region' => env('WASABI_REGION'), + 'bucket' => env('WASABI_BUCKET'), + ], + + 'backblaze' => [ + 'driver' => 's3', + 'key' => env('BACKBLAZE_KEY'), + 'secret' => env('BACKBLAZE_SECRET'), + 'endpoint' => env('BACKBLAZE_ENDPOINT'), + 'region' => env('BACKBLAZE_REGION'), + 'bucket' => env('BACKBLAZE_BUCKET'), + ], + ], ]; diff --git a/config/services.php b/config/services.php index fc420a10..a353817b 100644 --- a/config/services.php +++ b/config/services.php @@ -34,5 +34,4 @@ return [ 'client_id' => env('PASSPORT_CLIENT_ID'), 'client_secret' => env('PASSPORT_CLIENT_SECRET'), ], - ]; diff --git a/config/session.php b/config/session.php index 857ebc3e..3e9082d9 100644 --- a/config/session.php +++ b/config/session.php @@ -166,7 +166,7 @@ return [ | */ - 'secure' => env('SESSION_SECURE_COOKIE', false), + 'secure' => env('SESSION_SECURE_COOKIE', null), /* |-------------------------------------------------------------------------- diff --git a/config/vuefilemanager.php b/config/vuefilemanager.php index c6ec0035..556320ad 100644 --- a/config/vuefilemanager.php +++ b/config/vuefilemanager.php @@ -2,17 +2,105 @@ return [ - 'version' => '1.6.4', + 'version' => '1.7', - // Your app name - 'app_name' => 'VueFileManager', + 'pages' => [ + [ + 'visibility' => 1, + 'title' => 'Terms of Service', + 'slug' => 'terms-of-service', + 'content' => 'Laoreet cum hendrerit iaculis arcu phasellus congue et elementum, pharetra risus imperdiet aptent posuere rutrum parturient blandit, dapibus tellus ridiculus potenti aliquam sociis turpis. Nullam commodo eget laoreet risus cursus vel placerat, in dapibus sociis gravida faucibus sodales, fringilla potenti elit semper iaculis ullamcorper. Dignissim vulputate pretium montes pellentesque mollis, consectetur adipiscing curabitur semper sem rhoncus, litora viverra curae proin.', + ], + [ + 'visibility' => 1, + 'title' => 'Privacy Policy', + 'slug' => 'privacy-policy', + 'content' => 'Sit orci justo augue maecenas laoreet consectetur natoque magnis in viverra sagittis, himenaeos urna facilisis mus proin primis diam accumsan tristique inceptos. Primis quisque posuere sit praesent lobortis feugiat semper convallis facilisis, vivamus gravida ligula nostra curae eu donec duis parturient senectus, arcu dolor viverra penatibus natoque cum nisi commodo. Litora sociis mauris justo nullam suspendisse mattis maecenas nascetur congue phasellus cras ultricies posuere donec, dapibus egestas diam lacus ornare montes senectus tincidunt eu taciti sed consequat.', + ], + [ + 'visibility' => 1, + 'title' => 'Cookie Policy', + 'slug' => 'cookie-policy', + 'content' => 'Metus penatibus ligula dolor natoque non habitasse laoreet facilisis, libero vivamus eget semper vulputate interdum integer, phasellus lorem enim blandit consectetur nullam sollicitudin. Hendrerit interdum luctus ut in molestie himenaeos eros cum laoreet parturient est, eu lectus hac et netus viverra dictumst congue elit sem senectus litora, fames scelerisque adipiscing inceptos fringilla montes sociosqu suscipit auctor potenti. Elementum lacus vulputate viverra ac morbi ligula ipsum facilisi, sit eu imperdiet lacinia congue dis vitae.', + ], + ], - // Your app logo - 'app_logo' => '/assets/images/hero.svg', - - // Enable or disable user account registration - 'registration' => true, - - // Limit your storage size for every user if this option is enabled - 'limit_storage_by_capacity' => true, + 'content' => [ + [ + 'name' => 'section_features', + 'value' => '1', + ], + [ + 'name' => 'section_feature_boxes', + 'value' => '1', + ], + [ + 'name' => 'section_pricing_content', + 'value' => '1', + ], + [ + 'name' => 'section_get_started', + 'value' => '1', + ], + [ + 'name' => 'header_title', + 'value' => 'Simple & Powerfull Personal Cloud Storage', + ], + [ + 'name' => 'header_description', + 'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Trully freedom.', + ], + [ + 'name' => 'features_title', + 'value' => 'The Fastest Growing File Manager on the CodeCanyon Market', + ], + [ + 'name' => 'features_description', + 'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Trully freedom.', + ], + [ + 'name' => 'feature_title_1', + 'value' => 'Truly Freedom', + ], + [ + 'name' => 'feature_description_1', + 'value' => 'You have full control over VueFileManager, no third authorities will control your service or usage, only you.', + ], + [ + 'name' => 'feature_title_2', + 'value' => 'The Sky is the Limit', + ], + [ + 'name' => 'feature_description_2', + 'value' => 'VueFileManager is cloud storage software. You have to install and running application on your own server hosting.', + ], + [ + 'name' => 'feature_title_3', + 'value' => 'No Monthly Fees', + ], + [ + 'name' => 'feature_description_3', + 'value' => 'When you running VueFileManager on your own server hosting, anybody can\'t control your content or resell your user data. Your data is safe.', + ], + [ + 'name' => 'pricing_title', + 'value' => 'Pick the Best Plan For Your Needs', + ], + [ + 'name' => 'pricing_description', + 'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Trully freedom.', + ], + [ + 'name' => 'get_started_title', + 'value' => 'Ready to Get Started
With Us?', + ], + [ + 'name' => 'get_started_description', + 'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Trully freedom.', + ], + [ + 'name' => 'footer_content', + 'value' => '© 2020 Simple & Powerfull Personal Cloud Storage. Developed by Hi5Ve.Digital', + ], + ], ]; \ No newline at end of file diff --git a/database/factories/SettingFactory.php b/database/factories/SettingFactory.php new file mode 100644 index 00000000..c18aeead --- /dev/null +++ b/database/factories/SettingFactory.php @@ -0,0 +1,12 @@ +define(Setting::class, function (Faker $faker) { + return [ + // + ]; +}); diff --git a/database/migrations/2016_06_01_000001_create_oauth_auth_codes_table.php b/database/migrations/2016_06_01_000001_create_oauth_auth_codes_table.php new file mode 100644 index 00000000..6c47d247 --- /dev/null +++ b/database/migrations/2016_06_01_000001_create_oauth_auth_codes_table.php @@ -0,0 +1,35 @@ +string('id', 100)->primary(); + $table->unsignedBigInteger('user_id')->index(); + $table->unsignedBigInteger('client_id'); + $table->text('scopes')->nullable(); + $table->boolean('revoked'); + $table->dateTime('expires_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('oauth_auth_codes'); + } +} diff --git a/database/migrations/2016_06_01_000002_create_oauth_access_tokens_table.php b/database/migrations/2016_06_01_000002_create_oauth_access_tokens_table.php new file mode 100644 index 00000000..00f00633 --- /dev/null +++ b/database/migrations/2016_06_01_000002_create_oauth_access_tokens_table.php @@ -0,0 +1,37 @@ +string('id', 100)->primary(); + $table->unsignedBigInteger('user_id')->nullable()->index(); + $table->unsignedBigInteger('client_id'); + $table->string('name')->nullable(); + $table->text('scopes')->nullable(); + $table->boolean('revoked'); + $table->timestamps(); + $table->dateTime('expires_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('oauth_access_tokens'); + } +} diff --git a/database/migrations/2016_06_01_000003_create_oauth_refresh_tokens_table.php b/database/migrations/2016_06_01_000003_create_oauth_refresh_tokens_table.php new file mode 100644 index 00000000..858d0f6d --- /dev/null +++ b/database/migrations/2016_06_01_000003_create_oauth_refresh_tokens_table.php @@ -0,0 +1,33 @@ +string('id', 100)->primary(); + $table->string('access_token_id', 100); + $table->boolean('revoked'); + $table->dateTime('expires_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('oauth_refresh_tokens'); + } +} diff --git a/database/migrations/2016_06_01_000004_create_oauth_clients_table.php b/database/migrations/2016_06_01_000004_create_oauth_clients_table.php new file mode 100644 index 00000000..1dc541a3 --- /dev/null +++ b/database/migrations/2016_06_01_000004_create_oauth_clients_table.php @@ -0,0 +1,38 @@ +bigIncrements('id'); + $table->unsignedBigInteger('user_id')->nullable()->index(); + $table->string('name'); + $table->string('secret', 100)->nullable(); + $table->text('redirect'); + $table->boolean('personal_access_client'); + $table->boolean('password_client'); + $table->boolean('revoked'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('oauth_clients'); + } +} diff --git a/database/migrations/2016_06_01_000005_create_oauth_personal_access_clients_table.php b/database/migrations/2016_06_01_000005_create_oauth_personal_access_clients_table.php new file mode 100644 index 00000000..4b56435c --- /dev/null +++ b/database/migrations/2016_06_01_000005_create_oauth_personal_access_clients_table.php @@ -0,0 +1,32 @@ +bigIncrements('id'); + $table->unsignedBigInteger('client_id'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('oauth_personal_access_clients'); + } +} diff --git a/database/migrations/2019_05_03_000001_create_customer_columns.php b/database/migrations/2019_05_03_000001_create_customer_columns.php new file mode 100644 index 00000000..c7be66cc --- /dev/null +++ b/database/migrations/2019_05_03_000001_create_customer_columns.php @@ -0,0 +1,40 @@ +string('stripe_id')->nullable()->index(); + $table->string('card_brand')->nullable(); + $table->string('card_last_four', 4)->nullable(); + $table->timestamp('trial_ends_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn([ + 'stripe_id', + 'card_brand', + 'card_last_four', + 'trial_ends_at', + ]); + }); + } +} diff --git a/database/migrations/2019_05_03_000002_create_subscriptions_table.php b/database/migrations/2019_05_03_000002_create_subscriptions_table.php new file mode 100644 index 00000000..92ac046a --- /dev/null +++ b/database/migrations/2019_05_03_000002_create_subscriptions_table.php @@ -0,0 +1,41 @@ +bigIncrements('id'); + $table->unsignedBigInteger('user_id'); + $table->string('name'); + $table->string('stripe_id'); + $table->string('stripe_status'); + $table->string('stripe_plan')->nullable(); + $table->integer('quantity')->nullable(); + $table->timestamp('trial_ends_at')->nullable(); + $table->timestamp('ends_at')->nullable(); + $table->timestamps(); + + $table->index(['user_id', 'stripe_status']); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('subscriptions'); + } +} diff --git a/database/migrations/2019_05_03_000003_create_subscription_items_table.php b/database/migrations/2019_05_03_000003_create_subscription_items_table.php new file mode 100644 index 00000000..127eff6d --- /dev/null +++ b/database/migrations/2019_05_03_000003_create_subscription_items_table.php @@ -0,0 +1,37 @@ +bigIncrements('id'); + $table->unsignedBigInteger('subscription_id'); + $table->string('stripe_id')->index(); + $table->string('stripe_plan'); + $table->integer('quantity'); + $table->timestamps(); + + $table->unique(['subscription_id', 'stripe_plan']); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('subscription_items'); + } +} diff --git a/database/migrations/2019_08_15_171345_create_file_manager_files.php b/database/migrations/2019_08_15_171345_create_file_manager_files.php index 139dbefd..adfc7983 100644 --- a/database/migrations/2019_08_15_171345_create_file_manager_files.php +++ b/database/migrations/2019_08_15_171345_create_file_manager_files.php @@ -26,7 +26,7 @@ class CreateFileManagerFiles extends Migration $table->text('mimetype')->nullable(); $table->text('filesize')->nullable(); - $table->enum('type', ['image', 'file'])->nullable(); + $table->text('type')->nullable(); $table->softDeletes(); $table->timestamps(); diff --git a/database/migrations/2020_06_02_073651_add_attributes_to_user_settings_table.php b/database/migrations/2020_06_02_073651_add_attributes_to_user_settings_table.php new file mode 100644 index 00000000..5e4fd8b8 --- /dev/null +++ b/database/migrations/2020_06_02_073651_add_attributes_to_user_settings_table.php @@ -0,0 +1,44 @@ +text('billing_name')->nullable(); + $table->text('billing_address')->nullable(); + $table->text('billing_state')->nullable(); + $table->text('billing_city')->nullable(); + $table->text('billing_postal_code')->nullable(); + $table->text('billing_country')->nullable(); + $table->text('billing_phone_number')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('user_settings', function (Blueprint $table) { + $table->dropColumn('billing_name'); + $table->dropColumn('billing_address'); + $table->dropColumn('billing_state'); + $table->dropColumn('billing_city'); + $table->dropColumn('billing_postal_code'); + $table->dropColumn('billing_country'); + $table->dropColumn('billing_phone_number'); + }); + } +} diff --git a/database/migrations/2020_04_02_055021_change_type_attribute_in_file_manager_files_table.php b/database/migrations/2020_06_25_142635_create_settings_table.php similarity index 53% rename from database/migrations/2020_04_02_055021_change_type_attribute_in_file_manager_files_table.php rename to database/migrations/2020_06_25_142635_create_settings_table.php index c6c12f50..e9b8d2a1 100644 --- a/database/migrations/2020_04_02_055021_change_type_attribute_in_file_manager_files_table.php +++ b/database/migrations/2020_06_25_142635_create_settings_table.php @@ -4,7 +4,7 @@ use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; -class ChangeTypeAttributeInFileManagerFilesTable extends Migration +class CreateSettingsTable extends Migration { /** * Run the migrations. @@ -13,8 +13,10 @@ class ChangeTypeAttributeInFileManagerFilesTable extends Migration */ public function up() { - Schema::table('file_manager_files', function (Blueprint $table) { - DB::statement('ALTER TABLE file_manager_files MODIFY type TEXT;'); + Schema::create('settings', function (Blueprint $table) { + $table->bigIncrements('id'); + $table->string('name')->unique(); + $table->longText('value')->nullable(); }); } @@ -25,8 +27,6 @@ class ChangeTypeAttributeInFileManagerFilesTable extends Migration */ public function down() { - Schema::table('file_manager_files', function (Blueprint $table) { - // - }); + Schema::dropIfExists('settings'); } } diff --git a/database/migrations/2020_07_08_080255_create_pages_table.php b/database/migrations/2020_07_08_080255_create_pages_table.php new file mode 100644 index 00000000..dbd3af42 --- /dev/null +++ b/database/migrations/2020_07_08_080255_create_pages_table.php @@ -0,0 +1,34 @@ +id(); + $table->boolean('visibility'); + $table->string('title'); + $table->string('slug'); + $table->longText('content'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('pages'); + } +} diff --git a/database/seeds/ContentSeeder.php b/database/seeds/ContentSeeder.php new file mode 100644 index 00000000..cc1bd5f8 --- /dev/null +++ b/database/seeds/ContentSeeder.php @@ -0,0 +1,98 @@ + 'section_features', + 'value' => '1', + ], + [ + 'name' => 'section_feature_boxes', + 'value' => '1', + ], + [ + 'name' => 'section_pricing_content', + 'value' => '1', + ], + [ + 'name' => 'section_get_started', + 'value' => '1', + ], + [ + 'name' => 'header_title', + 'value' => 'Simple & Powerfull Personal Cloud Storage', + ], + [ + 'name' => 'header_description', + 'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Trully freedom.', + ], + [ + 'name' => 'features_title', + 'value' => 'The Fastest Growing File Manager on the CodeCanyon Market', + ], + [ + 'name' => 'features_description', + 'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Trully freedom.', + ], + [ + 'name' => 'feature_title_1', + 'value' => 'Truly Freedom', + ], + [ + 'name' => 'feature_description_1', + 'value' => 'You have full control over VueFileManager, no third authorities will control your service or usage, only you.', + ], + [ + 'name' => 'feature_title_2', + 'value' => 'The Sky is the Limit', + ], + [ + 'name' => 'feature_description_2', + 'value' => 'VueFileManager is cloud storage software. You have to install and running application on your own server hosting.', + ], + [ + 'name' => 'feature_title_3', + 'value' => 'No Monthly Fees', + ], + [ + 'name' => 'feature_description_3', + 'value' => 'When you running VueFileManager on your own server hosting, anybody can\'t control your content or resell your user data. Your data is safe.', + ], + [ + 'name' => 'pricing_title', + 'value' => 'Pick the Best Plan For Your Needs', + ], + [ + 'name' => 'pricing_description', + 'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Trully freedom.', + ], + [ + 'name' => 'get_started_title', + 'value' => 'Ready to Get Started
With Us?', + ], + [ + 'name' => 'get_started_description', + 'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Trully freedom.', + ], + [ + 'name' => 'footer_content', + 'value' => '© 2020 Simple & Powerfull Personal Cloud Storage. Developed by Hi5Ve.Digital', + ], + ]); + + $columns->each(function ($content) { + Setting::updateOrCreate($content); + }); + } +} diff --git a/database/seeds/DatabaseSeeder.php b/database/seeds/DatabaseSeeder.php index 91cb6d1c..d8136870 100644 --- a/database/seeds/DatabaseSeeder.php +++ b/database/seeds/DatabaseSeeder.php @@ -11,6 +11,7 @@ class DatabaseSeeder extends Seeder */ public function run() { - // $this->call(UsersTableSeeder::class); + $this->call(PageSeeder::class); + $this->call(ContentSeeder::class); } } diff --git a/database/seeds/PageSeeder.php b/database/seeds/PageSeeder.php new file mode 100644 index 00000000..3a043a1b --- /dev/null +++ b/database/seeds/PageSeeder.php @@ -0,0 +1,40 @@ + 1, + 'title' => 'Terms of Service', + 'slug' => 'terms-of-service', + 'content' => 'Laoreet cum hendrerit iaculis arcu phasellus congue et elementum, pharetra risus imperdiet aptent posuere rutrum parturient blandit, dapibus tellus ridiculus potenti aliquam sociis turpis. Nullam commodo eget laoreet risus cursus vel placerat, in dapibus sociis gravida faucibus sodales, fringilla potenti elit semper iaculis ullamcorper. Dignissim vulputate pretium montes pellentesque mollis, consectetur adipiscing curabitur semper sem rhoncus, litora viverra curae proin.', + ], + [ + 'visibility' => 1, + 'title' => 'Privacy Policy', + 'slug' => 'privacy-policy', + 'content' => 'Sit orci justo augue maecenas laoreet consectetur natoque magnis in viverra sagittis, himenaeos urna facilisis mus proin primis diam accumsan tristique inceptos. Primis quisque posuere sit praesent lobortis feugiat semper convallis facilisis, vivamus gravida ligula nostra curae eu donec duis parturient senectus, arcu dolor viverra penatibus natoque cum nisi commodo. Litora sociis mauris justo nullam suspendisse mattis maecenas nascetur congue phasellus cras ultricies posuere donec, dapibus egestas diam lacus ornare montes senectus tincidunt eu taciti sed consequat.', + ], + [ + 'visibility' => 1, + 'title' => 'Cookie Policy', + 'slug' => 'cookie-policy', + 'content' => 'Metus penatibus ligula dolor natoque non habitasse laoreet facilisis, libero vivamus eget semper vulputate interdum integer, phasellus lorem enim blandit consectetur nullam sollicitudin. Hendrerit interdum luctus ut in molestie himenaeos eros cum laoreet parturient est, eu lectus hac et netus viverra dictumst congue elit sem senectus litora, fames scelerisque adipiscing inceptos fringilla montes sociosqu suscipit auctor potenti. Elementum lacus vulputate viverra ac morbi ligula ipsum facilisi, sit eu imperdiet lacinia congue dis vitae.', + ], + ]); + + $columns->each(function ($page) { + Page::updateOrCreate($page); + }); + } +} diff --git a/package-lock.json b/package-lock.json index 2f3b34dd..1d6d841f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -952,30 +952,30 @@ } }, "@fortawesome/fontawesome-common-types": { - "version": "0.2.28", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.28.tgz", - "integrity": "sha512-gtis2/5yLdfI6n0ia0jH7NJs5i/Z/8M/ZbQL6jXQhCthEOe5Cr5NcQPhgTvFxNOtURE03/ZqUcEskdn2M+QaBg==" + "version": "0.2.29", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.29.tgz", + "integrity": "sha512-cY+QfDTbZ7XVxzx7jxbC98Oxr/zc7R2QpTLqTxqlfyXDrAJjzi/xUIqAUsygELB62JIrbsWxtSRhayKFkGI7MA==" }, "@fortawesome/fontawesome-svg-core": { - "version": "1.2.28", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.28.tgz", - "integrity": "sha512-4LeaNHWvrneoU0i8b5RTOJHKx7E+y7jYejplR7uSVB34+mp3Veg7cbKk7NBCLiI4TyoWS1wh9ZdoyLJR8wSAdg==", + "version": "1.2.29", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.29.tgz", + "integrity": "sha512-xmPmP2t8qrdo8RyKihTkGb09RnZoc+7HFBCnr0/6ZhStdGDSLeEd7ajV181+2W29NWIFfylO13rU+s3fpy3cnA==", "requires": { - "@fortawesome/fontawesome-common-types": "^0.2.28" + "@fortawesome/fontawesome-common-types": "^0.2.29" } }, "@fortawesome/free-solid-svg-icons": { - "version": "5.13.0", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.13.0.tgz", - "integrity": "sha512-IHUgDJdomv6YtG4p3zl1B5wWf9ffinHIvebqQOmV3U+3SLw4fC+LUCCgwfETkbTtjy5/Qws2VoVf6z/ETQpFpg==", + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.13.1.tgz", + "integrity": "sha512-LQH/0L1p4+rqtoSHa9qFYR84hpuRZKqaQ41cfBQx8b68p21zoWSekTAeA54I/2x9VlCHDLFlG74Nmdg4iTPQOg==", "requires": { - "@fortawesome/fontawesome-common-types": "^0.2.28" + "@fortawesome/fontawesome-common-types": "^0.2.29" } }, "@fortawesome/vue-fontawesome": { - "version": "0.1.9", - "resolved": "https://registry.npmjs.org/@fortawesome/vue-fontawesome/-/vue-fontawesome-0.1.9.tgz", - "integrity": "sha512-h/emhmZz+DfB2zOGLWawNwXq82UYhn9waTfUjLLmeaIqtnIyNt6kYlpQT/vzJjLZRDRvY2IEJAh1di5qKpKVpA==" + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/@fortawesome/vue-fontawesome/-/vue-fontawesome-0.1.10.tgz", + "integrity": "sha512-b2+SLF31h32LSepVcXe+BQ63yvbq5qmTCy4KfFogCYm2bn68H5sDWUnX+U7MBqnM2aeEk9M7xSoqGnu+wSdY6w==" }, "@mrmlnc/readdir-enhanced": { "version": "2.2.1", @@ -1388,7 +1388,6 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, "requires": { "color-convert": "^1.9.0" } @@ -1614,9 +1613,9 @@ "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" }, "aws4": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz", - "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==" + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz", + "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==" }, "axios": { "version": "0.19.2", @@ -2163,8 +2162,7 @@ "camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" }, "camelcase-keys": { "version": "2.1.0", @@ -2317,7 +2315,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", - "dev": true, "requires": { "string-width": "^3.1.0", "strip-ansi": "^5.2.0", @@ -2327,14 +2324,12 @@ "ansi-regex": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" }, "string-width": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, "requires": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", @@ -2345,7 +2340,6 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, "requires": { "ansi-regex": "^4.1.0" } @@ -2409,7 +2403,6 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, "requires": { "color-name": "1.1.3" } @@ -2417,8 +2410,7 @@ "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "color-string": { "version": "1.5.3", @@ -3348,8 +3340,7 @@ "emoji-regex": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" }, "emojis-list": { "version": "3.0.0", @@ -4730,8 +4721,7 @@ "get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" }, "get-stdin": { "version": "4.0.1", @@ -4875,12 +4865,12 @@ } }, "globule": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.1.tgz", - "integrity": "sha512-OVyWOHgw29yosRHCHo7NncwR1hW5ew0W/UrvtwvjefVJeQ26q4/8r8FmPsSF1hJ93IgWkyv16pCTz6WblMzm/g==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.2.tgz", + "integrity": "sha512-7IDTQTIu2xzXkT+6mlluidnWo+BypnbSoEVVQCGfzqnl5Ik8d3e1d4wycb8Rj9tWW+Z39uPWsdlquqiqPCd/pA==", "requires": { "glob": "~7.1.1", - "lodash": "~4.17.12", + "lodash": "~4.17.10", "minimatch": "~3.0.2" } }, @@ -5745,9 +5735,9 @@ } }, "js-base64": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.2.tgz", - "integrity": "sha512-Vg8czh0Q7sFBSUMWWArX/miJeBWYBPpdU/3M/DKSaekLMqrqVPaedp+5mZhie/r0lgrcaYBfwXatEew6gwgiQQ==" + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.3.tgz", + "integrity": "sha512-fiUvdfCaAXoQTHdKMgTvg6IkecXDcVz6V5rlftUTclF9IKBjMizvSdQaCl/z/6TApDeby5NL+axYou3i0mu1Pg==" }, "js-tokens": { "version": "4.0.0", @@ -6006,9 +5996,9 @@ } }, "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" + "version": "4.17.19", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" }, "lodash._baseassign": { "version": "3.2.0", @@ -6645,9 +6635,9 @@ "dev": true }, "node-sass": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.14.0.tgz", - "integrity": "sha512-AxqU+DFpk0lEz95sI6jO0hU0Rwyw7BXVEv6o9OItoXLyeygPeaSpiV4rwQb10JiTghHaa0gZeD21sz+OsQluaw==", + "version": "4.14.1", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz", + "integrity": "sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g==", "requires": { "async-foreach": "^0.1.3", "chalk": "^1.1.1", @@ -6663,7 +6653,7 @@ "node-gyp": "^3.8.0", "npmlog": "^4.0.0", "request": "^2.88.0", - "sass-graph": "^2.2.4", + "sass-graph": "2.2.5", "stdout-stream": "^1.4.0", "true-case-path": "^1.0.2" }, @@ -7160,8 +7150,7 @@ "path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" }, "path-is-absolute": { "version": "1.0.1", @@ -8467,8 +8456,7 @@ "require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" }, "requires-port": { "version": "1.0.0", @@ -8648,125 +8636,92 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sass-graph": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", - "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=", + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.5.tgz", + "integrity": "sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==", "requires": { "glob": "^7.0.0", "lodash": "^4.0.0", "scss-tokenizer": "^0.2.3", - "yargs": "^7.0.0" + "yargs": "^13.3.2" }, "dependencies": { - "camelcase": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "find-up": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" + "locate-path": "^3.0.0" } }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" - }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "requires": { - "number-is-nan": "^1.0.0" + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" } }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "requires": { - "invert-kv": "^1.0.0" + "p-try": "^2.0.0" } }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "requires": { - "lcid": "^1.0.0" + "p-limit": "^2.0.0" } }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" }, "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" } }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" + "ansi-regex": "^4.1.0" } }, - "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" - }, "yargs": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", - "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", + "require-main-filename": "^2.0.0", "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.0" - } - }, - "yargs-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", - "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", - "requires": { - "camelcase": "^3.0.0" + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" } } } @@ -9307,9 +9262,9 @@ "dev": true }, "spdx-correct": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", - "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "requires": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -9321,9 +9276,9 @@ "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" }, "spdx-expression-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "requires": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" @@ -10328,9 +10283,9 @@ "dev": true }, "vee-validate": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/vee-validate/-/vee-validate-3.3.0.tgz", - "integrity": "sha512-+QQZgA0I9ZTDsYNOSFlUqOvGIqW4yxjloxQCC6TD0rPn407G9hifn6RnId8kzl6+zHfl3/dE+bko49mYzgNNGg==" + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/vee-validate/-/vee-validate-3.3.7.tgz", + "integrity": "sha512-s0CfIO8U+YSAzn7q+WnNtPignsndWKQlrbp8qbJ/zCw6QMO/OKDxhFXYRdWeNWRbRktVGCkiIaYktQiY/YL3TQ==" }, "vendors": { "version": "1.0.4", @@ -10374,9 +10329,9 @@ "dev": true }, "vue-i18n": { - "version": "8.17.4", - "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-8.17.4.tgz", - "integrity": "sha512-wpk/drIkPf6gHCtvHc8zAZ1nsWBZ+/OOJYtJxqhYD6CKT0FJAG5oypwgF9kABt30FBWhl8NEb/QY+vaaBARlFg==" + "version": "8.18.2", + "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-8.18.2.tgz", + "integrity": "sha512-0X5nBTCZAVjlwcrPaYJwNs3iipBBTv0AUHwQUOa8yP3XbQGWKbRHqBb3OhCYtum/IHDD21d/df5Xd2VgyxbxfA==" }, "vue-loader": { "version": "15.9.1", @@ -10392,9 +10347,9 @@ } }, "vue-router": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.1.6.tgz", - "integrity": "sha512-GYhn2ynaZlysZMkFE5oCHRUTqE8BWs/a9YbKpNLi0i7xD6KG1EzDqpHQmv1F5gXjr8kL5iIVS8EOtRaVUEXTqA==" + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.3.4.tgz", + "integrity": "sha512-SdKRBeoXUjaZ9R/8AyxsdTqkOfMcI5tWxPZOUX5Ie1BTL5rPSZ0O++pbiZCeYeythiZIdLEfkDiQPKIaWk5hDg==" }, "vue-style-loader": { "version": "4.1.2", @@ -10423,9 +10378,9 @@ "dev": true }, "vuex": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.3.0.tgz", - "integrity": "sha512-1MfcBt+YFd20DPwKe0ThhYm1UEXZya4gVKUvCy7AtS11YAOUR+9a6u4fsv1Rr6ePZCDNxW/M1zuIaswp6nNv8Q==" + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.5.1.tgz", + "integrity": "sha512-w7oJzmHQs0FM9LXodfskhw9wgKBiaB+totOdb8sNzbTB2KDCEEwEs29NzBZFh/lmEK1t5tDmM1vtsO7ubG1DFw==" }, "watchpack": { "version": "1.6.1", @@ -10920,8 +10875,7 @@ "which-module": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" }, "wide-align": { "version": "1.1.3", @@ -10944,7 +10898,6 @@ "version": "5.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", - "dev": true, "requires": { "ansi-styles": "^3.2.0", "string-width": "^3.0.0", @@ -10954,14 +10907,12 @@ "ansi-regex": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" }, "string-width": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, "requires": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", @@ -10972,7 +10923,6 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, "requires": { "ansi-regex": "^4.1.0" } @@ -11002,8 +10952,7 @@ "y18n": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", - "dev": true + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" }, "yallist": { "version": "4.0.0", @@ -11175,7 +11124,6 @@ "version": "13.1.2", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "dev": true, "requires": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" diff --git a/package.json b/package.json index 047158f2..8d8bd73e 100644 --- a/package.json +++ b/package.json @@ -18,16 +18,16 @@ "vue-template-compiler": "^2.6.11" }, "dependencies": { - "@fortawesome/fontawesome-svg-core": "^1.2.28", - "@fortawesome/free-solid-svg-icons": "^5.13.0", - "@fortawesome/vue-fontawesome": "^0.1.9", - "lodash": "^4.17.15", - "node-sass": "^4.14.0", - "vee-validate": "^3.3.0", + "@fortawesome/fontawesome-svg-core": "^1.2.29", + "@fortawesome/free-solid-svg-icons": "^5.13.1", + "@fortawesome/vue-fontawesome": "^0.1.10", + "lodash": "^4.17.19", + "node-sass": "^4.14.1", + "vee-validate": "^3.3.7", "vue": "^2.6.10", "vue-feather-icons": "^5.0.0", - "vue-i18n": "^8.17.4", - "vue-router": "^3.1.6", - "vuex": "^3.3.0" + "vue-i18n": "^8.18.2", + "vue-router": "^3.3.4", + "vuex": "^3.5.1" } } diff --git a/public/assets/icons/alipay.svg b/public/assets/icons/alipay.svg new file mode 100755 index 00000000..b0b5d228 --- /dev/null +++ b/public/assets/icons/alipay.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/amex.svg b/public/assets/icons/amex.svg new file mode 100755 index 00000000..9007e03f --- /dev/null +++ b/public/assets/icons/amex.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/code.svg b/public/assets/icons/code.svg new file mode 100755 index 00000000..a6b5b48f --- /dev/null +++ b/public/assets/icons/code.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/diners.svg b/public/assets/icons/diners.svg new file mode 100755 index 00000000..3f1827bf --- /dev/null +++ b/public/assets/icons/diners.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/discover.svg b/public/assets/icons/discover.svg new file mode 100755 index 00000000..e6ee9656 --- /dev/null +++ b/public/assets/icons/discover.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/elo.svg b/public/assets/icons/elo.svg new file mode 100755 index 00000000..e529cd9e --- /dev/null +++ b/public/assets/icons/elo.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/generic.svg b/public/assets/icons/generic.svg new file mode 100755 index 00000000..e0dd349d --- /dev/null +++ b/public/assets/icons/generic.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/hiper.svg b/public/assets/icons/hiper.svg new file mode 100644 index 00000000..9546d2b8 --- /dev/null +++ b/public/assets/icons/hiper.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + diff --git a/public/assets/icons/hipercard.svg b/public/assets/icons/hipercard.svg new file mode 100755 index 00000000..f4d18577 --- /dev/null +++ b/public/assets/icons/hipercard.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/jcb.svg b/public/assets/icons/jcb.svg new file mode 100755 index 00000000..b1143c01 --- /dev/null +++ b/public/assets/icons/jcb.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/maestro.svg b/public/assets/icons/maestro.svg new file mode 100755 index 00000000..f0c862eb --- /dev/null +++ b/public/assets/icons/maestro.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/mastercard.svg b/public/assets/icons/mastercard.svg new file mode 100644 index 00000000..56a70e7f --- /dev/null +++ b/public/assets/icons/mastercard.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/mir.svg b/public/assets/icons/mir.svg new file mode 100644 index 00000000..b660cab1 --- /dev/null +++ b/public/assets/icons/mir.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/icons/paypal.svg b/public/assets/icons/paypal.svg new file mode 100755 index 00000000..554e12fb --- /dev/null +++ b/public/assets/icons/paypal.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/printer.svg b/public/assets/icons/printer.svg new file mode 100644 index 00000000..53d09483 --- /dev/null +++ b/public/assets/icons/printer.svg @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/public/assets/icons/stripe-service.svg b/public/assets/icons/stripe-service.svg new file mode 100644 index 00000000..8d281fab --- /dev/null +++ b/public/assets/icons/stripe-service.svg @@ -0,0 +1,13 @@ + + + + stripe-service + Created with Sketch. + + + + + + + + \ No newline at end of file diff --git a/public/assets/icons/unionpay.svg b/public/assets/icons/unionpay.svg new file mode 100755 index 00000000..145428d7 --- /dev/null +++ b/public/assets/icons/unionpay.svg @@ -0,0 +1 @@ + diff --git a/public/assets/icons/visa.svg b/public/assets/icons/visa.svg new file mode 100644 index 00000000..2f649e5f --- /dev/null +++ b/public/assets/icons/visa.svg @@ -0,0 +1 @@ + diff --git a/public/assets/images/Backblaze_Logo.svg b/public/assets/images/Backblaze_Logo.svg new file mode 100644 index 00000000..e32658f6 --- /dev/null +++ b/public/assets/images/Backblaze_Logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/images/admin/feature-boxes.jpg b/public/assets/images/admin/feature-boxes.jpg new file mode 100644 index 00000000..4fcbd9e9 Binary files /dev/null and b/public/assets/images/admin/feature-boxes.jpg differ diff --git a/public/assets/images/admin/get-started-content.jpg b/public/assets/images/admin/get-started-content.jpg new file mode 100644 index 00000000..0fd44c83 Binary files /dev/null and b/public/assets/images/admin/get-started-content.jpg differ diff --git a/public/assets/images/admin/main-features.jpg b/public/assets/images/admin/main-features.jpg new file mode 100644 index 00000000..e420d7f0 Binary files /dev/null and b/public/assets/images/admin/main-features.jpg differ diff --git a/public/assets/images/admin/main-header.jpg b/public/assets/images/admin/main-header.jpg new file mode 100644 index 00000000..dded9a71 Binary files /dev/null and b/public/assets/images/admin/main-header.jpg differ diff --git a/public/assets/images/admin/pricing-content.jpg b/public/assets/images/admin/pricing-content.jpg new file mode 100644 index 00000000..30ba8310 Binary files /dev/null and b/public/assets/images/admin/pricing-content.jpg differ diff --git a/public/assets/images/app-icon.png b/public/assets/images/app-icon.png deleted file mode 100644 index 6c8e6b08..00000000 Binary files a/public/assets/images/app-icon.png and /dev/null differ diff --git a/public/assets/images/default-avatar.png b/public/assets/images/default-avatar.png index 7354e00f..bc9b7799 100644 Binary files a/public/assets/images/default-avatar.png and b/public/assets/images/default-avatar.png differ diff --git a/public/assets/images/hero-Illustration.svg b/public/assets/images/hero-Illustration.svg new file mode 100644 index 00000000..164ec4c8 --- /dev/null +++ b/public/assets/images/hero-Illustration.svg @@ -0,0 +1,290 @@ + + + + hero-Illustration + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/assets/images/hero.svg b/public/assets/images/hero.svg deleted file mode 100644 index 2bc2a60b..00000000 --- a/public/assets/images/hero.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - hero - Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/public/assets/images/vuefilemanager-horizontal-logo-dark.svg b/public/assets/images/vuefilemanager-horizontal-logo-dark.svg new file mode 100644 index 00000000..eb8bf33f --- /dev/null +++ b/public/assets/images/vuefilemanager-horizontal-logo-dark.svg @@ -0,0 +1,20 @@ + + + + vuefilemanager-horizontal-logo-dark + Created with Sketch. + + + + \ No newline at end of file diff --git a/public/assets/images/vuefilemanager-horizontal-logo.svg b/public/assets/images/vuefilemanager-horizontal-logo.svg new file mode 100644 index 00000000..0bfc47df --- /dev/null +++ b/public/assets/images/vuefilemanager-horizontal-logo.svg @@ -0,0 +1,20 @@ + + + + vuefilemanager-horizontal-logo + Created with Sketch. + + \ No newline at end of file diff --git a/public/assets/images/vuefilemanager-logo-icon.svg b/public/assets/images/vuefilemanager-logo-icon.svg new file mode 100644 index 00000000..d1e23136 --- /dev/null +++ b/public/assets/images/vuefilemanager-logo-icon.svg @@ -0,0 +1,15 @@ + + + + vuefilemanager-logo-icon + Created with Sketch. + + + + \ No newline at end of file diff --git a/public/assets/images/vuefilemanager-screenshot-dark.png b/public/assets/images/vuefilemanager-screenshot-dark.png new file mode 100644 index 00000000..ef89a03e Binary files /dev/null and b/public/assets/images/vuefilemanager-screenshot-dark.png differ diff --git a/public/assets/images/vuefilemanager-screenshot-light.png b/public/assets/images/vuefilemanager-screenshot-light.png new file mode 100644 index 00000000..a8a1af9b Binary files /dev/null and b/public/assets/images/vuefilemanager-screenshot-light.png differ diff --git a/public/css/app.css b/public/css/app.css index 78a3194b..7d40c4ee 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -1 +1 @@ -#viewport{width:100%;transition:all .2s ease}#application-wrapper,#viewport{display:flex;height:100%}#application-wrapper #content,#single-page{position:relative;width:100%}#single-page{overflow-x:hidden;height:100%;padding-left:25px;padding-right:25px}#single-page #page-content{margin:0 auto}#single-page #page-content.full-width{max-width:100%}#single-page #page-content.medium-width{max-width:1024px}#single-page #page-content.small-width{max-width:690px}.form-group,.form-group-label{margin-bottom:25px}.form-group-label{font-size:1.0625em;font-weight:500;display:block}.menu-list-wrapper.vertical{margin-bottom:20px}.menu-list-wrapper.vertical .menu-list-item{display:block;padding:12px 15px 12px 25px}.menu-list-wrapper.horizontal{display:flex;border-bottom:2px solid #f8f8f8;margin-bottom:30px;overflow-x:auto}.menu-list-wrapper.horizontal::-webkit-scrollbar{display:none}.menu-list-wrapper.horizontal .menu-list-item{display:inline-block;padding:15px 10px;margin:15px 10px 0;border-bottom:2px solid transparent}.menu-list-wrapper.horizontal .menu-list-item:first-child{margin-left:0}.menu-list-wrapper.horizontal .menu-list-item.router-link-exact-active{border-bottom:2px solid #00bc7e}.menu-list-wrapper .menu-list-item{text-decoration:none;cursor:pointer;position:relative;white-space:nowrap}.menu-list-wrapper .menu-list-item.link{display:flex;align-items:center}.menu-list-wrapper .menu-list-item.link.is-active svg circle,.menu-list-wrapper .menu-list-item.link.is-active svg line,.menu-list-wrapper .menu-list-item.link.is-active svg path,.menu-list-wrapper .menu-list-item.link.is-active svg polyline,.menu-list-wrapper .menu-list-item.link.is-active svg rect,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg circle,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg line,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg path,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg polyline,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg rect,.menu-list-wrapper .menu-list-item.link:hover svg circle,.menu-list-wrapper .menu-list-item.link:hover svg line,.menu-list-wrapper .menu-list-item.link:hover svg path,.menu-list-wrapper .menu-list-item.link:hover svg polyline,.menu-list-wrapper .menu-list-item.link:hover svg rect{stroke:#00bc7e}.menu-list-wrapper .menu-list-item.link.is-active .label,.menu-list-wrapper .menu-list-item.link.router-link-exact-active .label,.menu-list-wrapper .menu-list-item.link:hover .label{color:#00bc7e}.menu-list-wrapper .menu-list-item.link .icon{margin-right:12px;line-height:0}.menu-list-wrapper .menu-list-item.link .icon circle,.menu-list-wrapper .menu-list-item.link .icon line,.menu-list-wrapper .menu-list-item.link .icon path,.menu-list-wrapper .menu-list-item.link .icon polyline,.menu-list-wrapper .menu-list-item.link .icon rect{stroke:#1c1d1f}.menu-list-wrapper .menu-list-item.link .text-label{font-size:1em}.menu-list-wrapper .menu-list-item.is-active .delete-icon,.menu-list-wrapper .menu-list-item:hover .delete-icon{display:block}.menu-list-wrapper .menu-list-item .folder-icon{line-height:0;width:15px;margin-right:9px;vertical-align:middle;margin-top:-1px}.menu-list-wrapper .menu-list-item .delete-icon{display:none;position:absolute;right:15px;top:50%;transform:translateY(-50%)}.menu-list-wrapper .menu-list-item .label{font-size:.8125em;font-weight:700;vertical-align:middle;white-space:nowrap;max-width:210px;overflow:hidden;text-overflow:ellipsis;display:inline-block;color:#1c1d1f}.menu-list-wrapper.favourites.is-dragenter .menu-list{border:2px dashed #00bc7e;border-radius:8px}.menu-list-wrapper.favourites .menu-list{border:2px dashed transparent}.menu-list-wrapper.favourites .menu-list .menu-list-item{padding:8px 23px}.menu-list-wrapper.favourites .menu-list .menu-list-item .icon{margin-right:5px;width:20px}.menu-list-wrapper.favourites .menu-list .menu-list-item .icon circle,.menu-list-wrapper.favourites .menu-list .menu-list-item .icon line,.menu-list-wrapper.favourites .menu-list .menu-list-item .icon path,.menu-list-wrapper.favourites .menu-list .menu-list-item .icon polyline,.menu-list-wrapper.favourites .menu-list .menu-list-item .icon rect{transition:all .15s ease}.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon circle,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon line,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon path,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon polyline,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon rect,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon circle,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon line,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon path,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon polyline,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon rect,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon circle,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon line,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon path,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon polyline,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon rect{stroke:#00bc7e}.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .label,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .label,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .label{color:#00bc7e}.empty-note{font-size:.75em;color:rgba(28,29,31,.7);display:block}@media only screen and (max-width:1024px){#single-page #page-content.full-width,#single-page #page-content.medium-width,#single-page #page-content.small-width{max-width:100%;width:100%}.menu-list-wrapper .menu-list-item{padding:12px 15px 12px 20px}.menu-list-wrapper.favourites .menu-list .menu-list-item{padding:8px 18px}}@media only screen and (max-width:960px){#single-page{padding-left:30px;padding-right:30px}}@media only screen and (max-width:690px){#single-page{padding-left:15px;padding-right:15px}}@media (prefers-color-scheme:dark){.empty-note{color:#7d858c}.menu-list-wrapper.horizontal{border-bottom:2px solid hsla(0,0%,100%,.02)}.menu-list-wrapper .menu-list-item.link .icon circle,.menu-list-wrapper .menu-list-item.link .icon line,.menu-list-wrapper .menu-list-item.link .icon path,.menu-list-wrapper .menu-list-item.link .icon polyline,.menu-list-wrapper .menu-list-item.link .icon rect{stroke:#bec6cf}.menu-list-wrapper .menu-list-item .label{color:#bec6cf}.menu-list-wrapper .menu-list-item .icon circle,.menu-list-wrapper .menu-list-item .icon line,.menu-list-wrapper .menu-list-item .icon path,.menu-list-wrapper .menu-list-item .icon polyline,.menu-list-wrapper .menu-list-item .icon rect{stroke:#bec6cf}.menu-list-wrapper .menu-list-item:hover{background:rgba(0,188,126,.1)}.menu-list-wrapper .menu-list-item:hover .label{color:#00bc7e}.menu-list-wrapper .menu-list-item:hover .icon circle,.menu-list-wrapper .menu-list-item:hover .icon line,.menu-list-wrapper .menu-list-item:hover .icon path,.menu-list-wrapper .menu-list-item:hover .icon polyline,.menu-list-wrapper .menu-list-item:hover .icon rect{stroke:#00bc7e}} \ No newline at end of file +#viewport{width:100%;transition:all .2s ease;flex:1}#application-wrapper,#viewport{display:flex;height:100%}#application-wrapper #content,#single-page{position:relative;width:100%}#single-page{overflow-x:hidden;height:100%;padding-left:25px;padding-right:25px}#single-page #page-content{margin:0 auto}#single-page #page-content.full-width{max-width:100%}#single-page #page-content.medium-width{max-width:700px}#single-page #page-content.large-width{max-width:1190px}#single-page #page-content.small-width{max-width:690px}#single-page #page-content.center-page{height:100%;padding-top:20px;margin-bottom:50px;display:grid;width:100%}#single-page #page-content.center-page .content-page{margin:auto;width:100%}.form-fixed-width{width:700px;margin:0 auto}.form-group,.form-group-label{margin-bottom:25px}.form-group-label{font-size:1.125em;font-weight:800;letter-spacing:.3px;display:block}.menu-list-wrapper.vertical{margin-bottom:20px}.menu-list-wrapper.vertical .menu-list-item{display:block;padding:12px 15px 12px 25px}.menu-list-wrapper.horizontal{display:flex;border-bottom:2px solid #f8f8f8;margin-bottom:30px;overflow-x:auto;z-index:9;position:-webkit-sticky;position:sticky;background:#fff;top:40px}.menu-list-wrapper.horizontal::-webkit-scrollbar{display:none}.menu-list-wrapper.horizontal .menu-list-item{display:inline-block;padding:15px 10px;margin:15px 10px 0;border-bottom:2px solid transparent}.menu-list-wrapper.horizontal .menu-list-item:first-child{margin-left:0}.menu-list-wrapper.horizontal .menu-list-item.router-link-exact-active{border-bottom:2px solid #00bc7e}.menu-list-wrapper .menu-list-item{text-decoration:none;cursor:pointer;position:relative;white-space:nowrap}.menu-list-wrapper .menu-list-item.link{display:flex;align-items:center}.menu-list-wrapper .menu-list-item.link.is-active svg circle,.menu-list-wrapper .menu-list-item.link.is-active svg ellipse,.menu-list-wrapper .menu-list-item.link.is-active svg line,.menu-list-wrapper .menu-list-item.link.is-active svg path,.menu-list-wrapper .menu-list-item.link.is-active svg polyline,.menu-list-wrapper .menu-list-item.link.is-active svg rect,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg circle,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg ellipse,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg line,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg path,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg polyline,.menu-list-wrapper .menu-list-item.link.router-link-exact-active svg rect,.menu-list-wrapper .menu-list-item.link:hover svg circle,.menu-list-wrapper .menu-list-item.link:hover svg ellipse,.menu-list-wrapper .menu-list-item.link:hover svg line,.menu-list-wrapper .menu-list-item.link:hover svg path,.menu-list-wrapper .menu-list-item.link:hover svg polyline,.menu-list-wrapper .menu-list-item.link:hover svg rect{stroke:#00bc7e}.menu-list-wrapper .menu-list-item.link.is-active .label,.menu-list-wrapper .menu-list-item.link.router-link-exact-active .label,.menu-list-wrapper .menu-list-item.link:hover .label{color:#00bc7e}.menu-list-wrapper .menu-list-item.link .icon{margin-right:12px;line-height:0}.menu-list-wrapper .menu-list-item.link .icon circle,.menu-list-wrapper .menu-list-item.link .icon ellipse,.menu-list-wrapper .menu-list-item.link .icon line,.menu-list-wrapper .menu-list-item.link .icon path,.menu-list-wrapper .menu-list-item.link .icon polyline,.menu-list-wrapper .menu-list-item.link .icon rect{stroke:#1b2539}.menu-list-wrapper .menu-list-item.link .text-label{font-size:1em}.menu-list-wrapper .menu-list-item.is-active .delete-icon,.menu-list-wrapper .menu-list-item:hover .delete-icon{display:block}.menu-list-wrapper .menu-list-item .folder-icon{line-height:0;width:15px;margin-right:9px;vertical-align:middle;margin-top:-1px}.menu-list-wrapper .menu-list-item .delete-icon{display:none;position:absolute;right:15px;top:50%;transform:translateY(-50%)}.menu-list-wrapper .menu-list-item .label{font-size:.8125em;font-weight:700;vertical-align:middle;white-space:nowrap;max-width:210px;overflow:hidden;text-overflow:ellipsis;display:inline-block;color:#1b2539}.menu-list-wrapper.favourites.is-dragenter .menu-list{border:2px dashed #00bc7e;border-radius:8px}.menu-list-wrapper.favourites .menu-list{border:2px dashed transparent}.menu-list-wrapper.favourites .menu-list .menu-list-item{padding:8px 23px}.menu-list-wrapper.favourites .menu-list .menu-list-item .icon{margin-right:5px;width:20px}.menu-list-wrapper.favourites .menu-list .menu-list-item .icon circle,.menu-list-wrapper.favourites .menu-list .menu-list-item .icon ellipse,.menu-list-wrapper.favourites .menu-list .menu-list-item .icon line,.menu-list-wrapper.favourites .menu-list .menu-list-item .icon path,.menu-list-wrapper.favourites .menu-list .menu-list-item .icon polyline,.menu-list-wrapper.favourites .menu-list .menu-list-item .icon rect{transition:all .15s ease}.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon circle,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon ellipse,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon line,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon path,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon polyline,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon rect,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon circle,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon ellipse,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon line,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon path,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon polyline,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon rect,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon circle,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon ellipse,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon line,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon path,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon polyline,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon rect{stroke:#00bc7e}.menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .label,.menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .label,.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .label{color:#00bc7e}.empty-note{font-size:.75em;color:rgba(27,37,57,.7);display:block}.table .action-icons{white-space:nowrap}.table .action-icons .icon,.table .action-icons .icon-wrapper,.table .action-icons a{display:inline-block;margin-left:10px}.table .action-icons .icon-wrapper:first-child,.table .action-icons .icon:first-child,.table .action-icons a:first-child{margin-left:0}.table .action-icons .icon{cursor:pointer}.table .action-icons .icon circle,.table .action-icons .icon line,.table .action-icons .icon path,.table .action-icons .icon polyline{stroke:#1b2539}.table .action-icons .icon.icon-trash circle,.table .action-icons .icon.icon-trash line,.table .action-icons .icon.icon-trash path,.table .action-icons .icon.icon-trash polyline{stroke:#fe6057}.table .cell-item{white-space:nowrap;font-weight:700}.mt-70{margin-top:70px}.capitalize{text-transform:capitalize}@media only screen and (max-width:1024px){#single-page #page-content.full-width,#single-page #page-content.medium-width,#single-page #page-content.small-width{max-width:100%;width:100%}.menu-list-wrapper .menu-list-item{padding:12px 15px 12px 20px}.menu-list-wrapper.favourites .menu-list .menu-list-item{padding:8px 18px}}@media only screen and (max-width:960px){#single-page{padding-left:30px;padding-right:30px}#single-page #page-content,#single-page #page-content.center-page{padding-top:0}.menu-list-wrapper.horizontal{top:30px}.form-fixed-width{width:100%}}@media only screen and (max-width:690px){#single-page{padding-left:15px;padding-right:15px}}@media (prefers-color-scheme:dark){.empty-note{color:#7d858c}.menu-list-wrapper.horizontal{border-bottom:2px solid hsla(0,0%,100%,.02);background:#111314}.menu-list-wrapper .menu-list-item.link .icon circle,.menu-list-wrapper .menu-list-item.link .icon ellipse,.menu-list-wrapper .menu-list-item.link .icon line,.menu-list-wrapper .menu-list-item.link .icon path,.menu-list-wrapper .menu-list-item.link .icon polyline,.menu-list-wrapper .menu-list-item.link .icon rect{stroke:#bec6cf}.menu-list-wrapper .menu-list-item .label{color:#bec6cf}.menu-list-wrapper .menu-list-item .icon circle,.menu-list-wrapper .menu-list-item .icon ellipse,.menu-list-wrapper .menu-list-item .icon line,.menu-list-wrapper .menu-list-item .icon path,.menu-list-wrapper .menu-list-item .icon polyline,.menu-list-wrapper .menu-list-item .icon rect{stroke:#bec6cf}.menu-list-wrapper .menu-list-item:hover{background:rgba(0,188,126,.1)}.menu-list-wrapper .menu-list-item:hover .label{color:#00bc7e}.menu-list-wrapper .menu-list-item:hover .icon circle,.menu-list-wrapper .menu-list-item:hover .icon ellipse,.menu-list-wrapper .menu-list-item:hover .icon line,.menu-list-wrapper .menu-list-item:hover .icon path,.menu-list-wrapper .menu-list-item:hover .icon polyline,.menu-list-wrapper .menu-list-item:hover .icon rect{stroke:#00bc7e}.table .action-icons .icon circle,.table .action-icons .icon line,.table .action-icons .icon path,.table .action-icons .icon polyline{stroke:#bec6cf}} \ No newline at end of file diff --git a/public/css/invoice.css b/public/css/invoice.css new file mode 100644 index 00000000..967241cf --- /dev/null +++ b/public/css/invoice.css @@ -0,0 +1 @@ +*{outline:0;margin:0;padding:0;font-family:Nunito,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);font-size:16px;text-decoration:none}body{background:#f6f6f6}#toolbar-wrapper{max-width:800px;margin:30px auto}#toolbar-wrapper .button{background:#fff;margin-right:15px;border-radius:8px;padding:7px 10px;cursor:pointer;border:none;transition:all .15s ease}#toolbar-wrapper .button .icon{height:14px;vertical-align:middle}#toolbar-wrapper .button .icon circle,#toolbar-wrapper .button .icon line,#toolbar-wrapper .button .icon path,#toolbar-wrapper .button .icon polyline,#toolbar-wrapper .button .icon rect{transition:all .15s ease}#toolbar-wrapper .button .label{transition:all .15s ease;font-size:.875em;font-weight:700;color:#1c1d1f}#toolbar-wrapper .button:active{transform:scale(.95)}#toolbar-wrapper .button:hover{background:rgba(0,188,126,.1)}#toolbar-wrapper .button:hover .icon circle,#toolbar-wrapper .button:hover .icon line,#toolbar-wrapper .button:hover .icon path,#toolbar-wrapper .button:hover .icon polyline,#toolbar-wrapper .button:hover .icon rect{stroke:#00bc7e}#toolbar-wrapper .button:hover .label{color:#00bc7e}#invoice-wrapper{max-width:800px;padding:50px;margin:0 auto;background:#fff;border-radius:8px}.table{width:100%}.table .table-header{border-bottom:1px solid #f8f8f8}.table .table-header td{padding-bottom:10px;font-size:.75em;font-weight:700;color:#00bc7e}.table .table-header td:last-child{text-align:right}.table .table-body td{font-size:1em;font-weight:700}.table .table-body td:last-child{text-align:right}.list{margin-bottom:20px}.list .list-item{display:block;margin-bottom:5px}.list .list-item b{font-size:1em;font-weight:700}.list .list-item span{font-size:1em;font-weight:500}.invoice-header{display:flex;justify-content:space-between;align-items:center}.invoice-header .logo img{height:40px;width:auto}.invoice-header .title h1{font-size:1.875em;font-weight:300;color:#00bc7e}.invoice-subject{margin-top:40px;background:#fafafa;padding:15px 20px;border-radius:10px}.invoice-subject .list{margin-bottom:0}.invoice-partners{display:flex;justify-content:space-between;margin-top:40px}.invoice-partners .partner:last-child{min-width:250px}.invoice-partners .partner-title{color:#00bc7e;font-size:1.375em;font-weight:300;margin-bottom:10px}.invoice-order{margin-top:40px}.invoice-summary{margin-top:60px;text-align:right}.invoice-summary b{font-weight:700;font-size:1.375em}@media print{#toolbar-wrapper{display:none}#invoice-wrapper{padding:0;margin:0}.invoice-subject{padding:0}@page{margin:0}body{margin:1.6cm}} \ No newline at end of file diff --git a/public/js/main.js b/public/js/main.js index e663c7eb..0216d667 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -1,2 +1,2 @@ /*! For license information please see main.js.LICENSE.txt */ -!function(e){var t={};function n(a){if(t[a])return t[a].exports;var r=t[a]={i:a,l:!1,exports:{}};return e[a].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,a){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(a,r,function(t){return e[t]}.bind(null,r));return a},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=108)}([function(e,t){var n=/^(attrs|props|on|nativeOn|class|style|hook)$/;function a(e,t){return function(){e&&e.apply(this,arguments),t&&t.apply(this,arguments)}}e.exports=function(e){return e.reduce((function(e,t){var r,i,o,s,c;for(o in t)if(r=e[o],i=t[o],r&&n.test(o))if("class"===o&&("string"==typeof r&&(c=r,e[o]=r={},r[c]=!0),"string"==typeof i&&(c=i,t[o]=i={},i[c]=!0)),"on"===o||"nativeOn"===o||"hook"===o)for(s in i)r[s]=a(r[s],i[s]);else if(Array.isArray(r))e[o]=r.concat(i);else if(Array.isArray(i))e[o]=[r].concat(i);else for(s in i)r[s]=i[s];else e[o]=t[o];return e}),{})}},function(e,t){e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n=e[1]||"",a=e[3];if(!a)return n;if(t&&"function"==typeof btoa){var r=(o=a,"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+" */"),i=a.sources.map((function(e){return"/*# sourceURL="+a.sourceRoot+e+" */"}));return[n].concat(i).concat([r]).join("\n")}var o;return[n].join("\n")}(t,e);return t[2]?"@media "+t[2]+"{"+n+"}":n})).join("")},t.i=function(e,n){"string"==typeof e&&(e=[[null,e,""]]);for(var a={},r=0;r=0&&p.splice(t,1)}function b(e){var t=document.createElement("style");if(void 0===e.attrs.type&&(e.attrs.type="text/css"),void 0===e.attrs.nonce){var a=function(){0;return n.nc}();a&&(e.attrs.nonce=a)}return g(t,e.attrs),m(e,t),t}function g(e,t){Object.keys(t).forEach((function(n){e.setAttribute(n,t[n])}))}function y(e,t){var n,a,r,i;if(t.transform&&e.css){if(!(i="function"==typeof t.transform?t.transform(e.css):t.transform.default(e.css)))return function(){};e.css=i}if(t.singleton){var o=d++;n=l||(l=b(t)),a=x.bind(null,n,o,!1),r=x.bind(null,n,o,!0)}else e.sourceMap&&"function"==typeof URL&&"function"==typeof URL.createObjectURL&&"function"==typeof URL.revokeObjectURL&&"function"==typeof Blob&&"function"==typeof btoa?(n=function(e){var t=document.createElement("link");return void 0===e.attrs.type&&(e.attrs.type="text/css"),e.attrs.rel="stylesheet",g(t,e.attrs),m(e,t),t}(t),a=C.bind(null,n,t),r=function(){h(n),n.href&&URL.revokeObjectURL(n.href)}):(n=b(t),a=k.bind(null,n),r=function(){h(n)});return a(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;a(e=t)}else r()}}e.exports=function(e,t){if("undefined"!=typeof DEBUG&&DEBUG&&"object"!=typeof document)throw new Error("The style-loader cannot be used in a non-browser environment");(t=t||{}).attrs="object"==typeof t.attrs?t.attrs:{},t.singleton||"boolean"==typeof t.singleton||(t.singleton=o()),t.insertInto||(t.insertInto="head"),t.insertAt||(t.insertAt="bottom");var n=v(e,t);return f(n,t),function(e){for(var a=[],r=0;r-1&&t.splice(n,1)}}function f(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var n=e.state;m(e,n,[],e._modules.root,!0),v(e,n,t)}function v(e,t,n){var a=e._vm;e.getters={},e._makeLocalGettersCache=Object.create(null);var i=e._wrappedGetters,o={};r(i,(function(t,n){o[n]=function(e,t){return function(){return e(t)}}(t,e),Object.defineProperty(e.getters,n,{get:function(){return e._vm[n]},enumerable:!0})}));var s=l.config.silent;l.config.silent=!0,e._vm=new l({data:{$$state:t},computed:o}),l.config.silent=s,e.strict&&function(e){e._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}(e),a&&(n&&e._withCommit((function(){a._data.$$state=null})),l.nextTick((function(){return a.$destroy()})))}function m(e,t,n,a,r){var i=!n.length,o=e._modules.getNamespace(n);if(a.namespaced&&(e._modulesNamespaceMap[o],e._modulesNamespaceMap[o]=a),!i&&!r){var s=h(t,n.slice(0,-1)),c=n[n.length-1];e._withCommit((function(){l.set(s,c,a.state)}))}var d=a.context=function(e,t,n){var a=""===t,r={dispatch:a?e.dispatch:function(n,a,r){var i=b(n,a,r),o=i.payload,s=i.options,c=i.type;return s&&s.root||(c=t+c),e.dispatch(c,o)},commit:a?e.commit:function(n,a,r){var i=b(n,a,r),o=i.payload,s=i.options,c=i.type;s&&s.root||(c=t+c),e.commit(c,o,s)}};return Object.defineProperties(r,{getters:{get:a?function(){return e.getters}:function(){return function(e,t){if(!e._makeLocalGettersCache[t]){var n={},a=t.length;Object.keys(e.getters).forEach((function(r){if(r.slice(0,a)===t){var i=r.slice(a);Object.defineProperty(n,i,{get:function(){return e.getters[r]},enumerable:!0})}})),e._makeLocalGettersCache[t]=n}return e._makeLocalGettersCache[t]}(e,t)}},state:{get:function(){return h(e.state,n)}}}),r}(e,o,n);a.forEachMutation((function(t,n){!function(e,t,n,a){(e._mutations[t]||(e._mutations[t]=[])).push((function(t){n.call(e,a.state,t)}))}(e,o+n,t,d)})),a.forEachAction((function(t,n){var a=t.root?n:o+n,r=t.handler||t;!function(e,t,n,a){(e._actions[t]||(e._actions[t]=[])).push((function(t){var r,i=n.call(e,{dispatch:a.dispatch,commit:a.commit,getters:a.getters,state:a.state,rootGetters:e.getters,rootState:e.state},t);return(r=i)&&"function"==typeof r.then||(i=Promise.resolve(i)),e._devtoolHook?i.catch((function(t){throw e._devtoolHook.emit("vuex:error",t),t})):i}))}(e,a,r,d)})),a.forEachGetter((function(t,n){!function(e,t,n,a){if(e._wrappedGetters[t])return void 0;e._wrappedGetters[t]=function(e){return n(a.state,a.getters,e.state,e.getters)}}(e,o+n,t,d)})),a.forEachChild((function(a,i){m(e,t,n.concat(i),a,r)}))}function h(e,t){return t.reduce((function(e,t){return e[t]}),e)}function b(e,t,n){return i(e)&&e.type&&(n=t,t=e,e=e.type),{type:e,payload:t,options:n}}function g(e){l&&e===l||function(e){if(Number(e.version.split(".")[0])>=2)e.mixin({beforeCreate:n});else{var t=e.prototype._init;e.prototype._init=function(e){void 0===e&&(e={}),e.init=e.init?[n].concat(e.init):n,t.call(this,e)}}function n(){var e=this.$options;e.store?this.$store="function"==typeof e.store?e.store():e.store:e.parent&&e.parent.$store&&(this.$store=e.parent.$store)}}(l=e)}p.state.get=function(){return this._vm._data.$$state},p.state.set=function(e){0},d.prototype.commit=function(e,t,n){var a=this,r=b(e,t,n),i=r.type,o=r.payload,s=(r.options,{type:i,payload:o}),c=this._mutations[i];c&&(this._withCommit((function(){c.forEach((function(e){e(o)}))})),this._subscribers.slice().forEach((function(e){return e(s,a.state)})))},d.prototype.dispatch=function(e,t){var n=this,a=b(e,t),r=a.type,i=a.payload,o={type:r,payload:i},s=this._actions[r];if(s){try{this._actionSubscribers.slice().filter((function(e){return e.before})).forEach((function(e){return e.before(o,n.state)}))}catch(e){0}return(s.length>1?Promise.all(s.map((function(e){return e(i)}))):s[0](i)).then((function(e){try{n._actionSubscribers.filter((function(e){return e.after})).forEach((function(e){return e.after(o,n.state)}))}catch(e){0}return e}))}},d.prototype.subscribe=function(e,t){return u(e,this._subscribers,t)},d.prototype.subscribeAction=function(e,t){return u("function"==typeof e?{before:e}:e,this._actionSubscribers,t)},d.prototype.watch=function(e,t,n){var a=this;return this._watcherVM.$watch((function(){return e(a.state,a.getters)}),t,n)},d.prototype.replaceState=function(e){var t=this;this._withCommit((function(){t._vm._data.$$state=e}))},d.prototype.registerModule=function(e,t,n){void 0===n&&(n={}),"string"==typeof e&&(e=[e]),this._modules.register(e,t),m(this,this.state,e,this._modules.get(e),n.preserveState),v(this,this.state)},d.prototype.unregisterModule=function(e){var t=this;"string"==typeof e&&(e=[e]),this._modules.unregister(e),this._withCommit((function(){var n=h(t.state,e.slice(0,-1));l.delete(n,e[e.length-1])})),f(this)},d.prototype.hasModule=function(e){return"string"==typeof e&&(e=[e]),this._modules.isRegistered(e)},d.prototype.hotUpdate=function(e){this._modules.update(e),f(this,!0)},d.prototype._withCommit=function(e){var t=this._committing;this._committing=!0,e(),this._committing=t},Object.defineProperties(d.prototype,p);var y=C((function(e,t){var n={};return k(t).forEach((function(t){var a=t.key,r=t.val;n[a]=function(){var t=this.$store.state,n=this.$store.getters;if(e){var a=O(this.$store,"mapState",e);if(!a)return;t=a.context.state,n=a.context.getters}return"function"==typeof r?r.call(this,t,n):t[r]},n[a].vuex=!0})),n})),_=C((function(e,t){var n={};return k(t).forEach((function(t){var a=t.key,r=t.val;n[a]=function(){for(var t=[],n=arguments.length;n--;)t[n]=arguments[n];var a=this.$store.commit;if(e){var i=O(this.$store,"mapMutations",e);if(!i)return;a=i.context.commit}return"function"==typeof r?r.apply(this,[a].concat(t)):a.apply(this.$store,[r].concat(t))}})),n})),w=C((function(e,t){var n={};return k(t).forEach((function(t){var a=t.key,r=t.val;r=e+r,n[a]=function(){if(!e||O(this.$store,"mapGetters",e))return this.$store.getters[r]},n[a].vuex=!0})),n})),x=C((function(e,t){var n={};return k(t).forEach((function(t){var a=t.key,r=t.val;n[a]=function(){for(var t=[],n=arguments.length;n--;)t[n]=arguments[n];var a=this.$store.dispatch;if(e){var i=O(this.$store,"mapActions",e);if(!i)return;a=i.context.dispatch}return"function"==typeof r?r.apply(this,[a].concat(t)):a.apply(this.$store,[r].concat(t))}})),n}));function k(e){return function(e){return Array.isArray(e)||i(e)}(e)?Array.isArray(e)?e.map((function(e){return{key:e,val:e}})):Object.keys(e).map((function(t){return{key:t,val:e[t]}})):[]}function C(e){return function(t,n){return"string"!=typeof t?(n=t,t=""):"/"!==t.charAt(t.length-1)&&(t+="/"),e(t,n)}}function O(e,t,n){return e._modulesNamespaceMap[n]}var $={Store:d,install:g,version:"3.3.0",mapState:y,mapMutations:_,mapGetters:w,mapActions:x,createNamespacedHelpers:function(e){return{mapState:y.bind(null,e),mapGetters:w.bind(null,e),mapMutations:_.bind(null,e),mapActions:x.bind(null,e)}}};t.a=$}).call(this,n(11))},function(e,t,n){e.exports=n(111)},function(e,t,n){!function(e,t){"use strict";t=t&&t.hasOwnProperty("default")?t.default:t;var n={code:"en",messages:{alpha:"The {_field_} field may only contain alphabetic characters",alpha_num:"The {_field_} field may only contain alpha-numeric characters",alpha_dash:"The {_field_} field may contain alpha-numeric characters as well as dashes and underscores",alpha_spaces:"The {_field_} field may only contain alphabetic characters as well as spaces",between:"The {_field_} field must be between {min} and {max}",confirmed:"The {_field_} field confirmation does not match",digits:"The {_field_} field must be numeric and exactly contain {length} digits",dimensions:"The {_field_} field must be {width} pixels by {height} pixels",email:"The {_field_} field must be a valid email",excluded:"The {_field_} field is not a valid value",ext:"The {_field_} field is not a valid file",image:"The {_field_} field must be an image",integer:"The {_field_} field must be an integer",length:"The {_field_} field must be {length} long",max_value:"The {_field_} field must be {max} or less",max:"The {_field_} field may not be greater than {length} characters",mimes:"The {_field_} field must have a valid file type",min_value:"The {_field_} field must be {min} or more",min:"The {_field_} field must be at least {length} characters",numeric:"The {_field_} field may only contain numeric characters",oneOf:"The {_field_} field is not a valid value",regex:"The {_field_} field format is invalid",required_if:"The {_field_} field is required",required:"The {_field_} field is required",size:"The {_field_} field size must be less than {size}KB"}},a={en:/^[A-Z]*$/i,cs:/^[A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]*$/i,da:/^[A-ZÆØÅ]*$/i,de:/^[A-ZÄÖÜß]*$/i,es:/^[A-ZÁÉÍÑÓÚÜ]*$/i,fa:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰپژگچکی]*$/,fr:/^[A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]*$/i,it:/^[A-Z\xC0-\xFF]*$/i,lt:/^[A-ZĄČĘĖĮŠŲŪŽ]*$/i,nl:/^[A-ZÉËÏÓÖÜ]*$/i,hu:/^[A-ZÁÉÍÓÖŐÚÜŰ]*$/i,pl:/^[A-ZĄĆĘŚŁŃÓŻŹ]*$/i,pt:/^[A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ]*$/i,ru:/^[А-ЯЁ]*$/i,sk:/^[A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ]*$/i,sr:/^[A-ZČĆŽŠĐ]*$/i,sv:/^[A-ZÅÄÖ]*$/i,tr:/^[A-ZÇĞİıÖŞÜ]*$/i,uk:/^[А-ЩЬЮЯЄІЇҐ]*$/i,ar:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]*$/,az:/^[A-ZÇƏĞİıÖŞÜ]*$/i},r={en:/^[A-Z\s]*$/i,cs:/^[A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ\s]*$/i,da:/^[A-ZÆØÅ\s]*$/i,de:/^[A-ZÄÖÜß\s]*$/i,es:/^[A-ZÁÉÍÑÓÚÜ\s]*$/i,fa:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰپژگچکی]*$/,fr:/^[A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ\s]*$/i,it:/^[A-Z\xC0-\xFF\s]*$/i,lt:/^[A-ZĄČĘĖĮŠŲŪŽ\s]*$/i,nl:/^[A-ZÉËÏÓÖÜ\s]*$/i,hu:/^[A-ZÁÉÍÓÖŐÚÜŰ\s]*$/i,pl:/^[A-ZĄĆĘŚŁŃÓŻŹ\s]*$/i,pt:/^[A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ\s]*$/i,ru:/^[А-ЯЁ\s]*$/i,sk:/^[A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ\s]*$/i,sr:/^[A-ZČĆŽŠĐ\s]*$/i,sv:/^[A-ZÅÄÖ\s]*$/i,tr:/^[A-ZÇĞİıÖŞÜ\s]*$/i,uk:/^[А-ЩЬЮЯЄІЇҐ\s]*$/i,ar:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ\s]*$/,az:/^[A-ZÇƏĞİıÖŞÜ\s]*$/i},i={en:/^[0-9A-Z]*$/i,cs:/^[0-9A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]*$/i,da:/^[0-9A-ZÆØÅ]$/i,de:/^[0-9A-ZÄÖÜß]*$/i,es:/^[0-9A-ZÁÉÍÑÓÚÜ]*$/i,fa:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰپژگچکی]*$/,fr:/^[0-9A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]*$/i,it:/^[0-9A-Z\xC0-\xFF]*$/i,lt:/^[0-9A-ZĄČĘĖĮŠŲŪŽ]*$/i,hu:/^[0-9A-ZÁÉÍÓÖŐÚÜŰ]*$/i,nl:/^[0-9A-ZÉËÏÓÖÜ]*$/i,pl:/^[0-9A-ZĄĆĘŚŁŃÓŻŹ]*$/i,pt:/^[0-9A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ]*$/i,ru:/^[0-9А-ЯЁ]*$/i,sk:/^[0-9A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ]*$/i,sr:/^[0-9A-ZČĆŽŠĐ]*$/i,sv:/^[0-9A-ZÅÄÖ]*$/i,tr:/^[0-9A-ZÇĞİıÖŞÜ]*$/i,uk:/^[0-9А-ЩЬЮЯЄІЇҐ]*$/i,ar:/^[٠١٢٣٤٥٦٧٨٩0-9ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]*$/,az:/^[0-9A-ZÇƏĞİıÖŞÜ]*$/i},o={en:/^[0-9A-Z_-]*$/i,cs:/^[0-9A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ_-]*$/i,da:/^[0-9A-ZÆØÅ_-]*$/i,de:/^[0-9A-ZÄÖÜß_-]*$/i,es:/^[0-9A-ZÁÉÍÑÓÚÜ_-]*$/i,fa:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰپژگچکی]*$/,fr:/^[0-9A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ_-]*$/i,it:/^[0-9A-Z\xC0-\xFF_-]*$/i,lt:/^[0-9A-ZĄČĘĖĮŠŲŪŽ_-]*$/i,nl:/^[0-9A-ZÉËÏÓÖÜ_-]*$/i,hu:/^[0-9A-ZÁÉÍÓÖŐÚÜŰ_-]*$/i,pl:/^[0-9A-ZĄĆĘŚŁŃÓŻŹ_-]*$/i,pt:/^[0-9A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ_-]*$/i,ru:/^[0-9А-ЯЁ_-]*$/i,sk:/^[0-9A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ_-]*$/i,sr:/^[0-9A-ZČĆŽŠĐ_-]*$/i,sv:/^[0-9A-ZÅÄÖ_-]*$/i,tr:/^[0-9A-ZÇĞİıÖŞÜ_-]*$/i,uk:/^[0-9А-ЩЬЮЯЄІЇҐ_-]*$/i,ar:/^[٠١٢٣٤٥٦٧٨٩0-9ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ_-]*$/,az:/^[0-9A-ZÇƏĞİıÖŞÜ_-]*$/i},s=function(e,t){var n=(void 0===t?{}:t).locale,r=void 0===n?"":n;return Array.isArray(e)?e.every((function(e){return s(e,{locale:r})})):r?(a[r]||a.en).test(e):Object.keys(a).some((function(t){return a[t].test(e)}))},c={validate:s,params:[{name:"locale"}]},l=function(e,t){var n=(void 0===t?{}:t).locale,a=void 0===n?"":n;return Array.isArray(e)?e.every((function(e){return l(e,{locale:a})})):a?(o[a]||o.en).test(e):Object.keys(o).some((function(t){return o[t].test(e)}))},d={validate:l,params:[{name:"locale"}]},p=function(e,t){var n=(void 0===t?{}:t).locale,a=void 0===n?"":n;return Array.isArray(e)?e.every((function(e){return p(e,{locale:a})})):a?(i[a]||i.en).test(e):Object.keys(i).some((function(t){return i[t].test(e)}))},u={validate:p,params:[{name:"locale"}]},f=function(e,t){var n=(void 0===t?{}:t).locale,a=void 0===n?"":n;return Array.isArray(e)?e.every((function(e){return f(e,{locale:a})})):a?(r[a]||r.en).test(e):Object.keys(r).some((function(t){return r[t].test(e)}))},v={validate:f,params:[{name:"locale"}]},m=function(e,t){var n=void 0===t?{}:t,a=n.min,r=n.max;return Array.isArray(e)?e.every((function(e){return!!m(e,{min:a,max:r})})):Number(a)<=e&&Number(r)>=e},h={validate:m,params:[{name:"min"},{name:"max"}]},b={validate:function(e,t){var n=t.target;return String(e)===String(n)},params:[{name:"target",isTarget:!0}]},g=function(e,t){var n=t.length;if(Array.isArray(e))return e.every((function(e){return g(e,{length:n})}));var a=String(e);return/^[0-9]*$/.test(a)&&a.length===n},y={validate:g,params:[{name:"length",cast:function(e){return Number(e)}}]},_={validate:function(e,t){var n=t.width,a=t.height,r=[];e=Array.isArray(e)?e:[e];for(var i=0;i()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;return n&&!Array.isArray(e)&&(e=String(e).split(",").map((function(e){return e.trim()}))),Array.isArray(e)?e.every((function(e){return a.test(String(e))})):a.test(String(e))},params:[{name:"multiple",default:!1}]};function x(e){return e!=e}function k(e){return null==e}function C(e){return Array.isArray(e)&&0===e.length}var O=function(e){return null!==e&&e&&"object"==typeof e&&!Array.isArray(e)};function $(e,t){if(e instanceof RegExp&&t instanceof RegExp)return $(e.source,t.source)&&$(e.flags,t.flags);if(Array.isArray(e)&&Array.isArray(t)){if(e.length!==t.length)return!1;for(var n=0;n=0:Array.isArray(e)?e.every((function(e){return G(e,{length:n})})):String(e).length<=n},Z={validate:G,params:[{name:"length",cast:function(e){return Number(e)}}]},Y=function(e,t){var n=t.max;return!k(e)&&""!==e&&(Array.isArray(e)?e.length>0&&e.every((function(e){return Y(e,{max:n})})):Number(e)<=n)},K={validate:Y,params:[{name:"max",cast:function(e){return Number(e)}}]},X={validate:function(e,t){var n=new RegExp(t.join("|").replace("*",".+")+"$","i");return Array.isArray(e)?e.every((function(e){return n.test(e.type)})):n.test(e.type)}},J=function(e,t){var n=t.length;return!k(e)&&(Array.isArray(e)?e.every((function(e){return J(e,{length:n})})):String(e).length>=n)},Q={validate:J,params:[{name:"length",cast:function(e){return Number(e)}}]},ee=function(e,t){var n=t.min;return!k(e)&&""!==e&&(Array.isArray(e)?e.length>0&&e.every((function(e){return ee(e,{min:n})})):Number(e)>=n)},te={validate:ee,params:[{name:"min",cast:function(e){return Number(e)}}]},ne=/^[٠١٢٣٤٥٦٧٨٩]+$/,ae=/^[0-9]+$/,re={validate:function(e){var t=function(e){var t=String(e);return ae.test(t)||ne.test(t)};return Array.isArray(e)?e.every(t):t(e)}},ie=function(e,t){var n=t.regex;return Array.isArray(e)?e.every((function(e){return ie(e,{regex:n})})):n.test(String(e))},oe={validate:ie,params:[{name:"regex",cast:function(e){return"string"==typeof e?new RegExp(e):e}}]},se={validate:function(e,t){var n=(void 0===t?{allowFalse:!0}:t).allowFalse,a={valid:!1,required:!0};return k(e)||C(e)?a:!1!==e||n?(a.valid=!!String(e).trim().length,a):a},params:[{name:"allowFalse",default:!0}],computesRequired:!0},ce=function(e){return C(e)||A([!1,null,void 0],e)||!String(e).trim().length},le={validate:function(e,t){var n,a=t.target,r=t.values;return r&&r.length?(Array.isArray(r)||"string"!=typeof r||(r=[r]),n=r.some((function(e){return e==String(a).trim()}))):n=!ce(a),n?{valid:!ce(e),required:n}:{valid:!0,required:n}},params:[{name:"target",isTarget:!0},{name:"values"}],computesRequired:!0},de={validate:function(e,t){var n=t.size;if(isNaN(n))return!1;var a=1024*n;if(!Array.isArray(e))return e.size<=a;for(var r=0;ra)return!1;return!0},params:[{name:"size",cast:function(e){return Number(e)}}]},pe=Object.freeze({__proto__:null,alpha_dash:d,alpha_num:u,alpha_spaces:v,alpha:c,between:h,confirmed:b,digits:y,dimensions:_,email:w,ext:B,image:V,oneOf:M,integer:U,length:W,is_not:H,is:q,max:Z,max_value:K,mimes:X,min:Q,min_value:te,excluded:R,numeric:re,regex:oe,required:se,required_if:le,size:de}),ue=function(){return(ue=Object.assign||function(e){for(var t,n=1,a=arguments.length;n0&&r[r.length-1])||6!==i[0]&&2!==i[0])){o=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]=0&&Oe.getRuleDefinition("max")&&(a.max=n.maxlength),n.minlength>=0&&Oe.getRuleDefinition("min")&&(a.min=n.minlength),"number"===n.type&&(z(n.min)&&Oe.getRuleDefinition("min_value")&&(a.min_value=Number(n.min)),z(n.max)&&Oe.getRuleDefinition("max_value")&&(a.max_value=Number(n.max))),a):a}(e))):Pe(a)}function Ge(e,t){return e.$scopedSlots.default?e.$scopedSlots.default(t)||[]:e.$slots.default||[]}function Ze(e){return ue(ue({},e.flags),{errors:e.errors,classes:e.classes,failedRules:e.failedRules,reset:function(){return e.reset()},validate:function(){for(var t=[],n=0;n0&&this.syncValue(e[0]),[2,Xe(this)]}))}))},validateSilent:function(){return fe(this,void 0,void 0,(function(){var e,t;return ve(this,(function(n){switch(n.label){case 0:return this.setFlags({pending:!0}),e=ue(ue({},this._resolvedRules),this.normalizedRules),Object.defineProperty(e,"_$$isNormalized",{value:!0,writable:!1,enumerable:!1,configurable:!1}),[4,Ee(this.value,e,ue(ue({name:this.name||this.fieldName},(a=this,r=a.$_veeObserver.refs,a.fieldDeps.reduce((function(e,t){return r[t]?(e.values[t]=r[t].value,e.names[t]=r[t].name,e):e}),{names:{},values:{}}))),{bails:this.bails,skipIfEmpty:this.skipIfEmpty,isInitial:!this.initialized,customMessages:this.customMessages}))];case 1:return t=n.sent(),this.setFlags({pending:!1,valid:t.valid,invalid:!t.valid}),[2,t]}var a,r}))}))},setErrors:function(e){this.applyResult({errors:e,failedRules:{}})},applyResult:function(e){var t=e.errors,n=e.failedRules,a=e.regenerateMap;this.errors=t,this._regenerateMap=a,this.failedRules=ue({},n||{}),this.setFlags({valid:!t.length,passed:!t.length,invalid:!!t.length,failed:!!t.length,validated:!0,changed:this.value!==this.initialValue})},registerField:function(){var e,t,n;t=function(e){return e.vid?e.vid:e.name?e.name:e.id?e.id:e.fieldName?e.fieldName:"_vee_"+ ++Qe}(e=this),n=e.id,!e.isActive||n===t&&e.$_veeObserver.refs[n]||(n!==t&&e.$_veeObserver.refs[n]===e&&e.$_veeObserver.unobserve(n),e.id=t,e.$_veeObserver.observe(e))}}}),tt=[["pristine","every"],["dirty","some"],["touched","some"],["untouched","every"],["valid","every"],["invalid","some"],["pending","some"],["validated","every"],["changed","some"],["passed","every"],["failed","some"]],nt=0,at=t.extend({name:"ValidationObserver",provide:function(){return{$_veeObserver:this}},inject:{$_veeObserver:{from:"$_veeObserver",default:function(){return this.$vnode.context.$_veeObserver?this.$vnode.context.$_veeObserver:null}}},props:{tag:{type:String,default:"span"},vid:{type:String,default:function(){return"obs_"+nt++}},slim:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},data:function(){return{id:"",refs:{},observers:[],errors:{},flags:ot(),fields:{}}},created:function(){var e=this;this.id=this.vid,it(this);var t=F((function(t){var n=t.errors,a=t.flags,r=t.fields;e.errors=n,e.flags=a,e.fields=r}),16);this.$watch(st,t)},activated:function(){it(this)},deactivated:function(){rt(this)},beforeDestroy:function(){rt(this)},render:function(e){var t,n=Ge(this,ue(ue({},(t=this).flags),{errors:t.errors,fields:t.fields,validate:t.validate,passes:t.handleSubmit,handleSubmit:t.handleSubmit,reset:t.reset}));return this.slim&&n.length<=1?n[0]:e(this.tag,{on:this.$listeners},n)},methods:{observe:function(e,t){var n;void 0===t&&(t="provider"),"observer"!==t?this.refs=ue(ue({},this.refs),((n={})[e.id]=e,n)):this.observers.push(e)},unobserve:function(e,t){if(void 0===t&&(t="provider"),"provider"!==t){var n=j(this.observers,(function(t){return t.id===e}));-1!==n&&this.observers.splice(n,1)}else{if(!this.refs[e])return;this.$delete(this.refs,e)}},validate:function(e){var t=(void 0===e?{}:e).silent,n=void 0!==t&&t;return fe(this,void 0,void 0,(function(){return ve(this,(function(e){switch(e.label){case 0:return[4,Promise.all(me(S(this.refs).filter((function(e){return!e.disabled})).map((function(e){return e[n?"validateSilent":"validate"]().then((function(e){return e.valid}))})),this.observers.filter((function(e){return!e.disabled})).map((function(e){return e.validate({silent:n})}))))];case 1:return[2,e.sent().every((function(e){return e}))]}}))}))},handleSubmit:function(e){return fe(this,void 0,void 0,(function(){return ve(this,(function(t){switch(t.label){case 0:return[4,this.validate()];case 1:return t.sent()&&e?[2,e()]:[2]}}))}))},reset:function(){return me(S(this.refs),this.observers).forEach((function(e){return e.reset()}))},setErrors:function(e){var t=this;Object.keys(e).forEach((function(n){var a=t.refs[n];if(a){var r=e[n]||[];r="string"==typeof r?[r]:r,a.setErrors(r)}})),this.observers.forEach((function(t){t.setErrors(e)}))}}});function rt(e){e.$_veeObserver&&e.$_veeObserver.unobserve(e.id,"observer")}function it(e){e.$_veeObserver&&e.$_veeObserver.observe(e,"observer")}function ot(){return ue(ue({},{untouched:!0,touched:!1,dirty:!1,pristine:!0,valid:!1,invalid:!1,validated:!1,pending:!1,required:!1,changed:!1,passed:!1,failed:!1}),{valid:!0,invalid:!1})}function st(){for(var e=me(S(this.refs),this.observers),t={},n=ot(),a={},r=e.length,i=0;i"']/g,N=RegExp(F.source),M=RegExp(L.source),R=/<%-([\s\S]+?)%>/g,B=/<%([\s\S]+?)%>/g,V=/<%=([\s\S]+?)%>/g,U=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,q=/^\w*$/,H=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,W=/[\\^$.*+?()[\]{}|]/g,G=RegExp(W.source),Z=/^\s+|\s+$/g,Y=/^\s+/,K=/\s+$/,X=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,J=/\{\n\/\* \[wrapped with (.+)\] \*/,Q=/,? & /,ee=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,te=/\\(\\)?/g,ne=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,ae=/\w*$/,re=/^[-+]0x[0-9a-f]+$/i,ie=/^0b[01]+$/i,oe=/^\[object .+?Constructor\]$/,se=/^0o[0-7]+$/i,ce=/^(?:0|[1-9]\d*)$/,le=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,de=/($^)/,pe=/['\n\r\u2028\u2029\\]/g,ue="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",fe="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",ve="[\\ud800-\\udfff]",me="["+fe+"]",he="["+ue+"]",be="\\d+",ge="[\\u2700-\\u27bf]",ye="[a-z\\xdf-\\xf6\\xf8-\\xff]",_e="[^\\ud800-\\udfff"+fe+be+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",we="\\ud83c[\\udffb-\\udfff]",xe="[^\\ud800-\\udfff]",ke="(?:\\ud83c[\\udde6-\\uddff]){2}",Ce="[\\ud800-\\udbff][\\udc00-\\udfff]",Oe="[A-Z\\xc0-\\xd6\\xd8-\\xde]",$e="(?:"+ye+"|"+_e+")",ze="(?:"+Oe+"|"+_e+")",Pe="(?:"+he+"|"+we+")"+"?",Ie="[\\ufe0e\\ufe0f]?"+Pe+("(?:\\u200d(?:"+[xe,ke,Ce].join("|")+")[\\ufe0e\\ufe0f]?"+Pe+")*"),je="(?:"+[ge,ke,Ce].join("|")+")"+Ie,Ae="(?:"+[xe+he+"?",he,ke,Ce,ve].join("|")+")",Ee=RegExp("['’]","g"),Se=RegExp(he,"g"),Te=RegExp(we+"(?="+we+")|"+Ae+Ie,"g"),De=RegExp([Oe+"?"+ye+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[me,Oe,"$"].join("|")+")",ze+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[me,Oe+$e,"$"].join("|")+")",Oe+"?"+$e+"+(?:['’](?:d|ll|m|re|s|t|ve))?",Oe+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",be,je].join("|"),"g"),Fe=RegExp("[\\u200d\\ud800-\\udfff"+ue+"\\ufe0e\\ufe0f]"),Le=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Ne=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Me=-1,Re={};Re[O]=Re[$]=Re[z]=Re[P]=Re[I]=Re[j]=Re["[object Uint8ClampedArray]"]=Re[A]=Re[E]=!0,Re[c]=Re[l]=Re[k]=Re[d]=Re[C]=Re[p]=Re[u]=Re[f]=Re[m]=Re[h]=Re[b]=Re[g]=Re[y]=Re[_]=Re[x]=!1;var Be={};Be[c]=Be[l]=Be[k]=Be[C]=Be[d]=Be[p]=Be[O]=Be[$]=Be[z]=Be[P]=Be[I]=Be[m]=Be[h]=Be[b]=Be[g]=Be[y]=Be[_]=Be[w]=Be[j]=Be["[object Uint8ClampedArray]"]=Be[A]=Be[E]=!0,Be[u]=Be[f]=Be[x]=!1;var Ve={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Ue=parseFloat,qe=parseInt,He="object"==typeof e&&e&&e.Object===Object&&e,We="object"==typeof self&&self&&self.Object===Object&&self,Ge=He||We||Function("return this")(),Ze=t&&!t.nodeType&&t,Ye=Ze&&"object"==typeof a&&a&&!a.nodeType&&a,Ke=Ye&&Ye.exports===Ze,Xe=Ke&&He.process,Je=function(){try{var e=Ye&&Ye.require&&Ye.require("util").types;return e||Xe&&Xe.binding&&Xe.binding("util")}catch(e){}}(),Qe=Je&&Je.isArrayBuffer,et=Je&&Je.isDate,tt=Je&&Je.isMap,nt=Je&&Je.isRegExp,at=Je&&Je.isSet,rt=Je&&Je.isTypedArray;function it(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function ot(e,t,n,a){for(var r=-1,i=null==e?0:e.length;++r-1}function ut(e,t,n){for(var a=-1,r=null==e?0:e.length;++a-1;);return n}function Tt(e,t){for(var n=e.length;n--&&wt(t,e[n],0)>-1;);return n}function Dt(e,t){for(var n=e.length,a=0;n--;)e[n]===t&&++a;return a}var Ft=$t({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),Lt=$t({"&":"&","<":"<",">":">",'"':""","'":"'"});function Nt(e){return"\\"+Ve[e]}function Mt(e){return Fe.test(e)}function Rt(e){var t=-1,n=Array(e.size);return e.forEach((function(e,a){n[++t]=[a,e]})),n}function Bt(e,t){return function(n){return e(t(n))}}function Vt(e,t){for(var n=-1,a=e.length,r=0,i=[];++n",""":'"',"'":"'"});var Zt=function e(t){var n,a=(t=null==t?Ge:Zt.defaults(Ge.Object(),t,Zt.pick(Ge,Ne))).Array,r=t.Date,ue=t.Error,fe=t.Function,ve=t.Math,me=t.Object,he=t.RegExp,be=t.String,ge=t.TypeError,ye=a.prototype,_e=fe.prototype,we=me.prototype,xe=t["__core-js_shared__"],ke=_e.toString,Ce=we.hasOwnProperty,Oe=0,$e=(n=/[^.]+$/.exec(xe&&xe.keys&&xe.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",ze=we.toString,Pe=ke.call(me),Ie=Ge._,je=he("^"+ke.call(Ce).replace(W,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Ae=Ke?t.Buffer:void 0,Te=t.Symbol,Fe=t.Uint8Array,Ve=Ae?Ae.allocUnsafe:void 0,He=Bt(me.getPrototypeOf,me),We=me.create,Ze=we.propertyIsEnumerable,Ye=ye.splice,Xe=Te?Te.isConcatSpreadable:void 0,Je=Te?Te.iterator:void 0,gt=Te?Te.toStringTag:void 0,$t=function(){try{var e=Qr(me,"defineProperty");return e({},"",{}),e}catch(e){}}(),Yt=t.clearTimeout!==Ge.clearTimeout&&t.clearTimeout,Kt=r&&r.now!==Ge.Date.now&&r.now,Xt=t.setTimeout!==Ge.setTimeout&&t.setTimeout,Jt=ve.ceil,Qt=ve.floor,en=me.getOwnPropertySymbols,tn=Ae?Ae.isBuffer:void 0,nn=t.isFinite,an=ye.join,rn=Bt(me.keys,me),on=ve.max,sn=ve.min,cn=r.now,ln=t.parseInt,dn=ve.random,pn=ye.reverse,un=Qr(t,"DataView"),fn=Qr(t,"Map"),vn=Qr(t,"Promise"),mn=Qr(t,"Set"),hn=Qr(t,"WeakMap"),bn=Qr(me,"create"),gn=hn&&new hn,yn={},_n=$i(un),wn=$i(fn),xn=$i(vn),kn=$i(mn),Cn=$i(hn),On=Te?Te.prototype:void 0,$n=On?On.valueOf:void 0,zn=On?On.toString:void 0;function Pn(e){if(qo(e)&&!So(e)&&!(e instanceof En)){if(e instanceof An)return e;if(Ce.call(e,"__wrapped__"))return zi(e)}return new An(e)}var In=function(){function e(){}return function(t){if(!Uo(t))return{};if(We)return We(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();function jn(){}function An(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=void 0}function En(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=4294967295,this.__views__=[]}function Sn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t=t?e:t)),e}function Kn(e,t,n,a,r,i){var o,s=1&t,l=2&t,u=4&t;if(n&&(o=r?n(e,a,r,i):n(e)),void 0!==o)return o;if(!Uo(e))return e;var x=So(e);if(x){if(o=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&Ce.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!s)return br(e,o)}else{var S=ni(e),T=S==f||S==v;if(Lo(e))return pr(e,s);if(S==b||S==c||T&&!r){if(o=l||T?{}:ri(e),!s)return l?function(e,t){return gr(e,ti(e),t)}(e,function(e,t){return e&&gr(t,ws(t),e)}(o,e)):function(e,t){return gr(e,ei(e),t)}(e,Wn(o,e))}else{if(!Be[S])return r?e:{};o=function(e,t,n){var a=e.constructor;switch(t){case k:return ur(e);case d:case p:return new a(+e);case C:return function(e,t){var n=t?ur(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case O:case $:case z:case P:case I:case j:case"[object Uint8ClampedArray]":case A:case E:return fr(e,n);case m:return new a;case h:case _:return new a(e);case g:return function(e){var t=new e.constructor(e.source,ae.exec(e));return t.lastIndex=e.lastIndex,t}(e);case y:return new a;case w:return r=e,$n?me($n.call(r)):{}}var r}(e,S,s)}}i||(i=new Ln);var D=i.get(e);if(D)return D;i.set(e,o),Yo(e)?e.forEach((function(a){o.add(Kn(a,t,n,a,e,i))})):Ho(e)&&e.forEach((function(a,r){o.set(r,Kn(a,t,n,r,e,i))}));var F=x?void 0:(u?l?Wr:Hr:l?ws:_s)(e);return st(F||e,(function(a,r){F&&(a=e[r=a]),Un(o,r,Kn(a,t,n,r,e,i))})),o}function Xn(e,t,n){var a=n.length;if(null==e)return!a;for(e=me(e);a--;){var r=n[a],i=t[r],o=e[r];if(void 0===o&&!(r in e)||!i(o))return!1}return!0}function Jn(e,t,n){if("function"!=typeof e)throw new ge(i);return yi((function(){e.apply(void 0,n)}),t)}function Qn(e,t,n,a){var r=-1,i=pt,o=!0,s=e.length,c=[],l=t.length;if(!s)return c;n&&(t=ft(t,jt(n))),a?(i=ut,o=!1):t.length>=200&&(i=Et,o=!1,t=new Fn(t));e:for(;++r-1},Tn.prototype.set=function(e,t){var n=this.__data__,a=qn(n,e);return a<0?(++this.size,n.push([e,t])):n[a][1]=t,this},Dn.prototype.clear=function(){this.size=0,this.__data__={hash:new Sn,map:new(fn||Tn),string:new Sn}},Dn.prototype.delete=function(e){var t=Xr(this,e).delete(e);return this.size-=t?1:0,t},Dn.prototype.get=function(e){return Xr(this,e).get(e)},Dn.prototype.has=function(e){return Xr(this,e).has(e)},Dn.prototype.set=function(e,t){var n=Xr(this,e),a=n.size;return n.set(e,t),this.size+=n.size==a?0:1,this},Fn.prototype.add=Fn.prototype.push=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this},Fn.prototype.has=function(e){return this.__data__.has(e)},Ln.prototype.clear=function(){this.__data__=new Tn,this.size=0},Ln.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Ln.prototype.get=function(e){return this.__data__.get(e)},Ln.prototype.has=function(e){return this.__data__.has(e)},Ln.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Tn){var a=n.__data__;if(!fn||a.length<199)return a.push([e,t]),this.size=++n.size,this;n=this.__data__=new Dn(a)}return n.set(e,t),this.size=n.size,this};var ea=wr(ca),ta=wr(la,!0);function na(e,t){var n=!0;return ea(e,(function(e,a,r){return n=!!t(e,a,r)})),n}function aa(e,t,n){for(var a=-1,r=e.length;++a0&&n(s)?t>1?ia(s,t-1,n,a,r):vt(r,s):a||(r[r.length]=s)}return r}var oa=xr(),sa=xr(!0);function ca(e,t){return e&&oa(e,t,_s)}function la(e,t){return e&&sa(e,t,_s)}function da(e,t){return dt(t,(function(t){return Ro(e[t])}))}function pa(e,t){for(var n=0,a=(t=sr(t,e)).length;null!=e&&nt}function ma(e,t){return null!=e&&Ce.call(e,t)}function ha(e,t){return null!=e&&t in me(e)}function ba(e,t,n){for(var r=n?ut:pt,i=e[0].length,o=e.length,s=o,c=a(o),l=1/0,d=[];s--;){var p=e[s];s&&t&&(p=ft(p,jt(t))),l=sn(p.length,l),c[s]=!n&&(t||i>=120&&p.length>=120)?new Fn(s&&p):void 0}p=e[0];var u=-1,f=c[0];e:for(;++u=s)return c;var l=n[a];return c*("desc"==l?-1:1)}}return e.index-t.index}(e,t,n)}))}function Sa(e,t,n){for(var a=-1,r=t.length,i={};++a-1;)s!==e&&Ye.call(s,c,1),Ye.call(e,c,1);return e}function Da(e,t){for(var n=e?t.length:0,a=n-1;n--;){var r=t[n];if(n==a||r!==i){var i=r;oi(r)?Ye.call(e,r,1):Qa(e,r)}}return e}function Fa(e,t){return e+Qt(dn()*(t-e+1))}function La(e,t){var n="";if(!e||t<1||t>9007199254740991)return n;do{t%2&&(n+=e),(t=Qt(t/2))&&(e+=e)}while(t);return n}function Na(e,t){return _i(vi(e,t,Ws),e+"")}function Ma(e){return Mn(Is(e))}function Ra(e,t){var n=Is(e);return ki(n,Yn(t,0,n.length))}function Ba(e,t,n,a){if(!Uo(e))return e;for(var r=-1,i=(t=sr(t,e)).length,o=i-1,s=e;null!=s&&++ri?0:i+t),(n=n>i?i:n)<0&&(n+=i),i=t>n?0:n-t>>>0,t>>>=0;for(var o=a(i);++r>>1,o=e[i];null!==o&&!Xo(o)&&(n?o<=t:o=200){var l=t?null:Lr(e);if(l)return Ut(l);o=!1,r=Et,c=new Fn}else c=t?[]:s;e:for(;++a=a?e:Ha(e,t,n)}var dr=Yt||function(e){return Ge.clearTimeout(e)};function pr(e,t){if(t)return e.slice();var n=e.length,a=Ve?Ve(n):new e.constructor(n);return e.copy(a),a}function ur(e){var t=new e.constructor(e.byteLength);return new Fe(t).set(new Fe(e)),t}function fr(e,t){var n=t?ur(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function vr(e,t){if(e!==t){var n=void 0!==e,a=null===e,r=e==e,i=Xo(e),o=void 0!==t,s=null===t,c=t==t,l=Xo(t);if(!s&&!l&&!i&&e>t||i&&o&&c&&!s&&!l||a&&o&&c||!n&&c||!r)return 1;if(!a&&!i&&!l&&e1?n[r-1]:void 0,o=r>2?n[2]:void 0;for(i=e.length>3&&"function"==typeof i?(r--,i):void 0,o&&si(n[0],n[1],o)&&(i=r<3?void 0:i,r=1),t=me(t);++a-1?r[i?t[o]:o]:void 0}}function zr(e){return qr((function(t){var n=t.length,a=n,r=An.prototype.thru;for(e&&t.reverse();a--;){var o=t[a];if("function"!=typeof o)throw new ge(i);if(r&&!s&&"wrapper"==Zr(o))var s=new An([],!0)}for(a=s?a:n;++a1&&y.reverse(),p&&ls))return!1;var l=i.get(e);if(l&&i.get(t))return l==t;var d=-1,p=!0,u=2&n?new Fn:void 0;for(i.set(e,t),i.set(t,e);++d-1&&e%1==0&&e1?"& ":"")+t[a],t=t.join(n>2?", ":" "),e.replace(X,"{\n/* [wrapped with "+t+"] */\n")}(a,function(e,t){return st(s,(function(n){var a="_."+n[0];t&n[1]&&!pt(e,a)&&e.push(a)})),e.sort()}(function(e){var t=e.match(J);return t?t[1].split(Q):[]}(a),n)))}function xi(e){var t=0,n=0;return function(){var a=cn(),r=16-(a-n);if(n=a,r>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}function ki(e,t){var n=-1,a=e.length,r=a-1;for(t=void 0===t?a:t;++n1?e[t-1]:void 0;return n="function"==typeof n?(e.pop(),n):void 0,Gi(e,n)}));function eo(e){var t=Pn(e);return t.__chain__=!0,t}function to(e,t){return t(e)}var no=qr((function(e){var t=e.length,n=t?e[0]:0,a=this.__wrapped__,r=function(t){return Zn(t,e)};return!(t>1||this.__actions__.length)&&a instanceof En&&oi(n)?((a=a.slice(n,+n+(t?1:0))).__actions__.push({func:to,args:[r],thisArg:void 0}),new An(a,this.__chain__).thru((function(e){return t&&!e.length&&e.push(void 0),e}))):this.thru(r)}));var ao=yr((function(e,t,n){Ce.call(e,n)?++e[n]:Gn(e,n,1)}));var ro=$r(Ai),io=$r(Ei);function oo(e,t){return(So(e)?st:ea)(e,Kr(t,3))}function so(e,t){return(So(e)?ct:ta)(e,Kr(t,3))}var co=yr((function(e,t,n){Ce.call(e,n)?e[n].push(t):Gn(e,n,[t])}));var lo=Na((function(e,t,n){var r=-1,i="function"==typeof t,o=Do(e)?a(e.length):[];return ea(e,(function(e){o[++r]=i?it(t,e,n):ga(e,t,n)})),o})),po=yr((function(e,t,n){Gn(e,n,t)}));function uo(e,t){return(So(e)?ft:za)(e,Kr(t,3))}var fo=yr((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var vo=Na((function(e,t){if(null==e)return[];var n=t.length;return n>1&&si(e,t[0],t[1])?t=[]:n>2&&si(t[0],t[1],t[2])&&(t=[t[0]]),Ea(e,ia(t,1),[])})),mo=Kt||function(){return Ge.Date.now()};function ho(e,t,n){return t=n?void 0:t,Mr(e,128,void 0,void 0,void 0,void 0,t=e&&null==t?e.length:t)}function bo(e,t){var n;if("function"!=typeof t)throw new ge(i);return e=as(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=void 0),n}}var go=Na((function(e,t,n){var a=1;if(n.length){var r=Vt(n,Yr(go));a|=32}return Mr(e,a,t,n,r)})),yo=Na((function(e,t,n){var a=3;if(n.length){var r=Vt(n,Yr(yo));a|=32}return Mr(t,a,e,n,r)}));function _o(e,t,n){var a,r,o,s,c,l,d=0,p=!1,u=!1,f=!0;if("function"!=typeof e)throw new ge(i);function v(t){var n=a,i=r;return a=r=void 0,d=t,s=e.apply(i,n)}function m(e){return d=e,c=yi(b,t),p?v(e):s}function h(e){var n=e-l;return void 0===l||n>=t||n<0||u&&e-d>=o}function b(){var e=mo();if(h(e))return g(e);c=yi(b,function(e){var n=t-(e-l);return u?sn(n,o-(e-d)):n}(e))}function g(e){return c=void 0,f&&a?v(e):(a=r=void 0,s)}function y(){var e=mo(),n=h(e);if(a=arguments,r=this,l=e,n){if(void 0===c)return m(l);if(u)return dr(c),c=yi(b,t),v(l)}return void 0===c&&(c=yi(b,t)),s}return t=is(t)||0,Uo(n)&&(p=!!n.leading,o=(u="maxWait"in n)?on(is(n.maxWait)||0,t):o,f="trailing"in n?!!n.trailing:f),y.cancel=function(){void 0!==c&&dr(c),d=0,a=l=r=c=void 0},y.flush=function(){return void 0===c?s:g(mo())},y}var wo=Na((function(e,t){return Jn(e,1,t)})),xo=Na((function(e,t,n){return Jn(e,is(t)||0,n)}));function ko(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new ge(i);var n=function(){var a=arguments,r=t?t.apply(this,a):a[0],i=n.cache;if(i.has(r))return i.get(r);var o=e.apply(this,a);return n.cache=i.set(r,o)||i,o};return n.cache=new(ko.Cache||Dn),n}function Co(e){if("function"!=typeof e)throw new ge(i);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}ko.Cache=Dn;var Oo=cr((function(e,t){var n=(t=1==t.length&&So(t[0])?ft(t[0],jt(Kr())):ft(ia(t,1),jt(Kr()))).length;return Na((function(a){for(var r=-1,i=sn(a.length,n);++r=t})),Eo=ya(function(){return arguments}())?ya:function(e){return qo(e)&&Ce.call(e,"callee")&&!Ze.call(e,"callee")},So=a.isArray,To=Qe?jt(Qe):function(e){return qo(e)&&fa(e)==k};function Do(e){return null!=e&&Vo(e.length)&&!Ro(e)}function Fo(e){return qo(e)&&Do(e)}var Lo=tn||ic,No=et?jt(et):function(e){return qo(e)&&fa(e)==p};function Mo(e){if(!qo(e))return!1;var t=fa(e);return t==u||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!Go(e)}function Ro(e){if(!Uo(e))return!1;var t=fa(e);return t==f||t==v||"[object AsyncFunction]"==t||"[object Proxy]"==t}function Bo(e){return"number"==typeof e&&e==as(e)}function Vo(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}function Uo(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function qo(e){return null!=e&&"object"==typeof e}var Ho=tt?jt(tt):function(e){return qo(e)&&ni(e)==m};function Wo(e){return"number"==typeof e||qo(e)&&fa(e)==h}function Go(e){if(!qo(e)||fa(e)!=b)return!1;var t=He(e);if(null===t)return!0;var n=Ce.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&ke.call(n)==Pe}var Zo=nt?jt(nt):function(e){return qo(e)&&fa(e)==g};var Yo=at?jt(at):function(e){return qo(e)&&ni(e)==y};function Ko(e){return"string"==typeof e||!So(e)&&qo(e)&&fa(e)==_}function Xo(e){return"symbol"==typeof e||qo(e)&&fa(e)==w}var Jo=rt?jt(rt):function(e){return qo(e)&&Vo(e.length)&&!!Re[fa(e)]};var Qo=Tr($a),es=Tr((function(e,t){return e<=t}));function ts(e){if(!e)return[];if(Do(e))return Ko(e)?Wt(e):br(e);if(Je&&e[Je])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Je]());var t=ni(e);return(t==m?Rt:t==y?Ut:Is)(e)}function ns(e){return e?(e=is(e))===1/0||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function as(e){var t=ns(e),n=t%1;return t==t?n?t-n:t:0}function rs(e){return e?Yn(as(e),0,4294967295):0}function is(e){if("number"==typeof e)return e;if(Xo(e))return NaN;if(Uo(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Uo(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(Z,"");var n=ie.test(e);return n||se.test(e)?qe(e.slice(2),n?2:8):re.test(e)?NaN:+e}function os(e){return gr(e,ws(e))}function ss(e){return null==e?"":Xa(e)}var cs=_r((function(e,t){if(pi(t)||Do(t))gr(t,_s(t),e);else for(var n in t)Ce.call(t,n)&&Un(e,n,t[n])})),ls=_r((function(e,t){gr(t,ws(t),e)})),ds=_r((function(e,t,n,a){gr(t,ws(t),e,a)})),ps=_r((function(e,t,n,a){gr(t,_s(t),e,a)})),us=qr(Zn);var fs=Na((function(e,t){e=me(e);var n=-1,a=t.length,r=a>2?t[2]:void 0;for(r&&si(t[0],t[1],r)&&(a=1);++n1),t})),gr(e,Wr(e),n),a&&(n=Kn(n,7,Vr));for(var r=t.length;r--;)Qa(n,t[r]);return n}));var Os=qr((function(e,t){return null==e?{}:function(e,t){return Sa(e,t,(function(t,n){return hs(e,n)}))}(e,t)}));function $s(e,t){if(null==e)return{};var n=ft(Wr(e),(function(e){return[e]}));return t=Kr(t),Sa(e,n,(function(e,n){return t(e,n[0])}))}var zs=Nr(_s),Ps=Nr(ws);function Is(e){return null==e?[]:At(e,_s(e))}var js=Cr((function(e,t,n){return t=t.toLowerCase(),e+(n?As(t):t)}));function As(e){return Ms(ss(e).toLowerCase())}function Es(e){return(e=ss(e))&&e.replace(le,Ft).replace(Se,"")}var Ss=Cr((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Ts=Cr((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),Ds=kr("toLowerCase");var Fs=Cr((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var Ls=Cr((function(e,t,n){return e+(n?" ":"")+Ms(t)}));var Ns=Cr((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Ms=kr("toUpperCase");function Rs(e,t,n){return e=ss(e),void 0===(t=n?void 0:t)?function(e){return Le.test(e)}(e)?function(e){return e.match(De)||[]}(e):function(e){return e.match(ee)||[]}(e):e.match(t)||[]}var Bs=Na((function(e,t){try{return it(e,void 0,t)}catch(e){return Mo(e)?e:new ue(e)}})),Vs=qr((function(e,t){return st(t,(function(t){t=Oi(t),Gn(e,t,go(e[t],e))})),e}));function Us(e){return function(){return e}}var qs=zr(),Hs=zr(!0);function Ws(e){return e}function Gs(e){return ka("function"==typeof e?e:Kn(e,1))}var Zs=Na((function(e,t){return function(n){return ga(n,e,t)}})),Ys=Na((function(e,t){return function(n){return ga(e,n,t)}}));function Ks(e,t,n){var a=_s(t),r=da(t,a);null!=n||Uo(t)&&(r.length||!a.length)||(n=t,t=e,e=this,r=da(t,_s(t)));var i=!(Uo(n)&&"chain"in n&&!n.chain),o=Ro(e);return st(r,(function(n){var a=t[n];e[n]=a,o&&(e.prototype[n]=function(){var t=this.__chain__;if(i||t){var n=e(this.__wrapped__),r=n.__actions__=br(this.__actions__);return r.push({func:a,args:arguments,thisArg:e}),n.__chain__=t,n}return a.apply(e,vt([this.value()],arguments))})})),e}function Xs(){}var Js=Ar(ft),Qs=Ar(lt),ec=Ar(bt);function tc(e){return ci(e)?Ot(Oi(e)):function(e){return function(t){return pa(t,e)}}(e)}var nc=Sr(),ac=Sr(!0);function rc(){return[]}function ic(){return!1}var oc=jr((function(e,t){return e+t}),0),sc=Fr("ceil"),cc=jr((function(e,t){return e/t}),1),lc=Fr("floor");var dc,pc=jr((function(e,t){return e*t}),1),uc=Fr("round"),fc=jr((function(e,t){return e-t}),0);return Pn.after=function(e,t){if("function"!=typeof t)throw new ge(i);return e=as(e),function(){if(--e<1)return t.apply(this,arguments)}},Pn.ary=ho,Pn.assign=cs,Pn.assignIn=ls,Pn.assignInWith=ds,Pn.assignWith=ps,Pn.at=us,Pn.before=bo,Pn.bind=go,Pn.bindAll=Vs,Pn.bindKey=yo,Pn.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return So(e)?e:[e]},Pn.chain=eo,Pn.chunk=function(e,t,n){t=(n?si(e,t,n):void 0===t)?1:on(as(t),0);var r=null==e?0:e.length;if(!r||t<1)return[];for(var i=0,o=0,s=a(Jt(r/t));ir?0:r+n),(a=void 0===a||a>r?r:as(a))<0&&(a+=r),a=n>a?0:rs(a);n>>0)?(e=ss(e))&&("string"==typeof t||null!=t&&!Zo(t))&&!(t=Xa(t))&&Mt(e)?lr(Wt(e),0,n):e.split(t,n):[]},Pn.spread=function(e,t){if("function"!=typeof e)throw new ge(i);return t=null==t?0:on(as(t),0),Na((function(n){var a=n[t],r=lr(n,0,t);return a&&vt(r,a),it(e,this,r)}))},Pn.tail=function(e){var t=null==e?0:e.length;return t?Ha(e,1,t):[]},Pn.take=function(e,t,n){return e&&e.length?Ha(e,0,(t=n||void 0===t?1:as(t))<0?0:t):[]},Pn.takeRight=function(e,t,n){var a=null==e?0:e.length;return a?Ha(e,(t=a-(t=n||void 0===t?1:as(t)))<0?0:t,a):[]},Pn.takeRightWhile=function(e,t){return e&&e.length?tr(e,Kr(t,3),!1,!0):[]},Pn.takeWhile=function(e,t){return e&&e.length?tr(e,Kr(t,3)):[]},Pn.tap=function(e,t){return t(e),e},Pn.throttle=function(e,t,n){var a=!0,r=!0;if("function"!=typeof e)throw new ge(i);return Uo(n)&&(a="leading"in n?!!n.leading:a,r="trailing"in n?!!n.trailing:r),_o(e,t,{leading:a,maxWait:t,trailing:r})},Pn.thru=to,Pn.toArray=ts,Pn.toPairs=zs,Pn.toPairsIn=Ps,Pn.toPath=function(e){return So(e)?ft(e,Oi):Xo(e)?[e]:br(Ci(ss(e)))},Pn.toPlainObject=os,Pn.transform=function(e,t,n){var a=So(e),r=a||Lo(e)||Jo(e);if(t=Kr(t,4),null==n){var i=e&&e.constructor;n=r?a?new i:[]:Uo(e)&&Ro(i)?In(He(e)):{}}return(r?st:ca)(e,(function(e,a,r){return t(n,e,a,r)})),n},Pn.unary=function(e){return ho(e,1)},Pn.union=Ui,Pn.unionBy=qi,Pn.unionWith=Hi,Pn.uniq=function(e){return e&&e.length?Ja(e):[]},Pn.uniqBy=function(e,t){return e&&e.length?Ja(e,Kr(t,2)):[]},Pn.uniqWith=function(e,t){return t="function"==typeof t?t:void 0,e&&e.length?Ja(e,void 0,t):[]},Pn.unset=function(e,t){return null==e||Qa(e,t)},Pn.unzip=Wi,Pn.unzipWith=Gi,Pn.update=function(e,t,n){return null==e?e:er(e,t,or(n))},Pn.updateWith=function(e,t,n,a){return a="function"==typeof a?a:void 0,null==e?e:er(e,t,or(n),a)},Pn.values=Is,Pn.valuesIn=function(e){return null==e?[]:At(e,ws(e))},Pn.without=Zi,Pn.words=Rs,Pn.wrap=function(e,t){return $o(or(t),e)},Pn.xor=Yi,Pn.xorBy=Ki,Pn.xorWith=Xi,Pn.zip=Ji,Pn.zipObject=function(e,t){return rr(e||[],t||[],Un)},Pn.zipObjectDeep=function(e,t){return rr(e||[],t||[],Ba)},Pn.zipWith=Qi,Pn.entries=zs,Pn.entriesIn=Ps,Pn.extend=ls,Pn.extendWith=ds,Ks(Pn,Pn),Pn.add=oc,Pn.attempt=Bs,Pn.camelCase=js,Pn.capitalize=As,Pn.ceil=sc,Pn.clamp=function(e,t,n){return void 0===n&&(n=t,t=void 0),void 0!==n&&(n=(n=is(n))==n?n:0),void 0!==t&&(t=(t=is(t))==t?t:0),Yn(is(e),t,n)},Pn.clone=function(e){return Kn(e,4)},Pn.cloneDeep=function(e){return Kn(e,5)},Pn.cloneDeepWith=function(e,t){return Kn(e,5,t="function"==typeof t?t:void 0)},Pn.cloneWith=function(e,t){return Kn(e,4,t="function"==typeof t?t:void 0)},Pn.conformsTo=function(e,t){return null==t||Xn(e,t,_s(t))},Pn.deburr=Es,Pn.defaultTo=function(e,t){return null==e||e!=e?t:e},Pn.divide=cc,Pn.endsWith=function(e,t,n){e=ss(e),t=Xa(t);var a=e.length,r=n=void 0===n?a:Yn(as(n),0,a);return(n-=t.length)>=0&&e.slice(n,r)==t},Pn.eq=Io,Pn.escape=function(e){return(e=ss(e))&&M.test(e)?e.replace(L,Lt):e},Pn.escapeRegExp=function(e){return(e=ss(e))&&G.test(e)?e.replace(W,"\\$&"):e},Pn.every=function(e,t,n){var a=So(e)?lt:na;return n&&si(e,t,n)&&(t=void 0),a(e,Kr(t,3))},Pn.find=ro,Pn.findIndex=Ai,Pn.findKey=function(e,t){return yt(e,Kr(t,3),ca)},Pn.findLast=io,Pn.findLastIndex=Ei,Pn.findLastKey=function(e,t){return yt(e,Kr(t,3),la)},Pn.floor=lc,Pn.forEach=oo,Pn.forEachRight=so,Pn.forIn=function(e,t){return null==e?e:oa(e,Kr(t,3),ws)},Pn.forInRight=function(e,t){return null==e?e:sa(e,Kr(t,3),ws)},Pn.forOwn=function(e,t){return e&&ca(e,Kr(t,3))},Pn.forOwnRight=function(e,t){return e&&la(e,Kr(t,3))},Pn.get=ms,Pn.gt=jo,Pn.gte=Ao,Pn.has=function(e,t){return null!=e&&ai(e,t,ma)},Pn.hasIn=hs,Pn.head=Ti,Pn.identity=Ws,Pn.includes=function(e,t,n,a){e=Do(e)?e:Is(e),n=n&&!a?as(n):0;var r=e.length;return n<0&&(n=on(r+n,0)),Ko(e)?n<=r&&e.indexOf(t,n)>-1:!!r&&wt(e,t,n)>-1},Pn.indexOf=function(e,t,n){var a=null==e?0:e.length;if(!a)return-1;var r=null==n?0:as(n);return r<0&&(r=on(a+r,0)),wt(e,t,r)},Pn.inRange=function(e,t,n){return t=ns(t),void 0===n?(n=t,t=0):n=ns(n),function(e,t,n){return e>=sn(t,n)&&e=-9007199254740991&&e<=9007199254740991},Pn.isSet=Yo,Pn.isString=Ko,Pn.isSymbol=Xo,Pn.isTypedArray=Jo,Pn.isUndefined=function(e){return void 0===e},Pn.isWeakMap=function(e){return qo(e)&&ni(e)==x},Pn.isWeakSet=function(e){return qo(e)&&"[object WeakSet]"==fa(e)},Pn.join=function(e,t){return null==e?"":an.call(e,t)},Pn.kebabCase=Ss,Pn.last=Ni,Pn.lastIndexOf=function(e,t,n){var a=null==e?0:e.length;if(!a)return-1;var r=a;return void 0!==n&&(r=(r=as(n))<0?on(a+r,0):sn(r,a-1)),t==t?function(e,t,n){for(var a=n+1;a--;)if(e[a]===t)return a;return a}(e,t,r):_t(e,kt,r,!0)},Pn.lowerCase=Ts,Pn.lowerFirst=Ds,Pn.lt=Qo,Pn.lte=es,Pn.max=function(e){return e&&e.length?aa(e,Ws,va):void 0},Pn.maxBy=function(e,t){return e&&e.length?aa(e,Kr(t,2),va):void 0},Pn.mean=function(e){return Ct(e,Ws)},Pn.meanBy=function(e,t){return Ct(e,Kr(t,2))},Pn.min=function(e){return e&&e.length?aa(e,Ws,$a):void 0},Pn.minBy=function(e,t){return e&&e.length?aa(e,Kr(t,2),$a):void 0},Pn.stubArray=rc,Pn.stubFalse=ic,Pn.stubObject=function(){return{}},Pn.stubString=function(){return""},Pn.stubTrue=function(){return!0},Pn.multiply=pc,Pn.nth=function(e,t){return e&&e.length?Aa(e,as(t)):void 0},Pn.noConflict=function(){return Ge._===this&&(Ge._=Ie),this},Pn.noop=Xs,Pn.now=mo,Pn.pad=function(e,t,n){e=ss(e);var a=(t=as(t))?Ht(e):0;if(!t||a>=t)return e;var r=(t-a)/2;return Er(Qt(r),n)+e+Er(Jt(r),n)},Pn.padEnd=function(e,t,n){e=ss(e);var a=(t=as(t))?Ht(e):0;return t&&at){var a=e;e=t,t=a}if(n||e%1||t%1){var r=dn();return sn(e+r*(t-e+Ue("1e-"+((r+"").length-1))),t)}return Fa(e,t)},Pn.reduce=function(e,t,n){var a=So(e)?mt:zt,r=arguments.length<3;return a(e,Kr(t,4),n,r,ea)},Pn.reduceRight=function(e,t,n){var a=So(e)?ht:zt,r=arguments.length<3;return a(e,Kr(t,4),n,r,ta)},Pn.repeat=function(e,t,n){return t=(n?si(e,t,n):void 0===t)?1:as(t),La(ss(e),t)},Pn.replace=function(){var e=arguments,t=ss(e[0]);return e.length<3?t:t.replace(e[1],e[2])},Pn.result=function(e,t,n){var a=-1,r=(t=sr(t,e)).length;for(r||(r=1,e=void 0);++a9007199254740991)return[];var n=4294967295,a=sn(e,4294967295);e-=4294967295;for(var r=It(a,t=Kr(t));++n=i)return e;var s=n-Ht(a);if(s<1)return a;var c=o?lr(o,0,s).join(""):e.slice(0,s);if(void 0===r)return c+a;if(o&&(s+=c.length-s),Zo(r)){if(e.slice(s).search(r)){var l,d=c;for(r.global||(r=he(r.source,ss(ae.exec(r))+"g")),r.lastIndex=0;l=r.exec(d);)var p=l.index;c=c.slice(0,void 0===p?s:p)}}else if(e.indexOf(Xa(r),s)!=s){var u=c.lastIndexOf(r);u>-1&&(c=c.slice(0,u))}return c+a},Pn.unescape=function(e){return(e=ss(e))&&N.test(e)?e.replace(F,Gt):e},Pn.uniqueId=function(e){var t=++Oe;return ss(e)+t},Pn.upperCase=Ns,Pn.upperFirst=Ms,Pn.each=oo,Pn.eachRight=so,Pn.first=Ti,Ks(Pn,(dc={},ca(Pn,(function(e,t){Ce.call(Pn.prototype,t)||(dc[t]=e)})),dc),{chain:!1}),Pn.VERSION="4.17.15",st(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){Pn[e].placeholder=Pn})),st(["drop","take"],(function(e,t){En.prototype[e]=function(n){n=void 0===n?1:on(as(n),0);var a=this.__filtered__&&!t?new En(this):this.clone();return a.__filtered__?a.__takeCount__=sn(n,a.__takeCount__):a.__views__.push({size:sn(n,4294967295),type:e+(a.__dir__<0?"Right":"")}),a},En.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),st(["filter","map","takeWhile"],(function(e,t){var n=t+1,a=1==n||3==n;En.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:Kr(e,3),type:n}),t.__filtered__=t.__filtered__||a,t}})),st(["head","last"],(function(e,t){var n="take"+(t?"Right":"");En.prototype[e]=function(){return this[n](1).value()[0]}})),st(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");En.prototype[e]=function(){return this.__filtered__?new En(this):this[n](1)}})),En.prototype.compact=function(){return this.filter(Ws)},En.prototype.find=function(e){return this.filter(e).head()},En.prototype.findLast=function(e){return this.reverse().find(e)},En.prototype.invokeMap=Na((function(e,t){return"function"==typeof e?new En(this):this.map((function(n){return ga(n,e,t)}))})),En.prototype.reject=function(e){return this.filter(Co(Kr(e)))},En.prototype.slice=function(e,t){e=as(e);var n=this;return n.__filtered__&&(e>0||t<0)?new En(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),void 0!==t&&(n=(t=as(t))<0?n.dropRight(-t):n.take(t-e)),n)},En.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},En.prototype.toArray=function(){return this.take(4294967295)},ca(En.prototype,(function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),a=/^(?:head|last)$/.test(t),r=Pn[a?"take"+("last"==t?"Right":""):t],i=a||/^find/.test(t);r&&(Pn.prototype[t]=function(){var t=this.__wrapped__,o=a?[1]:arguments,s=t instanceof En,c=o[0],l=s||So(t),d=function(e){var t=r.apply(Pn,vt([e],o));return a&&p?t[0]:t};l&&n&&"function"==typeof c&&1!=c.length&&(s=l=!1);var p=this.__chain__,u=!!this.__actions__.length,f=i&&!p,v=s&&!u;if(!i&&l){t=v?t:new En(this);var m=e.apply(t,o);return m.__actions__.push({func:to,args:[d],thisArg:void 0}),new An(m,p)}return f&&v?e.apply(this,o):(m=this.thru(d),f?a?m.value()[0]:m.value():m)})})),st(["pop","push","shift","sort","splice","unshift"],(function(e){var t=ye[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",a=/^(?:pop|shift)$/.test(e);Pn.prototype[e]=function(){var e=arguments;if(a&&!this.__chain__){var r=this.value();return t.apply(So(r)?r:[],e)}return this[n]((function(n){return t.apply(So(n)?n:[],e)}))}})),ca(En.prototype,(function(e,t){var n=Pn[t];if(n){var a=n.name+"";Ce.call(yn,a)||(yn[a]=[]),yn[a].push({name:t,func:n})}})),yn[Pr(void 0,2).name]=[{name:"wrapper",func:void 0}],En.prototype.clone=function(){var e=new En(this.__wrapped__);return e.__actions__=br(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=br(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=br(this.__views__),e},En.prototype.reverse=function(){if(this.__filtered__){var e=new En(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},En.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=So(e),a=t<0,r=n?e.length:0,i=function(e,t,n){var a=-1,r=n.length;for(;++a=this.__values__.length;return{done:e,value:e?void 0:this.__values__[this.__index__++]}},Pn.prototype.plant=function(e){for(var t,n=this;n instanceof jn;){var a=zi(n);a.__index__=0,a.__values__=void 0,t?r.__wrapped__=a:t=a;var r=a;n=n.__wrapped__}return r.__wrapped__=e,t},Pn.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof En){var t=e;return this.__actions__.length&&(t=new En(this)),(t=t.reverse()).__actions__.push({func:to,args:[Vi],thisArg:void 0}),new An(t,this.__chain__)}return this.thru(Vi)},Pn.prototype.toJSON=Pn.prototype.valueOf=Pn.prototype.value=function(){return nr(this.__wrapped__,this.__actions__)},Pn.prototype.first=Pn.prototype.head,Je&&(Pn.prototype[Je]=function(){return this}),Pn}();Ge._=Zt,void 0===(r=function(){return Zt}.call(t,n,t,a))||(a.exports=r)}).call(this)}).call(this,n(11),n(110)(e))},function(e,t,n){e.exports=n(127)},function(e,t,n){"use strict";var a=n(95),r=Object.prototype.toString;function i(e){return"[object Array]"===r.call(e)}function o(e){return void 0===e}function s(e){return null!==e&&"object"==typeof e}function c(e){return"[object Function]"===r.call(e)}function l(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),i(e))for(var n=0,a=e.length;n-1;r--){var i=n[r],o=(i.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(o)>-1&&(a=i)}return b.head.insertBefore(t,a),e}}function K(){for(var e=12,t="";e-- >0;)t+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return t}function X(e){return"".concat(e).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function J(e){return Object.keys(e||{}).reduce((function(t,n){return t+"".concat(n,": ").concat(e[n],";")}),"")}function Q(e){return e.size!==Z.size||e.x!==Z.x||e.y!==Z.y||e.rotate!==Z.rotate||e.flipX||e.flipY}function ee(e){var t=e.transform,n=e.containerWidth,a=e.iconWidth,r={transform:"translate(".concat(n/2," 256)")},i="translate(".concat(32*t.x,", ").concat(32*t.y,") "),o="scale(".concat(t.size/16*(t.flipX?-1:1),", ").concat(t.size/16*(t.flipY?-1:1),") "),s="rotate(".concat(t.rotate," 0 0)");return{outer:r,inner:{transform:"".concat(i," ").concat(o," ").concat(s)},path:{transform:"translate(".concat(a/2*-1," -256)")}}}var te={x:0,y:0,width:"100%",height:"100%"};function ne(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return e.attributes&&(e.attributes.fill||t)&&(e.attributes.fill="black"),e}function ae(e){var t=e.icons,n=t.main,a=t.mask,r=e.prefix,i=e.iconName,o=e.transform,c=e.symbol,l=e.title,d=e.maskId,p=e.titleId,u=e.extra,f=e.watchable,v=void 0!==f&&f,m=a.found?a:n,h=m.width,b=m.height,g="fa-w-".concat(Math.ceil(h/b*16)),y=[$.replacementClass,i?"".concat($.familyPrefix,"-").concat(i):"",g].filter((function(e){return-1===u.classes.indexOf(e)})).concat(u.classes).join(" "),_={children:[],attributes:s({},u.attributes,{"data-prefix":r,"data-icon":i,class:y,role:u.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(h," ").concat(b)})};v&&(_.attributes["data-fa-i2svg"]=""),l&&_.children.push({tag:"title",attributes:{id:_.attributes["aria-labelledby"]||"title-".concat(p||K())},children:[l]});var w=s({},_,{prefix:r,iconName:i,main:n,mask:a,maskId:d,transform:o,symbol:c,styles:u.styles}),x=a.found&&n.found?function(e){var t,n=e.children,a=e.attributes,r=e.main,i=e.mask,o=e.maskId,c=e.transform,l=r.width,d=r.icon,p=i.width,u=i.icon,f=ee({transform:c,containerWidth:p,iconWidth:l}),v={tag:"rect",attributes:s({},te,{fill:"white"})},m=d.children?{children:d.children.map(ne)}:{},h={tag:"g",attributes:s({},f.inner),children:[ne(s({tag:d.tag,attributes:s({},d.attributes,f.path)},m))]},b={tag:"g",attributes:s({},f.outer),children:[h]},g="mask-".concat(o||K()),y="clip-".concat(o||K()),_={tag:"mask",attributes:s({},te,{id:g,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[v,b]},w={tag:"defs",children:[{tag:"clipPath",attributes:{id:y},children:(t=u,"g"===t.tag?t.children:[t])},_]};return n.push(w,{tag:"rect",attributes:s({fill:"currentColor","clip-path":"url(#".concat(y,")"),mask:"url(#".concat(g,")")},te)}),{children:n,attributes:a}}(w):function(e){var t=e.children,n=e.attributes,a=e.main,r=e.transform,i=J(e.styles);if(i.length>0&&(n.style=i),Q(r)){var o=ee({transform:r,containerWidth:a.width,iconWidth:a.width});t.push({tag:"g",attributes:s({},o.outer),children:[{tag:"g",attributes:s({},o.inner),children:[{tag:a.icon.tag,children:a.icon.children,attributes:s({},a.icon.attributes,o.path)}]}]})}else t.push(a.icon);return{children:t,attributes:n}}(w),k=x.children,C=x.attributes;return w.children=k,w.attributes=C,c?function(e){var t=e.prefix,n=e.iconName,a=e.children,r=e.attributes,i=e.symbol;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:s({},r,{id:!0===i?"".concat(t,"-").concat($.familyPrefix,"-").concat(n):i}),children:a}]}]}(w):function(e){var t=e.children,n=e.main,a=e.mask,r=e.attributes,i=e.styles,o=e.transform;if(Q(o)&&n.found&&!a.found){var c={x:n.width/n.height/2,y:.5};r.style=J(s({},i,{"transform-origin":"".concat(c.x+o.x/16,"em ").concat(c.y+o.y/16,"em")}))}return[{tag:"svg",attributes:r,children:t}]}(w)}function re(e){var t=e.content,n=e.width,a=e.height,r=e.transform,i=e.title,o=e.extra,c=e.watchable,l=void 0!==c&&c,d=s({},o.attributes,i?{title:i}:{},{class:o.classes.join(" ")});l&&(d["data-fa-i2svg"]="");var p=s({},o.styles);Q(r)&&(p.transform=function(e){var t=e.transform,n=e.width,a=void 0===n?16:n,r=e.height,i=void 0===r?16:r,o=e.startCentered,s=void 0!==o&&o,c="";return c+=s&&_?"translate(".concat(t.x/G-a/2,"em, ").concat(t.y/G-i/2,"em) "):s?"translate(calc(-50% + ".concat(t.x/G,"em), calc(-50% + ").concat(t.y/G,"em)) "):"translate(".concat(t.x/G,"em, ").concat(t.y/G,"em) "),c+="scale(".concat(t.size/G*(t.flipX?-1:1),", ").concat(t.size/G*(t.flipY?-1:1),") "),c+="rotate(".concat(t.rotate,"deg) ")}({transform:r,startCentered:!0,width:n,height:a}),p["-webkit-transform"]=p.transform);var u=J(p);u.length>0&&(d.style=u);var f=[];return f.push({tag:"span",attributes:d,children:[t]}),i&&f.push({tag:"span",attributes:{class:"sr-only"},children:[i]}),f}var ie=function(){},oe=($.measurePerformance&&g&&g.mark&&g.measure,function(e,t,n,a){var r,i,o,s=Object.keys(e),c=s.length,l=void 0!==a?function(e,t){return function(n,a,r,i){return e.call(t,n,a,r,i)}}(t,a):t;for(void 0===n?(r=1,o=e[s[0]]):(r=0,o=n);r2&&void 0!==arguments[2]?arguments[2]:{},a=n.skipHooks,r=void 0!==a&&a,i=Object.keys(t).reduce((function(e,n){var a=t[n];return!!a.icon?e[a.iconName]=a.icon:e[n]=a,e}),{});"function"!=typeof P.hooks.addPack||r?P.styles[e]=s({},P.styles[e]||{},i):P.hooks.addPack(e,i),"fas"===e&&se("fa",t)}var ce=P.styles,le=P.shims,de=function(){var e=function(e){return oe(ce,(function(t,n,a){return t[a]=oe(n,e,{}),t}),{})};e((function(e,t,n){return t[3]&&(e[t[3]]=n),e})),e((function(e,t,n){var a=t[2];return e[n]=n,a.forEach((function(t){e[t]=n})),e}));var t="far"in ce;oe(le,(function(e,n){var a=n[0],r=n[1],i=n[2];return"far"!==r||t||(r="fas"),e[a]={prefix:r,iconName:i},e}),{})};de();P.styles;function pe(e,t,n){if(e&&e[t]&&e[t][n])return{prefix:t,iconName:n,icon:e[t][n]}}function ue(e){var t=e.tag,n=e.attributes,a=void 0===n?{}:n,r=e.children,i=void 0===r?[]:r;return"string"==typeof e?X(e):"<".concat(t," ").concat(function(e){return Object.keys(e||{}).reduce((function(t,n){return t+"".concat(n,'="').concat(X(e[n]),'" ')}),"").trim()}(a),">").concat(i.map(ue).join(""),"")}var fe=function(e){var t={size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0};return e?e.toLowerCase().split(" ").reduce((function(e,t){var n=t.toLowerCase().split("-"),a=n[0],r=n.slice(1).join("-");if(a&&"h"===r)return e.flipX=!0,e;if(a&&"v"===r)return e.flipY=!0,e;if(r=parseFloat(r),isNaN(r))return e;switch(a){case"grow":e.size=e.size+r;break;case"shrink":e.size=e.size-r;break;case"left":e.x=e.x-r;break;case"right":e.x=e.x+r;break;case"up":e.y=e.y-r;break;case"down":e.y=e.y+r;break;case"rotate":e.rotate=e.rotate+r}return e}),t):t};function ve(e){this.name="MissingIcon",this.message=e||"Icon unavailable",this.stack=(new Error).stack}ve.prototype=Object.create(Error.prototype),ve.prototype.constructor=ve;var me={fill:"currentColor"},he={attributeType:"XML",repeatCount:"indefinite",dur:"2s"},be={tag:"path",attributes:s({},me,{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})},ge=s({},he,{attributeName:"opacity"});s({},me,{cx:"256",cy:"364",r:"28"}),s({},he,{attributeName:"r",values:"28;14;28;28;14;28;"}),s({},ge,{values:"1;0;1;1;0;1;"}),s({},me,{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),s({},ge,{values:"1;0;0;0;0;1;"}),s({},me,{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),s({},ge,{values:"0;0;1;1;0;0;"}),P.styles;function ye(e){var t=e[0],n=e[1],a=c(e.slice(4),1)[0];return{found:!0,width:t,height:n,icon:Array.isArray(a)?{tag:"g",attributes:{class:"".concat($.familyPrefix,"-").concat(k.GROUP)},children:[{tag:"path",attributes:{class:"".concat($.familyPrefix,"-").concat(k.SECONDARY),fill:"currentColor",d:a[0]}},{tag:"path",attributes:{class:"".concat($.familyPrefix,"-").concat(k.PRIMARY),fill:"currentColor",d:a[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:a}}}}P.styles;function _e(){var e="svg-inline--fa",t=$.familyPrefix,n=$.replacementClass,a='svg:not(:root).svg-inline--fa {\n overflow: visible;\n}\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.225em;\n}\n.svg-inline--fa.fa-w-1 {\n width: 0.0625em;\n}\n.svg-inline--fa.fa-w-2 {\n width: 0.125em;\n}\n.svg-inline--fa.fa-w-3 {\n width: 0.1875em;\n}\n.svg-inline--fa.fa-w-4 {\n width: 0.25em;\n}\n.svg-inline--fa.fa-w-5 {\n width: 0.3125em;\n}\n.svg-inline--fa.fa-w-6 {\n width: 0.375em;\n}\n.svg-inline--fa.fa-w-7 {\n width: 0.4375em;\n}\n.svg-inline--fa.fa-w-8 {\n width: 0.5em;\n}\n.svg-inline--fa.fa-w-9 {\n width: 0.5625em;\n}\n.svg-inline--fa.fa-w-10 {\n width: 0.625em;\n}\n.svg-inline--fa.fa-w-11 {\n width: 0.6875em;\n}\n.svg-inline--fa.fa-w-12 {\n width: 0.75em;\n}\n.svg-inline--fa.fa-w-13 {\n width: 0.8125em;\n}\n.svg-inline--fa.fa-w-14 {\n width: 0.875em;\n}\n.svg-inline--fa.fa-w-15 {\n width: 0.9375em;\n}\n.svg-inline--fa.fa-w-16 {\n width: 1em;\n}\n.svg-inline--fa.fa-w-17 {\n width: 1.0625em;\n}\n.svg-inline--fa.fa-w-18 {\n width: 1.125em;\n}\n.svg-inline--fa.fa-w-19 {\n width: 1.1875em;\n}\n.svg-inline--fa.fa-w-20 {\n width: 1.25em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-border {\n height: 1.5em;\n}\n.svg-inline--fa.fa-li {\n width: 2em;\n}\n.svg-inline--fa.fa-fw {\n width: 1.25em;\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: 0.25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-lg {\n font-size: 1.3333333333em;\n line-height: 0.75em;\n vertical-align: -0.0667em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit;\n}\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: 0.1em;\n padding: 0.2em 0.25em 0.15em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: 0.3em;\n}\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical,\n:root .fa-flip-both {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: #fff;\n}\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse {\n color: #fff;\n}';if("fa"!==t||n!==e){var r=new RegExp("\\.".concat("fa","\\-"),"g"),i=new RegExp("\\--".concat("fa","\\-"),"g"),o=new RegExp("\\.".concat(e),"g");a=a.replace(r,".".concat(t,"-")).replace(i,"--".concat(t,"-")).replace(o,".".concat(n))}return a}function we(){$.autoAddCss&&!$e&&(Y(_e()),$e=!0)}function xe(e,t){return Object.defineProperty(e,"abstract",{get:t}),Object.defineProperty(e,"html",{get:function(){return e.abstract.map((function(e){return ue(e)}))}}),Object.defineProperty(e,"node",{get:function(){if(y){var t=b.createElement("div");return t.innerHTML=e.html,t.children}}}),e}function ke(e){var t=e.prefix,n=void 0===t?"fa":t,a=e.iconName;if(a)return pe(Oe.definitions,n,a)||pe(P.styles,n,a)}var Ce,Oe=new(function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.definitions={}}var t,n,a;return t=e,(n=[{key:"add",value:function(){for(var e=this,t=arguments.length,n=new Array(t),a=0;a1&&void 0!==arguments[1]?arguments[1]:{},n=t.transform,a=void 0===n?Z:n,r=t.symbol,i=void 0!==r&&r,o=t.mask,c=void 0===o?null:o,l=t.maskId,d=void 0===l?null:l,p=t.title,u=void 0===p?null:p,f=t.titleId,v=void 0===f?null:f,m=t.classes,h=void 0===m?[]:m,b=t.attributes,g=void 0===b?{}:b,y=t.styles,_=void 0===y?{}:y;if(e){var w=e.prefix,x=e.iconName,k=e.icon;return xe(s({type:"icon"},e),(function(){return we(),$.autoA11y&&(u?g["aria-labelledby"]="".concat($.replacementClass,"-title-").concat(v||K()):(g["aria-hidden"]="true",g.focusable="false")),ae({icons:{main:ye(k),mask:c?ye(c.icon):{found:!1,width:null,height:null,icon:{}}},prefix:w,iconName:x,transform:s({},Z,a),symbol:i,title:u,maskId:d,titleId:v,extra:{attributes:g,styles:_,classes:h}})}))}},function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=(e||{}).icon?e:ke(e||{}),a=t.mask;return a&&(a=(a||{}).icon?a:ke(a||{})),Ce(n,s({},t,{mask:a}))}),Ie=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.transform,a=void 0===n?Z:n,r=t.title,i=void 0===r?null:r,o=t.classes,c=void 0===o?[]:o,d=t.attributes,p=void 0===d?{}:d,u=t.styles,f=void 0===u?{}:u;return xe({type:"text",content:e},(function(){return we(),re({content:e,transform:s({},Z,a),title:i,extra:{attributes:p,styles:f,classes:["".concat($.familyPrefix,"-layers-text")].concat(l(c))}})}))}}).call(this,n(11),n(104).setImmediate)},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){var a=n(131);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(134);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(136);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(138);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(140);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(142);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(144);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(146);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(148);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(150);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(152);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(154);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(156);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(158);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(160);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(162);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(164);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(166);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(168);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(170);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(172);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(174);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(176);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(178);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(180);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(182);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(184);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(186);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(188);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(190);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(192);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(194);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(196);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(198);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(200);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(202);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(204);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(206);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(208);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(210);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(212);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(214);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(216);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(218);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(220);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(222);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(224);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(226);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(228);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(230);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(232);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(234);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(236);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(238);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(240);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(242);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(244);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(246);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(248);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(250);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(252);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(254);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(256);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(258);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(260);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(262);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(264);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(266);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(268);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(270);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(272);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(274);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(276);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(278);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(280);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(282);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(284);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(286);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(288);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(290);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(292);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(294);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){var a=n(296);"string"==typeof a&&(a=[[e.i,a,""]]);var r={hmr:!0,transform:void 0,insertInto:void 0};n(2)(a,r);a.locals&&(e.exports=a.locals)},function(e,t,n){"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),a=0;a=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},a.forEach(["delete","get","head"],(function(e){c.headers[e]={}})),a.forEach(["post","put","patch"],(function(e){c.headers[e]=a.merge(i)})),e.exports=c}).call(this,n(99))},function(e,t){var n,a,r=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{a="function"==typeof clearTimeout?clearTimeout:o}catch(e){a=o}}();var c,l=[],d=!1,p=-1;function u(){d&&c&&(d=!1,c.length?l=c.concat(l):p=-1,l.length&&f())}function f(){if(!d){var e=s(u);d=!0;for(var t=l.length;t;){for(c=l,l=[];++p1)for(var n=1;n=0&&(e._idleTimeoutId=setTimeout((function(){e._onTimeout&&e._onTimeout()}),t))},n(128),t.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||this&&this.setImmediate,t.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||this&&this.clearImmediate}).call(this,n(11))},function(e){e.exports=JSON.parse('{"routes":{"create_new_password":"create-new-password"},"routes_title":{"profile":"My Profile","settings_password":"Change Password","settings_storage":"Storage","settings_mobile":"Settings","users_list":"User Management","users_user":"User","users_detail":"Detail","users_storage_usage":"Storage Usage","users_password":"Password","users_delete":"Delete User","user_create":"Create User"},"profile":{"store_pass":"Store New Password","change_pass":"Change Password","profile_info":"Profile Information"},"page_registration":{"title":"Create New Account","subtitle":"Please fill registration to create account:","label_email":"Email:","placeholder_email":"Type your E-mail","label_name":"Full Name:","placeholder_name":"Type your full name","label_pass":"Create password:","placeholder_pass":"New password","label_confirm_pass":"Confirm password:","placeholder_confirm_pass":"Confirm your new password","button_create_account":"Create Account","have_an_account":"Do you have an account?"},"page_shared":{"subtitle":"Please type the password to get shared content:","title":"Your Share Link is Protected","placeholder_pass":"Type password","download_file":"Download File","submit":"Submit"},"page_shared_404":{"subtitle":"The content you are finding was probably deleted.","title":"Not Found :("},"page_create_password":{"title":"Only One Step to Log In","subtitle":"Create your new password here:","button_update":"Update Password","label_email":"Email:","label_new_pass":"New password","label_confirm_pass":"Confirm password"},"page_forgotten_password":{"title":"Forgotten Password?","subtitle":"Get reset link with your email:","button_get_link":"Get Link","password_remember_text":"Remember your password?","password_remember_button":"Log In.","pass_sennded_title":"Thank you!","pass_sennded_subtitle":"We have e-mailed your password reset link!","pass_reseted_title":"Awesome!","pass_reseted_subtitle":"Your password was reset successfully.","pass_reseted_signin":"Sign In"},"page_sign_in":{"title":"Are You {name}?","subtitle":"Confirm you by your password:","placeholder_password":"Type your password","button_log_in":"Log In","password_reset_text":"Forgotten your password?","password_reset_button":"Reset Password."},"page_login":{"title":"Welcome Back!","subtitle":"Please type your email to log in:","placeholder_email":"Type your E-mail","button_next":"Next Step","registration_text":"Don’t have an account?","registration_button":"Register account."},"uploading":{"progress":"Uploading files {current}/{total}"},"inputs":{"placeholder_search_files":"Search files or folders..."},"messages":{"nothing_from_participants":"You don\'t have any uploads from other users.","nothing_to_preview":"There is nothing to preview.","nothing_was_found":"Nothing was found."},"locations":{"shared":"Shared","trash":"Trash","home":"Home"},"file_detail":{"author_participant":"Public Participant","created_at":"Created at","shared":"Shared","author":"Author","where":"Where","size":"Size"},"empty_page":{"description":"Upload some files here easily via upload button","call_to_action":"Upload File","title":"There is Nothing"},"alerts":{"error_confirm":"That’s horrible!","success_confirm":"Awesome!"},"validation_errors":{"wrong_image":"You may have uploaded the wrong file, try again!","incorrect_password":"Sorry, you passed incorrect password :("},"pronouns":{"of":"of"},"storage":{"sec_capacity":"Storage Capacity","sec_details":"Capacity Used Details","total_used":"Total used {used}","total_capacity":"Your storage capacity {capacity}","images":"Images","videos":"Videos","audios":"Audios","documents":"Documents","others":"Others"},"folder":{"item_counts":"{count} Item | {count} Items","empty":"Empty"},"item_thumbnail":{"original_location":"Original Location","deleted_at":"Deleted {time}"},"preview_type":{"list":"List","grid":"Grid"},"context_menu":{"remove_from_favourites":"Remove Favourite","add_to_favourites":"Add to Favourites","profile_settings":"Profile Settings","create_folder":"Create Folder","empty_trash":"Empty Trash","share_edit":"Edit Sharing","add_folder":"Add Folder","download":"Download","log_out":"Log Out","restore":"Restore","upload":"Upload","detail":"Detail","rename":"Rename","delete":"Delete","share":"Share","move":"Move"},"menu":{"files":"Files","latest":"Recent Uploads","shared":"Shared Files","trash":"Trash","settings":"Settings","logout":"Log Out","profile":"Profile Settings","password":"Password","storage":"Storage","admin":"Admin"},"sidebar":{"favourites":"Favourites","favourites_empty":"Drag here your favourite folder.","folders_empty":"Create some new folder.","latest":"Recent Uploads","home":"Home","tools_title":"Tools","locations_title":"Base","navigator_title":"Navigator","my_shared":"My Shared Items","participant_uploads":"Participant Uploads"},"popup_rename":{"title":"Change your item name"},"popup_create_folder":{"title":"Please enter your new folder name","folder_default_name":"New Folder"},"popup_move_item":{"submit":"Move Item","title":"Move Item","cancel":"Cancel"},"popup_pass_changed":{"title":"Your password was changed!","message":"So now, you have awesome new password."},"popup_trashed":{"title":"Your trash was erased!","message":"So now, you have clear and empty trash."},"popup_error":{"title":"Whooops, something went wrong!","message":"Something went wrong and we can\'t continue. Please contact us."},"popup_exceed_limit":{"title":"Whooops, you exceed your storage limit :(","message":"Please contact your administrator to change your limit."},"popup_share_create":{"title":"Share Your {item}"},"popup_share_edit":{"title":"Update sharing options","change_pass":"Change Password","save":"Save Changes","stop":"Stop Sharing","confirm":"Confirm"},"shared":{"empty_shared":"You haven\'t shared anything yet.","editor":"Can edit and upload files","visitor":"Can only view and download","can_download":"Can download file"},"shared_form":{"placeholder_permission":"Select your permission","label_password_protection":"Password Protected","button_done":"Awesome, I’m done!","button_generate":"Generate Link","label_permission":"Permission","label_shared_url":"Share url"},"actions":{"create_folder":"Create folder","preview":"Change preview","upload":"Upload file","delete":"Delete item","move":"Move item","share":"Share item"},"types":{"folder":"Folder","file":"File"},"popup_passport_error":{"title":"Invalid Passport Grand Client","message":"Probably you didn\'t generated Passport Grant client or you didn\'t set up passport credentials in your .env file. Please follow install instructions."},"popup_signup_error":{"title":"Server Error","message":"Please check your database connection if everything works correctly."},"popup_paylod_error":{"title":"File is too large","message":"Sorry, your file is too large and can\'t be uploaded"},"popup_deleted_user":{"title":"User was deleted","message":"Your user was deleted with all user data content."},"user_box_storage":{"title":"Change User Storage Capacity","description":"Change user storage capacity by input bellow. You have to type only number e.g. value \'5\' means, user will have 5GB of storage capacity."},"user_box_password":{"title":"Change User Password","description":"You can send password reset email via button bellow. User will be redirected to page where he can update password for his account."},"user_box_delete":{"title":"Delete User","description":"You can delete your user, but, pay attention! This event is irreversible and all user data include user files will be deleted."},"user_box_role":{"title":"Change User Role","description":"You can change role for current user. Admin role can edit or create new users, change storage capacity and any other application settings."},"admin_menu":{"admin_label":"Admin","users":"Users"},"admin_page_user":{"select_role":"Select user role","save_role":"Save Role","label_person_info":"Personal Information","label_delete_user":"Type with Case Sensitive user name ‘{user}‘","label_change_capacity":"Type storage capacity in GB","placeholder_delete_user":"Type here","delete_user":"Delete User","change_capacity":"Change Capacity","send_password_link":"Send Password Reset Link","tabs":{"detail":"Detail","storage":"Storage Usage","password":"Password","delete":"Delete User"},"table":{"name":"User","role":"Role","storage_used":"Storage Used","storage_capacity":"Storage Capacity","created_at":"Registered","action":"Action"},"create_user":{"group_details":"Account Details","group_settings":"Account Settings","submit":"Create User","label_email":"Type E-mail","label_name":"Type full name","label_conf_pass":"Confirm password"}},"toaster":{"changed_user":"You successfully changed user\'s role!","sended_password":"You successfully send user email for reset password!","changed_capacity":"You successfully changed user\'s storage size!","created_user":"User was created successfully!"},"roles":{"admin":"Admin","user":"User"},"datatable":{"paginate_info":"Showing 1 - {visible} from {total} records"},"input_image":{"title":"Upload Image","supported":"Supported formats are .png, .jpg, .jpeg."}}')},function(e){e.exports=JSON.parse('{"routes":{"create_new_password":"vytvorit-nove-heslo"},"routes_title":{"profile":"Môj profil","settings_password":"Zmeniť heslo","settings_storage":"Úložisko","settings_mobile":"Nastavenia","users_list":"Správca uživateľov","users_user":"Uživateľ","users_detail":"Detail","users_storage_usage":"Využitie úložiska","users_password":"Heslo","users_delete":"Vymazať uživateľa","user_create":"Vytvoriť uživateľa"},"profile":{"store_pass":"Uložiť nové heslo","change_pass":"Zmeniť heslo","profile_info":"Profil"},"page_registration":{"title":"Vytvorenie nového účtu","subtitle":"Prosím, vyplňte formulár pre vytvorenie nového účtu:","label_email":"Email:","placeholder_email":"Napíš svoj E-mail","label_name":"Celé meno:","placeholder_name":"Napíš svoje celé meno","label_pass":"Vytvorte heslo:","placeholder_pass":"Vaše nové heslo","label_confirm_pass":"Potvrďte heslo:","placeholder_confirm_pass":"Potvrďte nové heslo","button_create_account":"Vytvoriť účet","have_an_account":"Máš už účet?"},"page_shared":{"subtitle":"Prosím vložte heslo pre získanie prístupu k obsahu:","title":"Zdieľaný odkaz je chránený","placeholder_pass":"Vložte heslo","download_file":"Stiahnúť súbor","submit":"Potvrdiť"},"page_shared_404":{"subtitle":"Obsah ktorý hľadáš bol pravdepodobne vymazaný.","title":"Obsah sa nenašiel :("},"page_create_password":{"title":"Iba jeden krok pre prihlásenie","subtitle":"Vytvorte si nové heslo tu:","button_update":"Aktualizovať heslo","label_email":"Email:","label_new_pass":"Vaše nové heslo","label_confirm_pass":"Potvrďte nové heslo"},"page_forgotten_password":{"title":"Zabudnuté heslo?","subtitle":"Získajte resetovací link pre Váš účet:","button_get_link":"Získať link","password_remember_text":"Pamätáte si heslo?","password_remember_button":"Prihlásiť sa.","pass_sennded_title":"Ďakujeme!","pass_sennded_subtitle":"Práve sme Vám odoslali link na Váš email!","pass_reseted_title":"Skvelé!","pass_reseted_subtitle":"Tvoje heslo bolo obnovené úspešne.","pass_reseted_signin":"Prihlásiť sa"},"page_sign_in":{"title":"Voláte sa {name}?","subtitle":"Potvrďte zadaním hesla:","placeholder_password":"Napíšte svoje heslo","button_log_in":"Prihlásiť sa","password_reset_text":"Zabudli ste heslo?","password_reset_button":"Resetovať heslo."},"page_login":{"title":"Vitajte späť!","subtitle":"Prosím, vložte svoj email pre prihlásenie:","placeholder_email":"Napíšte svoj E-mail","button_next":"Ďalší krok","registration_text":"Ešte nemáte účet?","registration_button":"Vytvoriť účet."},"uploading":{"progress":"Nahrávam súbory {current}/{total}"},"inputs":{"placeholder_search_files":"Hľadajte súbory…"},"messages":{"nothing_from_participants":"Zatiaľ nemáš žiadné súbory od ostatných uživateľov","nothing_to_preview":"Tu nie je nič pre zobrazenie.","nothing_was_found":"Nič sa nenašlo."},"locations":{"shared":"Zdieľané","home":"Domov","trash":"Kôš"},"file_detail":{"author_participant":"Verejný účastník","created_at":"Vytvorené","where":"Umiestnenie","shared":"Zdieľané","author":"Autor","size":"Veľkosť"},"empty_page":{"description":"Nahrajte súbory jednoducho cez tlačidlo nahrať","call_to_action":"Nahrať súbory","title":"Tu nie je nič"},"alerts":{"error_confirm":"To je hrozné!","success_confirm":"Skvelé!"},"validation_errors":{"wrong_image":"Zrejme ste vložili zlý obrázok, skúste to znova!","incorrect_password":"Prepáč, vložili ste nesprávne heslo :("},"pronouns":{"of":"z"},"storage":{"sec_capacity":"Kapacita úložiska","sec_details":"Detail využitej kapacity","total_used":"Používané {used}","total_capacity":"Tvoja kapacita disku {capacity}","images":"Obrázky","videos":"Videá","audios":"Audio","documents":"Dokumenty","others":"Ostatné"},"folder":{"item_counts":"{count} Položka | {count} Položky","empty":"Prázdne"},"item_thumbnail":{"original_location":"Pôvodné umiestnenie","deleted_at":"Vymazané {time}"},"preview_type":{"list":"List","grid":"Mriežka"},"context_menu":{"remove_from_favourites":"Vymazať obľúbené","add_to_favourites":"Pridať do obľúbených","profile_settings":"Nastavenia profilu","create_folder":"Vytvoriť priečinok","share_edit":"Upraviť zdieľanie","empty_trash":"Vyprázdniť kôš","add_folder":"Nový priečinok","log_out":"Odhlásiť sa","download":"Stiahnúť","rename":"Premenovať","restore":"Obnoviť","upload":"Nahrať","detail":"Detail","delete":"Vymazať","share":"Zdieľať","move":"Presunúť"},"menu":{"files":"Súbory","latest":"Posledne nahrané","shared":"Zdieľané súbory","trash":"Kôš","settings":"Nastavenia","logout":"Odhlásiť sa","profile":"Nastavenia profilu","password":"Heslo","storage":"Úložisko","admin":"Administrácia"},"sidebar":{"favourites":"Obľúbené","favourites_empty":"Presuňte sem obľúbený priečinok","folders_empty":"Vytvorte svoj prvý priečinok","latest":"Posledne nahraté","home":"Domov","tools_title":"Nástroje","locations_title":"Menu","navigator_title":"Navigátor","my_shared":"Moje zdieľané položky","participant_uploads":"Nahrávania účastníkov"},"popup_rename":{"title":"Zmeňte názov položky"},"popup_create_folder":{"title":"Prosím, vložte názov nového priečinka","folder_default_name":"Nový priečinok"},"popup_move_item":{"submit":"Presunúť položku","title":"Presuňte položku","cancel":"Zrušiť"},"popup_pass_changed":{"title":"Tvoje heslo bolo zmenené!","message":"Od teraz máte nové heslo."},"popup_trashed":{"title":"Váš kôš bol vymazaný!","message":"Od teraz máte prázdny a čistý kôš"},"popup_error":{"title":"Ups, niekde nastala chyba!","message":"Niečo sa stalo a nemôžme pokračovať. Prosím kontaktuj nás."},"popup_exceed_limit":{"title":"Ups, presiahli ste limit úložiska","message":"Prosím, kontaktujte administrátora pre navyšenie limitu."},"popup_share_create":{"title":"Zdieľaj {item}"},"popup_share_edit":{"title":"Upraviť nastavenia zdieľania","change_pass":"Zmeniť heslo","save":"Uložiť zmeny","stop":"Zastaviť zdieľanie","confirm":"Potvrdiť"},"shared":{"empty_shared":"Zatiaľ ste nič nezdieľali","editor":"Môže upravovať a nahrávať súbory","visitor":"Môže len vidieť a sťahovať súbory","can_download":"Môže stiahnúť súbor"},"shared_form":{"placeholder_permission":"Zvoľte oprávnenia","label_password_protection":"Chrániť heslom","button_done":"Super, som hotový!","button_generate":"Vygenerovať link","label_permission":"Oprávnenie","label_shared_url":"Zdieľací odkaz"},"actions":{"create_folder":"Vytvoriť priečinok","preview":"Zmeniť náhľad","upload":"Nahrať súbory","delete":"Vymazať položku","move":"Presunúť položku","share":"Zdieľať položku"},"types":{"folder":"Priečinok","file":"Súbor"},"popup_passport_error":{"title":"Nesprávny Passport Grand Client","message":"Pravdebodobne ste nespravne vygenerovali Passport Grant client alebo ste nenastavili udaje správne. Prosím následujte inštalačné inštrukcie."},"popup_signup_error":{"title":"Chyba serveru","message":"Prosím skontrolujte databázove spojenie, či všetko funguje správne."},"popup_paylod_error":{"title":"Súbor je príliš veľký","message":"Prepáčte, súbor je príliš veľký a nemôže byť nahraný."},"popup_deleted_user":{"title":"Uživateľ bol vymazaný","message":"Uživateľ bol vymazaný so všetkými uživateľskými dátami."},"user_box_storage":{"title":"Zmeňiť kapacitu úložiska","description":"Zmeňiť kapacitu úložiska formulárom nižšie. Môžeš písať iba čiselné hodnoty, napríklad hodnota \'5\' znamená, že uživateľ bude mať 5GB kapacitz úložiska."},"user_box_password":{"title":"Zmeňiť uživateľské heslo","description":"Môžete zmeniť uživateľské heslo zaslaním resetovacieho emailu uživateľovi. Uživateľ bude presmerovaný na stránku, kde si môže zmeniť heslo na nové."},"user_box_delete":{"title":"Vymazať uživateľa","description":"Môžete vymazať svojho uživateľa, lenže, dávaj pozor! Táto událosť je nezvratná a všetke uživateľské dáta vrátane uživateľových súborov budú vymazané!"},"user_box_role":{"title":"Zmeniť uživateľskú rolu","description":"Môžete zmeniť uživateľskú rolu pre aktuálneho uživateľa. Administrátorska rola môže editovať alebo vytvárať nových uživateľov, zmeniť kapacitu úložiska a mnoho dalších nastavení aplikácie."},"admin_menu":{"admin_label":"Administrácia","users":"Uživatelia"},"admin_page_user":{"select_role":"Vyberte uživateľskú rolu","save_role":"Uložiť Rolu","label_person_info":"Osobné informácie","label_delete_user":"Napíšte uživateľovo meno ‘{user}‘. Rozlišujte medzi malými a veľkými písmenami","label_change_capacity":"Vpíšte kapacitu úložiska v GB","placeholder_delete_user":"Píšte sem","delete_user":"Vymazať uživateľa","change_capacity":"Zmeniť kapacitu","send_password_link":"Odoslať email s resetom hesla","tabs":{"detail":"Detail","storage":"Využitie úložiska","password":"Heslo","delete":"Vymazať uživateľa"},"table":{"name":"Užívateľ","role":"Rola","storage_used":"Využitie úložiska","storage_capacity":"Kapacita úložiska","created_at":"Registrovaný","action":"Akcia"},"create_user":{"group_details":"Detail účtu","group_settings":"Nastavenia účtu","submit":"Vytvoriť uživateľa","label_email":"Napíšte E-mail","label_name":"Napíšte celé meno","label_conf_pass":"Potvrďte heslo"}},"toaster":{"changed_user":"Úspešne ste zmenili rolu užívateľa","sended_password":"Úspešne ste odoslali email uživateľovi pre reset hesla!","changed_capacity":"Úspešne ste zmenili kapacitu úložiska uživateľa!","created_user":"Úspešne ste vytvorili uživateľa1"},"roles":{"admin":"Admin","user":"Užívateľ"},"datatable":{"paginate_info":"Zobrazuje sa 1 - {visible} z {total} položiek"},"input_image":{"title":"Vložte obrázok","supported":"Podporované formáty sú .png, .jpg, .jpeg."}}')},function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return b}));var a=n(10),r="undefined"!=typeof window?window:void 0!==e?e:"undefined"!=typeof self?self:{};var i=function(e,t){return e(t={exports:{}},t.exports),t.exports}((function(e){!function(t){var n=function(e,t,a){if(!c(t)||d(t)||p(t)||u(t)||s(t))return t;var r,i=0,o=0;if(l(t))for(r=[],o=t.length;i=0||Object.prototype.hasOwnProperty.call(e,a)&&(n[a]=e[a]);return n};function d(e){return e.split(";").map((function(e){return e.trim()})).filter((function(e){return e})).reduce((function(e,t){var n=t.indexOf(":"),a=i.camelize(t.slice(0,n)),r=t.slice(n+1).trim();return e[a]=r,e}),{})}function p(e){return e.split(/\s+/).reduce((function(e,t){return e[t]=!0,e}),{})}function u(){for(var e=arguments.length,t=Array(e),n=0;n2&&void 0!==arguments[2]?arguments[2]:{},a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},r=(t.children||[]).map(f.bind(null,e)),i=Object.keys(t.attributes||{}).reduce((function(e,n){var a=t.attributes[n];switch(n){case"class":e.class=p(a);break;case"style":e.style=d(a);break;default:e.attrs[n]=a}return e}),{class:{},style:{},attrs:{}}),o=a.class,s=void 0===o?{}:o,v=a.style,m=void 0===v?{}:v,h=a.attrs,b=void 0===h?{}:h,g=l(a,["class","style","attrs"]);return"string"==typeof t?t:e(t.tag,c({class:u(i.class,s),style:c({},i.style,m),attrs:c({},i.attrs,b)},g,{props:n}),r)}var v=!1;try{v=!0}catch(e){}function m(e,t){return Array.isArray(t)&&t.length>0||!Array.isArray(t)&&t?s({},e,t):{}}function h(e){return null===e?null:"object"===(void 0===e?"undefined":o(e))&&e.prefix&&e.iconName?e:Array.isArray(e)&&2===e.length?{prefix:e[0],iconName:e[1]}:"string"==typeof e?{prefix:"fas",iconName:e}:void 0}var b={name:"FontAwesomeIcon",functional:!0,props:{border:{type:Boolean,default:!1},fixedWidth:{type:Boolean,default:!1},flip:{type:String,default:null,validator:function(e){return["horizontal","vertical","both"].indexOf(e)>-1}},icon:{type:[Object,Array,String],required:!0},mask:{type:[Object,Array,String],default:null},listItem:{type:Boolean,default:!1},pull:{type:String,default:null,validator:function(e){return["right","left"].indexOf(e)>-1}},pulse:{type:Boolean,default:!1},rotation:{type:[String,Number],default:null,validator:function(e){return[90,180,270].indexOf(parseInt(e,10))>-1}},swapOpacity:{type:Boolean,default:!1},size:{type:String,default:null,validator:function(e){return["lg","xs","sm","1x","2x","3x","4x","5x","6x","7x","8x","9x","10x"].indexOf(e)>-1}},spin:{type:Boolean,default:!1},transform:{type:[String,Object],default:null},symbol:{type:[Boolean,String],default:!1},title:{type:String,default:null},inverse:{type:Boolean,default:!1}},render:function(e,t){var n=t.props,r=n.icon,i=n.mask,o=n.symbol,l=n.title,d=h(r),p=m("classes",function(e){var t,n=(t={"fa-spin":e.spin,"fa-pulse":e.pulse,"fa-fw":e.fixedWidth,"fa-border":e.border,"fa-li":e.listItem,"fa-inverse":e.inverse,"fa-flip-horizontal":"horizontal"===e.flip||"both"===e.flip,"fa-flip-vertical":"vertical"===e.flip||"both"===e.flip},s(t,"fa-"+e.size,null!==e.size),s(t,"fa-rotate-"+e.rotation,null!==e.rotation),s(t,"fa-pull-"+e.pull,null!==e.pull),s(t,"fa-swap-opacity",e.swapOpacity),t);return Object.keys(n).map((function(e){return n[e]?e:null})).filter((function(e){return e}))}(n)),u=m("transform","string"==typeof n.transform?a.d.transform(n.transform):n.transform),b=m("mask",h(i)),g=Object(a.b)(d,c({},p,u,b,{symbol:o,title:l}));if(!g)return function(){var e;!v&&console&&"function"==typeof console.error&&(e=console).error.apply(e,arguments)}("Could not find one or more icon(s)",d,b);var y=g.abstract;return f.bind(null,e)(y[0],{},t.data)}};Boolean,Boolean}).call(this,n(11))},function(e,t,n){n(297),e.exports=n(298)},function(e,t,n){window._=n(7),window.axios=n(4),window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest"},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){"use strict";var a=n(9),r=n(95),i=n(112),o=n(102);function s(e){var t=new i(e),n=r(i.prototype.request,t);return a.extend(n,i.prototype,t),a.extend(n,t),n}var c=s(n(98));c.Axios=i,c.create=function(e){return s(o(c.defaults,e))},c.Cancel=n(103),c.CancelToken=n(125),c.isCancel=n(97),c.all=function(e){return Promise.all(e)},c.spread=n(126),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";var a=n(9),r=n(96),i=n(113),o=n(114),s=n(102);function c(e){this.defaults=e,this.interceptors={request:new i,response:new i}}c.prototype.request=function(e){"string"==typeof e?(e=arguments[1]||{}).url=arguments[0]:e=e||{},(e=s(this.defaults,e)).method?e.method=e.method.toLowerCase():this.defaults.method?e.method=this.defaults.method.toLowerCase():e.method="get";var t=[o,void 0],n=Promise.resolve(e);for(this.interceptors.request.forEach((function(e){t.unshift(e.fulfilled,e.rejected)})),this.interceptors.response.forEach((function(e){t.push(e.fulfilled,e.rejected)}));t.length;)n=n.then(t.shift(),t.shift());return n},c.prototype.getUri=function(e){return e=s(this.defaults,e),r(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},a.forEach(["delete","get","head","options"],(function(e){c.prototype[e]=function(t,n){return this.request(a.merge(n||{},{method:e,url:t}))}})),a.forEach(["post","put","patch"],(function(e){c.prototype[e]=function(t,n,r){return this.request(a.merge(r||{},{method:e,url:t,data:n}))}})),e.exports=c},function(e,t,n){"use strict";var a=n(9);function r(){this.handlers=[]}r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){a.forEach(this.handlers,(function(t){null!==t&&e(t)}))},e.exports=r},function(e,t,n){"use strict";var a=n(9),r=n(115),i=n(97),o=n(98);function s(e){e.cancelToken&&e.cancelToken.throwIfRequested()}e.exports=function(e){return s(e),e.headers=e.headers||{},e.data=r(e.data,e.headers,e.transformRequest),e.headers=a.merge(e.headers.common||{},e.headers[e.method]||{},e.headers),a.forEach(["delete","get","head","post","put","patch","common"],(function(t){delete e.headers[t]})),(e.adapter||o.adapter)(e).then((function(t){return s(e),t.data=r(t.data,t.headers,e.transformResponse),t}),(function(t){return i(t)||(s(e),t&&t.response&&(t.response.data=r(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},function(e,t,n){"use strict";var a=n(9);e.exports=function(e,t,n){return a.forEach(n,(function(n){e=n(e,t)})),e}},function(e,t,n){"use strict";var a=n(9);e.exports=function(e,t){a.forEach(e,(function(n,a){a!==t&&a.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[a])}))}},function(e,t,n){"use strict";var a=n(101);e.exports=function(e,t,n){var r=n.config.validateStatus;!r||r(n.status)?e(n):t(a("Request failed with status code "+n.status,n.config,null,n.request,n))}},function(e,t,n){"use strict";e.exports=function(e,t,n,a,r){return e.config=t,n&&(e.code=n),e.request=a,e.response=r,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},function(e,t,n){"use strict";var a=n(120),r=n(121);e.exports=function(e,t){return e&&!a(t)?r(e,t):t}},function(e,t,n){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t,n){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t,n){"use strict";var a=n(9),r=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,i,o={};return e?(a.forEach(e.split("\n"),(function(e){if(i=e.indexOf(":"),t=a.trim(e.substr(0,i)).toLowerCase(),n=a.trim(e.substr(i+1)),t){if(o[t]&&r.indexOf(t)>=0)return;o[t]="set-cookie"===t?(o[t]?o[t]:[]).concat([n]):o[t]?o[t]+", "+n:n}})),o):o}},function(e,t,n){"use strict";var a=n(9);e.exports=a.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function r(e){var a=e;return t&&(n.setAttribute("href",a),a=n.href),n.setAttribute("href",a),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return e=r(window.location.href),function(t){var n=a.isString(t)?r(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return!0}},function(e,t,n){"use strict";var a=n(9);e.exports=a.isStandardBrowserEnv()?{write:function(e,t,n,r,i,o){var s=[];s.push(e+"="+encodeURIComponent(t)),a.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),a.isString(r)&&s.push("path="+r),a.isString(i)&&s.push("domain="+i),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";var a=n(103);function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var n=this;e((function(e){n.reason||(n.reason=new a(e),t(n.reason))}))}r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e;return{token:new r((function(t){e=t})),cancel:e}},e.exports=r},function(e,t,n){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},function(e,t,n){"use strict";(function(t,n){var a=Object.freeze({});function r(e){return null==e}function i(e){return null!=e}function o(e){return!0===e}function s(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function c(e){return null!==e&&"object"==typeof e}var l=Object.prototype.toString;function d(e){return"[object Object]"===l.call(e)}function p(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function u(e){return i(e)&&"function"==typeof e.then&&"function"==typeof e.catch}function f(e){return null==e?"":Array.isArray(e)||d(e)&&e.toString===l?JSON.stringify(e,null,2):String(e)}function v(e){var t=parseFloat(e);return isNaN(t)?e:t}function m(e,t){for(var n=Object.create(null),a=e.split(","),r=0;r-1)return e.splice(n,1)}}var y=Object.prototype.hasOwnProperty;function _(e,t){return y.call(e,t)}function w(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}var x=/-(\w)/g,k=w((function(e){return e.replace(x,(function(e,t){return t?t.toUpperCase():""}))})),C=w((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),O=/\B([A-Z])/g,$=w((function(e){return e.replace(O,"-$1").toLowerCase()})),z=Function.prototype.bind?function(e,t){return e.bind(t)}:function(e,t){function n(n){var a=arguments.length;return a?a>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n};function P(e,t){t=t||0;for(var n=e.length-t,a=new Array(n);n--;)a[n]=e[n+t];return a}function I(e,t){for(var n in t)e[n]=t[n];return e}function j(e){for(var t={},n=0;n0,J=Y&&Y.indexOf("edge/")>0,Q=(Y&&Y.indexOf("android"),Y&&/iphone|ipad|ipod|ios/.test(Y)||"ios"===Z),ee=(Y&&/chrome\/\d+/.test(Y),Y&&/phantomjs/.test(Y),Y&&Y.match(/firefox\/(\d+)/)),te={}.watch,ne=!1;if(W)try{var ae={};Object.defineProperty(ae,"passive",{get:function(){ne=!0}}),window.addEventListener("test-passive",null,ae)}catch(a){}var re=function(){return void 0===U&&(U=!W&&!G&&void 0!==t&&t.process&&"server"===t.process.env.VUE_ENV),U},ie=W&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function oe(e){return"function"==typeof e&&/native code/.test(e.toString())}var se,ce="undefined"!=typeof Symbol&&oe(Symbol)&&"undefined"!=typeof Reflect&&oe(Reflect.ownKeys);se="undefined"!=typeof Set&&oe(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var le=A,de=0,pe=function(){this.id=de++,this.subs=[]};pe.prototype.addSub=function(e){this.subs.push(e)},pe.prototype.removeSub=function(e){g(this.subs,e)},pe.prototype.depend=function(){pe.target&&pe.target.addDep(this)},pe.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;t-1)if(i&&!_(r,"default"))o=!1;else if(""===o||o===$(e)){var c=Be(String,r.type);(c<0||s0&&(dt((c=e(c,(n||"")+"_"+a))[0])&&dt(d)&&(p[l]=ge(d.text+c[0].text),c.shift()),p.push.apply(p,c)):s(c)?dt(d)?p[l]=ge(d.text+c):""!==c&&p.push(ge(c)):dt(c)&&dt(d)?p[l]=ge(d.text+c.text):(o(t._isVList)&&i(c.tag)&&r(c.key)&&i(n)&&(c.key="__vlist"+n+"_"+a+"__"),p.push(c)));return p}(e):void 0}function dt(e){return i(e)&&i(e.text)&&!1===e.isComment}function pt(e,t){if(e){for(var n=Object.create(null),a=ce?Reflect.ownKeys(e):Object.keys(e),r=0;r0,o=e?!!e.$stable:!i,s=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(o&&n&&n!==a&&s===n.$key&&!i&&!n.$hasNormal)return n;for(var c in r={},e)e[c]&&"$"!==c[0]&&(r[c]=mt(t,c,e[c]))}else r={};for(var l in t)l in r||(r[l]=ht(t,l));return e&&Object.isExtensible(e)&&(e._normalized=r),V(r,"$stable",o),V(r,"$key",s),V(r,"$hasNormal",i),r}function mt(e,t,n){var a=function(){var e=arguments.length?n.apply(null,arguments):n({});return(e=e&&"object"==typeof e&&!Array.isArray(e)?[e]:lt(e))&&(0===e.length||1===e.length&&e[0].isComment)?void 0:e};return n.proxy&&Object.defineProperty(e,t,{get:a,enumerable:!0,configurable:!0}),a}function ht(e,t){return function(){return e[t]}}function bt(e,t){var n,a,r,o,s;if(Array.isArray(e)||"string"==typeof e)for(n=new Array(e.length),a=0,r=e.length;adocument.createEvent("Event").timeStamp&&(cn=function(){return ln.now()})}function dn(){var e,t;for(sn=cn(),rn=!0,en.sort((function(e,t){return e.id-t.id})),on=0;onon&&en[n].id>e.id;)n--;en.splice(n+1,0,e)}else en.push(e);an||(an=!0,tt(dn))}}(this)},un.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||c(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){Ve(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},un.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},un.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},un.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var fn={enumerable:!0,configurable:!0,get:A,set:A};function vn(e,t,n){fn.get=function(){return this[t][n]},fn.set=function(e){this[t][n]=e},Object.defineProperty(e,n,fn)}var mn={lazy:!0};function hn(e,t,n){var a=!re();"function"==typeof n?(fn.get=a?bn(t):gn(n),fn.set=A):(fn.get=n.get?a&&!1!==n.cache?bn(t):gn(n.get):A,fn.set=n.set||A),Object.defineProperty(e,t,fn)}function bn(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),pe.target&&t.depend(),t.value}}function gn(e){return function(){return e.call(this,this)}}function yn(e,t,n,a){return d(n)&&(a=n,n=n.handler),"string"==typeof n&&(n=e[n]),e.$watch(t,n,a)}var _n=0;function wn(e){var t=e.options;if(e.super){var n=wn(e.super);if(n!==e.superOptions){e.superOptions=n;var a=function(e){var t,n=e.options,a=e.sealedOptions;for(var r in n)n[r]!==a[r]&&(t||(t={}),t[r]=n[r]);return t}(e);a&&I(e.extendOptions,a),(t=e.options=Fe(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function xn(e){this._init(e)}function kn(e){return e&&(e.Ctor.options.name||e.tag)}function Cn(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:(n=e,"[object RegExp]"===l.call(n)&&e.test(t));var n}function On(e,t){var n=e.cache,a=e.keys,r=e._vnode;for(var i in n){var o=n[i];if(o){var s=kn(o.componentOptions);s&&!t(s)&&$n(n,i,a,r)}}}function $n(e,t,n,a){var r=e[t];!r||a&&r.tag===a.tag||r.componentInstance.$destroy(),e[t]=null,g(n,t)}!function(e){e.prototype._init=function(e){var t=this;t._uid=_n++,t._isVue=!0,e&&e._isComponent?function(e,t){var n=e.$options=Object.create(e.constructor.options),a=t._parentVnode;n.parent=t.parent,n._parentVnode=a;var r=a.componentOptions;n.propsData=r.propsData,n._parentListeners=r.listeners,n._renderChildren=r.children,n._componentTag=r.tag,t.render&&(n.render=t.render,n.staticRenderFns=t.staticRenderFns)}(t,e):t.$options=Fe(wn(t.constructor),e||{},t),t._renderProxy=t,t._self=t,function(e){var t=e.$options,n=t.parent;if(n&&!t.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(e)}e.$parent=n,e.$root=n?n.$root:e,e.$children=[],e.$refs={},e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}(t),function(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&&Zt(e,t)}(t),function(e){e._vnode=null,e._staticTrees=null;var t=e.$options,n=e.$vnode=t._parentVnode,r=n&&n.context;e.$slots=ut(t._renderChildren,r),e.$scopedSlots=a,e._c=function(t,n,a,r){return Mt(e,t,n,a,r,!1)},e.$createElement=function(t,n,a,r){return Mt(e,t,n,a,r,!0)};var i=n&&n.data;ze(e,"$attrs",i&&i.attrs||a,null,!0),ze(e,"$listeners",t._parentListeners||a,null,!0)}(t),Qt(t,"beforeCreate"),function(e){var t=pt(e.$options.inject,e);t&&(Ce(!1),Object.keys(t).forEach((function(n){ze(e,n,t[n])})),Ce(!0))}(t),function(e){e._watchers=[];var t=e.$options;t.props&&function(e,t){var n=e.$options.propsData||{},a=e._props={},r=e.$options._propKeys=[];e.$parent&&Ce(!1);var i=function(i){r.push(i);var o=Ne(i,t,n,e);ze(a,i,o),i in e||vn(e,"_props",i)};for(var o in t)i(o);Ce(!0)}(e,t.props),t.methods&&function(e,t){for(var n in e.$options.props,t)e[n]="function"!=typeof t[n]?A:z(t[n],e)}(e,t.methods),t.data?function(e){var t=e.$options.data;d(t=e._data="function"==typeof t?function(e,t){fe();try{return e.call(t,t)}catch(e){return Ve(e,t,"data()"),{}}finally{ve()}}(t,e):t||{})||(t={});for(var n,a=Object.keys(t),r=e.$options.props,i=(e.$options.methods,a.length);i--;){var o=a[i];r&&_(r,o)||(void 0,36!==(n=(o+"").charCodeAt(0))&&95!==n&&vn(e,"_data",o))}$e(t,!0)}(e):$e(e._data={},!0),t.computed&&function(e,t){var n=e._computedWatchers=Object.create(null),a=re();for(var r in t){var i=t[r],o="function"==typeof i?i:i.get;a||(n[r]=new un(e,o||A,A,mn)),r in e||hn(e,r,i)}}(e,t.computed),t.watch&&t.watch!==te&&function(e,t){for(var n in t){var a=t[n];if(Array.isArray(a))for(var r=0;r1?P(t):t;for(var n=P(arguments,1),a='event handler for "'+e+'"',r=0,i=t.length;rparseInt(this.max)&&$n(o,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={get:function(){return R}};Object.defineProperty(e,"config",t),e.util={warn:le,extend:I,mergeOptions:Fe,defineReactive:ze},e.set=Pe,e.delete=Ie,e.nextTick=tt,e.observable=function(e){return $e(e),e},e.options=Object.create(null),N.forEach((function(t){e.options[t+"s"]=Object.create(null)})),e.options._base=e,I(e.options.components,Pn),function(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=P(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this}}(e),function(e){e.mixin=function(e){return this.options=Fe(this.options,e),this}}(e),function(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,a=n.cid,r=e._Ctor||(e._Ctor={});if(r[a])return r[a];var i=e.name||n.options.name,o=function(e){this._init(e)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=t++,o.options=Fe(n.options,e),o.super=n,o.options.props&&function(e){var t=e.options.props;for(var n in t)vn(e.prototype,"_props",n)}(o),o.options.computed&&function(e){var t=e.options.computed;for(var n in t)hn(e.prototype,n,t[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,N.forEach((function(e){o[e]=n[e]})),i&&(o.options.components[i]=o),o.superOptions=n.options,o.extendOptions=e,o.sealedOptions=I({},o.options),r[a]=o,o}}(e),function(e){N.forEach((function(t){e[t]=function(e,n){return n?("component"===t&&d(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}))}(e)}(xn),Object.defineProperty(xn.prototype,"$isServer",{get:re}),Object.defineProperty(xn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(xn,"FunctionalRenderContext",{value:Et}),xn.version="2.6.11";var In=m("style,class"),jn=m("input,textarea,option,select,progress"),An=function(e,t,n){return"value"===n&&jn(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},En=m("contenteditable,draggable,spellcheck"),Sn=m("events,caret,typing,plaintext-only"),Tn=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Dn="http://www.w3.org/1999/xlink",Fn=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},Ln=function(e){return Fn(e)?e.slice(6,e.length):""},Nn=function(e){return null==e||!1===e};function Mn(e,t){return{staticClass:Rn(e.staticClass,t.staticClass),class:i(e.class)?[e.class,t.class]:t.class}}function Rn(e,t){return e?t?e+" "+t:e:t||""}function Bn(e){return Array.isArray(e)?function(e){for(var t,n="",a=0,r=e.length;a-1?ua(e,t,n):Tn(t)?Nn(n)?e.removeAttribute(t):(n="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,n)):En(t)?e.setAttribute(t,function(e,t){return Nn(t)||"false"===t?"false":"contenteditable"===e&&Sn(t)?t:"true"}(t,n)):Fn(t)?Nn(n)?e.removeAttributeNS(Dn,Ln(t)):e.setAttributeNS(Dn,t,n):ua(e,t,n)}function ua(e,t,n){if(Nn(n))e.removeAttribute(t);else{if(K&&!X&&"TEXTAREA"===e.tagName&&"placeholder"===t&&""!==n&&!e.__ieph){var a=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",a)};e.addEventListener("input",a),e.__ieph=!0}e.setAttribute(t,n)}}var fa={create:da,update:da};function va(e,t){var n=t.elm,a=t.data,o=e.data;if(!(r(a.staticClass)&&r(a.class)&&(r(o)||r(o.staticClass)&&r(o.class)))){var s=function(e){for(var t=e.data,n=e,a=e;i(a.componentInstance);)(a=a.componentInstance._vnode)&&a.data&&(t=Mn(a.data,t));for(;i(n=n.parent);)n&&n.data&&(t=Mn(t,n.data));return function(e,t){return i(e)||i(t)?Rn(e,Bn(t)):""}(t.staticClass,t.class)}(t),c=n._transitionClasses;i(c)&&(s=Rn(s,Bn(c))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var ma,ha,ba,ga,ya,_a,wa={create:va,update:va},xa=/[\w).+\-_$\]]/;function ka(e){var t,n,a,r,i,o=!1,s=!1,c=!1,l=!1,d=0,p=0,u=0,f=0;for(a=0;a=0&&" "===(m=e.charAt(v));v--);m&&xa.test(m)||(l=!0)}}else void 0===r?(f=a+1,r=e.slice(0,a).trim()):h();function h(){(i||(i=[])).push(e.slice(f,a).trim()),f=a+1}if(void 0===r?r=e.slice(0,a).trim():0!==f&&h(),i)for(a=0;a-1?{exp:e.slice(0,ga),key:'"'+e.slice(ga+1)+'"'}:{exp:e,key:null};for(ha=e,ga=ya=_a=0;!Ra();)Ba(ba=Ma())?Ua(ba):91===ba&&Va(ba);return{exp:e.slice(0,ya),key:e.slice(ya+1,_a)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function Ma(){return ha.charCodeAt(++ga)}function Ra(){return ga>=ma}function Ba(e){return 34===e||39===e}function Va(e){var t=1;for(ya=ga;!Ra();)if(Ba(e=Ma()))Ua(e);else if(91===e&&t++,93===e&&t--,0===t){_a=ga;break}}function Ua(e){for(var t=e;!Ra()&&(e=Ma())!==t;);}var qa,Ha="__r";function Wa(e,t,n){var a=qa;return function r(){null!==t.apply(null,arguments)&&Ya(e,r,n,a)}}var Ga=Ge&&!(ee&&Number(ee[1])<=53);function Za(e,t,n,a){if(Ga){var r=sn,i=t;t=i._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=r||e.timeStamp<=0||e.target.ownerDocument!==document)return i.apply(this,arguments)}}qa.addEventListener(e,t,ne?{capture:n,passive:a}:n)}function Ya(e,t,n,a){(a||qa).removeEventListener(e,t._wrapper||t,n)}function Ka(e,t){if(!r(e.data.on)||!r(t.data.on)){var n=t.data.on||{},a=e.data.on||{};qa=t.elm,function(e){if(i(e.__r)){var t=K?"change":"input";e[t]=[].concat(e.__r,e[t]||[]),delete e.__r}i(e.__c)&&(e.change=[].concat(e.__c,e.change||[]),delete e.__c)}(n),ot(n,a,Za,Ya,Wa,t.context),qa=void 0}}var Xa,Ja={create:Ka,update:Ka};function Qa(e,t){if(!r(e.data.domProps)||!r(t.data.domProps)){var n,a,o=t.elm,s=e.data.domProps||{},c=t.data.domProps||{};for(n in i(c.__ob__)&&(c=t.data.domProps=I({},c)),s)n in c||(o[n]="");for(n in c){if(a=c[n],"textContent"===n||"innerHTML"===n){if(t.children&&(t.children.length=0),a===s[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n&&"PROGRESS"!==o.tagName){o._value=a;var l=r(a)?"":String(a);er(o,l)&&(o.value=l)}else if("innerHTML"===n&&qn(o.tagName)&&r(o.innerHTML)){(Xa=Xa||document.createElement("div")).innerHTML=""+a+"";for(var d=Xa.firstChild;o.firstChild;)o.removeChild(o.firstChild);for(;d.firstChild;)o.appendChild(d.firstChild)}else if(a!==s[n])try{o[n]=a}catch(e){}}}}function er(e,t){return!e.composing&&("OPTION"===e.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(e,t)||function(e,t){var n=e.value,a=e._vModifiers;if(i(a)){if(a.number)return v(n)!==v(t);if(a.trim)return n.trim()!==t.trim()}return n!==t}(e,t))}var tr={create:Qa,update:Qa},nr=w((function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach((function(e){if(e){var a=e.split(n);a.length>1&&(t[a[0].trim()]=a[1].trim())}})),t}));function ar(e){var t=rr(e.style);return e.staticStyle?I(e.staticStyle,t):t}function rr(e){return Array.isArray(e)?j(e):"string"==typeof e?nr(e):e}var ir,or=/^--/,sr=/\s*!important$/,cr=function(e,t,n){if(or.test(t))e.style.setProperty(t,n);else if(sr.test(n))e.style.setProperty($(t),n.replace(sr,""),"important");else{var a=dr(t);if(Array.isArray(n))for(var r=0,i=n.length;r-1?t.split(fr).forEach((function(t){return e.classList.add(t)})):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function mr(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(fr).forEach((function(t){return e.classList.remove(t)})):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",a=" "+t+" ";n.indexOf(a)>=0;)n=n.replace(a," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function hr(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&I(t,br(e.name||"v")),I(t,e),t}return"string"==typeof e?br(e):void 0}}var br=w((function(e){return{enterClass:e+"-enter",enterToClass:e+"-enter-to",enterActiveClass:e+"-enter-active",leaveClass:e+"-leave",leaveToClass:e+"-leave-to",leaveActiveClass:e+"-leave-active"}})),gr=W&&!X,yr="transition",_r="animation",wr="transition",xr="transitionend",kr="animation",Cr="animationend";gr&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(wr="WebkitTransition",xr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(kr="WebkitAnimation",Cr="webkitAnimationEnd"));var Or=W?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function $r(e){Or((function(){Or(e)}))}function zr(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),vr(e,t))}function Pr(e,t){e._transitionClasses&&g(e._transitionClasses,t),mr(e,t)}function Ir(e,t,n){var a=Ar(e,t),r=a.type,i=a.timeout,o=a.propCount;if(!r)return n();var s=r===yr?xr:Cr,c=0,l=function(){e.removeEventListener(s,d),n()},d=function(t){t.target===e&&++c>=o&&l()};setTimeout((function(){c0&&(n=yr,d=o,p=i.length):t===_r?l>0&&(n=_r,d=l,p=c.length):p=(n=(d=Math.max(o,l))>0?o>l?yr:_r:null)?n===yr?i.length:c.length:0,{type:n,timeout:d,propCount:p,hasTransform:n===yr&&jr.test(a[wr+"Property"])}}function Er(e,t){for(;e.length1}function Nr(e,t){!0!==t.data.show&&Tr(t)}var Mr=function(e){var t,n,a={},c=e.modules,l=e.nodeOps;for(t=0;tv?y(e,r(n[b+1])?null:n[b+1].elm,n,f,b,a):f>b&&w(t,u,v)}(u,m,b,n,d):i(b)?(i(e.text)&&l.setTextContent(u,""),y(u,null,b,0,b.length-1,n)):i(m)?w(m,0,m.length-1):i(e.text)&&l.setTextContent(u,""):e.text!==t.text&&l.setTextContent(u,t.text),i(v)&&i(f=v.hook)&&i(f=f.postpatch)&&f(e,t)}}}function O(e,t,n){if(o(n)&&i(e.parent))e.parent.data.pendingInsert=t;else for(var a=0;a-1,o.selected!==i&&(o.selected=i);else if(T(qr(o),a))return void(e.selectedIndex!==s&&(e.selectedIndex=s));r||(e.selectedIndex=-1)}}function Ur(e,t){return t.every((function(t){return!T(t,e)}))}function qr(e){return"_value"in e?e._value:e.value}function Hr(e){e.target.composing=!0}function Wr(e){e.target.composing&&(e.target.composing=!1,Gr(e.target,"input"))}function Gr(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Zr(e){return!e.componentInstance||e.data&&e.data.transition?e:Zr(e.componentInstance._vnode)}var Yr={model:Rr,show:{bind:function(e,t,n){var a=t.value,r=(n=Zr(n)).data&&n.data.transition,i=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;a&&r?(n.data.show=!0,Tr(n,(function(){e.style.display=i}))):e.style.display=a?i:"none"},update:function(e,t,n){var a=t.value;!a!=!t.oldValue&&((n=Zr(n)).data&&n.data.transition?(n.data.show=!0,a?Tr(n,(function(){e.style.display=e.__vOriginalDisplay})):Dr(n,(function(){e.style.display="none"}))):e.style.display=a?e.__vOriginalDisplay:"none")},unbind:function(e,t,n,a,r){r||(e.style.display=e.__vOriginalDisplay)}}},Kr={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Xr(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Xr(qt(t.children)):e}function Jr(e){var t={},n=e.$options;for(var a in n.propsData)t[a]=e[a];var r=n._parentListeners;for(var i in r)t[k(i)]=r[i];return t}function Qr(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}var ei=function(e){return e.tag||Ut(e)},ti=function(e){return"show"===e.name},ni={name:"transition",props:Kr,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(ei)).length){var a=this.mode,r=n[0];if(function(e){for(;e=e.parent;)if(e.data.transition)return!0}(this.$vnode))return r;var i=Xr(r);if(!i)return r;if(this._leaving)return Qr(e,r);var o="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?o+"comment":o+i.tag:s(i.key)?0===String(i.key).indexOf(o)?i.key:o+i.key:i.key;var c=(i.data||(i.data={})).transition=Jr(this),l=this._vnode,d=Xr(l);if(i.data.directives&&i.data.directives.some(ti)&&(i.data.show=!0),d&&d.data&&!function(e,t){return t.key===e.key&&t.tag===e.tag}(i,d)&&!Ut(d)&&(!d.componentInstance||!d.componentInstance._vnode.isComment)){var p=d.data.transition=I({},c);if("out-in"===a)return this._leaving=!0,st(p,"afterLeave",(function(){t._leaving=!1,t.$forceUpdate()})),Qr(e,r);if("in-out"===a){if(Ut(i))return l;var u,f=function(){u()};st(c,"afterEnter",f),st(c,"enterCancelled",f),st(p,"delayLeave",(function(e){u=e}))}}return r}}},ai=I({tag:String,moveClass:String},Kr);function ri(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function ii(e){e.data.newPos=e.elm.getBoundingClientRect()}function oi(e){var t=e.data.pos,n=e.data.newPos,a=t.left-n.left,r=t.top-n.top;if(a||r){e.data.moved=!0;var i=e.elm.style;i.transform=i.WebkitTransform="translate("+a+"px,"+r+"px)",i.transitionDuration="0s"}}delete ai.mode;var si={Transition:ni,TransitionGroup:{props:ai,beforeMount:function(){var e=this,t=this._update;this._update=function(n,a){var r=Kt(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,r(),t.call(e,n,a)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),a=this.prevChildren=this.children,r=this.$slots.default||[],i=this.children=[],o=Jr(this),s=0;s-1?Gn[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:Gn[e]=/HTMLUnknownElement/.test(t.toString())},I(xn.options.directives,Yr),I(xn.options.components,si),xn.prototype.__patch__=W?Mr:A,xn.prototype.$mount=function(e,t){return function(e,t,n){var a;return e.$el=t,e.$options.render||(e.$options.render=be),Qt(e,"beforeMount"),a=function(){e._update(e._render(),n)},new un(e,a,A,{before:function(){e._isMounted&&!e._isDestroyed&&Qt(e,"beforeUpdate")}},!0),n=!1,null==e.$vnode&&(e._isMounted=!0,Qt(e,"mounted")),e}(this,e=e&&W?Yn(e):void 0,t)},W&&setTimeout((function(){R.devtools&&ie&&ie.emit("init",xn)}),0);var ci,li=/\{\{((?:.|\r?\n)+?)\}\}/g,di=/[-.*+?^${}()|[\]\/\\]/g,pi=w((function(e){var t=e[0].replace(di,"\\$&"),n=e[1].replace(di,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")})),ui={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=Ta(e,"class");n&&(e.staticClass=JSON.stringify(n));var a=Sa(e,"class",!1);a&&(e.classBinding=a)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}},fi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=Ta(e,"style");n&&(e.staticStyle=JSON.stringify(nr(n)));var a=Sa(e,"style",!1);a&&(e.styleBinding=a)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},vi=m("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),mi=m("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),hi=m("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),bi=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,gi=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,yi="[a-zA-Z_][\\-\\.0-9_a-zA-Z"+B.source+"]*",_i="((?:"+yi+"\\:)?"+yi+")",wi=new RegExp("^<"+_i),xi=/^\s*(\/?)>/,ki=new RegExp("^<\\/"+_i+"[^>]*>"),Ci=/^]+>/i,Oi=/^",""":'"',"&":"&"," ":"\n"," ":"\t","'":"'"},ji=/&(?:lt|gt|quot|amp|#39);/g,Ai=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,Ei=m("pre,textarea",!0),Si=function(e,t){return e&&Ei(e)&&"\n"===t[0]};function Ti(e,t){var n=t?Ai:ji;return e.replace(n,(function(e){return Ii[e]}))}var Di,Fi,Li,Ni,Mi,Ri,Bi,Vi,Ui=/^@|^v-on:/,qi=/^v-|^@|^:|^#/,Hi=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,Wi=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Gi=/^\(|\)$/g,Zi=/^\[.*\]$/,Yi=/:(.*)$/,Ki=/^:|^\.|^v-bind:/,Xi=/\.[^.\]]+(?=[^\]]*$)/g,Ji=/^v-slot(:|$)|^#/,Qi=/[\r\n]/,eo=/\s+/g,to=w((function(e){return(ci=ci||document.createElement("div")).innerHTML=e,ci.textContent})),no="_empty_";function ao(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:lo(t),rawAttrsMap:{},parent:n,children:[]}}function ro(e,t){var n,a;(a=Sa(n=e,"key"))&&(n.key=a),e.plain=!e.key&&!e.scopedSlots&&!e.attrsList.length,function(e){var t=Sa(e,"ref");t&&(e.ref=t,e.refInFor=function(e){for(var t=e;t;){if(void 0!==t.for)return!0;t=t.parent}return!1}(e))}(e),function(e){var t;"template"===e.tag?(t=Ta(e,"scope"),e.slotScope=t||Ta(e,"slot-scope")):(t=Ta(e,"slot-scope"))&&(e.slotScope=t);var n=Sa(e,"slot");if(n&&(e.slotTarget='""'===n?'"default"':n,e.slotTargetDynamic=!(!e.attrsMap[":slot"]&&!e.attrsMap["v-bind:slot"]),"template"===e.tag||e.slotScope||Pa(e,"slot",n,function(e,t){return e.rawAttrsMap[":"+t]||e.rawAttrsMap["v-bind:"+t]||e.rawAttrsMap[t]}(e,"slot"))),"template"===e.tag){var a=Da(e,Ji);if(a){var r=so(a),i=r.name,o=r.dynamic;e.slotTarget=i,e.slotTargetDynamic=o,e.slotScope=a.value||no}}else{var s=Da(e,Ji);if(s){var c=e.scopedSlots||(e.scopedSlots={}),l=so(s),d=l.name,p=l.dynamic,u=c[d]=ao("template",[],e);u.slotTarget=d,u.slotTargetDynamic=p,u.children=e.children.filter((function(e){if(!e.slotScope)return e.parent=u,!0})),u.slotScope=s.value||no,e.children=[],e.plain=!1}}}(e),function(e){"slot"===e.tag&&(e.slotName=Sa(e,"name"))}(e),function(e){var t;(t=Sa(e,"is"))&&(e.component=t),null!=Ta(e,"inline-template")&&(e.inlineTemplate=!0)}(e);for(var r=0;r-1"+("true"===i?":("+t+")":":_q("+t+","+i+")")),Ea(e,"change","var $$a="+t+",$$el=$event.target,$$c=$$el.checked?("+i+"):("+o+");if(Array.isArray($$a)){var $$v="+(a?"_n("+r+")":r)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+Na(t,"$$a.concat([$$v])")+")}else{$$i>-1&&("+Na(t,"$$a.slice(0,$$i).concat($$a.slice($$i+1))")+")}}else{"+Na(t,"$$c")+"}",null,!0)}(e,a,r);else if("input"===i&&"radio"===o)!function(e,t,n){var a=n&&n.number,r=Sa(e,"value")||"null";za(e,"checked","_q("+t+","+(r=a?"_n("+r+")":r)+")"),Ea(e,"change",Na(t,r),null,!0)}(e,a,r);else if("input"===i||"textarea"===i)!function(e,t,n){var a=e.attrsMap.type,r=n||{},i=r.lazy,o=r.number,s=r.trim,c=!i&&"range"!==a,l=i?"change":"range"===a?Ha:"input",d="$event.target.value";s&&(d="$event.target.value.trim()"),o&&(d="_n("+d+")");var p=Na(t,d);c&&(p="if($event.target.composing)return;"+p),za(e,"value","("+t+")"),Ea(e,l,p,null,!0),(s||o)&&Ea(e,"blur","$forceUpdate()")}(e,a,r);else if(!R.isReservedTag(i))return La(e,a,r),!1;return!0},text:function(e,t){t.value&&za(e,"textContent","_s("+t.value+")",t)},html:function(e,t){t.value&&za(e,"innerHTML","_s("+t.value+")",t)}},isPreTag:function(e){return"pre"===e},isUnaryTag:vi,mustUseProp:An,canBeLeftOpenTag:mi,isReservedTag:Hn,getTagNamespace:Wn,staticKeys:function(e){return e.reduce((function(e,t){return e.concat(t.staticKeys||[])}),[]).join(",")}(ho)},go=w((function(e){return m("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(e?","+e:""))}));var yo=/^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/,_o=/\([^)]*?\);*$/,wo=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,xo={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},ko={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},Co=function(e){return"if("+e+")return null;"},Oo={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:Co("$event.target !== $event.currentTarget"),ctrl:Co("!$event.ctrlKey"),shift:Co("!$event.shiftKey"),alt:Co("!$event.altKey"),meta:Co("!$event.metaKey"),left:Co("'button' in $event && $event.button !== 0"),middle:Co("'button' in $event && $event.button !== 1"),right:Co("'button' in $event && $event.button !== 2")};function $o(e,t){var n=t?"nativeOn:":"on:",a="",r="";for(var i in e){var o=zo(e[i]);e[i]&&e[i].dynamic?r+=i+","+o+",":a+='"'+i+'":'+o+","}return a="{"+a.slice(0,-1)+"}",r?n+"_d("+a+",["+r.slice(0,-1)+"])":n+a}function zo(e){if(!e)return"function(){}";if(Array.isArray(e))return"["+e.map((function(e){return zo(e)})).join(",")+"]";var t=wo.test(e.value),n=yo.test(e.value),a=wo.test(e.value.replace(_o,""));if(e.modifiers){var r="",i="",o=[];for(var s in e.modifiers)if(Oo[s])i+=Oo[s],xo[s]&&o.push(s);else if("exact"===s){var c=e.modifiers;i+=Co(["ctrl","shift","alt","meta"].filter((function(e){return!c[e]})).map((function(e){return"$event."+e+"Key"})).join("||"))}else o.push(s);return o.length&&(r+=function(e){return"if(!$event.type.indexOf('key')&&"+e.map(Po).join("&&")+")return null;"}(o)),i&&(r+=i),"function($event){"+r+(t?"return "+e.value+"($event)":n?"return ("+e.value+")($event)":a?"return "+e.value:e.value)+"}"}return t||n?e.value:"function($event){"+(a?"return "+e.value:e.value)+"}"}function Po(e){var t=parseInt(e,10);if(t)return"$event.keyCode!=="+t;var n=xo[e],a=ko[e];return"_k($event.keyCode,"+JSON.stringify(e)+","+JSON.stringify(n)+",$event.key,"+JSON.stringify(a)+")"}var Io={on:function(e,t){e.wrapListeners=function(e){return"_g("+e+","+t.value+")"}},bind:function(e,t){e.wrapData=function(n){return"_b("+n+",'"+e.tag+"',"+t.value+","+(t.modifiers&&t.modifiers.prop?"true":"false")+(t.modifiers&&t.modifiers.sync?",true":"")+")"}},cloak:A},jo=function(e){this.options=e,this.warn=e.warn||Oa,this.transforms=$a(e.modules,"transformCode"),this.dataGenFns=$a(e.modules,"genData"),this.directives=I(I({},Io),e.directives);var t=e.isReservedTag||E;this.maybeComponent=function(e){return!!e.component||!t(e.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function Ao(e,t){var n=new jo(t);return{render:"with(this){return "+(e?Eo(e,n):'_c("div")')+"}",staticRenderFns:n.staticRenderFns}}function Eo(e,t){if(e.parent&&(e.pre=e.pre||e.parent.pre),e.staticRoot&&!e.staticProcessed)return So(e,t);if(e.once&&!e.onceProcessed)return To(e,t);if(e.for&&!e.forProcessed)return Fo(e,t);if(e.if&&!e.ifProcessed)return Do(e,t);if("template"!==e.tag||e.slotTarget||t.pre){if("slot"===e.tag)return function(e,t){var n=e.slotName||'"default"',a=Ro(e,t),r="_t("+n+(a?","+a:""),i=e.attrs||e.dynamicAttrs?Uo((e.attrs||[]).concat(e.dynamicAttrs||[]).map((function(e){return{name:k(e.name),value:e.value,dynamic:e.dynamic}}))):null,o=e.attrsMap["v-bind"];return!i&&!o||a||(r+=",null"),i&&(r+=","+i),o&&(r+=(i?"":",null")+","+o),r+")"}(e,t);var n;if(e.component)n=function(e,t,n){var a=t.inlineTemplate?null:Ro(t,n,!0);return"_c("+e+","+Lo(t,n)+(a?","+a:"")+")"}(e.component,e,t);else{var a;(!e.plain||e.pre&&t.maybeComponent(e))&&(a=Lo(e,t));var r=e.inlineTemplate?null:Ro(e,t,!0);n="_c('"+e.tag+"'"+(a?","+a:"")+(r?","+r:"")+")"}for(var i=0;i>>0}(o):"")+")"}(e,e.scopedSlots,t)+","),e.model&&(n+="model:{value:"+e.model.value+",callback:"+e.model.callback+",expression:"+e.model.expression+"},"),e.inlineTemplate){var i=function(e,t){var n=e.children[0];if(n&&1===n.type){var a=Ao(n,t.options);return"inlineTemplate:{render:function(){"+a.render+"},staticRenderFns:["+a.staticRenderFns.map((function(e){return"function(){"+e+"}"})).join(",")+"]}"}}(e,t);i&&(n+=i+",")}return n=n.replace(/,$/,"")+"}",e.dynamicAttrs&&(n="_b("+n+',"'+e.tag+'",'+Uo(e.dynamicAttrs)+")"),e.wrapData&&(n=e.wrapData(n)),e.wrapListeners&&(n=e.wrapListeners(n)),n}function No(e){return 1===e.type&&("slot"===e.tag||e.children.some(No))}function Mo(e,t){var n=e.attrsMap["slot-scope"];if(e.if&&!e.ifProcessed&&!n)return Do(e,t,Mo,"null");if(e.for&&!e.forProcessed)return Fo(e,t,Mo);var a=e.slotScope===no?"":String(e.slotScope),r="function("+a+"){return "+("template"===e.tag?e.if&&n?"("+e.if+")?"+(Ro(e,t)||"undefined")+":undefined":Ro(e,t)||"undefined":Eo(e,t))+"}",i=a?"":",proxy:true";return"{key:"+(e.slotTarget||'"default"')+",fn:"+r+i+"}"}function Ro(e,t,n,a,r){var i=e.children;if(i.length){var o=i[0];if(1===i.length&&o.for&&"template"!==o.tag&&"slot"!==o.tag){var s=n?t.maybeComponent(o)?",1":",0":"";return""+(a||Eo)(o,t)+s}var c=n?function(e,t){for(var n=0,a=0;a]*>)","i")),u=e.replace(p,(function(e,n,a){return l=a.length,zi(d)||"noscript"===d||(n=n.replace(//g,"$1").replace(//g,"$1")),Si(d,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""}));c+=e.length-u.length,e=u,$(d,c-l,c)}else{var f=e.indexOf("<");if(0===f){if(Oi.test(e)){var v=e.indexOf("--\x3e");if(v>=0){t.shouldKeepComment&&t.comment(e.substring(4,v),c,c+v+3),k(v+3);continue}}if($i.test(e)){var m=e.indexOf("]>");if(m>=0){k(m+2);continue}}var h=e.match(Ci);if(h){k(h[0].length);continue}var b=e.match(ki);if(b){var g=c;k(b[0].length),$(b[1],g,c);continue}var y=C();if(y){O(y),Si(y.tagName,e)&&k(1);continue}}var _=void 0,w=void 0,x=void 0;if(f>=0){for(w=e.slice(f);!(ki.test(w)||wi.test(w)||Oi.test(w)||$i.test(w)||(x=w.indexOf("<",1))<0);)f+=x,w=e.slice(f);_=e.substring(0,f)}f<0&&(_=e),_&&k(_.length),t.chars&&_&&t.chars(_,c-_.length,c)}if(e===n){t.chars&&t.chars(e);break}}function k(t){c+=t,e=e.substring(t)}function C(){var t=e.match(wi);if(t){var n,a,r={tagName:t[1],attrs:[],start:c};for(k(t[0].length);!(n=e.match(xi))&&(a=e.match(gi)||e.match(bi));)a.start=c,k(a[0].length),a.end=c,r.attrs.push(a);if(n)return r.unarySlash=n[1],k(n[0].length),r.end=c,r}}function O(e){var n=e.tagName,c=e.unarySlash;i&&("p"===a&&hi(n)&&$(a),s(n)&&a===n&&$(n));for(var l=o(n)||!!c,d=e.attrs.length,p=new Array(d),u=0;u=0&&r[o].lowerCasedTag!==s;o--);else o=0;if(o>=0){for(var l=r.length-1;l>=o;l--)t.end&&t.end(r[l].tag,n,i);r.length=o,a=o&&r[o-1].tag}else"br"===s?t.start&&t.start(e,[],!0,n,i):"p"===s&&(t.start&&t.start(e,[],!1,n,i),t.end&&t.end(e,n,i))}$()}(e,{warn:Di,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,outputSourceRange:t.outputSourceRange,start:function(e,i,o,d,p){var u=a&&a.ns||Vi(e);K&&"svg"===u&&(i=function(e){for(var t=[],n=0;nc&&(s.push(i=e.slice(c,r)),o.push(JSON.stringify(i)));var l=ka(a[1].trim());o.push("_s("+l+")"),s.push({"@binding":l}),c=r+a[0].length}return c':'
',Zo.innerHTML.indexOf(" ")>0}var Jo=!!W&&Xo(!1),Qo=!!W&&Xo(!0),es=w((function(e){var t=Yn(e);return t&&t.innerHTML})),ts=xn.prototype.$mount;xn.prototype.$mount=function(e,t){if((e=e&&Yn(e))===document.body||e===document.documentElement)return this;var n=this.$options;if(!n.render){var a=n.template;if(a)if("string"==typeof a)"#"===a.charAt(0)&&(a=es(a));else{if(!a.nodeType)return this;a=a.innerHTML}else e&&(a=function(e){if(e.outerHTML)return e.outerHTML;var t=document.createElement("div");return t.appendChild(e.cloneNode(!0)),t.innerHTML}(e));if(a){var r=Ko(a,{outputSourceRange:!1,shouldDecodeNewlines:Jo,shouldDecodeNewlinesForHref:Qo,delimiters:n.delimiters,comments:n.comments},this),i=r.render,o=r.staticRenderFns;n.render=i,n.staticRenderFns=o}}return ts.call(this,e,t)},xn.compile=Ko,e.exports=xn}).call(this,n(11),n(104).setImmediate)},function(e,t,n){(function(e,t){!function(e,n){"use strict";if(!e.setImmediate){var a,r,i,o,s,c=1,l={},d=!1,p=e.document,u=Object.getPrototypeOf&&Object.getPrototypeOf(e);u=u&&u.setTimeout?u:e,"[object process]"==={}.toString.call(e.process)?a=function(e){t.nextTick((function(){v(e)}))}:!function(){if(e.postMessage&&!e.importScripts){var t=!0,n=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=n,t}}()?e.MessageChannel?((i=new MessageChannel).port1.onmessage=function(e){v(e.data)},a=function(e){i.port2.postMessage(e)}):p&&"onreadystatechange"in p.createElement("script")?(r=p.documentElement,a=function(e){var t=p.createElement("script");t.onreadystatechange=function(){v(e),t.onreadystatechange=null,r.removeChild(t),t=null},r.appendChild(t)}):a=function(e){setTimeout(v,0,e)}:(o="setImmediate$"+Math.random()+"$",s=function(t){t.source===e&&"string"==typeof t.data&&0===t.data.indexOf(o)&&v(+t.data.slice(o.length))},e.addEventListener?e.addEventListener("message",s,!1):e.attachEvent("onmessage",s),a=function(t){e.postMessage(o+t,"*")}),u.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),n=0;n=0;--r){var i=this.tryEntries[r],o=i.completion;if("root"===i.tryLoc)return a("end");if(i.tryLoc<=this.prev){var s=n.call(i,"catchLoc"),c=n.call(i,"finallyLoc");if(s&&c){if(this.prev=0;--a){var r=this.tryEntries[a];if(r.tryLoc<=this.prev&&n.call(r,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),w(n),l}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var a=n.completion;if("throw"===a.type){var r=a.arg;w(n)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:k(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),l}},e}(e.exports);try{regeneratorRuntime=a}catch(e){Function("r","regeneratorRuntime = r")(a)}},function(e,t,n){"use strict";var a=n(12);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,"#auth[data-v-31af8372] {\n height: 100%;\n width: 100%;\n display: table;\n}\n",""])},function(e,t){e.exports=function(e){var t="undefined"!=typeof window&&window.location;if(!t)throw new Error("fixUrls requires window.location");if(!e||"string"!=typeof e)return e;var n=t.protocol+"//"+t.host,a=n+t.pathname.replace(/\/[^\/]*$/,"/");return e.replace(/url\s*\(((?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)\)/gi,(function(e,t){var r,i=t.trim().replace(/^"(.*)"$/,(function(e,t){return t})).replace(/^'(.*)'$/,(function(e,t){return t}));return/^(#|data:|http:\/\/|https:\/\/|file:\/\/\/|\s*$)/i.test(i)?e:(r=0===i.indexOf("//")?i:0===i.indexOf("/")?n+i:a+i.replace(/^\.\//,""),"url("+JSON.stringify(r)+")")}))}},function(e,t,n){"use strict";var a=n(13);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".button[data-v-59e2dfc0] {\n cursor: pointer;\n border-radius: 8px;\n text-decoration: none;\n padding: 12px 32px;\n display: inline-block;\n margin-left: 15px;\n margin-right: 15px;\n white-space: nowrap;\n transition: 150ms all ease;\n background: transparent;\n}\n.button .text-label[data-v-59e2dfc0] {\n transition: 150ms all ease;\n font-size: 1.0625em;\n font-weight: 800;\n line-height: 0;\n}\n.button .icon[data-v-59e2dfc0] {\n margin-left: 12px;\n font-size: 1em;\n}\n.button.solid[data-v-59e2dfc0] {\n background: #00BC7E;\n border: 2px solid #00BC7E;\n}\n.button.solid .text-label[data-v-59e2dfc0] {\n color: white;\n}\n.button.outline[data-v-59e2dfc0] {\n border: 2px solid #1c1d1f;\n}\n.button.outline .text-label[data-v-59e2dfc0] {\n color: #1c1d1f;\n}\n.button.outline .icon path[data-v-59e2dfc0] {\n fill: #00BC7E;\n}\n.button.outline[data-v-59e2dfc0]:hover {\n border-color: #00BC7E;\n}\n.button.outline:hover .text-label[data-v-59e2dfc0] {\n color: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.button.outline[data-v-59e2dfc0] {\n background: #111314;\n border-color: #bec6cf;\n}\n.button.outline .text-label[data-v-59e2dfc0] {\n color: #bec6cf;\n}\n}\n.sync-alt[data-v-59e2dfc0] {\n -webkit-animation: spin-data-v-59e2dfc0 1s linear infinite;\n animation: spin-data-v-59e2dfc0 1s linear infinite;\n}\n@-webkit-keyframes spin-data-v-59e2dfc0 {\n0% {\n transform: rotate(0);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spin-data-v-59e2dfc0 {\n0% {\n transform: rotate(0);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(14);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form.inline-form[data-v-1e679511] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-1e679511] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-1e679511] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-1e679511] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-1e679511] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-1e679511]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-1e679511] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1c1d1f;\n}\n.form.block-form .button[data-v-1e679511] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-1e679511] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-1e679511] {\n width: 100%;\n}\ntextarea[data-v-1e679511],\ninput[type="password"][data-v-1e679511],\ninput[type="text"][data-v-1e679511],\ninput[type="email"][data-v-1e679511] {\n background: #f6f6f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-1e679511],\ninput[type="password"].is-error[data-v-1e679511],\ninput[type="text"].is-error[data-v-1e679511],\ninput[type="email"].is-error[data-v-1e679511] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-1e679511]::-webkit-input-placeholder, input[type="password"][data-v-1e679511]::-webkit-input-placeholder, input[type="text"][data-v-1e679511]::-webkit-input-placeholder, input[type="email"][data-v-1e679511]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-1e679511]::-moz-placeholder, input[type="password"][data-v-1e679511]::-moz-placeholder, input[type="text"][data-v-1e679511]::-moz-placeholder, input[type="email"][data-v-1e679511]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-1e679511]:-ms-input-placeholder, input[type="password"][data-v-1e679511]:-ms-input-placeholder, input[type="text"][data-v-1e679511]:-ms-input-placeholder, input[type="email"][data-v-1e679511]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-1e679511]::-ms-input-placeholder, input[type="password"][data-v-1e679511]::-ms-input-placeholder, input[type="text"][data-v-1e679511]::-ms-input-placeholder, input[type="email"][data-v-1e679511]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-1e679511]::placeholder,\ninput[type="password"][data-v-1e679511]::placeholder,\ninput[type="text"][data-v-1e679511]::placeholder,\ninput[type="email"][data-v-1e679511]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-1e679511]:focus,\ninput[type="password"][data-v-1e679511]:focus,\ninput[type="text"][data-v-1e679511]:focus,\ninput[type="email"][data-v-1e679511]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-1e679511],\ninput[type="password"][disabled][data-v-1e679511],\ninput[type="text"][disabled][data-v-1e679511],\ninput[type="email"][disabled][data-v-1e679511] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-1e679511] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-1e679511], .additional-link a[data-v-1e679511] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-1e679511]:hover, .additional-link a[data-v-1e679511]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-1e679511] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-1e679511], .form textarea[data-v-1e679511] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-1e679511] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-1e679511] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-1e679511] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-1e679511] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-1e679511] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-1e679511] {\n padding: 14px 32px;\n}\ntextarea[data-v-1e679511],\n input[type="password"][data-v-1e679511],\n input[type="text"][data-v-1e679511],\n input[type="email"][data-v-1e679511] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-1e679511] {\n color: #bec6cf;\n}\ntextarea[data-v-1e679511],\n input[type="password"][data-v-1e679511],\n input[type="text"][data-v-1e679511],\n input[type="email"][data-v-1e679511] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-1e679511]::-webkit-input-placeholder, input[type="password"][data-v-1e679511]::-webkit-input-placeholder, input[type="text"][data-v-1e679511]::-webkit-input-placeholder, input[type="email"][data-v-1e679511]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-1e679511]::-moz-placeholder, input[type="password"][data-v-1e679511]::-moz-placeholder, input[type="text"][data-v-1e679511]::-moz-placeholder, input[type="email"][data-v-1e679511]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-1e679511]:-ms-input-placeholder, input[type="password"][data-v-1e679511]:-ms-input-placeholder, input[type="text"][data-v-1e679511]:-ms-input-placeholder, input[type="email"][data-v-1e679511]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-1e679511]::-ms-input-placeholder, input[type="password"][data-v-1e679511]::-ms-input-placeholder, input[type="text"][data-v-1e679511]::-ms-input-placeholder, input[type="email"][data-v-1e679511]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-1e679511]::placeholder,\n input[type="password"][data-v-1e679511]::placeholder,\n input[type="text"][data-v-1e679511]::placeholder,\n input[type="email"][data-v-1e679511]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-1e679511],\n input[type="password"][disabled][data-v-1e679511],\n input[type="text"][disabled][data-v-1e679511],\n input[type="email"][disabled][data-v-1e679511] {\n color: #7d858c;\n}\n}\n.auth-form[data-v-1e679511] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-1e679511] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-1e679511] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-1e679511] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-1e679511] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-1e679511] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1c1d1f;\n}\n.auth-form h2[data-v-1e679511] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1c1d1f;\n}\n.auth-form .block-form[data-v-1e679511] {\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form .block-form .block-wrapper label[data-v-1e679511] {\n text-align: right;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-1e679511] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-1e679511] {\n width: 100%;\n}\n.auth-form h1[data-v-1e679511] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-1e679511] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-1e679511] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-1e679511] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-1e679511] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-1e679511] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-1e679511], .auth-form h2[data-v-1e679511], .auth-form .additional-link[data-v-1e679511] {\n color: #bec6cf;\n}\n}\n',""])},function(e,t,n){"use strict";var a=n(15);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form.inline-form[data-v-0e7baaa4] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-0e7baaa4] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-0e7baaa4] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-0e7baaa4] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-0e7baaa4] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-0e7baaa4]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-0e7baaa4] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1c1d1f;\n}\n.form.block-form .button[data-v-0e7baaa4] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-0e7baaa4] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-0e7baaa4] {\n width: 100%;\n}\ntextarea[data-v-0e7baaa4],\ninput[type="password"][data-v-0e7baaa4],\ninput[type="text"][data-v-0e7baaa4],\ninput[type="email"][data-v-0e7baaa4] {\n background: #f6f6f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-0e7baaa4],\ninput[type="password"].is-error[data-v-0e7baaa4],\ninput[type="text"].is-error[data-v-0e7baaa4],\ninput[type="email"].is-error[data-v-0e7baaa4] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-0e7baaa4]::-webkit-input-placeholder, input[type="password"][data-v-0e7baaa4]::-webkit-input-placeholder, input[type="text"][data-v-0e7baaa4]::-webkit-input-placeholder, input[type="email"][data-v-0e7baaa4]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-0e7baaa4]::-moz-placeholder, input[type="password"][data-v-0e7baaa4]::-moz-placeholder, input[type="text"][data-v-0e7baaa4]::-moz-placeholder, input[type="email"][data-v-0e7baaa4]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-0e7baaa4]:-ms-input-placeholder, input[type="password"][data-v-0e7baaa4]:-ms-input-placeholder, input[type="text"][data-v-0e7baaa4]:-ms-input-placeholder, input[type="email"][data-v-0e7baaa4]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-0e7baaa4]::-ms-input-placeholder, input[type="password"][data-v-0e7baaa4]::-ms-input-placeholder, input[type="text"][data-v-0e7baaa4]::-ms-input-placeholder, input[type="email"][data-v-0e7baaa4]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-0e7baaa4]::placeholder,\ninput[type="password"][data-v-0e7baaa4]::placeholder,\ninput[type="text"][data-v-0e7baaa4]::placeholder,\ninput[type="email"][data-v-0e7baaa4]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-0e7baaa4]:focus,\ninput[type="password"][data-v-0e7baaa4]:focus,\ninput[type="text"][data-v-0e7baaa4]:focus,\ninput[type="email"][data-v-0e7baaa4]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-0e7baaa4],\ninput[type="password"][disabled][data-v-0e7baaa4],\ninput[type="text"][disabled][data-v-0e7baaa4],\ninput[type="email"][disabled][data-v-0e7baaa4] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-0e7baaa4] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-0e7baaa4], .additional-link a[data-v-0e7baaa4] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-0e7baaa4]:hover, .additional-link a[data-v-0e7baaa4]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-0e7baaa4] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-0e7baaa4], .form textarea[data-v-0e7baaa4] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-0e7baaa4] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-0e7baaa4] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-0e7baaa4] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-0e7baaa4] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-0e7baaa4] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-0e7baaa4] {\n padding: 14px 32px;\n}\ntextarea[data-v-0e7baaa4],\n input[type="password"][data-v-0e7baaa4],\n input[type="text"][data-v-0e7baaa4],\n input[type="email"][data-v-0e7baaa4] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-0e7baaa4] {\n color: #bec6cf;\n}\ntextarea[data-v-0e7baaa4],\n input[type="password"][data-v-0e7baaa4],\n input[type="text"][data-v-0e7baaa4],\n input[type="email"][data-v-0e7baaa4] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-0e7baaa4]::-webkit-input-placeholder, input[type="password"][data-v-0e7baaa4]::-webkit-input-placeholder, input[type="text"][data-v-0e7baaa4]::-webkit-input-placeholder, input[type="email"][data-v-0e7baaa4]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0e7baaa4]::-moz-placeholder, input[type="password"][data-v-0e7baaa4]::-moz-placeholder, input[type="text"][data-v-0e7baaa4]::-moz-placeholder, input[type="email"][data-v-0e7baaa4]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0e7baaa4]:-ms-input-placeholder, input[type="password"][data-v-0e7baaa4]:-ms-input-placeholder, input[type="text"][data-v-0e7baaa4]:-ms-input-placeholder, input[type="email"][data-v-0e7baaa4]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0e7baaa4]::-ms-input-placeholder, input[type="password"][data-v-0e7baaa4]::-ms-input-placeholder, input[type="text"][data-v-0e7baaa4]::-ms-input-placeholder, input[type="email"][data-v-0e7baaa4]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0e7baaa4]::placeholder,\n input[type="password"][data-v-0e7baaa4]::placeholder,\n input[type="text"][data-v-0e7baaa4]::placeholder,\n input[type="email"][data-v-0e7baaa4]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-0e7baaa4],\n input[type="password"][disabled][data-v-0e7baaa4],\n input[type="text"][disabled][data-v-0e7baaa4],\n input[type="email"][disabled][data-v-0e7baaa4] {\n color: #7d858c;\n}\n}\n.auth-form[data-v-0e7baaa4] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-0e7baaa4] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-0e7baaa4] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-0e7baaa4] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-0e7baaa4] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-0e7baaa4] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1c1d1f;\n}\n.auth-form h2[data-v-0e7baaa4] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1c1d1f;\n}\n.auth-form .block-form[data-v-0e7baaa4] {\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form .block-form .block-wrapper label[data-v-0e7baaa4] {\n text-align: right;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-0e7baaa4] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-0e7baaa4] {\n width: 100%;\n}\n.auth-form h1[data-v-0e7baaa4] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-0e7baaa4] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-0e7baaa4] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-0e7baaa4] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-0e7baaa4] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-0e7baaa4] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-0e7baaa4], .auth-form h2[data-v-0e7baaa4], .auth-form .additional-link[data-v-0e7baaa4] {\n color: #bec6cf;\n}\n}\n',""])},function(e,t,n){"use strict";var a=n(16);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".button[data-v-3a42fd9f] {\n height: 42px;\n width: 42px;\n border-radius: 8px;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n text-align: center;\n cursor: pointer;\n white-space: nowrap;\n outline: none;\n border: none;\n}\n.button[data-v-3a42fd9f]:hover {\n background: #f6f6f6;\n}\n.button:hover path[data-v-3a42fd9f], .button:hover line[data-v-3a42fd9f], .button:hover polyline[data-v-3a42fd9f], .button:hover rect[data-v-3a42fd9f], .button:hover circle[data-v-3a42fd9f] {\n transition: 150ms all ease;\n stroke: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.button[data-v-3a42fd9f] {\n background: transparent;\n}\n.button[data-v-3a42fd9f]:hover {\n background: #1e2024;\n}\n.button path[data-v-3a42fd9f], .button line[data-v-3a42fd9f], .button polyline[data-v-3a42fd9f], .button rect[data-v-3a42fd9f], .button circle[data-v-3a42fd9f] {\n stroke: #bec6cf;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(17);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".progress-bar[data-v-3169894e] {\n width: 100%;\n height: 5px;\n background: #EBEBEB;\n margin-top: 5px;\n border-radius: 10px;\n}\n.progress-bar span[data-v-3169894e] {\n background: #00BC7E;\n display: block;\n height: 100%;\n border-radius: 10px;\n max-width: 100%;\n}\n@media (prefers-color-scheme: dark) {\n.progress-bar[data-v-3169894e] {\n background: #1e2024;\n}\n}\n@media only screen and (min-width: 680px) and (prefers-color-scheme: dark) {\n.progress-bar[data-v-3169894e] {\n background: #1e2024;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(18);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".info-panel-enter-active[data-v-14418e9a],\n.info-panel-leave-active[data-v-14418e9a] {\n transition: all 0.3s ease;\n}\n.info-panel-enter[data-v-14418e9a],\n.info-panel-leave-to[data-v-14418e9a] {\n opacity: 0;\n transform: translateY(-100%);\n}\n.upload-progress[data-v-14418e9a] {\n width: 100%;\n padding-bottom: 10px;\n position: relative;\n z-index: 1;\n}\n.upload-progress .progress-title[data-v-14418e9a] {\n font-weight: 700;\n text-align: center;\n}\n.upload-progress .progress-title span[data-v-14418e9a] {\n font-size: 0.875em;\n}\n@media (prefers-color-scheme: dark) {\n.progress-bar[data-v-14418e9a] {\n background: #1e2024;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(19);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".button[data-v-354943e0] {\n height: 42px;\n width: 42px;\n border-radius: 8px;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n text-align: center;\n cursor: pointer;\n white-space: nowrap;\n outline: none;\n border: none;\n transition: 150ms all ease;\n background: transparent;\n}\n.button[data-v-354943e0]:hover {\n background: #f6f6f6;\n}\n.button:hover path[data-v-354943e0], .button:hover line[data-v-354943e0], .button:hover polyline[data-v-354943e0], .button:hover rect[data-v-354943e0], .button:hover circle[data-v-354943e0] {\n transition: 150ms all ease;\n stroke: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.button[data-v-354943e0] {\n background: transparent;\n}\n.button[data-v-354943e0]:hover {\n background: #1e2024;\n}\n.button path[data-v-354943e0], .button line[data-v-354943e0], .button polyline[data-v-354943e0], .button rect[data-v-354943e0], .button circle[data-v-354943e0] {\n stroke: #bec6cf;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(20);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".search-bar[data-v-01d307b9] {\n position: relative;\n}\n.search-bar input[data-v-01d307b9] {\n background: transparent;\n border-radius: 8px;\n outline: 0;\n padding: 9px 20px 9px 43px;\n font-weight: 400;\n font-size: 1em;\n min-width: 175px;\n transition: 0.15s all ease;\n border: 1px solid white;\n -webkit-appearance: none;\n}\n.search-bar input[data-v-01d307b9]::-webkit-input-placeholder {\n color: #1c1d1f;\n font-size: 0.875em;\n font-weight: 500;\n}\n.search-bar input[data-v-01d307b9]::-moz-placeholder {\n color: #1c1d1f;\n font-size: 0.875em;\n font-weight: 500;\n}\n.search-bar input[data-v-01d307b9]:-ms-input-placeholder {\n color: #1c1d1f;\n font-size: 0.875em;\n font-weight: 500;\n}\n.search-bar input[data-v-01d307b9]::-ms-input-placeholder {\n color: #1c1d1f;\n font-size: 0.875em;\n font-weight: 500;\n}\n.search-bar input[data-v-01d307b9]::placeholder {\n color: #1c1d1f;\n font-size: 0.875em;\n font-weight: 500;\n}\n.search-bar input[data-v-01d307b9]:focus {\n border: 1px solid #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\n.search-bar input:focus + .icon path[data-v-01d307b9] {\n fill: #00BC7E;\n}\n.search-bar .icon[data-v-01d307b9] {\n position: absolute;\n top: 0;\n left: 0;\n padding: 11px 15px;\n}\n.search-bar .icon .pointer[data-v-01d307b9] {\n cursor: pointer;\n}\n@media only screen and (max-width: 1024px) {\n.search-bar input[data-v-01d307b9] {\n max-width: 190px;\n padding-right: 0;\n}\n}\n@media only screen and (max-width: 690px) {\n.search-bar input[data-v-01d307b9] {\n min-width: initial;\n width: 100%;\n max-width: initial;\n padding: 9px 20px 9px 30px;\n}\n.search-bar input[data-v-01d307b9]:focus {\n border: 1px solid transparent;\n box-shadow: none;\n}\n.search-bar .icon[data-v-01d307b9] {\n padding: 11px 15px 11px 0;\n}\n}\n@media (prefers-color-scheme: dark) {\n.search-bar input[data-v-01d307b9] {\n border-color: transparent;\n color: #bec6cf;\n}\n.search-bar input[data-v-01d307b9]::-webkit-input-placeholder {\n color: #7d858c;\n}\n.search-bar input[data-v-01d307b9]::-moz-placeholder {\n color: #7d858c;\n}\n.search-bar input[data-v-01d307b9]:-ms-input-placeholder {\n color: #7d858c;\n}\n.search-bar input[data-v-01d307b9]::-ms-input-placeholder {\n color: #7d858c;\n}\n.search-bar input[data-v-01d307b9]::placeholder {\n color: #7d858c;\n}\n.search-bar .icon svg path[data-v-01d307b9] {\n fill: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(21);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".toolbar-wrapper[data-v-76e7a57a] {\n padding-top: 10px;\n padding-bottom: 10px;\n display: flex;\n position: relative;\n z-index: 2;\n}\n.toolbar-wrapper > div[data-v-76e7a57a] {\n flex-grow: 1;\n align-self: center;\n white-space: nowrap;\n}\n.directory-name[data-v-76e7a57a] {\n vertical-align: middle;\n font-size: 1.0625em;\n color: #1c1d1f;\n font-weight: 700;\n max-width: 220px;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n}\n.icon-back[data-v-76e7a57a] {\n vertical-align: middle;\n cursor: pointer;\n margin-right: 6px;\n opacity: 0.15;\n pointer-events: none;\n transition: 150ms all ease;\n}\n.icon-back.is-active[data-v-76e7a57a] {\n opacity: 1;\n pointer-events: initial;\n}\n.toolbar-go-back[data-v-76e7a57a] {\n cursor: pointer;\n}\n.toolbar-go-back .folder-options[data-v-76e7a57a] {\n vertical-align: middle;\n margin-left: 6px;\n padding: 1px 4px;\n line-height: 0;\n border-radius: 3px;\n transition: 150ms all ease;\n}\n.toolbar-go-back .folder-options svg circle[data-v-76e7a57a] {\n transition: 150ms all ease;\n}\n.toolbar-go-back .folder-options[data-v-76e7a57a]:hover {\n background: #f6f6f6;\n}\n.toolbar-go-back .folder-options:hover svg circle[data-v-76e7a57a] {\n stroke: #00BC7E;\n}\n.toolbar-go-back .folder-options .icon-more[data-v-76e7a57a] {\n vertical-align: middle;\n}\n.toolbar-go-back .back-directory-title[data-v-76e7a57a] {\n font-size: 0.9375em;\n line-height: 1;\n font-weight: 700;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n vertical-align: middle;\n color: #1c1d1f;\n}\n.toolbar-position[data-v-76e7a57a] {\n text-align: center;\n}\n.toolbar-position span[data-v-76e7a57a] {\n font-size: 1.0625em;\n font-weight: 600;\n}\n.toolbar-tools[data-v-76e7a57a] {\n text-align: right;\n}\n.toolbar-tools .toolbar-button-wrapper[data-v-76e7a57a] {\n margin-left: 28px;\n display: inline-block;\n vertical-align: middle;\n}\n.toolbar-tools .toolbar-button-wrapper[data-v-76e7a57a]:first-child {\n margin-left: 0 !important;\n}\n.toolbar-tools .button[data-v-76e7a57a] {\n margin-left: 5px;\n}\n.toolbar-tools .button.active[data-v-76e7a57a] svg line, .toolbar-tools .button.active[data-v-76e7a57a] svg circle {\n stroke: #00BC7E;\n}\n.toolbar-tools .button.is-inactive[data-v-76e7a57a] {\n opacity: 0.25;\n pointer-events: none;\n}\n.toolbar-tools .button[data-v-76e7a57a]:first-child {\n margin-left: 0;\n}\n@media only screen and (max-width: 1024px) {\n.toolbar-go-back .back-directory-title[data-v-76e7a57a] {\n max-width: 120px;\n}\n.toolbar-tools .button[data-v-76e7a57a] {\n margin-left: 0;\n height: 40px;\n width: 40px;\n}\n.toolbar-tools .toolbar-button-wrapper[data-v-76e7a57a] {\n margin-left: 25px;\n}\n}\n@media only screen and (max-width: 960px) {\n#desktop-toolbar[data-v-76e7a57a] {\n display: none;\n}\n}\n@media (prefers-color-scheme: dark) {\n.toolbar .directory-name[data-v-76e7a57a] {\n color: #bec6cf;\n}\n.toolbar-go-back .back-directory-title[data-v-76e7a57a] {\n color: #bec6cf;\n}\n.toolbar-go-back .folder-options[data-v-76e7a57a]:hover {\n background: #1e2024;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(22);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".show-actions[data-v-1fb37cfa] {\n cursor: pointer;\n padding: 4px 26px;\n}\n.show-actions .icon-action[data-v-1fb37cfa] {\n font-size: 0.75em;\n}\n.show-actions path[data-v-1fb37cfa] {\n fill: #00BC7E;\n}\n.file-wrapper[data-v-1fb37cfa] {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n position: relative;\n text-align: center;\n display: inline-block;\n vertical-align: text-top;\n width: 100%;\n}\n.file-wrapper .item-name[data-v-1fb37cfa] {\n display: block;\n padding-left: 10px;\n padding-right: 10px;\n line-height: 20px;\n}\n.file-wrapper .item-name .item-size[data-v-1fb37cfa],\n.file-wrapper .item-name .item-length[data-v-1fb37cfa] {\n font-size: 0.6875em;\n font-weight: 400;\n color: rgba(28, 29, 31, 0.7);\n display: inline-block;\n}\n.file-wrapper .item-name .item-info[data-v-1fb37cfa] {\n display: block;\n line-height: 1;\n}\n.file-wrapper .item-name .item-shared[data-v-1fb37cfa] {\n display: inline-block;\n}\n.file-wrapper .item-name .item-shared .label[data-v-1fb37cfa] {\n font-size: 0.75em;\n font-weight: 400;\n color: #00BC7E;\n}\n.file-wrapper .item-name .item-shared .shared-icon[data-v-1fb37cfa] {\n vertical-align: middle;\n}\n.file-wrapper .item-name .item-shared .shared-icon path[data-v-1fb37cfa], .file-wrapper .item-name .item-shared .shared-icon circle[data-v-1fb37cfa], .file-wrapper .item-name .item-shared .shared-icon line[data-v-1fb37cfa] {\n stroke: #00BC7E;\n}\n.file-wrapper .item-name .name[data-v-1fb37cfa] {\n color: #1c1d1f;\n font-size: 0.875em;\n font-weight: 700;\n max-height: 40px;\n overflow: hidden;\n text-overflow: ellipsis;\n word-break: break-all;\n}\n.file-wrapper .item-name .name[contenteditable][data-v-1fb37cfa] {\n -webkit-user-select: text;\n -moz-user-select: text;\n -ms-user-select: text;\n user-select: text;\n}\n.file-wrapper .item-name .name[contenteditable='true'][data-v-1fb37cfa]:hover {\n text-decoration: underline;\n}\n.file-wrapper .item-name .name.actived[data-v-1fb37cfa] {\n max-height: initial;\n}\n.file-wrapper.selected .file-item[data-v-1fb37cfa] {\n background: #f6f6f6;\n}\n.file-wrapper .file-item[data-v-1fb37cfa] {\n border: 2px dashed transparent;\n width: 165px;\n margin: 0 auto;\n cursor: pointer;\n position: relative;\n padding: 15px 0;\n}\n.file-wrapper .file-item.is-dragenter[data-v-1fb37cfa] {\n border: 2px dashed #00BC7E;\n border-radius: 8px;\n}\n.file-wrapper .file-item[data-v-1fb37cfa]:hover, .file-wrapper .file-item.is-clicked[data-v-1fb37cfa] {\n border-radius: 8px;\n background: #f6f6f6;\n}\n.file-wrapper .file-item:hover .item-name .name[data-v-1fb37cfa], .file-wrapper .file-item.is-clicked .item-name .name[data-v-1fb37cfa] {\n color: #00BC7E;\n}\n.file-wrapper .icon-item[data-v-1fb37cfa] {\n text-align: center;\n position: relative;\n height: 110px;\n margin-bottom: 20px;\n display: flex;\n align-items: center;\n}\n.file-wrapper .icon-item .file-link[data-v-1fb37cfa] {\n display: block;\n}\n.file-wrapper .icon-item .file-icon[data-v-1fb37cfa] {\n font-size: 6.25em;\n margin: 0 auto;\n}\n.file-wrapper .icon-item .file-icon path[data-v-1fb37cfa] {\n fill: #fafafc;\n stroke: #dfe0e8;\n stroke-width: 1;\n}\n.file-wrapper .icon-item .file-icon-text[data-v-1fb37cfa] {\n margin: 5px auto 0;\n position: absolute;\n text-align: center;\n left: 0;\n right: 0;\n color: #00BC7E;\n font-size: 0.75em;\n font-weight: 600;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n max-width: 65px;\n max-height: 20px;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.file-wrapper .icon-item .image[data-v-1fb37cfa] {\n max-width: 95%;\n -o-object-fit: cover;\n object-fit: cover;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n height: 110px;\n border-radius: 5px;\n margin: 0 auto;\n pointer-events: none;\n}\n.file-wrapper .icon-item .folder-icon[data-v-1fb37cfa] {\n align-items: flex-end;\n font-size: 5em;\n margin: 0 auto;\n}\n.file-wrapper .icon-item .folder-icon path[data-v-1fb37cfa] {\n fill: #00BC7E;\n}\n.file-wrapper .icon-item .folder-icon.is-deleted path[data-v-1fb37cfa] {\n fill: #EBEBEB;\n}\n@media only screen and (max-width: 960px) {\n.file-wrapper .icon-item[data-v-1fb37cfa] {\n margin-bottom: 15px;\n}\n}\n@media only screen and (max-width: 690px) {\n.file-wrapper .file-item[data-v-1fb37cfa] {\n width: 120px;\n}\n.file-wrapper .icon-item[data-v-1fb37cfa] {\n margin-bottom: 10px;\n height: 90px;\n}\n.file-wrapper .icon-item .file-icon[data-v-1fb37cfa] {\n font-size: 4.6875em;\n}\n.file-wrapper .icon-item .file-icon-text[data-v-1fb37cfa] {\n font-size: 0.75em;\n}\n.file-wrapper .icon-item .folder-icon[data-v-1fb37cfa] {\n font-size: 4.6875em;\n margin-top: 0;\n margin-bottom: 0;\n}\n.file-wrapper .icon-item .image[data-v-1fb37cfa] {\n width: 90px;\n height: 90px;\n}\n.file-wrapper .item-name .name[data-v-1fb37cfa] {\n font-size: 0.8125em;\n line-height: .9;\n max-height: 30px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.file-wrapper .icon-item .file-icon path[data-v-1fb37cfa] {\n fill: #1e2024;\n stroke: #2F3C54;\n}\n.file-wrapper .icon-item .folder-icon.is-deleted path[data-v-1fb37cfa] {\n fill: #2a2c32;\n}\n.file-wrapper .file-item[data-v-1fb37cfa]:hover, .file-wrapper .file-item.is-clicked[data-v-1fb37cfa] {\n background: #1e2024;\n}\n.file-wrapper .file-item:hover .file-icon path[data-v-1fb37cfa], .file-wrapper .file-item.is-clicked .file-icon path[data-v-1fb37cfa] {\n fill: #111314;\n}\n.file-wrapper .item-name .name[data-v-1fb37cfa] {\n color: #bec6cf;\n}\n.file-wrapper .item-name .item-size[data-v-1fb37cfa],\n .file-wrapper .item-name .item-length[data-v-1fb37cfa] {\n color: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(23);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".mobile-toolbar[data-v-d0931b78] {\n background: white;\n text-align: center;\n display: none;\n padding: 10px 0;\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 6;\n}\n.mobile-toolbar > div[data-v-d0931b78] {\n width: 100%;\n flex-grow: 1;\n align-self: center;\n white-space: nowrap;\n}\n.mobile-toolbar .go-back-button[data-v-d0931b78] {\n text-align: left;\n flex: 1;\n}\n.mobile-toolbar .go-back-button .icon-back[data-v-d0931b78] {\n vertical-align: middle;\n cursor: pointer;\n opacity: 0;\n visibility: hidden;\n margin-top: -2px;\n}\n.mobile-toolbar .go-back-button .icon-back.is-visible[data-v-d0931b78] {\n opacity: 1;\n visibility: visible;\n}\n.mobile-toolbar .directory-name[data-v-d0931b78] {\n line-height: 1;\n text-align: center;\n width: 100%;\n vertical-align: middle;\n font-size: 1em;\n color: #1c1d1f;\n font-weight: 700;\n max-width: 220px;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n}\n.mobile-toolbar .more-actions-button[data-v-d0931b78] {\n flex: 1;\n text-align: right;\n position: relative;\n}\n.mobile-toolbar .more-actions-button .tap-area[data-v-d0931b78] {\n display: inline-block;\n padding: 10px;\n position: absolute;\n right: -10px;\n top: -20px;\n}\n.mobile-toolbar .more-actions-button .tap-area path[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area line[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area polyline[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area rect[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area circle[data-v-d0931b78] {\n stroke: #1c1d1f;\n}\n@media only screen and (max-width: 960px) {\n.mobile-toolbar[data-v-d0931b78] {\n display: flex;\n}\n}\n@media (prefers-color-scheme: dark) {\n.mobile-toolbar[data-v-d0931b78] {\n background: #111314;\n}\n.mobile-toolbar .directory-name[data-v-d0931b78] {\n color: #bec6cf;\n}\n.mobile-toolbar .more-actions-button .tap-area path[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area line[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area polyline[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area rect[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area circle[data-v-d0931b78] {\n stroke: #bec6cf;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(24);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".mobile-action-button[data-v-160992a2] {\n background: #f6f6f6;\n margin-right: 15px;\n border-radius: 8px;\n padding: 7px 10px;\n cursor: pointer;\n border: none;\n}\n.mobile-action-button .flex[data-v-160992a2] {\n display: flex;\n align-items: center;\n}\n.mobile-action-button .icon[data-v-160992a2] {\n vertical-align: middle;\n margin-right: 10px;\n font-size: 0.875em;\n}\n.mobile-action-button .label[data-v-160992a2] {\n vertical-align: middle;\n font-size: 0.875em;\n font-weight: 700;\n color: #1c1d1f;\n}\n@media (prefers-color-scheme: dark) {\n.mobile-action-button[data-v-160992a2] {\n background: #1e2024;\n}\n.mobile-action-button path[data-v-160992a2], .mobile-action-button line[data-v-160992a2], .mobile-action-button polyline[data-v-160992a2], .mobile-action-button rect[data-v-160992a2], .mobile-action-button circle[data-v-160992a2] {\n stroke: #00BC7E;\n}\n.mobile-action-button .label[data-v-160992a2] {\n color: #bec6cf;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(25);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".mobile-action-button[data-v-39df5540] {\n background: #f6f6f6;\n margin-right: 15px;\n border-radius: 8px;\n padding: 7px 10px;\n cursor: pointer;\n border: none;\n transition: 150ms all ease;\n}\n.mobile-action-button .flex[data-v-39df5540] {\n display: flex;\n align-items: center;\n}\n.mobile-action-button .icon[data-v-39df5540] {\n margin-right: 10px;\n font-size: 0.875em;\n}\n.mobile-action-button .icon path[data-v-39df5540], .mobile-action-button .icon line[data-v-39df5540], .mobile-action-button .icon polyline[data-v-39df5540], .mobile-action-button .icon rect[data-v-39df5540], .mobile-action-button .icon circle[data-v-39df5540] {\n transition: 150ms all ease;\n}\n.mobile-action-button .label[data-v-39df5540] {\n transition: 150ms all ease;\n font-size: 0.875em;\n font-weight: 700;\n color: #1c1d1f;\n}\n.mobile-action-button[data-v-39df5540]:active {\n transform: scale(0.95);\n}\n.mobile-action-button[data-v-39df5540]:hover {\n background: rgba(0, 188, 126, 0.1);\n}\n.mobile-action-button:hover .icon path[data-v-39df5540], .mobile-action-button:hover .icon line[data-v-39df5540], .mobile-action-button:hover .icon polyline[data-v-39df5540], .mobile-action-button:hover .icon rect[data-v-39df5540], .mobile-action-button:hover .icon circle[data-v-39df5540] {\n stroke: #00BC7E;\n}\n.mobile-action-button:hover .label[data-v-39df5540] {\n color: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.mobile-action-button[data-v-39df5540] {\n background: #1e2024;\n}\n.mobile-action-button path[data-v-39df5540], .mobile-action-button line[data-v-39df5540], .mobile-action-button polyline[data-v-39df5540], .mobile-action-button rect[data-v-39df5540], .mobile-action-button circle[data-v-39df5540] {\n stroke: #00BC7E;\n}\n.mobile-action-button .label[data-v-39df5540] {\n color: #bec6cf;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(26);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,"#mobile-actions-wrapper[data-v-7aca7cb5] {\n display: none;\n background: white;\n position: -webkit-sticky;\n position: sticky;\n top: 35px;\n z-index: 3;\n}\n.mobile-actions[data-v-7aca7cb5] {\n padding-top: 10px;\n padding-bottom: 10px;\n white-space: nowrap;\n overflow-x: auto;\n}\n@media only screen and (max-width: 960px) {\n#mobile-actions-wrapper[data-v-7aca7cb5] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n#mobile-actions-wrapper[data-v-7aca7cb5] {\n background: #111314;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(27);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".preview[data-v-3ad9d4c3] {\n width: 100%;\n display: block;\n margin-bottom: 7px;\n}\n.preview img[data-v-3ad9d4c3] {\n border-radius: 4px;\n overflow: hidden;\n width: 100%;\n -o-object-fit: cover;\n object-fit: cover;\n}\n.preview audio[data-v-3ad9d4c3] {\n width: 100%;\n}\n.preview audio[data-v-3ad9d4c3]::-webkit-media-controls-panel {\n background-color: #f6f6f6;\n}\n.preview audio[data-v-3ad9d4c3]::-webkit-media-controls-play-button {\n color: #00BC7E;\n}\n.preview video[data-v-3ad9d4c3] {\n width: 100%;\n height: auto;\n border-radius: 3px;\n}\n",""])},function(e,t,n){"use strict";var a=n(28);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form-wrapper[data-v-26cd2e26] {\n padding: 0 20px;\n}\n.input-wrapper[data-v-26cd2e26] {\n margin-bottom: 20px;\n}\n.input-wrapper[data-v-26cd2e26]:last-child {\n margin-bottom: 0;\n}\n.input-wrapper input[data-v-26cd2e26] {\n width: 100%;\n color: #1c1d1f;\n}\n.input-wrapper input.is-error[data-v-26cd2e26] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\n.inline-wrapper[data-v-26cd2e26] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.inline-wrapper.icon-append .input-text[data-v-26cd2e26] {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.inline-wrapper.icon-append .icon[data-v-26cd2e26] {\n background: black;\n padding: 15px 18px;\n border-top-right-radius: 8px;\n border-bottom-right-radius: 8px;\n text-align: center;\n line-height: 0;\n}\n.inline-wrapper.icon-append .icon path[data-v-26cd2e26], .inline-wrapper.icon-append .icon polyline[data-v-26cd2e26] {\n stroke: white;\n}\n.input-label[data-v-26cd2e26] {\n font-size: 0.75em;\n color: #1c1d1f;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n@media (prefers-color-scheme: dark) {\n.inline-wrapper.icon-append .icon[data-v-26cd2e26] {\n background: rgba(0, 188, 126, 0.1);\n}\n.inline-wrapper.icon-append .icon path[data-v-26cd2e26], .inline-wrapper.icon-append .icon polyline[data-v-26cd2e26] {\n stroke: #00BC7E;\n}\n.input-label[data-v-26cd2e26] {\n color: #bec6cf;\n}\n}\n.form[data-v-26cd2e26] {\n max-width: 700px;\n}\n.form.inline-form[data-v-26cd2e26] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-26cd2e26] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-26cd2e26] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-26cd2e26] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-26cd2e26] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-26cd2e26] {\n margin-bottom: 20px;\n}\n.form.block-form .block-wrapper label[data-v-26cd2e26] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n.form.block-form .block-wrapper[data-v-26cd2e26]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-26cd2e26] {\n margin-top: 50px;\n}\n.error-message[data-v-26cd2e26] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-26cd2e26] {\n width: 100%;\n}\ntextarea[data-v-26cd2e26],\ninput[type="password"][data-v-26cd2e26],\ninput[type="text"][data-v-26cd2e26],\ninput[type="number"][data-v-26cd2e26],\ninput[type="email"][data-v-26cd2e26] {\n border: 1px solid #ebebeb;\n transition: 150ms all ease;\n font-size: 0.9375em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n background: #fafafa;\n}\ntextarea.is-error[data-v-26cd2e26],\ninput[type="password"].is-error[data-v-26cd2e26],\ninput[type="text"].is-error[data-v-26cd2e26],\ninput[type="number"].is-error[data-v-26cd2e26],\ninput[type="email"].is-error[data-v-26cd2e26] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-26cd2e26]::-webkit-input-placeholder, input[type="password"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="text"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="number"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="email"][data-v-26cd2e26]::-webkit-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-26cd2e26]::-moz-placeholder, input[type="password"][data-v-26cd2e26]::-moz-placeholder, input[type="text"][data-v-26cd2e26]::-moz-placeholder, input[type="number"][data-v-26cd2e26]::-moz-placeholder, input[type="email"][data-v-26cd2e26]::-moz-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-26cd2e26]:-ms-input-placeholder, input[type="password"][data-v-26cd2e26]:-ms-input-placeholder, input[type="text"][data-v-26cd2e26]:-ms-input-placeholder, input[type="number"][data-v-26cd2e26]:-ms-input-placeholder, input[type="email"][data-v-26cd2e26]:-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-26cd2e26]::-ms-input-placeholder, input[type="password"][data-v-26cd2e26]::-ms-input-placeholder, input[type="text"][data-v-26cd2e26]::-ms-input-placeholder, input[type="number"][data-v-26cd2e26]::-ms-input-placeholder, input[type="email"][data-v-26cd2e26]::-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-26cd2e26]::placeholder,\ninput[type="password"][data-v-26cd2e26]::placeholder,\ninput[type="text"][data-v-26cd2e26]::placeholder,\ninput[type="number"][data-v-26cd2e26]::placeholder,\ninput[type="email"][data-v-26cd2e26]::placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-26cd2e26]:focus,\ninput[type="password"][data-v-26cd2e26]:focus,\ninput[type="text"][data-v-26cd2e26]:focus,\ninput[type="number"][data-v-26cd2e26]:focus,\ninput[type="email"][data-v-26cd2e26]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-26cd2e26],\ninput[type="password"][disabled][data-v-26cd2e26],\ninput[type="text"][disabled][data-v-26cd2e26],\ninput[type="number"][disabled][data-v-26cd2e26],\ninput[type="email"][disabled][data-v-26cd2e26] {\n background: #fafafa;\n cursor: not-allowed;\n}\n.additional-link[data-v-26cd2e26] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-26cd2e26], .additional-link a[data-v-26cd2e26] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-26cd2e26]:hover, .additional-link a[data-v-26cd2e26]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-26cd2e26] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-26cd2e26] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-26cd2e26], .form textarea[data-v-26cd2e26] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-26cd2e26] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-26cd2e26] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-26cd2e26] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-26cd2e26] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-26cd2e26] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-26cd2e26] {\n padding: 14px 32px;\n}\ntextarea[data-v-26cd2e26],\n input[type="password"][data-v-26cd2e26],\n input[type="number"][data-v-26cd2e26],\n input[type="text"][data-v-26cd2e26],\n input[type="email"][data-v-26cd2e26] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-26cd2e26] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-26cd2e26] {\n color: #bec6cf;\n}\ntextarea[data-v-26cd2e26],\n input[type="password"][data-v-26cd2e26],\n input[type="text"][data-v-26cd2e26],\n input[type="number"][data-v-26cd2e26],\n input[type="email"][data-v-26cd2e26] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-26cd2e26]::-webkit-input-placeholder, input[type="password"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="text"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="number"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="email"][data-v-26cd2e26]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-26cd2e26]::-moz-placeholder, input[type="password"][data-v-26cd2e26]::-moz-placeholder, input[type="text"][data-v-26cd2e26]::-moz-placeholder, input[type="number"][data-v-26cd2e26]::-moz-placeholder, input[type="email"][data-v-26cd2e26]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-26cd2e26]:-ms-input-placeholder, input[type="password"][data-v-26cd2e26]:-ms-input-placeholder, input[type="text"][data-v-26cd2e26]:-ms-input-placeholder, input[type="number"][data-v-26cd2e26]:-ms-input-placeholder, input[type="email"][data-v-26cd2e26]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-26cd2e26]::-ms-input-placeholder, input[type="password"][data-v-26cd2e26]::-ms-input-placeholder, input[type="text"][data-v-26cd2e26]::-ms-input-placeholder, input[type="number"][data-v-26cd2e26]::-ms-input-placeholder, input[type="email"][data-v-26cd2e26]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-26cd2e26]::placeholder,\n input[type="password"][data-v-26cd2e26]::placeholder,\n input[type="text"][data-v-26cd2e26]::placeholder,\n input[type="number"][data-v-26cd2e26]::placeholder,\n input[type="email"][data-v-26cd2e26]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-26cd2e26],\n input[type="password"][disabled][data-v-26cd2e26],\n input[type="text"][disabled][data-v-26cd2e26],\n input[type="number"][disabled][data-v-26cd2e26],\n input[type="email"][disabled][data-v-26cd2e26] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.copy-input.small.icon-append .icon[data-v-26cd2e26] {\n padding: 10px;\n}\n.copy-input.small input[data-v-26cd2e26] {\n padding: 6px 10px;\n font-size: 0.8125em;\n}\n.copy-input .icon[data-v-26cd2e26] {\n cursor: pointer;\n}\n.copy-input input[data-v-26cd2e26] {\n text-overflow: ellipsis;\n}\n.copy-input input[data-v-26cd2e26]:disabled {\n color: #1c1d1f;\n cursor: pointer;\n}\n@media (prefers-color-scheme: dark) {\n.copy-input input[data-v-26cd2e26] {\n color: #bec6cf;\n}\n}\n',""])},function(e,t,n){"use strict";var a=n(29);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".file-info-content[data-v-477528ea] {\n padding-bottom: 20px;\n}\n.file-headline[data-v-477528ea] {\n margin-bottom: 20px;\n border-radius: 8px;\n}\n.file-headline .flex[data-v-477528ea] {\n display: flex;\n align-items: flex-start;\n}\n.file-headline .icon-preview[data-v-477528ea] {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n text-align: center;\n cursor: pointer;\n white-space: nowrap;\n outline: none;\n border: none;\n}\n.file-headline .file-info[data-v-477528ea] {\n padding-left: 10px;\n width: 100%;\n word-break: break-all;\n}\n.file-headline .file-info .name[data-v-477528ea] {\n font-size: 0.875em;\n font-weight: 700;\n line-height: 1.4;\n display: block;\n color: #1c1d1f;\n}\n.file-headline .file-info .mimetype[data-v-477528ea] {\n font-size: 0.75em;\n font-weight: 600;\n color: #00BC7E;\n display: block;\n}\n.list-info .list-info-item[data-v-477528ea] {\n display: block;\n padding-top: 20px;\n}\n.list-info .list-info-item[data-v-477528ea]:first-child {\n padding-top: 0;\n}\n.list-info .list-info-item .action-button[data-v-477528ea] {\n cursor: pointer;\n}\n.list-info .list-info-item .action-button .edit-icon[data-v-477528ea] {\n display: inline-block;\n margin-left: 3px;\n}\n.list-info .list-info-item b[data-v-477528ea] {\n display: block;\n font-size: 0.8125em;\n color: #00BC7E;\n margin-bottom: 2px;\n}\n.list-info .list-info-item span[data-v-477528ea] {\n display: inline-block;\n font-size: 0.875em;\n font-weight: bold;\n color: #1c1d1f;\n}\n.sharelink[data-v-477528ea] {\n display: flex;\n width: 100%;\n align-items: center;\n margin-top: 10px;\n}\n.sharelink .lock-icon[data-v-477528ea] {\n display: inline-block;\n width: 15px;\n margin-right: 9px;\n cursor: pointer;\n}\n.sharelink .copy-sharelink[data-v-477528ea] {\n width: 100%;\n}\n@media (prefers-color-scheme: dark) {\n.file-headline .file-info .name[data-v-477528ea] {\n color: #bec6cf;\n}\n.list-info .list-info-item span[data-v-477528ea] {\n color: #bec6cf;\n}\n.list-info .list-info-item .action-button .icon[data-v-477528ea] {\n color: #bec6cf;\n}\n.sharelink .lock-icon:hover path[data-v-477528ea], .sharelink .lock-icon:hover rect[data-v-477528ea] {\n stroke: #00BC7E;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(30);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".file-wrapper[data-v-0e147eab] {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n position: relative;\n}\n.file-wrapper[data-v-0e147eab]:hover {\n border-color: transparent;\n}\n.file-wrapper .actions[data-v-0e147eab] {\n text-align: right;\n width: 50px;\n}\n.file-wrapper .actions .show-actions[data-v-0e147eab] {\n cursor: pointer;\n padding: 12px 6px 12px;\n}\n.file-wrapper .actions .show-actions .icon-action[data-v-0e147eab] {\n font-size: 0.875em;\n}\n.file-wrapper .actions .show-actions .icon-action path[data-v-0e147eab] {\n fill: #00BC7E;\n}\n.file-wrapper .item-name[data-v-0e147eab] {\n display: block;\n width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.file-wrapper .item-name .item-info[data-v-0e147eab] {\n display: block;\n line-height: 1;\n}\n.file-wrapper .item-name .item-shared[data-v-0e147eab] {\n display: inline-block;\n}\n.file-wrapper .item-name .item-shared .label[data-v-0e147eab] {\n font-size: 0.75em;\n font-weight: 400;\n color: #00BC7E;\n}\n.file-wrapper .item-name .item-shared .shared-icon[data-v-0e147eab] {\n vertical-align: middle;\n}\n.file-wrapper .item-name .item-shared .shared-icon path[data-v-0e147eab], .file-wrapper .item-name .item-shared .shared-icon circle[data-v-0e147eab], .file-wrapper .item-name .item-shared .shared-icon line[data-v-0e147eab] {\n stroke: #00BC7E;\n}\n.file-wrapper .item-name .item-size[data-v-0e147eab],\n.file-wrapper .item-name .item-length[data-v-0e147eab] {\n font-size: 0.6875em;\n font-weight: 400;\n color: rgba(28, 29, 31, 0.7);\n}\n.file-wrapper .item-name .name[data-v-0e147eab] {\n white-space: nowrap;\n}\n.file-wrapper .item-name .name[contenteditable][data-v-0e147eab] {\n -webkit-user-select: text;\n -moz-user-select: text;\n -ms-user-select: text;\n user-select: text;\n}\n.file-wrapper .item-name .name[contenteditable='true'][data-v-0e147eab]:hover {\n text-decoration: underline;\n}\n.file-wrapper .item-name .name[data-v-0e147eab] {\n color: #1c1d1f;\n font-size: 0.875em;\n font-weight: 700;\n max-height: 40px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.file-wrapper .item-name .name.actived[data-v-0e147eab] {\n max-height: initial;\n}\n.file-wrapper.selected .file-item[data-v-0e147eab] {\n background: #f6f6f6;\n}\n.file-wrapper .icon-item[data-v-0e147eab] {\n text-align: center;\n position: relative;\n flex: 0 0 50px;\n line-height: 0;\n margin-right: 20px;\n}\n.file-wrapper .icon-item .folder-icon[data-v-0e147eab] {\n font-size: 3.25em;\n}\n.file-wrapper .icon-item .folder-icon path[data-v-0e147eab] {\n fill: #00BC7E;\n}\n.file-wrapper .icon-item .folder-icon.is-deleted path[data-v-0e147eab] {\n fill: #EBEBEB;\n}\n.file-wrapper .icon-item .file-icon[data-v-0e147eab] {\n font-size: 2.8125em;\n}\n.file-wrapper .icon-item .file-icon path[data-v-0e147eab] {\n fill: #fafafc;\n stroke: #dfe0e8;\n stroke-width: 1;\n}\n.file-wrapper .icon-item .file-icon-text[data-v-0e147eab] {\n line-height: 1;\n top: 40%;\n font-size: 0.6875em;\n margin: 0 auto;\n position: absolute;\n text-align: center;\n left: 0;\n right: 0;\n color: #00BC7E;\n font-weight: 600;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n max-width: 50px;\n max-height: 20px;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.file-wrapper .icon-item .image[data-v-0e147eab] {\n -o-object-fit: cover;\n object-fit: cover;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n max-width: 100%;\n border-radius: 5px;\n width: 50px;\n height: 50px;\n pointer-events: none;\n}\n.file-wrapper .file-item[data-v-0e147eab] {\n border: 2px dashed transparent;\n width: 100%;\n display: flex;\n align-items: center;\n padding: 7px;\n}\n.file-wrapper .file-item.is-dragenter[data-v-0e147eab] {\n border: 2px dashed #00BC7E;\n border-radius: 8px;\n}\n.file-wrapper .file-item[data-v-0e147eab]:hover, .file-wrapper .file-item.is-clicked[data-v-0e147eab] {\n border-radius: 8px;\n background: #f6f6f6;\n}\n.file-wrapper .file-item:hover .item-name .name[data-v-0e147eab], .file-wrapper .file-item.is-clicked .item-name .name[data-v-0e147eab] {\n color: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.file-wrapper .icon-item .file-icon path[data-v-0e147eab] {\n fill: #1e2024;\n stroke: #2F3C54;\n}\n.file-wrapper .icon-item .folder-icon.is-deleted path[data-v-0e147eab] {\n fill: #2a2c32;\n}\n.file-wrapper .file-item[data-v-0e147eab]:hover, .file-wrapper .file-item.is-clicked[data-v-0e147eab] {\n background: #1e2024;\n}\n.file-wrapper .file-item:hover .file-icon path[data-v-0e147eab], .file-wrapper .file-item.is-clicked .file-icon path[data-v-0e147eab] {\n fill: #111314;\n}\n.file-wrapper .item-name .name[data-v-0e147eab] {\n color: #bec6cf;\n}\n.file-wrapper .item-name .item-size[data-v-0e147eab],\n .file-wrapper .item-name .item-length[data-v-0e147eab] {\n color: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(31);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".empty-message[data-v-f1b82072] {\n text-align: center;\n display: flex;\n align-items: center;\n height: 100%;\n}\n.empty-message .message[data-v-f1b82072] {\n margin: 0 auto;\n}\n.empty-message .message p[data-v-f1b82072] {\n margin-top: 10px;\n max-width: 130px;\n font-size: 0.8125em;\n font-weight: 500;\n color: rgba(28, 29, 31, 0.7);\n}\n.empty-message .message .icon path[data-v-f1b82072], .empty-message .message .icon line[data-v-f1b82072], .empty-message .message .icon polyline[data-v-f1b82072], .empty-message .message .icon rect[data-v-f1b82072], .empty-message .message .icon circle[data-v-f1b82072] {\n stroke: #1c1d1f;\n}\n@media (prefers-color-scheme: dark) {\n.empty-message .message .icon path[data-v-f1b82072], .empty-message .message .icon line[data-v-f1b82072], .empty-message .message .icon polyline[data-v-f1b82072], .empty-message .message .icon rect[data-v-f1b82072], .empty-message .message .icon circle[data-v-f1b82072] {\n stroke: #7d858c;\n}\n.empty-message .message p[data-v-f1b82072] {\n color: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(32);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".button-base[data-v-00125c42] {\n font-size: 0.9375em;\n font-weight: 700;\n cursor: pointer;\n transition: 0.15s all ease;\n border-radius: 8px;\n border: 0;\n padding: 10px 28px;\n display: inline-block;\n}\n.button-base[data-v-00125c42]:active {\n transform: scale(0.95);\n}\n.button-base.theme[data-v-00125c42] {\n color: #00BC7E;\n background: rgba(0, 188, 126, 0.1);\n}\n.button-base.secondary[data-v-00125c42] {\n color: #1c1d1f;\n background: #f6f6f6;\n}\n",""])},function(e,t,n){"use strict";var a=n(33);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,"#loading-bar-spinner.spinner[data-v-6a1e6612] {\n left: 50%;\n margin-left: -20px;\n top: 50%;\n margin-top: -20px;\n position: absolute;\n z-index: 19 !important;\n -webkit-animation: loading-bar-spinner-data-v-6a1e6612 400ms linear infinite;\n animation: loading-bar-spinner-data-v-6a1e6612 400ms linear infinite;\n}\n#loading-bar-spinner.spinner .spinner-icon[data-v-6a1e6612] {\n width: 40px;\n height: 40px;\n border: solid 4px transparent;\n border-top-color: #00BC7E !important;\n border-left-color: #00BC7E !important;\n border-radius: 50%;\n}\n@-webkit-keyframes loading-bar-spinner-data-v-6a1e6612 {\n0% {\n transform: rotate(0deg);\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n transform: rotate(360deg);\n}\n}\n@keyframes loading-bar-spinner-data-v-6a1e6612 {\n0% {\n transform: rotate(0deg);\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n transform: rotate(360deg);\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(34);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".empty-page[data-v-bb5aa772] {\n position: absolute;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n margin-top: 85px;\n display: flex;\n align-items: center;\n}\n.empty-page .empty-state[data-v-bb5aa772] {\n margin: 0 auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.text-content[data-v-bb5aa772] {\n text-align: center;\n margin: 30px 0;\n}\n.text-content .title[data-v-bb5aa772] {\n font-size: 1.25em;\n color: #1c1d1f;\n font-weight: 700;\n margin: 0;\n}\n.text-content .description[data-v-bb5aa772] {\n font-size: 0.8125em;\n color: rgba(28, 29, 31, 0.7);\n margin-bottom: 20px;\n display: block;\n}\n@media (prefers-color-scheme: dark) {\n.text-content .title[data-v-bb5aa772] {\n color: #bec6cf;\n}\n.text-content .description[data-v-bb5aa772] {\n color: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(35);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".button-upload[data-v-7ceb5f93] {\n display: block;\n text-align: center;\n margin: 20px 0;\n}\n.mobile-search[data-v-7ceb5f93] {\n display: none;\n margin-bottom: 10px;\n margin-top: 10px;\n}\n.file-content[data-v-7ceb5f93] {\n display: flex;\n}\n.file-content.is-dragging[data-v-7ceb5f93] {\n transform: scale(0.99);\n}\n.files-container[data-v-7ceb5f93] {\n overflow-x: hidden;\n overflow-y: auto;\n flex: 0 0 100%;\n transition: 150ms all ease;\n position: relative;\n}\n.files-container.is-fileinfo-visible[data-v-7ceb5f93] {\n flex: 0 1 100%;\n}\n.files-container .file-list.grid[data-v-7ceb5f93] {\n display: grid;\n grid-template-columns: repeat(auto-fill, 180px);\n justify-content: space-evenly;\n}\n.file-info-container[data-v-7ceb5f93] {\n flex: 0 0 300px;\n padding-left: 20px;\n overflow: auto;\n}\n.file-move[data-v-7ceb5f93] {\n transition: transform 0.6s;\n}\n.file-enter-active[data-v-7ceb5f93] {\n transition: all 300ms ease;\n}\n.file-leave-active[data-v-7ceb5f93] {\n transition: all 0ms;\n}\n.file-enter[data-v-7ceb5f93], .file-leave-to[data-v-7ceb5f93] {\n opacity: 0;\n transform: translateX(-20px);\n}\n@media only screen and (min-width: 960px) {\n.file-content[data-v-7ceb5f93] {\n position: absolute;\n top: 72px;\n left: 15px;\n right: 15px;\n bottom: 0;\n transition: 0.3s all ease;\n overflow-y: auto;\n overflow-x: hidden;\n}\n.file-content.is-offset[data-v-7ceb5f93] {\n margin-top: 50px;\n}\n}\n@media only screen and (max-width: 960px) {\n.file-info-container[data-v-7ceb5f93] {\n display: none;\n}\n.mobile-search[data-v-7ceb5f93] {\n display: block;\n}\n}\n@media only screen and (max-width: 690px) {\n.files-container[data-v-7ceb5f93] {\n padding-left: 15px;\n padding-right: 15px;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n position: fixed;\n overflow-y: auto;\n}\n.files-container .file-list.grid[data-v-7ceb5f93] {\n grid-template-columns: repeat(auto-fill, 120px);\n}\n.file-content[data-v-7ceb5f93] {\n position: absolute;\n top: 0;\n left: 0px;\n right: 0px;\n bottom: 0;\n transition: 0.3s all ease;\n}\n.file-content.is-offset[data-v-7ceb5f93] {\n margin-top: 50px;\n}\n.mobile-search[data-v-7ceb5f93] {\n margin-bottom: 0;\n}\n.file-info-container[data-v-7ceb5f93] {\n display: none;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(36);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".menu-option[data-v-c9d46fc4] {\n display: flex;\n align-items: center;\n}\n.menu-option .icon[data-v-c9d46fc4] {\n margin-right: 20px;\n line-height: 0;\n}\n.menu-option .text-label[data-v-c9d46fc4] {\n font-size: 1em;\n}\n.contextmenu[data-v-c9d46fc4] {\n min-width: 250px;\n position: absolute;\n z-index: 99;\n box-shadow: 0 7px 25px 1px rgba(0, 0, 0, 0.12);\n background: white;\n border-radius: 8px;\n overflow: hidden;\n}\n.contextmenu.showed[data-v-c9d46fc4] {\n display: block;\n}\n.menu-options[data-v-c9d46fc4] {\n list-style: none;\n width: 100%;\n margin: 0;\n padding: 0;\n}\n.menu-options .menu-option-group[data-v-c9d46fc4] {\n padding: 5px 0;\n border-bottom: 1px solid #F8F8F8;\n}\n.menu-options .menu-option-group[data-v-c9d46fc4]:first-child {\n padding-top: 0;\n}\n.menu-options .menu-option-group[data-v-c9d46fc4]:last-child {\n padding-bottom: 0;\n border-bottom: none;\n}\n.menu-options .menu-option[data-v-c9d46fc4] {\n white-space: nowrap;\n font-weight: 700;\n font-size: 0.875em;\n padding: 15px 20px;\n cursor: pointer;\n width: 100%;\n color: #1c1d1f;\n}\n.menu-options .menu-option[data-v-c9d46fc4]:hover {\n background: #f6f6f6;\n}\n.menu-options .menu-option:hover .text-label[data-v-c9d46fc4] {\n color: #00BC7E;\n}\n.menu-options .menu-option:hover path[data-v-c9d46fc4], .menu-options .menu-option:hover line[data-v-c9d46fc4], .menu-options .menu-option:hover polyline[data-v-c9d46fc4], .menu-options .menu-option:hover rect[data-v-c9d46fc4], .menu-options .menu-option:hover circle[data-v-c9d46fc4], .menu-options .menu-option:hover polygon[data-v-c9d46fc4] {\n stroke: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.contextmenu[data-v-c9d46fc4] {\n background: #1e2024;\n}\n.contextmenu .menu-options .menu-option-group[data-v-c9d46fc4] {\n border-color: rgba(255, 255, 255, 0.02);\n}\n.contextmenu .menu-options .menu-option[data-v-c9d46fc4] {\n color: #bec6cf;\n}\n.contextmenu .menu-options .menu-option[data-v-c9d46fc4]:hover {\n background: rgba(0, 188, 126, 0.1);\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(37);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".button-base[data-v-4703e5a2] {\n font-size: 0.9375em;\n font-weight: 700;\n cursor: pointer;\n transition: 0.15s all ease;\n border-radius: 8px;\n border: 0;\n padding: 10px 28px;\n display: inline-block;\n white-space: nowrap;\n}\n.button-base[data-v-4703e5a2]:active {\n transform: scale(0.95);\n}\n.button-base.theme[data-v-4703e5a2] {\n color: #00BC7E;\n background: rgba(0, 188, 126, 0.1);\n}\n.button-base.danger[data-v-4703e5a2] {\n color: #fd397a;\n background: rgba(253, 57, 122, 0.1);\n}\n.button-base.danger-solid[data-v-4703e5a2] {\n color: white;\n background: #fd397a;\n}\n.button-base.secondary[data-v-4703e5a2] {\n color: #1c1d1f;\n background: #f6f6f6;\n}\n.sync-alt[data-v-4703e5a2] {\n -webkit-animation: spin-data-v-4703e5a2 1s linear infinite;\n animation: spin-data-v-4703e5a2 1s linear infinite;\n}\n@-webkit-keyframes spin-data-v-4703e5a2 {\n0% {\n transform: rotate(0);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spin-data-v-4703e5a2 {\n0% {\n transform: rotate(0);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.button-base.secondary[data-v-4703e5a2] {\n color: #bec6cf;\n background: #1e2024;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(38);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".file-item[data-v-f35c4086] {\n display: flex;\n align-items: center;\n padding: 0 20px;\n}\n.file-item .item-name[data-v-f35c4086] {\n display: block;\n margin-left: 10px;\n width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.file-item .item-name .item-size[data-v-f35c4086],\n.file-item .item-name .item-length[data-v-f35c4086],\n.file-item .item-name .subtitle[data-v-f35c4086] {\n font-size: 0.75em;\n font-weight: 400;\n color: rgba(28, 29, 31, 0.7);\n display: block;\n}\n.file-item .item-name .name[data-v-f35c4086] {\n white-space: nowrap;\n color: #1c1d1f;\n font-size: 0.875em;\n font-weight: 700;\n max-height: 40px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.file-item .icon-item[data-v-f35c4086] {\n position: relative;\n min-width: 52px;\n text-align: center;\n line-height: 0;\n}\n.file-item .icon-item .file-icon[data-v-f35c4086] {\n font-size: 2.1875em;\n}\n.file-item .icon-item .file-icon path[data-v-f35c4086] {\n fill: #fafafc;\n stroke: #dfe0e8;\n stroke-width: 1;\n}\n.file-item .icon-item .folder-icon[data-v-f35c4086] {\n font-size: 2.25em;\n}\n.file-item .icon-item .folder-icon path[data-v-f35c4086] {\n fill: #00BC7E;\n}\n.file-item .icon-item .file-icon-text[data-v-f35c4086] {\n line-height: 1;\n top: 40%;\n font-size: 0.5em;\n margin: 0 auto;\n position: absolute;\n text-align: center;\n left: 0;\n right: 0;\n color: #00BC7E;\n font-weight: 600;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n max-width: 20px;\n max-height: 20px;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.file-item .icon-item .image[data-v-f35c4086] {\n -o-object-fit: cover;\n object-fit: cover;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n max-width: 100%;\n border-radius: 5px;\n width: 52px;\n height: 52px;\n}\n@media only screen and (max-width: 690px) {\n.file-item[data-v-f35c4086] {\n padding: 0 15px;\n margin-bottom: 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.file-item .icon-item .file-icon path[data-v-f35c4086] {\n fill: #1e2024;\n stroke: #2F3C54;\n}\n.file-item .item-name .name[data-v-f35c4086] {\n color: #bec6cf;\n}\n.file-item .item-name .item-size[data-v-f35c4086],\n .file-item .item-name .item-length[data-v-f35c4086],\n .file-item .item-name .subtitle[data-v-f35c4086] {\n color: #7d858c;\n}\n}\n@media (max-width: 690px) and (prefers-color-scheme: dark) {\n.file-item .icon-item .file-icon path[data-v-f35c4086] {\n fill: #1e2024;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(39);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".menu-option[data-v-679d2fad] {\n display: flex;\n align-items: center;\n}\n.menu-option .icon[data-v-679d2fad] {\n margin-right: 20px;\n line-height: 0;\n}\n.menu-option .text-label[data-v-679d2fad] {\n font-size: 1em;\n}\n.vignette[data-v-679d2fad] {\n background: rgba(0, 0, 0, 0.35);\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 9;\n cursor: pointer;\n opacity: 1;\n}\n.options[data-v-679d2fad] {\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 99;\n overflow: hidden;\n background: white;\n border-top-left-radius: 12px;\n border-top-right-radius: 12px;\n}\n.options.showed[data-v-679d2fad] {\n display: block;\n}\n.options .item-thumbnail[data-v-679d2fad] {\n padding: 20px 20px 10px;\n margin-bottom: 0px;\n}\n.options .menu-options[data-v-679d2fad] {\n margin-top: 10px;\n list-style: none;\n width: 100%;\n}\n.options .menu-options .menu-option-group[data-v-679d2fad] {\n padding: 5px 0;\n border-bottom: 1px solid #F8F8F8;\n}\n.options .menu-options .menu-option-group[data-v-679d2fad]:first-child {\n padding-top: 0;\n}\n.options .menu-options .menu-option-group[data-v-679d2fad]:last-child {\n padding-bottom: 0;\n border-bottom: none;\n}\n.options .menu-options .menu-option[data-v-679d2fad] {\n font-weight: 700;\n letter-spacing: 0.15px;\n font-size: 0.875em;\n cursor: pointer;\n width: 100%;\n padding: 17px 20px;\n text-align: center;\n}\n.options .menu-options .menu-option[data-v-679d2fad]:last-child {\n border: none;\n}\n@media (prefers-color-scheme: dark) {\n.vignette[data-v-679d2fad] {\n background: rgba(22, 23, 27, 0.7);\n}\n.options[data-v-679d2fad] {\n background: #111314;\n}\n.options .menu-options[data-v-679d2fad] {\n background: #111314;\n}\n.options .menu-options .menu-option-group[data-v-679d2fad] {\n border-color: rgba(255, 255, 255, 0.02);\n}\n.options .menu-options .menu-option[data-v-679d2fad] {\n color: #bec6cf;\n}\n}\n.context-menu-enter-active[data-v-679d2fad],\n.fade-enter-active[data-v-679d2fad] {\n transition: all 200ms;\n}\n.context-menu-leave-active[data-v-679d2fad],\n.fade-leave-active[data-v-679d2fad] {\n transition: all 200ms;\n}\n.fade-enter[data-v-679d2fad],\n.fade-leave-to[data-v-679d2fad] {\n opacity: 0;\n}\n.context-menu-enter[data-v-679d2fad],\n.context-menu-leave-to[data-v-679d2fad] {\n opacity: 0;\n transform: translateY(100%);\n}\n.context-menu-leave-active[data-v-679d2fad] {\n position: absolute;\n}\n",""])},function(e,t,n){"use strict";var a=n(40);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".popup[data-v-10246988] {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 20;\n overflow-y: auto;\n display: grid;\n padding: 40px;\n height: 100%;\n}\n.popup-wrapper[data-v-10246988] {\n box-shadow: 0 15px 50px 10px rgba(26, 38, 74, 0.12);\n border-radius: 8px;\n background: white;\n margin: auto;\n width: 480px;\n z-index: 12;\n}\n.medium .popup-enter-active[data-v-10246988], .large .popup-enter-active[data-v-10246988] {\n -webkit-animation: popup-in-data-v-10246988 0.35s 0.15s ease both;\n animation: popup-in-data-v-10246988 0.35s 0.15s ease both;\n}\n.medium .popup-leave-active[data-v-10246988], .large .popup-leave-active[data-v-10246988] {\n animation: popup-in-data-v-10246988 0.15s ease reverse;\n}\n@-webkit-keyframes popup-in-data-v-10246988 {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n@keyframes popup-in-data-v-10246988 {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n@-webkit-keyframes popup-slide-in-data-v-10246988 {\n0% {\n transform: translateY(100%);\n}\n100% {\n transform: translateY(0);\n}\n}\n@keyframes popup-slide-in-data-v-10246988 {\n0% {\n transform: translateY(100%);\n}\n100% {\n transform: translateY(0);\n}\n}\n@media only screen and (max-width: 690px) {\n.popup[data-v-10246988] {\n overflow: hidden;\n}\n.popup-wrapper[data-v-10246988] {\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n left: 0;\n transform: translateY(0) scale(1);\n box-shadow: none;\n width: 100%;\n border-radius: 0px;\n}\n.popup-enter-active[data-v-10246988] {\n -webkit-animation: popup-slide-in-data-v-10246988 0.35s 0.15s ease both;\n animation: popup-slide-in-data-v-10246988 0.35s 0.15s ease both;\n}\n.popup-leave-active[data-v-10246988] {\n animation: popup-slide-in-data-v-10246988 0.15s ease reverse;\n}\n}\n@media (prefers-color-scheme: dark) {\n.popup-wrapper[data-v-10246988] {\n background: #111314;\n box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);\n}\n}\n@media (prefers-color-scheme: dark) and (max-width: 690px) {\n.popup-wrapper[data-v-10246988] {\n background: #111314;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(41);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".actions[data-v-538210f4] {\n padding: 20px;\n margin: 0 -10px;\n display: flex;\n}\n.actions .popup-button[data-v-538210f4] {\n width: 100%;\n margin: 0 10px;\n}\n@media only screen and (max-width: 690px) {\n.actions[data-v-538210f4] {\n padding: 15px;\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(42);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".popup-content.height-limited[data-v-9bb38bce] {\n height: 400px;\n overflow-y: auto;\n}\n@media only screen and (max-width: 690px) {\n.popup-content[data-v-9bb38bce] {\n top: 57px;\n bottom: 72px;\n position: absolute;\n left: 0;\n right: 0;\n height: initial;\n}\n}\n@-webkit-keyframes popup-in-data-v-9bb38bce {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n@keyframes popup-in-data-v-9bb38bce {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n@-webkit-keyframes popup-slide-in-data-v-9bb38bce {\n0% {\n transform: translateY(100%);\n}\n100% {\n transform: translateY(0);\n}\n}\n@keyframes popup-slide-in-data-v-9bb38bce {\n0% {\n transform: translateY(100%);\n}\n100% {\n transform: translateY(0);\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(43);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".popup-header[data-v-068fe44d] {\n padding: 20px;\n display: flex;\n align-items: center;\n}\n.popup-header .icon[data-v-068fe44d] {\n margin-right: 10px;\n line-height: 0;\n}\n.popup-header .icon path[data-v-068fe44d], .popup-header .icon line[data-v-068fe44d], .popup-header .icon polyline[data-v-068fe44d], .popup-header .icon rect[data-v-068fe44d], .popup-header .icon circle[data-v-068fe44d] {\n stroke: #00BC7E;\n}\n.popup-header .title[data-v-068fe44d] {\n font-size: 1.0625em;\n font-weight: 700;\n color: #1c1d1f;\n}\n.popup-header .message[data-v-068fe44d] {\n font-size: 1em;\n color: #8b8f9a;\n margin-top: 5px;\n}\n.popup-header .label[data-v-068fe44d] {\n display: flex;\n justify-content: space-between;\n width: 100%;\n align-items: center;\n}\n.popup-header .label .close-icon[data-v-068fe44d] {\n padding: 1px 4px;\n border-radius: 6px;\n cursor: pointer;\n}\n.popup-header .label .close-icon[data-v-068fe44d]:hover {\n background: #f6f6f6;\n}\n.popup-header .label .close-icon:hover line[data-v-068fe44d] {\n stroke: #00BC7E;\n}\n@media only screen and (max-width: 690px) {\n.popup-header[data-v-068fe44d] {\n padding: 15px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.popup-header .label .close-icon[data-v-068fe44d] {\n cursor: pointer;\n}\n.popup-header .label .close-icon[data-v-068fe44d]:hover {\n background: #1e2024;\n}\n.popup-header .title[data-v-068fe44d] {\n color: #bec6cf;\n}\n.popup-header .message[data-v-068fe44d] {\n color: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(44);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".folder-item[data-v-76e00088] {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n display: block;\n padding: 8px 23px;\n transition: 150ms all ease;\n cursor: pointer;\n position: relative;\n white-space: nowrap;\n}\n.folder-item .icon[data-v-76e00088] {\n line-height: 0;\n width: 15px;\n margin-right: 9px;\n vertical-align: middle;\n margin-top: -1px;\n}\n.folder-item .icon path[data-v-76e00088], .folder-item .icon line[data-v-76e00088], .folder-item .icon polyline[data-v-76e00088], .folder-item .icon rect[data-v-76e00088], .folder-item .icon circle[data-v-76e00088] {\n transition: 150ms all ease;\n}\n.folder-item .icon-arrow[data-v-76e00088] {\n transition: 300ms all ease;\n margin-right: 4px;\n vertical-align: middle;\n opacity: 0;\n}\n.folder-item .icon-arrow.is-visible[data-v-76e00088] {\n opacity: 1;\n}\n.folder-item .icon-arrow.is-opened[data-v-76e00088] {\n transform: rotate(90deg);\n}\n.folder-item .label[data-v-76e00088] {\n transition: 150ms all ease;\n font-size: 0.8125em;\n font-weight: 700;\n vertical-align: middle;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n color: #1c1d1f;\n}\n.folder-item:hover .icon path[data-v-76e00088], .folder-item:hover .icon line[data-v-76e00088], .folder-item:hover .icon polyline[data-v-76e00088], .folder-item:hover .icon rect[data-v-76e00088], .folder-item:hover .icon circle[data-v-76e00088], .folder-item.is-selected .icon path[data-v-76e00088], .folder-item.is-selected .icon line[data-v-76e00088], .folder-item.is-selected .icon polyline[data-v-76e00088], .folder-item.is-selected .icon rect[data-v-76e00088], .folder-item.is-selected .icon circle[data-v-76e00088] {\n stroke: #00BC7E;\n}\n.folder-item:hover .label[data-v-76e00088], .folder-item.is-selected .label[data-v-76e00088] {\n color: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.folder-item .label[data-v-76e00088] {\n color: #bec6cf;\n}\n.folder-item[data-v-76e00088]:hover {\n background: rgba(0, 188, 126, 0.1);\n}\n.folder-item.is-selected[data-v-76e00088] {\n background: rgba(0, 188, 126, 0.1);\n}\n.is-selected[data-v-76e00088] {\n background: rgba(0, 188, 126, 0.1);\n}\n}\n@media (prefers-color-scheme: dark) and (max-width: 690px) {\n.folder-item[data-v-76e00088]:hover, .folder-item.is-selected[data-v-76e00088] {\n background: rgba(0, 188, 126, 0.1);\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(45);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".item-thumbnail[data-v-0a79c793] {\n margin-bottom: 20px;\n}\n",""])},function(e,t,n){"use strict";var a=n(46);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".vignette[data-v-5b11ad29] {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n bottom: 0;\n z-index: 19;\n background: rgba(9, 8, 12, 0.35);\n}\n@media (prefers-color-scheme: dark) {\n.vignette[data-v-5b11ad29] {\n background: rgba(22, 23, 27, 0.7);\n}\n}\n.vignette-enter-active[data-v-5b11ad29] {\n -webkit-animation: vignette-in-data-v-5b11ad29 0.35s ease;\n animation: vignette-in-data-v-5b11ad29 0.35s ease;\n}\n.vignette-leave-active[data-v-5b11ad29] {\n animation: vignette-in-data-v-5b11ad29 0.15s ease reverse;\n}\n@-webkit-keyframes vignette-in-data-v-5b11ad29 {\n0% {\n opacity: 0;\n}\n100% {\n opacity: 1;\n}\n}\n@keyframes vignette-in-data-v-5b11ad29 {\n0% {\n opacity: 0;\n}\n100% {\n opacity: 1;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(47);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".popup[data-v-5c9c7b22] {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 20;\n overflow: auto;\n height: 100%;\n}\n.popup-wrapper[data-v-5c9c7b22] {\n z-index: 12;\n position: absolute;\n left: 0;\n right: 0;\n max-width: 480px;\n top: 50%;\n transform: translateY(-50%) scale(1);\n margin: 0 auto;\n padding: 20px;\n box-shadow: 0 15px 50px 10px rgba(26, 38, 74, 0.12);\n border-radius: 8px;\n text-align: center;\n background: white;\n}\n.popup-image[data-v-5c9c7b22] {\n margin-bottom: 30px;\n}\n.popup-image .emoji[data-v-5c9c7b22] {\n font-size: 3.5em;\n line-height: 1;\n}\n.popup-content .title[data-v-5c9c7b22] {\n font-size: 1.375em;\n text-transform: uppercase;\n font-weight: 800;\n color: #1c1d1f;\n}\n.popup-content .message[data-v-5c9c7b22] {\n font-size: 1em;\n color: #333;\n margin-top: 5px;\n}\n.popup-actions[data-v-5c9c7b22] {\n margin-top: 30px;\n}\n.popup-actions .action-confirm[data-v-5c9c7b22] {\n width: 100%;\n}\n@media only screen and (max-width: 690px) {\n.popup-wrapper[data-v-5c9c7b22] {\n padding: 40px 20px 20px;\n left: 15px;\n right: 15px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.popup-wrapper[data-v-5c9c7b22] {\n background: #111314;\n}\n.popup-content .title[data-v-5c9c7b22] {\n color: #bec6cf;\n}\n.popup-content .message[data-v-5c9c7b22] {\n color: #7d858c;\n}\n}\n.popup-enter-active[data-v-5c9c7b22] {\n -webkit-animation: popup-in-data-v-5c9c7b22 0.35s 0.15s ease both;\n animation: popup-in-data-v-5c9c7b22 0.35s 0.15s ease both;\n}\n.popup-leave-active[data-v-5c9c7b22] {\n animation: popup-in-data-v-5c9c7b22 0.15s ease reverse;\n}\n@-webkit-keyframes popup-in-data-v-5c9c7b22 {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n@keyframes popup-in-data-v-5c9c7b22 {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(48);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form.inline-form[data-v-4ef40bb8] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-4ef40bb8] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4ef40bb8] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-4ef40bb8] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-4ef40bb8] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-4ef40bb8]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-4ef40bb8] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1c1d1f;\n}\n.form.block-form .button[data-v-4ef40bb8] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-4ef40bb8] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-4ef40bb8] {\n width: 100%;\n}\ntextarea[data-v-4ef40bb8],\ninput[type="password"][data-v-4ef40bb8],\ninput[type="text"][data-v-4ef40bb8],\ninput[type="email"][data-v-4ef40bb8] {\n background: #f6f6f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-4ef40bb8],\ninput[type="password"].is-error[data-v-4ef40bb8],\ninput[type="text"].is-error[data-v-4ef40bb8],\ninput[type="email"].is-error[data-v-4ef40bb8] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-4ef40bb8]::-webkit-input-placeholder, input[type="password"][data-v-4ef40bb8]::-webkit-input-placeholder, input[type="text"][data-v-4ef40bb8]::-webkit-input-placeholder, input[type="email"][data-v-4ef40bb8]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4ef40bb8]::-moz-placeholder, input[type="password"][data-v-4ef40bb8]::-moz-placeholder, input[type="text"][data-v-4ef40bb8]::-moz-placeholder, input[type="email"][data-v-4ef40bb8]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4ef40bb8]:-ms-input-placeholder, input[type="password"][data-v-4ef40bb8]:-ms-input-placeholder, input[type="text"][data-v-4ef40bb8]:-ms-input-placeholder, input[type="email"][data-v-4ef40bb8]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4ef40bb8]::-ms-input-placeholder, input[type="password"][data-v-4ef40bb8]::-ms-input-placeholder, input[type="text"][data-v-4ef40bb8]::-ms-input-placeholder, input[type="email"][data-v-4ef40bb8]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4ef40bb8]::placeholder,\ninput[type="password"][data-v-4ef40bb8]::placeholder,\ninput[type="text"][data-v-4ef40bb8]::placeholder,\ninput[type="email"][data-v-4ef40bb8]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4ef40bb8]:focus,\ninput[type="password"][data-v-4ef40bb8]:focus,\ninput[type="text"][data-v-4ef40bb8]:focus,\ninput[type="email"][data-v-4ef40bb8]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-4ef40bb8],\ninput[type="password"][disabled][data-v-4ef40bb8],\ninput[type="text"][disabled][data-v-4ef40bb8],\ninput[type="email"][disabled][data-v-4ef40bb8] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-4ef40bb8] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-4ef40bb8], .additional-link a[data-v-4ef40bb8] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-4ef40bb8]:hover, .additional-link a[data-v-4ef40bb8]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-4ef40bb8] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-4ef40bb8], .form textarea[data-v-4ef40bb8] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-4ef40bb8] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-4ef40bb8] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-4ef40bb8] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-4ef40bb8] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4ef40bb8] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-4ef40bb8] {\n padding: 14px 32px;\n}\ntextarea[data-v-4ef40bb8],\n input[type="password"][data-v-4ef40bb8],\n input[type="text"][data-v-4ef40bb8],\n input[type="email"][data-v-4ef40bb8] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-4ef40bb8] {\n color: #bec6cf;\n}\ntextarea[data-v-4ef40bb8],\n input[type="password"][data-v-4ef40bb8],\n input[type="text"][data-v-4ef40bb8],\n input[type="email"][data-v-4ef40bb8] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-4ef40bb8]::-webkit-input-placeholder, input[type="password"][data-v-4ef40bb8]::-webkit-input-placeholder, input[type="text"][data-v-4ef40bb8]::-webkit-input-placeholder, input[type="email"][data-v-4ef40bb8]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4ef40bb8]::-moz-placeholder, input[type="password"][data-v-4ef40bb8]::-moz-placeholder, input[type="text"][data-v-4ef40bb8]::-moz-placeholder, input[type="email"][data-v-4ef40bb8]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4ef40bb8]:-ms-input-placeholder, input[type="password"][data-v-4ef40bb8]:-ms-input-placeholder, input[type="text"][data-v-4ef40bb8]:-ms-input-placeholder, input[type="email"][data-v-4ef40bb8]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4ef40bb8]::-ms-input-placeholder, input[type="password"][data-v-4ef40bb8]::-ms-input-placeholder, input[type="text"][data-v-4ef40bb8]::-ms-input-placeholder, input[type="email"][data-v-4ef40bb8]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4ef40bb8]::placeholder,\n input[type="password"][data-v-4ef40bb8]::placeholder,\n input[type="text"][data-v-4ef40bb8]::placeholder,\n input[type="email"][data-v-4ef40bb8]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-4ef40bb8],\n input[type="password"][disabled][data-v-4ef40bb8],\n input[type="text"][disabled][data-v-4ef40bb8],\n input[type="email"][disabled][data-v-4ef40bb8] {\n color: #7d858c;\n}\n}\n.auth-form[data-v-4ef40bb8] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-4ef40bb8] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-4ef40bb8] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-4ef40bb8] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-4ef40bb8] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-4ef40bb8] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1c1d1f;\n}\n.auth-form h2[data-v-4ef40bb8] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1c1d1f;\n}\n.auth-form .block-form[data-v-4ef40bb8] {\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form .block-form .block-wrapper label[data-v-4ef40bb8] {\n text-align: right;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-4ef40bb8] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-4ef40bb8] {\n width: 100%;\n}\n.auth-form h1[data-v-4ef40bb8] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-4ef40bb8] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-4ef40bb8] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-4ef40bb8] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-4ef40bb8] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-4ef40bb8] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-4ef40bb8], .auth-form h2[data-v-4ef40bb8], .auth-form .additional-link[data-v-4ef40bb8] {\n color: #bec6cf;\n}\n}\n#shared[data-v-4ef40bb8] {\n height: 100%;\n}\n#password-view[data-v-4ef40bb8] {\n display: grid;\n height: inherit;\n}\n#password-view .center[data-v-4ef40bb8] {\n margin: auto;\n}\n#single-file[data-v-4ef40bb8] {\n position: absolute;\n bottom: 0;\n right: 0;\n left: 0;\n top: 0;\n display: grid;\n height: 100%;\n}\n#single-file .single-file-wrapper[data-v-4ef40bb8] {\n margin: auto;\n text-align: center;\n}\n#single-file .single-file-wrapper .download-button[data-v-4ef40bb8] {\n margin-top: 15px;\n}\n#single-file[data-v-4ef40bb8] .file-wrapper .file-item {\n width: 290px;\n}\n#single-file[data-v-4ef40bb8] .file-wrapper .file-item:hover, #single-file[data-v-4ef40bb8] .file-wrapper .file-item.is-clicked {\n background: transparent;\n}\n#single-file[data-v-4ef40bb8] .file-wrapper .file-item .item-shared {\n display: none;\n}\n',""])},function(e,t,n){"use strict";var a=n(49);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".auth-form[data-v-5bac3e7c] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-5bac3e7c] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-5bac3e7c] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-5bac3e7c] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-5bac3e7c] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-5bac3e7c] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1c1d1f;\n}\n.auth-form h2[data-v-5bac3e7c] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1c1d1f;\n}\n.auth-form .block-form[data-v-5bac3e7c] {\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form .block-form .block-wrapper label[data-v-5bac3e7c] {\n text-align: right;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-5bac3e7c] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-5bac3e7c] {\n width: 100%;\n}\n.auth-form h1[data-v-5bac3e7c] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-5bac3e7c] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-5bac3e7c] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-5bac3e7c] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-5bac3e7c] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-5bac3e7c] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-5bac3e7c], .auth-form h2[data-v-5bac3e7c], .auth-form .additional-link[data-v-5bac3e7c] {\n color: #bec6cf;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(50);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form.inline-form[data-v-796faa96] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-796faa96] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-796faa96] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-796faa96] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-796faa96] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-796faa96]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-796faa96] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1c1d1f;\n}\n.form.block-form .button[data-v-796faa96] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-796faa96] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-796faa96] {\n width: 100%;\n}\ntextarea[data-v-796faa96],\ninput[type="password"][data-v-796faa96],\ninput[type="text"][data-v-796faa96],\ninput[type="email"][data-v-796faa96] {\n background: #f6f6f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-796faa96],\ninput[type="password"].is-error[data-v-796faa96],\ninput[type="text"].is-error[data-v-796faa96],\ninput[type="email"].is-error[data-v-796faa96] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-796faa96]::-webkit-input-placeholder, input[type="password"][data-v-796faa96]::-webkit-input-placeholder, input[type="text"][data-v-796faa96]::-webkit-input-placeholder, input[type="email"][data-v-796faa96]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-796faa96]::-moz-placeholder, input[type="password"][data-v-796faa96]::-moz-placeholder, input[type="text"][data-v-796faa96]::-moz-placeholder, input[type="email"][data-v-796faa96]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-796faa96]:-ms-input-placeholder, input[type="password"][data-v-796faa96]:-ms-input-placeholder, input[type="text"][data-v-796faa96]:-ms-input-placeholder, input[type="email"][data-v-796faa96]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-796faa96]::-ms-input-placeholder, input[type="password"][data-v-796faa96]::-ms-input-placeholder, input[type="text"][data-v-796faa96]::-ms-input-placeholder, input[type="email"][data-v-796faa96]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-796faa96]::placeholder,\ninput[type="password"][data-v-796faa96]::placeholder,\ninput[type="text"][data-v-796faa96]::placeholder,\ninput[type="email"][data-v-796faa96]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-796faa96]:focus,\ninput[type="password"][data-v-796faa96]:focus,\ninput[type="text"][data-v-796faa96]:focus,\ninput[type="email"][data-v-796faa96]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-796faa96],\ninput[type="password"][disabled][data-v-796faa96],\ninput[type="text"][disabled][data-v-796faa96],\ninput[type="email"][disabled][data-v-796faa96] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-796faa96] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-796faa96], .additional-link a[data-v-796faa96] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-796faa96]:hover, .additional-link a[data-v-796faa96]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-796faa96] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-796faa96], .form textarea[data-v-796faa96] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-796faa96] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-796faa96] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-796faa96] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-796faa96] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-796faa96] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-796faa96] {\n padding: 14px 32px;\n}\ntextarea[data-v-796faa96],\n input[type="password"][data-v-796faa96],\n input[type="text"][data-v-796faa96],\n input[type="email"][data-v-796faa96] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-796faa96] {\n color: #bec6cf;\n}\ntextarea[data-v-796faa96],\n input[type="password"][data-v-796faa96],\n input[type="text"][data-v-796faa96],\n input[type="email"][data-v-796faa96] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-796faa96]::-webkit-input-placeholder, input[type="password"][data-v-796faa96]::-webkit-input-placeholder, input[type="text"][data-v-796faa96]::-webkit-input-placeholder, input[type="email"][data-v-796faa96]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-796faa96]::-moz-placeholder, input[type="password"][data-v-796faa96]::-moz-placeholder, input[type="text"][data-v-796faa96]::-moz-placeholder, input[type="email"][data-v-796faa96]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-796faa96]:-ms-input-placeholder, input[type="password"][data-v-796faa96]:-ms-input-placeholder, input[type="text"][data-v-796faa96]:-ms-input-placeholder, input[type="email"][data-v-796faa96]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-796faa96]::-ms-input-placeholder, input[type="password"][data-v-796faa96]::-ms-input-placeholder, input[type="text"][data-v-796faa96]::-ms-input-placeholder, input[type="email"][data-v-796faa96]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-796faa96]::placeholder,\n input[type="password"][data-v-796faa96]::placeholder,\n input[type="text"][data-v-796faa96]::placeholder,\n input[type="email"][data-v-796faa96]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-796faa96],\n input[type="password"][disabled][data-v-796faa96],\n input[type="text"][disabled][data-v-796faa96],\n input[type="email"][disabled][data-v-796faa96] {\n color: #7d858c;\n}\n}\n.auth-form[data-v-796faa96] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-796faa96] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-796faa96] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-796faa96] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-796faa96] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-796faa96] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1c1d1f;\n}\n.auth-form h2[data-v-796faa96] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1c1d1f;\n}\n.auth-form .block-form[data-v-796faa96] {\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form .block-form .block-wrapper label[data-v-796faa96] {\n text-align: right;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-796faa96] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-796faa96] {\n width: 100%;\n}\n.auth-form h1[data-v-796faa96] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-796faa96] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-796faa96] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-796faa96] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-796faa96] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-796faa96] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-796faa96], .auth-form h2[data-v-796faa96], .auth-form .additional-link[data-v-796faa96] {\n color: #bec6cf;\n}\n}\n',""])},function(e,t,n){"use strict";var a=n(51);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form.inline-form[data-v-9c28c19e] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-9c28c19e] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-9c28c19e] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-9c28c19e] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-9c28c19e] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-9c28c19e]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-9c28c19e] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1c1d1f;\n}\n.form.block-form .button[data-v-9c28c19e] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-9c28c19e] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-9c28c19e] {\n width: 100%;\n}\ntextarea[data-v-9c28c19e],\ninput[type="password"][data-v-9c28c19e],\ninput[type="text"][data-v-9c28c19e],\ninput[type="email"][data-v-9c28c19e] {\n background: #f6f6f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-9c28c19e],\ninput[type="password"].is-error[data-v-9c28c19e],\ninput[type="text"].is-error[data-v-9c28c19e],\ninput[type="email"].is-error[data-v-9c28c19e] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-9c28c19e]::-webkit-input-placeholder, input[type="password"][data-v-9c28c19e]::-webkit-input-placeholder, input[type="text"][data-v-9c28c19e]::-webkit-input-placeholder, input[type="email"][data-v-9c28c19e]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-9c28c19e]::-moz-placeholder, input[type="password"][data-v-9c28c19e]::-moz-placeholder, input[type="text"][data-v-9c28c19e]::-moz-placeholder, input[type="email"][data-v-9c28c19e]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-9c28c19e]:-ms-input-placeholder, input[type="password"][data-v-9c28c19e]:-ms-input-placeholder, input[type="text"][data-v-9c28c19e]:-ms-input-placeholder, input[type="email"][data-v-9c28c19e]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-9c28c19e]::-ms-input-placeholder, input[type="password"][data-v-9c28c19e]::-ms-input-placeholder, input[type="text"][data-v-9c28c19e]::-ms-input-placeholder, input[type="email"][data-v-9c28c19e]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-9c28c19e]::placeholder,\ninput[type="password"][data-v-9c28c19e]::placeholder,\ninput[type="text"][data-v-9c28c19e]::placeholder,\ninput[type="email"][data-v-9c28c19e]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-9c28c19e]:focus,\ninput[type="password"][data-v-9c28c19e]:focus,\ninput[type="text"][data-v-9c28c19e]:focus,\ninput[type="email"][data-v-9c28c19e]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-9c28c19e],\ninput[type="password"][disabled][data-v-9c28c19e],\ninput[type="text"][disabled][data-v-9c28c19e],\ninput[type="email"][disabled][data-v-9c28c19e] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-9c28c19e] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-9c28c19e], .additional-link a[data-v-9c28c19e] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-9c28c19e]:hover, .additional-link a[data-v-9c28c19e]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-9c28c19e] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-9c28c19e], .form textarea[data-v-9c28c19e] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-9c28c19e] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-9c28c19e] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-9c28c19e] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-9c28c19e] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-9c28c19e] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-9c28c19e] {\n padding: 14px 32px;\n}\ntextarea[data-v-9c28c19e],\n input[type="password"][data-v-9c28c19e],\n input[type="text"][data-v-9c28c19e],\n input[type="email"][data-v-9c28c19e] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-9c28c19e] {\n color: #bec6cf;\n}\ntextarea[data-v-9c28c19e],\n input[type="password"][data-v-9c28c19e],\n input[type="text"][data-v-9c28c19e],\n input[type="email"][data-v-9c28c19e] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-9c28c19e]::-webkit-input-placeholder, input[type="password"][data-v-9c28c19e]::-webkit-input-placeholder, input[type="text"][data-v-9c28c19e]::-webkit-input-placeholder, input[type="email"][data-v-9c28c19e]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-9c28c19e]::-moz-placeholder, input[type="password"][data-v-9c28c19e]::-moz-placeholder, input[type="text"][data-v-9c28c19e]::-moz-placeholder, input[type="email"][data-v-9c28c19e]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-9c28c19e]:-ms-input-placeholder, input[type="password"][data-v-9c28c19e]:-ms-input-placeholder, input[type="text"][data-v-9c28c19e]:-ms-input-placeholder, input[type="email"][data-v-9c28c19e]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-9c28c19e]::-ms-input-placeholder, input[type="password"][data-v-9c28c19e]::-ms-input-placeholder, input[type="text"][data-v-9c28c19e]::-ms-input-placeholder, input[type="email"][data-v-9c28c19e]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-9c28c19e]::placeholder,\n input[type="password"][data-v-9c28c19e]::placeholder,\n input[type="text"][data-v-9c28c19e]::placeholder,\n input[type="email"][data-v-9c28c19e]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-9c28c19e],\n input[type="password"][disabled][data-v-9c28c19e],\n input[type="text"][disabled][data-v-9c28c19e],\n input[type="email"][disabled][data-v-9c28c19e] {\n color: #7d858c;\n}\n}\n.auth-form[data-v-9c28c19e] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-9c28c19e] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-9c28c19e] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-9c28c19e] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-9c28c19e] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-9c28c19e] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1c1d1f;\n}\n.auth-form h2[data-v-9c28c19e] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1c1d1f;\n}\n.auth-form .block-form[data-v-9c28c19e] {\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form .block-form .block-wrapper label[data-v-9c28c19e] {\n text-align: right;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-9c28c19e] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-9c28c19e] {\n width: 100%;\n}\n.auth-form h1[data-v-9c28c19e] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-9c28c19e] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-9c28c19e] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-9c28c19e] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-9c28c19e] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-9c28c19e] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-9c28c19e], .auth-form h2[data-v-9c28c19e], .auth-form .additional-link[data-v-9c28c19e] {\n color: #bec6cf;\n}\n}\n',""])},function(e,t,n){"use strict";var a=n(52);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".dropzone[data-v-50801e82] {\n position: relative;\n line-height: 0;\n}\n.dropzone input[type='file'][data-v-50801e82] {\n opacity: 0;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 1;\n width: 100%;\n cursor: pointer;\n}\n.dropzone .image-preview[data-v-50801e82] {\n width: 62px;\n height: 62px;\n -o-object-fit: cover;\n object-fit: cover;\n border-radius: 8px;\n}\n",""])},function(e,t,n){"use strict";var a=n(53);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".mobile-header[data-v-4230e5d0] {\n padding: 10px 0;\n text-align: center;\n background: white;\n position: -webkit-sticky;\n position: sticky;\n display: none;\n z-index: 6;\n top: 0;\n}\n.mobile-header > div[data-v-4230e5d0] {\n flex-grow: 1;\n align-self: center;\n white-space: nowrap;\n}\n.mobile-header .go-back[data-v-4230e5d0] {\n text-align: left;\n}\n.mobile-header .location-name[data-v-4230e5d0] {\n line-height: 1;\n text-align: center;\n width: 100%;\n vertical-align: middle;\n font-size: 0.9375em;\n color: #1c1d1f;\n font-weight: 700;\n max-width: 220px;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n}\n.mobile-header .mobile-menu[data-v-4230e5d0] {\n text-align: right;\n}\n.mobile-header .icon[data-v-4230e5d0] {\n vertical-align: middle;\n margin-top: -4px;\n}\n@media only screen and (max-width: 690px) {\n.mobile-header[data-v-4230e5d0] {\n display: flex;\n margin-bottom: 15px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.mobile-header[data-v-4230e5d0] {\n background: #111314;\n}\n.mobile-header .location-name[data-v-4230e5d0] {\n color: #bec6cf;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(54);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".page-header[data-v-641844e8] {\n display: flex;\n align-items: center;\n background: white;\n z-index: 9;\n width: 100%;\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n padding: 20px 0;\n}\n.page-header .title[data-v-641844e8] {\n font-size: 1.125em;\n font-weight: 700;\n color: #1c1d1f;\n}\n.page-header .go-back[data-v-641844e8] {\n margin-right: 10px;\n cursor: pointer;\n}\n.page-header .go-back svg[data-v-641844e8] {\n vertical-align: middle;\n margin-top: -4px;\n}\n@media only screen and (max-width: 960px) {\n.page-header .title[data-v-641844e8] {\n font-size: 1.125em;\n}\n}\n@media only screen and (max-width: 690px) {\n.page-header[data-v-641844e8] {\n display: none;\n}\n}\n@media (prefers-color-scheme: dark) {\n.page-header[data-v-641844e8] {\n background: #111314;\n}\n.page-header .title[data-v-641844e8] {\n color: #bec6cf;\n}\n.page-header .icon path[data-v-641844e8] {\n fill: #00BC7E;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(55);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".user-thumbnail[data-v-11629786] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.user-thumbnail .avatar[data-v-11629786] {\n margin-right: 20px;\n}\n.user-thumbnail .avatar img[data-v-11629786] {\n line-height: 0;\n width: 62px;\n height: 62px;\n border-radius: 12px;\n}\n.user-thumbnail .info .name[data-v-11629786] {\n display: block;\n font-size: 1.0625em;\n line-height: 1;\n}\n.user-thumbnail .info .email[data-v-11629786] {\n color: rgba(28, 29, 31, 0.7);\n font-size: 0.875em;\n}\n@media (prefers-color-scheme: dark) {\n.user-thumbnail .info .email[data-v-11629786] {\n color: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(56);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".theme-label[data-v-4c650264] {\n font-size: 0.875em;\n color: #00BC7E;\n font-weight: 600;\n display: block;\n margin-bottom: 20px;\n}\n",""])},function(e,t,n){"use strict";var a=n(57);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form[data-v-50ccaaa8] {\n max-width: 700px;\n}\n.form.inline-form[data-v-50ccaaa8] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-50ccaaa8] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-50ccaaa8] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-50ccaaa8] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-50ccaaa8] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-50ccaaa8] {\n margin-bottom: 20px;\n}\n.form.block-form .block-wrapper label[data-v-50ccaaa8] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n.form.block-form .block-wrapper[data-v-50ccaaa8]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-50ccaaa8] {\n margin-top: 50px;\n}\n.error-message[data-v-50ccaaa8] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-50ccaaa8] {\n width: 100%;\n}\ntextarea[data-v-50ccaaa8],\ninput[type="password"][data-v-50ccaaa8],\ninput[type="text"][data-v-50ccaaa8],\ninput[type="number"][data-v-50ccaaa8],\ninput[type="email"][data-v-50ccaaa8] {\n border: 1px solid #ebebeb;\n transition: 150ms all ease;\n font-size: 0.9375em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n background: #fafafa;\n}\ntextarea.is-error[data-v-50ccaaa8],\ninput[type="password"].is-error[data-v-50ccaaa8],\ninput[type="text"].is-error[data-v-50ccaaa8],\ninput[type="number"].is-error[data-v-50ccaaa8],\ninput[type="email"].is-error[data-v-50ccaaa8] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-50ccaaa8]::-webkit-input-placeholder, input[type="password"][data-v-50ccaaa8]::-webkit-input-placeholder, input[type="text"][data-v-50ccaaa8]::-webkit-input-placeholder, input[type="number"][data-v-50ccaaa8]::-webkit-input-placeholder, input[type="email"][data-v-50ccaaa8]::-webkit-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-50ccaaa8]::-moz-placeholder, input[type="password"][data-v-50ccaaa8]::-moz-placeholder, input[type="text"][data-v-50ccaaa8]::-moz-placeholder, input[type="number"][data-v-50ccaaa8]::-moz-placeholder, input[type="email"][data-v-50ccaaa8]::-moz-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-50ccaaa8]:-ms-input-placeholder, input[type="password"][data-v-50ccaaa8]:-ms-input-placeholder, input[type="text"][data-v-50ccaaa8]:-ms-input-placeholder, input[type="number"][data-v-50ccaaa8]:-ms-input-placeholder, input[type="email"][data-v-50ccaaa8]:-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-50ccaaa8]::-ms-input-placeholder, input[type="password"][data-v-50ccaaa8]::-ms-input-placeholder, input[type="text"][data-v-50ccaaa8]::-ms-input-placeholder, input[type="number"][data-v-50ccaaa8]::-ms-input-placeholder, input[type="email"][data-v-50ccaaa8]::-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-50ccaaa8]::placeholder,\ninput[type="password"][data-v-50ccaaa8]::placeholder,\ninput[type="text"][data-v-50ccaaa8]::placeholder,\ninput[type="number"][data-v-50ccaaa8]::placeholder,\ninput[type="email"][data-v-50ccaaa8]::placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-50ccaaa8]:focus,\ninput[type="password"][data-v-50ccaaa8]:focus,\ninput[type="text"][data-v-50ccaaa8]:focus,\ninput[type="number"][data-v-50ccaaa8]:focus,\ninput[type="email"][data-v-50ccaaa8]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-50ccaaa8],\ninput[type="password"][disabled][data-v-50ccaaa8],\ninput[type="text"][disabled][data-v-50ccaaa8],\ninput[type="number"][disabled][data-v-50ccaaa8],\ninput[type="email"][disabled][data-v-50ccaaa8] {\n background: #fafafa;\n cursor: not-allowed;\n}\n.additional-link[data-v-50ccaaa8] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-50ccaaa8], .additional-link a[data-v-50ccaaa8] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-50ccaaa8]:hover, .additional-link a[data-v-50ccaaa8]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-50ccaaa8] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-50ccaaa8] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-50ccaaa8], .form textarea[data-v-50ccaaa8] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-50ccaaa8] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-50ccaaa8] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-50ccaaa8] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-50ccaaa8] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-50ccaaa8] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-50ccaaa8] {\n padding: 14px 32px;\n}\ntextarea[data-v-50ccaaa8],\n input[type="password"][data-v-50ccaaa8],\n input[type="number"][data-v-50ccaaa8],\n input[type="text"][data-v-50ccaaa8],\n input[type="email"][data-v-50ccaaa8] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-50ccaaa8] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-50ccaaa8] {\n color: #bec6cf;\n}\ntextarea[data-v-50ccaaa8],\n input[type="password"][data-v-50ccaaa8],\n input[type="text"][data-v-50ccaaa8],\n input[type="number"][data-v-50ccaaa8],\n input[type="email"][data-v-50ccaaa8] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-50ccaaa8]::-webkit-input-placeholder, input[type="password"][data-v-50ccaaa8]::-webkit-input-placeholder, input[type="text"][data-v-50ccaaa8]::-webkit-input-placeholder, input[type="number"][data-v-50ccaaa8]::-webkit-input-placeholder, input[type="email"][data-v-50ccaaa8]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-50ccaaa8]::-moz-placeholder, input[type="password"][data-v-50ccaaa8]::-moz-placeholder, input[type="text"][data-v-50ccaaa8]::-moz-placeholder, input[type="number"][data-v-50ccaaa8]::-moz-placeholder, input[type="email"][data-v-50ccaaa8]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-50ccaaa8]:-ms-input-placeholder, input[type="password"][data-v-50ccaaa8]:-ms-input-placeholder, input[type="text"][data-v-50ccaaa8]:-ms-input-placeholder, input[type="number"][data-v-50ccaaa8]:-ms-input-placeholder, input[type="email"][data-v-50ccaaa8]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-50ccaaa8]::-ms-input-placeholder, input[type="password"][data-v-50ccaaa8]::-ms-input-placeholder, input[type="text"][data-v-50ccaaa8]::-ms-input-placeholder, input[type="number"][data-v-50ccaaa8]::-ms-input-placeholder, input[type="email"][data-v-50ccaaa8]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-50ccaaa8]::placeholder,\n input[type="password"][data-v-50ccaaa8]::placeholder,\n input[type="text"][data-v-50ccaaa8]::placeholder,\n input[type="number"][data-v-50ccaaa8]::placeholder,\n input[type="email"][data-v-50ccaaa8]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-50ccaaa8],\n input[type="password"][disabled][data-v-50ccaaa8],\n input[type="text"][disabled][data-v-50ccaaa8],\n input[type="number"][disabled][data-v-50ccaaa8],\n input[type="email"][disabled][data-v-50ccaaa8] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button-base[data-v-50ccaaa8] {\n width: 100%;\n margin-top: 0;\n text-align: center;\n}\n}\n',""])},function(e,t,n){"use strict";var a=n(58);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".detail-storage-item[data-v-72e8229e] {\n margin-bottom: 35px;\n}\n.detail-storage-item.disk .icon path[data-v-72e8229e], .detail-storage-item.disk .icon line[data-v-72e8229e], .detail-storage-item.disk .icon polyline[data-v-72e8229e], .detail-storage-item.disk .icon rect[data-v-72e8229e], .detail-storage-item.disk .icon circle[data-v-72e8229e], .detail-storage-item.disk .icon polygon[data-v-72e8229e] {\n stroke: #00BC7E;\n}\n.detail-storage-item.disk .storage-progress[data-v-72e8229e] span {\n background: #00BC7E;\n}\n.detail-storage-item.images .icon path[data-v-72e8229e], .detail-storage-item.images .icon line[data-v-72e8229e], .detail-storage-item.images .icon polyline[data-v-72e8229e], .detail-storage-item.images .icon rect[data-v-72e8229e], .detail-storage-item.images .icon circle[data-v-72e8229e], .detail-storage-item.images .icon polygon[data-v-72e8229e] {\n stroke: #9D66FE;\n}\n.detail-storage-item.images .storage-progress[data-v-72e8229e] span {\n background: #9D66FE;\n}\n.detail-storage-item.videos .icon path[data-v-72e8229e], .detail-storage-item.videos .icon line[data-v-72e8229e], .detail-storage-item.videos .icon polyline[data-v-72e8229e], .detail-storage-item.videos .icon rect[data-v-72e8229e], .detail-storage-item.videos .icon circle[data-v-72e8229e], .detail-storage-item.videos .icon polygon[data-v-72e8229e] {\n stroke: #FFBD2D;\n}\n.detail-storage-item.videos .storage-progress[data-v-72e8229e] span {\n background: #FFBD2D;\n}\n.detail-storage-item.audios .icon path[data-v-72e8229e], .detail-storage-item.audios .icon line[data-v-72e8229e], .detail-storage-item.audios .icon polyline[data-v-72e8229e], .detail-storage-item.audios .icon rect[data-v-72e8229e], .detail-storage-item.audios .icon circle[data-v-72e8229e], .detail-storage-item.audios .icon polygon[data-v-72e8229e] {\n stroke: #FE66A1;\n}\n.detail-storage-item.audios .storage-progress[data-v-72e8229e] span {\n background: #FE66A1;\n}\n.detail-storage-item.documents .icon path[data-v-72e8229e], .detail-storage-item.documents .icon line[data-v-72e8229e], .detail-storage-item.documents .icon polyline[data-v-72e8229e], .detail-storage-item.documents .icon rect[data-v-72e8229e], .detail-storage-item.documents .icon circle[data-v-72e8229e], .detail-storage-item.documents .icon polygon[data-v-72e8229e] {\n stroke: #FE6057;\n}\n.detail-storage-item.documents .storage-progress[data-v-72e8229e] span {\n background: #FE6057;\n}\n.detail-storage-item.others .icon path[data-v-72e8229e], .detail-storage-item.others .icon line[data-v-72e8229e], .detail-storage-item.others .icon polyline[data-v-72e8229e], .detail-storage-item.others .icon rect[data-v-72e8229e], .detail-storage-item.others .icon circle[data-v-72e8229e], .detail-storage-item.others .icon polygon[data-v-72e8229e] {\n stroke: #1c1d1f;\n}\n.detail-storage-item.others .storage-progress[data-v-72e8229e] span {\n background: #1c1d1f;\n}\n.header-storage-item[data-v-72e8229e] {\n display: flex;\n align-items: flex-start;\n margin-bottom: 10px;\n}\n.header-storage-item .icon[data-v-72e8229e] {\n width: 35px;\n}\n.header-storage-item .type[data-v-72e8229e] {\n font-size: 0.9375em;\n color: #1c1d1f;\n}\n.header-storage-item .total-size[data-v-72e8229e] {\n font-size: 0.625em;\n display: block;\n color: rgba(28, 29, 31, 0.7);\n}\n@media (prefers-color-scheme: dark) {\n.header-storage-item .type[data-v-72e8229e] {\n color: #bec6cf;\n}\n.header-storage-item .total-size[data-v-72e8229e] {\n color: #7d858c;\n}\n.detail-storage-item.others .icon path[data-v-72e8229e], .detail-storage-item.others .icon line[data-v-72e8229e], .detail-storage-item.others .icon polyline[data-v-72e8229e], .detail-storage-item.others .icon rect[data-v-72e8229e], .detail-storage-item.others .icon circle[data-v-72e8229e], .detail-storage-item.others .icon polygon[data-v-72e8229e] {\n stroke: #41454e;\n}\n.detail-storage-item.others .storage-progress[data-v-72e8229e] span {\n background: #41454e;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(59);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".text-label[data-v-69d97df2] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 20px;\n}\n@media (prefers-color-scheme: dark) {\n.text-label[data-v-69d97df2] {\n color: #00BC7E;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(60);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,"#single-page[data-v-363e51fc] {\n overflow: hidden;\n width: 100%;\n height: 100%;\n position: relative;\n}\n#single-page .content-page[data-v-363e51fc] {\n overflow-y: auto;\n height: 100%;\n padding-bottom: 100px;\n max-width: 700px;\n width: 100%;\n margin: 0 auto;\n}\n@media only screen and (max-width: 960px) {\n#single-page .content-page[data-v-363e51fc] {\n padding-left: 15px;\n padding-right: 15px;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(61);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,"#files-view {\n font-family: 'Nunito', sans-serif;\n font-size: 16px;\n width: 100%;\n height: 100%;\n position: relative;\n min-width: 320px;\n overflow-x: hidden;\n padding-left: 15px;\n padding-right: 15px;\n overflow-y: hidden;\n}\n@media only screen and (max-width: 690px) {\n#files-view {\n padding-left: 0;\n padding-right: 0;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(62);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".content-sidebar[data-v-7ddf4cbb] {\n background: linear-gradient(0deg, rgba(246, 245, 241, 0.4) 0%, rgba(243, 244, 246, 0.4) 100%);\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n padding-top: 25px;\n overflow-y: auto;\n flex: 0 0 225px;\n}\n@media only screen and (max-width: 1024px) {\n.content-sidebar[data-v-7ddf4cbb] {\n flex: 0 0 205px;\n}\n}\n@media only screen and (max-width: 690px) {\n.content-sidebar[data-v-7ddf4cbb] {\n display: none;\n}\n}\n@media (prefers-color-scheme: dark) {\n.content-sidebar[data-v-7ddf4cbb] {\n background: rgba(30, 32, 36, 0.2);\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(63);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".text-label[data-v-4c36e0a9] {\n padding-left: 25px;\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n@media only screen and (max-width: 1024px) {\n.text-label[data-v-4c36e0a9] {\n padding-left: 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.text-label[data-v-4c36e0a9] {\n color: #00BC7E;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(64);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".content-group[data-v-da1bd2b8] {\n margin-bottom: 30px;\n}\n",""])},function(e,t,n){"use strict";var a=n(65);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".folder-item[data-v-4284144a] {\n display: block;\n padding: 8px 0;\n transition: 150ms all ease;\n cursor: pointer;\n position: relative;\n white-space: nowrap;\n width: 100%;\n}\n.folder-item .icon[data-v-4284144a] {\n line-height: 0;\n width: 15px;\n margin-right: 9px;\n vertical-align: middle;\n margin-top: -1px;\n}\n.folder-item .icon path[data-v-4284144a], .folder-item .icon line[data-v-4284144a], .folder-item .icon polyline[data-v-4284144a], .folder-item .icon rect[data-v-4284144a], .folder-item .icon circle[data-v-4284144a] {\n transition: 150ms all ease;\n}\n.folder-item .icon-arrow[data-v-4284144a] {\n transition: 300ms all ease;\n margin-right: 4px;\n vertical-align: middle;\n opacity: 0;\n}\n.folder-item .icon-arrow.is-visible[data-v-4284144a] {\n opacity: 1;\n}\n.folder-item .icon-arrow.is-opened[data-v-4284144a] {\n transform: rotate(90deg);\n}\n.folder-item .label[data-v-4284144a] {\n transition: 150ms all ease;\n font-size: 0.8125em;\n font-weight: 700;\n vertical-align: middle;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n color: #1c1d1f;\n max-width: 130px;\n}\n.folder-item:hover .icon path[data-v-4284144a], .folder-item:hover .icon line[data-v-4284144a], .folder-item:hover .icon polyline[data-v-4284144a], .folder-item:hover .icon rect[data-v-4284144a], .folder-item:hover .icon circle[data-v-4284144a], .folder-item.is-selected .icon path[data-v-4284144a], .folder-item.is-selected .icon line[data-v-4284144a], .folder-item.is-selected .icon polyline[data-v-4284144a], .folder-item.is-selected .icon rect[data-v-4284144a], .folder-item.is-selected .icon circle[data-v-4284144a] {\n stroke: #00BC7E;\n}\n.folder-item:hover .label[data-v-4284144a], .folder-item.is-selected .label[data-v-4284144a] {\n color: #00BC7E;\n}\n@media only screen and (max-width: 1024px) {\n.folder-item[data-v-4284144a] {\n padding: 8px 0;\n}\n}\n@media (prefers-color-scheme: dark) {\n.folder-item .label[data-v-4284144a] {\n color: #bec6cf;\n}\n.folder-item[data-v-4284144a]:hover {\n background: rgba(0, 188, 126, 0.1);\n}\n.folder-item.is-selected[data-v-4284144a] {\n background: rgba(0, 188, 126, 0.1);\n}\n.is-selected[data-v-4284144a] {\n background: rgba(0, 188, 126, 0.1);\n}\n}\n@media (prefers-color-scheme: dark) and (max-width: 690px) {\n.folder-item[data-v-4284144a]:hover, .folder-item.is-selected[data-v-4284144a] {\n background: rgba(0, 188, 126, 0.1);\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(66);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".empty-note.navigator[data-v-9da4a6de] {\n padding: 5px 25px 10px;\n}\n.empty-note.favourites[data-v-9da4a6de] {\n padding: 5px 23px 10px;\n}\n.navigator[data-v-9da4a6de] {\n width: 100%;\n overflow-x: auto;\n}\n@media only screen and (max-width: 1024px) {\n.empty-note.navigator[data-v-9da4a6de] {\n padding: 5px 20px 10px;\n}\n.empty-note.favourites[data-v-9da4a6de] {\n padding: 5px 18px 10px;\n}\n}\n.folder-item-move[data-v-9da4a6de] {\n transition: transform 300s ease;\n}\n.folder-item-enter-active[data-v-9da4a6de] {\n transition: all 300ms ease;\n}\n.folder-item-leave-active[data-v-9da4a6de] {\n transition: all 300ms;\n}\n.folder-item-enter[data-v-9da4a6de], .folder-item-leave-to[data-v-9da4a6de] {\n opacity: 0;\n transform: translateX(30px);\n}\n.folder-item-leave-active[data-v-9da4a6de] {\n position: absolute;\n}\n",""])},function(e,t,n){"use strict";var a=n(67);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form[data-v-f4d526ae] {\n max-width: 700px;\n}\n.form.inline-form[data-v-f4d526ae] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-f4d526ae] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-f4d526ae] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-f4d526ae] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-f4d526ae] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-f4d526ae] {\n margin-bottom: 20px;\n}\n.form.block-form .block-wrapper label[data-v-f4d526ae] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n.form.block-form .block-wrapper[data-v-f4d526ae]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-f4d526ae] {\n margin-top: 50px;\n}\n.error-message[data-v-f4d526ae] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-f4d526ae] {\n width: 100%;\n}\ntextarea[data-v-f4d526ae],\ninput[type="password"][data-v-f4d526ae],\ninput[type="text"][data-v-f4d526ae],\ninput[type="number"][data-v-f4d526ae],\ninput[type="email"][data-v-f4d526ae] {\n border: 1px solid #ebebeb;\n transition: 150ms all ease;\n font-size: 0.9375em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n background: #fafafa;\n}\ntextarea.is-error[data-v-f4d526ae],\ninput[type="password"].is-error[data-v-f4d526ae],\ninput[type="text"].is-error[data-v-f4d526ae],\ninput[type="number"].is-error[data-v-f4d526ae],\ninput[type="email"].is-error[data-v-f4d526ae] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-f4d526ae]::-webkit-input-placeholder, input[type="password"][data-v-f4d526ae]::-webkit-input-placeholder, input[type="text"][data-v-f4d526ae]::-webkit-input-placeholder, input[type="number"][data-v-f4d526ae]::-webkit-input-placeholder, input[type="email"][data-v-f4d526ae]::-webkit-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-f4d526ae]::-moz-placeholder, input[type="password"][data-v-f4d526ae]::-moz-placeholder, input[type="text"][data-v-f4d526ae]::-moz-placeholder, input[type="number"][data-v-f4d526ae]::-moz-placeholder, input[type="email"][data-v-f4d526ae]::-moz-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-f4d526ae]:-ms-input-placeholder, input[type="password"][data-v-f4d526ae]:-ms-input-placeholder, input[type="text"][data-v-f4d526ae]:-ms-input-placeholder, input[type="number"][data-v-f4d526ae]:-ms-input-placeholder, input[type="email"][data-v-f4d526ae]:-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-f4d526ae]::-ms-input-placeholder, input[type="password"][data-v-f4d526ae]::-ms-input-placeholder, input[type="text"][data-v-f4d526ae]::-ms-input-placeholder, input[type="number"][data-v-f4d526ae]::-ms-input-placeholder, input[type="email"][data-v-f4d526ae]::-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-f4d526ae]::placeholder,\ninput[type="password"][data-v-f4d526ae]::placeholder,\ninput[type="text"][data-v-f4d526ae]::placeholder,\ninput[type="number"][data-v-f4d526ae]::placeholder,\ninput[type="email"][data-v-f4d526ae]::placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-f4d526ae]:focus,\ninput[type="password"][data-v-f4d526ae]:focus,\ninput[type="text"][data-v-f4d526ae]:focus,\ninput[type="number"][data-v-f4d526ae]:focus,\ninput[type="email"][data-v-f4d526ae]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-f4d526ae],\ninput[type="password"][disabled][data-v-f4d526ae],\ninput[type="text"][disabled][data-v-f4d526ae],\ninput[type="number"][disabled][data-v-f4d526ae],\ninput[type="email"][disabled][data-v-f4d526ae] {\n background: #fafafa;\n cursor: not-allowed;\n}\n.additional-link[data-v-f4d526ae] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-f4d526ae], .additional-link a[data-v-f4d526ae] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-f4d526ae]:hover, .additional-link a[data-v-f4d526ae]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-f4d526ae] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-f4d526ae] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-f4d526ae], .form textarea[data-v-f4d526ae] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-f4d526ae] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-f4d526ae] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-f4d526ae] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-f4d526ae] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-f4d526ae] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-f4d526ae] {\n padding: 14px 32px;\n}\ntextarea[data-v-f4d526ae],\n input[type="password"][data-v-f4d526ae],\n input[type="number"][data-v-f4d526ae],\n input[type="text"][data-v-f4d526ae],\n input[type="email"][data-v-f4d526ae] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-f4d526ae] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-f4d526ae] {\n color: #bec6cf;\n}\ntextarea[data-v-f4d526ae],\n input[type="password"][data-v-f4d526ae],\n input[type="text"][data-v-f4d526ae],\n input[type="number"][data-v-f4d526ae],\n input[type="email"][data-v-f4d526ae] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-f4d526ae]::-webkit-input-placeholder, input[type="password"][data-v-f4d526ae]::-webkit-input-placeholder, input[type="text"][data-v-f4d526ae]::-webkit-input-placeholder, input[type="number"][data-v-f4d526ae]::-webkit-input-placeholder, input[type="email"][data-v-f4d526ae]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-f4d526ae]::-moz-placeholder, input[type="password"][data-v-f4d526ae]::-moz-placeholder, input[type="text"][data-v-f4d526ae]::-moz-placeholder, input[type="number"][data-v-f4d526ae]::-moz-placeholder, input[type="email"][data-v-f4d526ae]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-f4d526ae]:-ms-input-placeholder, input[type="password"][data-v-f4d526ae]:-ms-input-placeholder, input[type="text"][data-v-f4d526ae]:-ms-input-placeholder, input[type="number"][data-v-f4d526ae]:-ms-input-placeholder, input[type="email"][data-v-f4d526ae]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-f4d526ae]::-ms-input-placeholder, input[type="password"][data-v-f4d526ae]::-ms-input-placeholder, input[type="text"][data-v-f4d526ae]::-ms-input-placeholder, input[type="number"][data-v-f4d526ae]::-ms-input-placeholder, input[type="email"][data-v-f4d526ae]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-f4d526ae]::placeholder,\n input[type="password"][data-v-f4d526ae]::placeholder,\n input[type="text"][data-v-f4d526ae]::placeholder,\n input[type="number"][data-v-f4d526ae]::placeholder,\n input[type="email"][data-v-f4d526ae]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-f4d526ae],\n input[type="password"][disabled][data-v-f4d526ae],\n input[type="text"][disabled][data-v-f4d526ae],\n input[type="number"][disabled][data-v-f4d526ae],\n input[type="email"][disabled][data-v-f4d526ae] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button-base[data-v-f4d526ae] {\n width: 100%;\n margin-top: 0;\n text-align: center;\n}\n}\n',""])},function(e,t,n){"use strict";var a=n(68);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".link-item[data-v-752e12c4] {\n display: flex;\n text-decoration: none;\n padding: 17px 0;\n width: 100%;\n}\n.link-item.power .menu-icon path[data-v-752e12c4], .link-item.power .menu-icon line[data-v-752e12c4], .link-item.power .menu-icon polyline[data-v-752e12c4], .link-item.power .menu-icon rect[data-v-752e12c4], .link-item.power .menu-icon circle[data-v-752e12c4] {\n stroke: #FE6057;\n}\n.link-item.power .menu-link[data-v-752e12c4] {\n color: #FE6057;\n}\n.link-item .menu-icon[data-v-752e12c4] {\n display: block;\n margin-right: 20px;\n}\n.link-item .menu-icon svg[data-v-752e12c4] {\n margin-top: -1px;\n vertical-align: middle;\n}\n.link-item .menu-icon path[data-v-752e12c4], .link-item .menu-icon line[data-v-752e12c4], .link-item .menu-icon polyline[data-v-752e12c4], .link-item .menu-icon rect[data-v-752e12c4], .link-item .menu-icon circle[data-v-752e12c4] {\n stroke: #1c1d1f;\n}\n.link-item .menu-link[data-v-752e12c4] {\n width: 100%;\n display: flex;\n justify-content: space-between;\n align-items: center;\n color: #1c1d1f;\n}\n.link-item .menu-link span[data-v-752e12c4] {\n font-size: 0.875em;\n}\n@media (prefers-color-scheme: dark) {\n.link-item .menu-icon path[data-v-752e12c4], .link-item .menu-icon line[data-v-752e12c4], .link-item .menu-icon polyline[data-v-752e12c4], .link-item .menu-icon rect[data-v-752e12c4], .link-item .menu-icon circle[data-v-752e12c4] {\n stroke: #bec6cf;\n}\n.link-item .menu-link[data-v-752e12c4] {\n color: #bec6cf;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(69);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".mobile-navigation[data-v-c496cd40] {\n width: 100%;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 99;\n}\n.context-menu-enter-active[data-v-c496cd40],\n.fade-enter-active[data-v-c496cd40] {\n transition: all 200ms;\n}\n.context-menu-leave-active[data-v-c496cd40],\n.fade-leave-active[data-v-c496cd40] {\n transition: all 200ms;\n}\n.fade-enter[data-v-c496cd40],\n.fade-leave-to[data-v-c496cd40] {\n opacity: 0;\n}\n.context-menu-enter[data-v-c496cd40],\n.context-menu-leave-to[data-v-c496cd40] {\n opacity: 0;\n transform: translateY(100%);\n}\n.context-menu-leave-active[data-v-c496cd40] {\n position: absolute;\n}\n",""])},function(e,t,n){"use strict";var a=n(70);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".user-headline[data-v-c54fe15a] {\n margin-bottom: 38px;\n}\n",""])},function(e,t,n){"use strict";var a=n(71);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".table-row[data-v-15a1e318] {\n border-radius: 8px;\n}\n.table-row[data-v-15a1e318]:hover {\n background: #f6f6f6;\n}\n.table-row .table-cell[data-v-15a1e318] {\n padding-top: 15px;\n padding-bottom: 15px;\n}\n.table-row .table-cell[data-v-15a1e318]:first-child {\n padding-left: 15px;\n}\n.table-row .table-cell[data-v-15a1e318]:last-child {\n padding-right: 15px;\n text-align: right;\n}\n.table-row .table-cell span[data-v-15a1e318] {\n font-size: 1em;\n font-weight: bold;\n}\n",""])},function(e,t,n){"use strict";var a=n(72);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".datatable[data-v-4801e011] {\n height: 100%;\n}\n.table-row[data-v-4801e011] {\n transition: 0.3s all ease;\n}\n.table-row-enter[data-v-4801e011],\n.table-row-leave-to[data-v-4801e011] {\n opacity: 0;\n transform: translateY(-100%);\n}\n.table-row-leave-active[data-v-4801e011] {\n position: absolute;\n}\n.table[data-v-4801e011] {\n width: 100%;\n border-collapse: collapse;\n overflow-x: auto;\n}\n.table tr[data-v-4801e011] {\n width: 100%;\n}\n.table tr td[data-v-4801e011]:first-child {\n padding-left: 15px;\n}\n.table tr td[data-v-4801e011]:last-child {\n padding-right: 15px;\n text-align: right;\n}\n.table .table-header[data-v-4801e011] {\n margin-bottom: 10px;\n}\n.table .table-header tr td[data-v-4801e011] {\n padding: 12px;\n}\n.table .table-header tr td span[data-v-4801e011] {\n color: #AFAFAF;\n font-weight: 700;\n font-size: 0.75em;\n white-space: nowrap;\n}\n.table .table-header tr td.sortable[data-v-4801e011] {\n cursor: pointer;\n}\n.table .table-header tr td[data-v-4801e011]:last-child {\n text-align: right;\n}\n.table .table-header .filter-arrow[data-v-4801e011] {\n vertical-align: middle;\n margin-left: 8px;\n transition: 0.3s all ease;\n}\n.table .table-header .filter-arrow path[data-v-4801e011] {\n fill: rgba(28, 29, 31, 0.7);\n}\n.table .table-header .filter-arrow.arrow-down[data-v-4801e011] {\n transform: rotate(180deg);\n}\n.table .table-header span[data-v-4801e011] {\n font-size: 13px;\n color: rgba(28, 29, 31, 0.7);\n font-weight: bold;\n}\n.table .table-body tr[data-v-4801e011] {\n border-radius: 8px;\n}\n.table .table-body tr[data-v-4801e011]:hover {\n background: #f6f6f6;\n}\n.table .table-body tr td[data-v-4801e011] {\n padding: 12px;\n}\n.table .table-body tr td:last-child button[data-v-4801e011] {\n margin-right: 0;\n}\n.table .table-body span[data-v-4801e011], .table .table-body a.page-link[data-v-4801e011] {\n font-size: 0.9375em;\n font-weight: 700;\n padding: 10px 0;\n display: block;\n}\n.pagination .page-item[data-v-4801e011] {\n padding: 3px;\n display: inline-block;\n}\n.pagination .page-link[data-v-4801e011] {\n width: 30px;\n height: 30px;\n display: block;\n color: #1c1d1f;\n border-radius: 6px;\n text-align: center;\n line-height: 2.4;\n font-weight: bold;\n font-size: 13px;\n cursor: pointer;\n transition: 0.15s all ease;\n}\n.pagination .page-link .icon[data-v-4801e011] {\n vertical-align: middle;\n margin-top: -2px;\n}\n.pagination .page-link[data-v-4801e011]:hover:not(.disabled) {\n background: #f6f6f6;\n color: #1c1d1f;\n}\n.pagination .page-link.active[data-v-4801e011] {\n color: #1c1d1f;\n background: #f6f6f6;\n}\n.pagination .page-link.disabled[data-v-4801e011] {\n background: transparent;\n cursor: default;\n}\n.pagination .page-link.disabled svg path[data-v-4801e011] {\n fill: rgba(28, 29, 31, 0.7);\n}\n.paginator-wrapper[data-v-4801e011] {\n margin-top: 30px;\n margin-bottom: 40px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n.paginator-wrapper .paginator-info[data-v-4801e011] {\n font-size: 13px;\n color: rgba(28, 29, 31, 0.7);\n}\n.user-preview[data-v-4801e011] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.user-preview img[data-v-4801e011] {\n width: 45px;\n margin-right: 22px;\n}\n@media only screen and (max-width: 690px) {\n.paginator-wrapper[data-v-4801e011] {\n display: block;\n text-align: center;\n}\n.paginator-wrapper .paginator-info[data-v-4801e011] {\n margin-top: 10px;\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.table .table-header tr td span[data-v-4801e011] {\n color: #00BC7E;\n}\n.table .table-body tr[data-v-4801e011]:hover {\n background: #1e2024;\n}\n.paginator-wrapper .paginator-info[data-v-4801e011] {\n color: #7d858c;\n}\n.pagination .page-link[data-v-4801e011] {\n color: #7d858c;\n}\n.pagination .page-link svg polyline[data-v-4801e011] {\n stroke: #bec6cf;\n}\n.pagination .page-link[data-v-4801e011]:hover:not(.disabled) {\n color: #00BC7E;\n background: rgba(0, 188, 126, 0.1);\n}\n.pagination .page-link.active[data-v-4801e011] {\n color: #00BC7E;\n background: rgba(0, 188, 126, 0.1);\n}\n.pagination .page-link.disabled[data-v-4801e011] {\n background: transparent;\n cursor: default;\n}\n.pagination .page-link.disabled svg polyline[data-v-4801e011] {\n stroke: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(73);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".color-label[data-v-35ce19a1] {\n text-transform: capitalize;\n font-size: 0.75em;\n display: inline-block;\n border-radius: 6px;\n font-weight: 700;\n padding: 4px 6px;\n}\n.color-label.purple[data-v-35ce19a1] {\n color: #9D66FE;\n background: rgba(157, 102, 254, 0.1);\n}\n.color-label.yellow[data-v-35ce19a1] {\n color: #FFBD2D;\n background: rgba(255, 189, 45, 0.1);\n}\n",""])},function(e,t,n){"use strict";var a=n(74);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".table-tools[data-v-da82b38c] {\n background: white;\n display: flex;\n justify-content: space-between;\n padding: 15px 0 10px;\n position: -webkit-sticky;\n position: sticky;\n top: 40px;\n z-index: 9;\n}\n.action-icons[data-v-da82b38c] {\n white-space: nowrap;\n}\n.action-icons a[data-v-da82b38c] {\n display: inline-block;\n margin-left: 10px;\n}\n.action-icons a[data-v-da82b38c]:first-child {\n margin-left: 0;\n}\n.action-icons .icon[data-v-da82b38c] {\n cursor: pointer;\n}\n.action-icons .icon circle[data-v-da82b38c], .action-icons .icon path[data-v-da82b38c], .action-icons .icon line[data-v-da82b38c], .action-icons .icon polyline[data-v-da82b38c] {\n stroke: #1c1d1f;\n}\n.action-icons .icon.icon-trash circle[data-v-da82b38c], .action-icons .icon.icon-trash path[data-v-da82b38c], .action-icons .icon.icon-trash line[data-v-da82b38c], .action-icons .icon.icon-trash polyline[data-v-da82b38c] {\n stroke: #FE6057;\n}\n.table .cell-item[data-v-da82b38c] {\n font-size: 0.9375em;\n white-space: nowrap;\n}\n.user-thumbnail[data-v-da82b38c] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.user-thumbnail .avatar[data-v-da82b38c] {\n margin-right: 20px;\n line-height: 0;\n}\n.user-thumbnail .avatar img[data-v-da82b38c] {\n line-height: 0;\n width: 48px;\n height: 48px;\n border-radius: 8px;\n}\n.user-thumbnail .info .name[data-v-da82b38c], .user-thumbnail .info .email[data-v-da82b38c] {\n max-width: 150px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n display: block;\n}\n.user-thumbnail .info .name[data-v-da82b38c] {\n font-size: 0.9375em;\n line-height: 1;\n}\n.user-thumbnail .info .email[data-v-da82b38c] {\n color: rgba(28, 29, 31, 0.7);\n font-size: 0.75em;\n}\n@media only screen and (max-width: 690px) {\n.table-tools[data-v-da82b38c] {\n padding: 0 0 5px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.table-tools[data-v-da82b38c] {\n background: #111314;\n}\n.action-icons .icon[data-v-da82b38c] {\n cursor: pointer;\n}\n.action-icons .icon circle[data-v-da82b38c], .action-icons .icon path[data-v-da82b38c], .action-icons .icon line[data-v-da82b38c], .action-icons .icon polyline[data-v-da82b38c] {\n stroke: #bec6cf;\n}\n.user-thumbnail .info .email[data-v-da82b38c] {\n color: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(75);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".user-thumbnail[data-v-48138f4e] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.user-thumbnail .avatar[data-v-48138f4e] {\n margin-right: 20px;\n}\n.user-thumbnail .avatar img[data-v-48138f4e] {\n line-height: 0;\n width: 62px;\n height: 62px;\n border-radius: 12px;\n}\n.user-thumbnail .info .name[data-v-48138f4e] {\n display: block;\n font-size: 1.0625em;\n line-height: 1;\n}\n.user-thumbnail .info .email[data-v-48138f4e] {\n color: rgba(28, 29, 31, 0.7);\n font-size: 0.875em;\n}\n@media (prefers-color-scheme: dark) {\n.user-thumbnail .info .email[data-v-48138f4e] {\n color: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(76);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".select[data-v-49c0a452] {\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n width: 100%;\n}\n.input-options[data-v-49c0a452] {\n background: #fafafa;\n border-radius: 8px;\n position: absolute;\n overflow: hidden;\n top: 65px;\n left: 0;\n right: 0;\n z-index: 9;\n}\n.input-options .option-item[data-v-49c0a452] {\n padding: 13px 20px;\n display: block;\n border-bottom: 1px solid #EBEBEB;\n cursor: pointer;\n}\n.input-options .option-item[data-v-49c0a452]:hover {\n color: #00BC7E;\n background: rgba(0, 188, 126, 0.1);\n}\n.input-options .option-item[data-v-49c0a452]:last-child {\n border-bottom: none;\n}\n.input-area[data-v-49c0a452] {\n border: 1px solid #ebebeb;\n justify-content: space-between;\n background: #fafafa;\n transition: 150ms all ease;\n align-items: center;\n border-radius: 8px;\n padding: 13px 20px;\n display: flex;\n outline: 0;\n width: 100%;\n cursor: pointer;\n}\n.input-area .chevron[data-v-49c0a452] {\n transition: 150ms all ease;\n}\n.input-area.is-active[data-v-49c0a452] {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\n.input-area.is-active .chevron[data-v-49c0a452] {\n transform: rotate(180deg);\n}\n.input-area.is-error[data-v-49c0a452] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\n.option-icon[data-v-49c0a452] {\n width: 20px;\n display: inline-block;\n font-size: 0.625em;\n}\n.option-icon svg[data-v-49c0a452] {\n margin-top: -4px;\n vertical-align: middle;\n}\n.option-value[data-v-49c0a452] {\n font-size: 0.875em;\n font-weight: 700;\n width: 100%;\n vertical-align: middle;\n}\n.option-value.placehoder[data-v-49c0a452] {\n color: rgba(28, 29, 31, 0.5);\n}\n.slide-in-enter-active[data-v-49c0a452] {\n transition: all 150ms ease;\n}\n.slide-in-enter[data-v-49c0a452] {\n opacity: 0;\n transform: translateY(-50px);\n}\n@media (prefers-color-scheme: dark) {\n.input-area[data-v-49c0a452] {\n background: #1e2024;\n border-color: #1e2024;\n}\n.input-area .option-icon path[data-v-49c0a452] {\n fill: #00BC7E;\n}\n.input-options[data-v-49c0a452] {\n background: #1e2024;\n}\n.input-options .option-item[data-v-49c0a452] {\n border-bottom: none;\n}\n.input-options .option-item[data-v-49c0a452]:hover {\n color: #00BC7E;\n background: rgba(0, 188, 126, 0.1);\n}\n.input-options .option-item[data-v-49c0a452]:last-child {\n border-bottom: none;\n}\n.option-value.placehoder[data-v-49c0a452] {\n color: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(77);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".dropzone[data-v-cba74078] {\n border: 1px dashed #a1abc2;\n border-radius: 8px;\n position: relative;\n text-align: center;\n display: flex;\n align-items: center;\n min-height: 210px;\n}\n.dropzone.is-error[data-v-cba74078] {\n border: 2px dashed rgba(253, 57, 122, 0.3);\n}\n.dropzone.is-error .dropzone-title[data-v-cba74078] {\n color: #fd397a;\n}\n.dropzone.is-error .icon-upload path[data-v-cba74078] {\n fill: #fd397a;\n}\n.dropzone input[type='file'][data-v-cba74078] {\n opacity: 0;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 1;\n width: 100%;\n cursor: pointer;\n}\n.dropzone .image-preview[data-v-cba74078] {\n position: absolute;\n width: 100%;\n height: 100%;\n -o-object-fit: contain;\n object-fit: contain;\n left: 0;\n padding: 7px;\n display: block;\n}\n.dropzone .image-preview.fit-image[data-v-cba74078] {\n -o-object-fit: cover;\n object-fit: cover;\n border-radius: 12px;\n overflow: hidden;\n}\n.dropzone .dropzone-message[data-v-cba74078] {\n padding: 50px 0;\n width: 100%;\n}\n.dropzone .dropzone-message .dropzone-title[data-v-cba74078] {\n font-size: 1em;\n font-weight: 700;\n display: block;\n}\n.dropzone .dropzone-message .dropzone-description[data-v-cba74078] {\n color: rgba(28, 29, 31, 0.7);\n font-size: 0.75em;\n}\n@media (prefers-color-scheme: dark) {\n.dropzone .dropzone-message .icon-upload path[data-v-cba74078], .dropzone .dropzone-message .icon-upload polyline[data-v-cba74078], .dropzone .dropzone-message .icon-upload line[data-v-cba74078] {\n stroke: #00BC7E;\n}\n.dropzone .dropzone-message .dropzone-description[data-v-cba74078] {\n color: #7d858c;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(78);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form[data-v-000e5884] {\n max-width: 700px;\n}\n.form.inline-form[data-v-000e5884] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-000e5884] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-000e5884] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-000e5884] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-000e5884] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-000e5884] {\n margin-bottom: 20px;\n}\n.form.block-form .block-wrapper label[data-v-000e5884] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n.form.block-form .block-wrapper[data-v-000e5884]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-000e5884] {\n margin-top: 50px;\n}\n.error-message[data-v-000e5884] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-000e5884] {\n width: 100%;\n}\ntextarea[data-v-000e5884],\ninput[type="password"][data-v-000e5884],\ninput[type="text"][data-v-000e5884],\ninput[type="number"][data-v-000e5884],\ninput[type="email"][data-v-000e5884] {\n border: 1px solid #ebebeb;\n transition: 150ms all ease;\n font-size: 0.9375em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n background: #fafafa;\n}\ntextarea.is-error[data-v-000e5884],\ninput[type="password"].is-error[data-v-000e5884],\ninput[type="text"].is-error[data-v-000e5884],\ninput[type="number"].is-error[data-v-000e5884],\ninput[type="email"].is-error[data-v-000e5884] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-000e5884]::-webkit-input-placeholder, input[type="password"][data-v-000e5884]::-webkit-input-placeholder, input[type="text"][data-v-000e5884]::-webkit-input-placeholder, input[type="number"][data-v-000e5884]::-webkit-input-placeholder, input[type="email"][data-v-000e5884]::-webkit-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-000e5884]::-moz-placeholder, input[type="password"][data-v-000e5884]::-moz-placeholder, input[type="text"][data-v-000e5884]::-moz-placeholder, input[type="number"][data-v-000e5884]::-moz-placeholder, input[type="email"][data-v-000e5884]::-moz-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-000e5884]:-ms-input-placeholder, input[type="password"][data-v-000e5884]:-ms-input-placeholder, input[type="text"][data-v-000e5884]:-ms-input-placeholder, input[type="number"][data-v-000e5884]:-ms-input-placeholder, input[type="email"][data-v-000e5884]:-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-000e5884]::-ms-input-placeholder, input[type="password"][data-v-000e5884]::-ms-input-placeholder, input[type="text"][data-v-000e5884]::-ms-input-placeholder, input[type="number"][data-v-000e5884]::-ms-input-placeholder, input[type="email"][data-v-000e5884]::-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-000e5884]::placeholder,\ninput[type="password"][data-v-000e5884]::placeholder,\ninput[type="text"][data-v-000e5884]::placeholder,\ninput[type="number"][data-v-000e5884]::placeholder,\ninput[type="email"][data-v-000e5884]::placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-000e5884]:focus,\ninput[type="password"][data-v-000e5884]:focus,\ninput[type="text"][data-v-000e5884]:focus,\ninput[type="number"][data-v-000e5884]:focus,\ninput[type="email"][data-v-000e5884]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-000e5884],\ninput[type="password"][disabled][data-v-000e5884],\ninput[type="text"][disabled][data-v-000e5884],\ninput[type="number"][disabled][data-v-000e5884],\ninput[type="email"][disabled][data-v-000e5884] {\n background: #fafafa;\n cursor: not-allowed;\n}\n.additional-link[data-v-000e5884] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-000e5884], .additional-link a[data-v-000e5884] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-000e5884]:hover, .additional-link a[data-v-000e5884]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-000e5884] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-000e5884] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-000e5884], .form textarea[data-v-000e5884] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-000e5884] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-000e5884] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-000e5884] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-000e5884] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-000e5884] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-000e5884] {\n padding: 14px 32px;\n}\ntextarea[data-v-000e5884],\n input[type="password"][data-v-000e5884],\n input[type="number"][data-v-000e5884],\n input[type="text"][data-v-000e5884],\n input[type="email"][data-v-000e5884] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-000e5884] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-000e5884] {\n color: #bec6cf;\n}\ntextarea[data-v-000e5884],\n input[type="password"][data-v-000e5884],\n input[type="text"][data-v-000e5884],\n input[type="number"][data-v-000e5884],\n input[type="email"][data-v-000e5884] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-000e5884]::-webkit-input-placeholder, input[type="password"][data-v-000e5884]::-webkit-input-placeholder, input[type="text"][data-v-000e5884]::-webkit-input-placeholder, input[type="number"][data-v-000e5884]::-webkit-input-placeholder, input[type="email"][data-v-000e5884]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-000e5884]::-moz-placeholder, input[type="password"][data-v-000e5884]::-moz-placeholder, input[type="text"][data-v-000e5884]::-moz-placeholder, input[type="number"][data-v-000e5884]::-moz-placeholder, input[type="email"][data-v-000e5884]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-000e5884]:-ms-input-placeholder, input[type="password"][data-v-000e5884]:-ms-input-placeholder, input[type="text"][data-v-000e5884]:-ms-input-placeholder, input[type="number"][data-v-000e5884]:-ms-input-placeholder, input[type="email"][data-v-000e5884]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-000e5884]::-ms-input-placeholder, input[type="password"][data-v-000e5884]::-ms-input-placeholder, input[type="text"][data-v-000e5884]::-ms-input-placeholder, input[type="number"][data-v-000e5884]::-ms-input-placeholder, input[type="email"][data-v-000e5884]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-000e5884]::placeholder,\n input[type="password"][data-v-000e5884]::placeholder,\n input[type="text"][data-v-000e5884]::placeholder,\n input[type="number"][data-v-000e5884]::placeholder,\n input[type="email"][data-v-000e5884]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-000e5884],\n input[type="password"][disabled][data-v-000e5884],\n input[type="text"][disabled][data-v-000e5884],\n input[type="number"][disabled][data-v-000e5884],\n input[type="email"][disabled][data-v-000e5884] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n',""])},function(e,t,n){"use strict";var a=n(79);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".setup-box[data-v-328681e0] {\n padding: 20px;\n border-radius: 8px;\n}\n.setup-box .title[data-v-328681e0] {\n font-size: 1.1875em;\n margin-bottom: 15px;\n display: block;\n}\n.setup-box .description[data-v-328681e0] {\n font-size: 0.9375em;\n line-height: 1.5;\n margin-bottom: 20px;\n}\n.setup-box.base[data-v-328681e0] {\n background: #f6f6f6;\n}\n.setup-box.danger[data-v-328681e0] {\n background: #f6f6f6;\n}\n.setup-box.danger .title[data-v-328681e0] {\n color: #fd397a;\n}\n.setup-box[data-v-328681e0] input[type='text'], .setup-box[data-v-328681e0] input[type='number'],\n.setup-box[data-v-328681e0] input .input-area {\n background: white;\n}\n.setup-box[data-v-328681e0] .input-area {\n background: white;\n}\n.setup-box[data-v-328681e0] .form {\n margin-top: 20px;\n}\n.setup-box[data-v-328681e0] .form.block-form {\n max-width: 450px;\n}\n.setup-box[data-v-328681e0] .form.block-form .single-line-form {\n display: flex;\n}\n.setup-box[data-v-328681e0] .form.block-form .single-line-form .submit-button {\n margin-left: 20px;\n}\n@media only screen and (max-width: 960px) {\n.setup-box[data-v-328681e0] .form.block-form {\n max-width: 100%;\n}\n.setup-box[data-v-328681e0] .form input {\n min-width: initial;\n}\n}\n@media only screen and (max-width: 690px) {\n.setup-box[data-v-328681e0] {\n padding: 15px;\n}\n.setup-box .title[data-v-328681e0] {\n font-size: 1.0625em;\n margin-bottom: 10px;\n}\n.setup-box .description[data-v-328681e0] {\n font-size: 0.875em;\n}\n.setup-box[data-v-328681e0] .form.block-form .single-line-form {\n display: block;\n}\n.setup-box[data-v-328681e0] .form.block-form .single-line-form .submit-button {\n margin-left: 0;\n margin-top: 10px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.setup-box.base[data-v-328681e0] {\n background: #1e2024;\n}\n.setup-box.danger[data-v-328681e0] {\n background: #1e2024;\n}\n.setup-box[data-v-328681e0] input[type='text'], .setup-box[data-v-328681e0] input[type='number'],\n .setup-box[data-v-328681e0] input .input-area {\n background: #111314;\n}\n.setup-box[data-v-328681e0] .input-area {\n background: #111314;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(80);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form[data-v-1982b1a0] {\n max-width: 700px;\n}\n.form.inline-form[data-v-1982b1a0] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-1982b1a0] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-1982b1a0] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-1982b1a0] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-1982b1a0] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-1982b1a0] {\n margin-bottom: 20px;\n}\n.form.block-form .block-wrapper label[data-v-1982b1a0] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n.form.block-form .block-wrapper[data-v-1982b1a0]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-1982b1a0] {\n margin-top: 50px;\n}\n.error-message[data-v-1982b1a0] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-1982b1a0] {\n width: 100%;\n}\ntextarea[data-v-1982b1a0],\ninput[type="password"][data-v-1982b1a0],\ninput[type="text"][data-v-1982b1a0],\ninput[type="number"][data-v-1982b1a0],\ninput[type="email"][data-v-1982b1a0] {\n border: 1px solid #ebebeb;\n transition: 150ms all ease;\n font-size: 0.9375em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n background: #fafafa;\n}\ntextarea.is-error[data-v-1982b1a0],\ninput[type="password"].is-error[data-v-1982b1a0],\ninput[type="text"].is-error[data-v-1982b1a0],\ninput[type="number"].is-error[data-v-1982b1a0],\ninput[type="email"].is-error[data-v-1982b1a0] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-1982b1a0]::-webkit-input-placeholder, input[type="password"][data-v-1982b1a0]::-webkit-input-placeholder, input[type="text"][data-v-1982b1a0]::-webkit-input-placeholder, input[type="number"][data-v-1982b1a0]::-webkit-input-placeholder, input[type="email"][data-v-1982b1a0]::-webkit-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-1982b1a0]::-moz-placeholder, input[type="password"][data-v-1982b1a0]::-moz-placeholder, input[type="text"][data-v-1982b1a0]::-moz-placeholder, input[type="number"][data-v-1982b1a0]::-moz-placeholder, input[type="email"][data-v-1982b1a0]::-moz-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-1982b1a0]:-ms-input-placeholder, input[type="password"][data-v-1982b1a0]:-ms-input-placeholder, input[type="text"][data-v-1982b1a0]:-ms-input-placeholder, input[type="number"][data-v-1982b1a0]:-ms-input-placeholder, input[type="email"][data-v-1982b1a0]:-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-1982b1a0]::-ms-input-placeholder, input[type="password"][data-v-1982b1a0]::-ms-input-placeholder, input[type="text"][data-v-1982b1a0]::-ms-input-placeholder, input[type="number"][data-v-1982b1a0]::-ms-input-placeholder, input[type="email"][data-v-1982b1a0]::-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-1982b1a0]::placeholder,\ninput[type="password"][data-v-1982b1a0]::placeholder,\ninput[type="text"][data-v-1982b1a0]::placeholder,\ninput[type="number"][data-v-1982b1a0]::placeholder,\ninput[type="email"][data-v-1982b1a0]::placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-1982b1a0]:focus,\ninput[type="password"][data-v-1982b1a0]:focus,\ninput[type="text"][data-v-1982b1a0]:focus,\ninput[type="number"][data-v-1982b1a0]:focus,\ninput[type="email"][data-v-1982b1a0]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-1982b1a0],\ninput[type="password"][disabled][data-v-1982b1a0],\ninput[type="text"][disabled][data-v-1982b1a0],\ninput[type="number"][disabled][data-v-1982b1a0],\ninput[type="email"][disabled][data-v-1982b1a0] {\n background: #fafafa;\n cursor: not-allowed;\n}\n.additional-link[data-v-1982b1a0] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-1982b1a0], .additional-link a[data-v-1982b1a0] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-1982b1a0]:hover, .additional-link a[data-v-1982b1a0]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-1982b1a0] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-1982b1a0] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-1982b1a0], .form textarea[data-v-1982b1a0] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-1982b1a0] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-1982b1a0] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-1982b1a0] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-1982b1a0] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-1982b1a0] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-1982b1a0] {\n padding: 14px 32px;\n}\ntextarea[data-v-1982b1a0],\n input[type="password"][data-v-1982b1a0],\n input[type="number"][data-v-1982b1a0],\n input[type="text"][data-v-1982b1a0],\n input[type="email"][data-v-1982b1a0] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-1982b1a0] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-1982b1a0] {\n color: #bec6cf;\n}\ntextarea[data-v-1982b1a0],\n input[type="password"][data-v-1982b1a0],\n input[type="text"][data-v-1982b1a0],\n input[type="number"][data-v-1982b1a0],\n input[type="email"][data-v-1982b1a0] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-1982b1a0]::-webkit-input-placeholder, input[type="password"][data-v-1982b1a0]::-webkit-input-placeholder, input[type="text"][data-v-1982b1a0]::-webkit-input-placeholder, input[type="number"][data-v-1982b1a0]::-webkit-input-placeholder, input[type="email"][data-v-1982b1a0]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-1982b1a0]::-moz-placeholder, input[type="password"][data-v-1982b1a0]::-moz-placeholder, input[type="text"][data-v-1982b1a0]::-moz-placeholder, input[type="number"][data-v-1982b1a0]::-moz-placeholder, input[type="email"][data-v-1982b1a0]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-1982b1a0]:-ms-input-placeholder, input[type="password"][data-v-1982b1a0]:-ms-input-placeholder, input[type="text"][data-v-1982b1a0]:-ms-input-placeholder, input[type="number"][data-v-1982b1a0]:-ms-input-placeholder, input[type="email"][data-v-1982b1a0]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-1982b1a0]::-ms-input-placeholder, input[type="password"][data-v-1982b1a0]::-ms-input-placeholder, input[type="text"][data-v-1982b1a0]::-ms-input-placeholder, input[type="number"][data-v-1982b1a0]::-ms-input-placeholder, input[type="email"][data-v-1982b1a0]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-1982b1a0]::placeholder,\n input[type="password"][data-v-1982b1a0]::placeholder,\n input[type="text"][data-v-1982b1a0]::placeholder,\n input[type="number"][data-v-1982b1a0]::placeholder,\n input[type="email"][data-v-1982b1a0]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-1982b1a0],\n input[type="password"][disabled][data-v-1982b1a0],\n input[type="text"][disabled][data-v-1982b1a0],\n input[type="number"][disabled][data-v-1982b1a0],\n input[type="email"][disabled][data-v-1982b1a0] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.page-tab .page-tab-group[data-v-1982b1a0] {\n margin-bottom: 45px;\n}\n.block-form[data-v-1982b1a0] {\n max-width: 100%;\n}\n',""])},function(e,t,n){"use strict";var a=n(81);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form[data-v-4db0a425] {\n max-width: 700px;\n}\n.form.inline-form[data-v-4db0a425] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-4db0a425] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4db0a425] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-4db0a425] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-4db0a425] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-4db0a425] {\n margin-bottom: 20px;\n}\n.form.block-form .block-wrapper label[data-v-4db0a425] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n.form.block-form .block-wrapper[data-v-4db0a425]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-4db0a425] {\n margin-top: 50px;\n}\n.error-message[data-v-4db0a425] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-4db0a425] {\n width: 100%;\n}\ntextarea[data-v-4db0a425],\ninput[type="password"][data-v-4db0a425],\ninput[type="text"][data-v-4db0a425],\ninput[type="number"][data-v-4db0a425],\ninput[type="email"][data-v-4db0a425] {\n border: 1px solid #ebebeb;\n transition: 150ms all ease;\n font-size: 0.9375em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n background: #fafafa;\n}\ntextarea.is-error[data-v-4db0a425],\ninput[type="password"].is-error[data-v-4db0a425],\ninput[type="text"].is-error[data-v-4db0a425],\ninput[type="number"].is-error[data-v-4db0a425],\ninput[type="email"].is-error[data-v-4db0a425] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-4db0a425]::-webkit-input-placeholder, input[type="password"][data-v-4db0a425]::-webkit-input-placeholder, input[type="text"][data-v-4db0a425]::-webkit-input-placeholder, input[type="number"][data-v-4db0a425]::-webkit-input-placeholder, input[type="email"][data-v-4db0a425]::-webkit-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4db0a425]::-moz-placeholder, input[type="password"][data-v-4db0a425]::-moz-placeholder, input[type="text"][data-v-4db0a425]::-moz-placeholder, input[type="number"][data-v-4db0a425]::-moz-placeholder, input[type="email"][data-v-4db0a425]::-moz-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4db0a425]:-ms-input-placeholder, input[type="password"][data-v-4db0a425]:-ms-input-placeholder, input[type="text"][data-v-4db0a425]:-ms-input-placeholder, input[type="number"][data-v-4db0a425]:-ms-input-placeholder, input[type="email"][data-v-4db0a425]:-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4db0a425]::-ms-input-placeholder, input[type="password"][data-v-4db0a425]::-ms-input-placeholder, input[type="text"][data-v-4db0a425]::-ms-input-placeholder, input[type="number"][data-v-4db0a425]::-ms-input-placeholder, input[type="email"][data-v-4db0a425]::-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4db0a425]::placeholder,\ninput[type="password"][data-v-4db0a425]::placeholder,\ninput[type="text"][data-v-4db0a425]::placeholder,\ninput[type="number"][data-v-4db0a425]::placeholder,\ninput[type="email"][data-v-4db0a425]::placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4db0a425]:focus,\ninput[type="password"][data-v-4db0a425]:focus,\ninput[type="text"][data-v-4db0a425]:focus,\ninput[type="number"][data-v-4db0a425]:focus,\ninput[type="email"][data-v-4db0a425]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-4db0a425],\ninput[type="password"][disabled][data-v-4db0a425],\ninput[type="text"][disabled][data-v-4db0a425],\ninput[type="number"][disabled][data-v-4db0a425],\ninput[type="email"][disabled][data-v-4db0a425] {\n background: #fafafa;\n cursor: not-allowed;\n}\n.additional-link[data-v-4db0a425] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-4db0a425], .additional-link a[data-v-4db0a425] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-4db0a425]:hover, .additional-link a[data-v-4db0a425]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-4db0a425] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-4db0a425] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-4db0a425], .form textarea[data-v-4db0a425] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-4db0a425] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-4db0a425] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-4db0a425] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-4db0a425] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4db0a425] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-4db0a425] {\n padding: 14px 32px;\n}\ntextarea[data-v-4db0a425],\n input[type="password"][data-v-4db0a425],\n input[type="number"][data-v-4db0a425],\n input[type="text"][data-v-4db0a425],\n input[type="email"][data-v-4db0a425] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-4db0a425] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-4db0a425] {\n color: #bec6cf;\n}\ntextarea[data-v-4db0a425],\n input[type="password"][data-v-4db0a425],\n input[type="text"][data-v-4db0a425],\n input[type="number"][data-v-4db0a425],\n input[type="email"][data-v-4db0a425] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-4db0a425]::-webkit-input-placeholder, input[type="password"][data-v-4db0a425]::-webkit-input-placeholder, input[type="text"][data-v-4db0a425]::-webkit-input-placeholder, input[type="number"][data-v-4db0a425]::-webkit-input-placeholder, input[type="email"][data-v-4db0a425]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4db0a425]::-moz-placeholder, input[type="password"][data-v-4db0a425]::-moz-placeholder, input[type="text"][data-v-4db0a425]::-moz-placeholder, input[type="number"][data-v-4db0a425]::-moz-placeholder, input[type="email"][data-v-4db0a425]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4db0a425]:-ms-input-placeholder, input[type="password"][data-v-4db0a425]:-ms-input-placeholder, input[type="text"][data-v-4db0a425]:-ms-input-placeholder, input[type="number"][data-v-4db0a425]:-ms-input-placeholder, input[type="email"][data-v-4db0a425]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4db0a425]::-ms-input-placeholder, input[type="password"][data-v-4db0a425]::-ms-input-placeholder, input[type="text"][data-v-4db0a425]::-ms-input-placeholder, input[type="number"][data-v-4db0a425]::-ms-input-placeholder, input[type="email"][data-v-4db0a425]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4db0a425]::placeholder,\n input[type="password"][data-v-4db0a425]::placeholder,\n input[type="text"][data-v-4db0a425]::placeholder,\n input[type="number"][data-v-4db0a425]::placeholder,\n input[type="email"][data-v-4db0a425]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-4db0a425],\n input[type="password"][disabled][data-v-4db0a425],\n input[type="text"][disabled][data-v-4db0a425],\n input[type="number"][disabled][data-v-4db0a425],\n input[type="email"][disabled][data-v-4db0a425] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.page-tab .page-tab-group[data-v-4db0a425] {\n margin-bottom: 45px;\n}\n.block-form[data-v-4db0a425] {\n max-width: 100%;\n}\n',""])},function(e,t,n){"use strict";var a=n(82);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form[data-v-51cbe2ea] {\n max-width: 700px;\n}\n.form.inline-form[data-v-51cbe2ea] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-51cbe2ea] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-51cbe2ea] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-51cbe2ea] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-51cbe2ea] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-51cbe2ea] {\n margin-bottom: 20px;\n}\n.form.block-form .block-wrapper label[data-v-51cbe2ea] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n.form.block-form .block-wrapper[data-v-51cbe2ea]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-51cbe2ea] {\n margin-top: 50px;\n}\n.error-message[data-v-51cbe2ea] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-51cbe2ea] {\n width: 100%;\n}\ntextarea[data-v-51cbe2ea],\ninput[type="password"][data-v-51cbe2ea],\ninput[type="text"][data-v-51cbe2ea],\ninput[type="number"][data-v-51cbe2ea],\ninput[type="email"][data-v-51cbe2ea] {\n border: 1px solid #ebebeb;\n transition: 150ms all ease;\n font-size: 0.9375em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n background: #fafafa;\n}\ntextarea.is-error[data-v-51cbe2ea],\ninput[type="password"].is-error[data-v-51cbe2ea],\ninput[type="text"].is-error[data-v-51cbe2ea],\ninput[type="number"].is-error[data-v-51cbe2ea],\ninput[type="email"].is-error[data-v-51cbe2ea] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-51cbe2ea]::-webkit-input-placeholder, input[type="password"][data-v-51cbe2ea]::-webkit-input-placeholder, input[type="text"][data-v-51cbe2ea]::-webkit-input-placeholder, input[type="number"][data-v-51cbe2ea]::-webkit-input-placeholder, input[type="email"][data-v-51cbe2ea]::-webkit-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-51cbe2ea]::-moz-placeholder, input[type="password"][data-v-51cbe2ea]::-moz-placeholder, input[type="text"][data-v-51cbe2ea]::-moz-placeholder, input[type="number"][data-v-51cbe2ea]::-moz-placeholder, input[type="email"][data-v-51cbe2ea]::-moz-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-51cbe2ea]:-ms-input-placeholder, input[type="password"][data-v-51cbe2ea]:-ms-input-placeholder, input[type="text"][data-v-51cbe2ea]:-ms-input-placeholder, input[type="number"][data-v-51cbe2ea]:-ms-input-placeholder, input[type="email"][data-v-51cbe2ea]:-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-51cbe2ea]::-ms-input-placeholder, input[type="password"][data-v-51cbe2ea]::-ms-input-placeholder, input[type="text"][data-v-51cbe2ea]::-ms-input-placeholder, input[type="number"][data-v-51cbe2ea]::-ms-input-placeholder, input[type="email"][data-v-51cbe2ea]::-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-51cbe2ea]::placeholder,\ninput[type="password"][data-v-51cbe2ea]::placeholder,\ninput[type="text"][data-v-51cbe2ea]::placeholder,\ninput[type="number"][data-v-51cbe2ea]::placeholder,\ninput[type="email"][data-v-51cbe2ea]::placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-51cbe2ea]:focus,\ninput[type="password"][data-v-51cbe2ea]:focus,\ninput[type="text"][data-v-51cbe2ea]:focus,\ninput[type="number"][data-v-51cbe2ea]:focus,\ninput[type="email"][data-v-51cbe2ea]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-51cbe2ea],\ninput[type="password"][disabled][data-v-51cbe2ea],\ninput[type="text"][disabled][data-v-51cbe2ea],\ninput[type="number"][disabled][data-v-51cbe2ea],\ninput[type="email"][disabled][data-v-51cbe2ea] {\n background: #fafafa;\n cursor: not-allowed;\n}\n.additional-link[data-v-51cbe2ea] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-51cbe2ea], .additional-link a[data-v-51cbe2ea] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-51cbe2ea]:hover, .additional-link a[data-v-51cbe2ea]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-51cbe2ea] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-51cbe2ea] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-51cbe2ea], .form textarea[data-v-51cbe2ea] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-51cbe2ea] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-51cbe2ea] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-51cbe2ea] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-51cbe2ea] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-51cbe2ea] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-51cbe2ea] {\n padding: 14px 32px;\n}\ntextarea[data-v-51cbe2ea],\n input[type="password"][data-v-51cbe2ea],\n input[type="number"][data-v-51cbe2ea],\n input[type="text"][data-v-51cbe2ea],\n input[type="email"][data-v-51cbe2ea] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-51cbe2ea] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-51cbe2ea] {\n color: #bec6cf;\n}\ntextarea[data-v-51cbe2ea],\n input[type="password"][data-v-51cbe2ea],\n input[type="text"][data-v-51cbe2ea],\n input[type="number"][data-v-51cbe2ea],\n input[type="email"][data-v-51cbe2ea] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-51cbe2ea]::-webkit-input-placeholder, input[type="password"][data-v-51cbe2ea]::-webkit-input-placeholder, input[type="text"][data-v-51cbe2ea]::-webkit-input-placeholder, input[type="number"][data-v-51cbe2ea]::-webkit-input-placeholder, input[type="email"][data-v-51cbe2ea]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-51cbe2ea]::-moz-placeholder, input[type="password"][data-v-51cbe2ea]::-moz-placeholder, input[type="text"][data-v-51cbe2ea]::-moz-placeholder, input[type="number"][data-v-51cbe2ea]::-moz-placeholder, input[type="email"][data-v-51cbe2ea]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-51cbe2ea]:-ms-input-placeholder, input[type="password"][data-v-51cbe2ea]:-ms-input-placeholder, input[type="text"][data-v-51cbe2ea]:-ms-input-placeholder, input[type="number"][data-v-51cbe2ea]:-ms-input-placeholder, input[type="email"][data-v-51cbe2ea]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-51cbe2ea]::-ms-input-placeholder, input[type="password"][data-v-51cbe2ea]::-ms-input-placeholder, input[type="text"][data-v-51cbe2ea]::-ms-input-placeholder, input[type="number"][data-v-51cbe2ea]::-ms-input-placeholder, input[type="email"][data-v-51cbe2ea]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-51cbe2ea]::placeholder,\n input[type="password"][data-v-51cbe2ea]::placeholder,\n input[type="text"][data-v-51cbe2ea]::placeholder,\n input[type="number"][data-v-51cbe2ea]::placeholder,\n input[type="email"][data-v-51cbe2ea]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-51cbe2ea],\n input[type="password"][disabled][data-v-51cbe2ea],\n input[type="text"][disabled][data-v-51cbe2ea],\n input[type="number"][disabled][data-v-51cbe2ea],\n input[type="email"][disabled][data-v-51cbe2ea] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.page-tab .page-tab-group[data-v-51cbe2ea] {\n margin-bottom: 45px;\n}\n.block-form[data-v-51cbe2ea] {\n max-width: 100%;\n}\n',""])},function(e,t,n){"use strict";var a=n(83);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form[data-v-546541ec] {\n max-width: 700px;\n}\n.form.inline-form[data-v-546541ec] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-546541ec] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-546541ec] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-546541ec] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-546541ec] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-546541ec] {\n margin-bottom: 20px;\n}\n.form.block-form .block-wrapper label[data-v-546541ec] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n.form.block-form .block-wrapper[data-v-546541ec]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-546541ec] {\n margin-top: 50px;\n}\n.error-message[data-v-546541ec] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-546541ec] {\n width: 100%;\n}\ntextarea[data-v-546541ec],\ninput[type="password"][data-v-546541ec],\ninput[type="text"][data-v-546541ec],\ninput[type="number"][data-v-546541ec],\ninput[type="email"][data-v-546541ec] {\n border: 1px solid #ebebeb;\n transition: 150ms all ease;\n font-size: 0.9375em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n background: #fafafa;\n}\ntextarea.is-error[data-v-546541ec],\ninput[type="password"].is-error[data-v-546541ec],\ninput[type="text"].is-error[data-v-546541ec],\ninput[type="number"].is-error[data-v-546541ec],\ninput[type="email"].is-error[data-v-546541ec] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-546541ec]::-webkit-input-placeholder, input[type="password"][data-v-546541ec]::-webkit-input-placeholder, input[type="text"][data-v-546541ec]::-webkit-input-placeholder, input[type="number"][data-v-546541ec]::-webkit-input-placeholder, input[type="email"][data-v-546541ec]::-webkit-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-546541ec]::-moz-placeholder, input[type="password"][data-v-546541ec]::-moz-placeholder, input[type="text"][data-v-546541ec]::-moz-placeholder, input[type="number"][data-v-546541ec]::-moz-placeholder, input[type="email"][data-v-546541ec]::-moz-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-546541ec]:-ms-input-placeholder, input[type="password"][data-v-546541ec]:-ms-input-placeholder, input[type="text"][data-v-546541ec]:-ms-input-placeholder, input[type="number"][data-v-546541ec]:-ms-input-placeholder, input[type="email"][data-v-546541ec]:-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-546541ec]::-ms-input-placeholder, input[type="password"][data-v-546541ec]::-ms-input-placeholder, input[type="text"][data-v-546541ec]::-ms-input-placeholder, input[type="number"][data-v-546541ec]::-ms-input-placeholder, input[type="email"][data-v-546541ec]::-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-546541ec]::placeholder,\ninput[type="password"][data-v-546541ec]::placeholder,\ninput[type="text"][data-v-546541ec]::placeholder,\ninput[type="number"][data-v-546541ec]::placeholder,\ninput[type="email"][data-v-546541ec]::placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-546541ec]:focus,\ninput[type="password"][data-v-546541ec]:focus,\ninput[type="text"][data-v-546541ec]:focus,\ninput[type="number"][data-v-546541ec]:focus,\ninput[type="email"][data-v-546541ec]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-546541ec],\ninput[type="password"][disabled][data-v-546541ec],\ninput[type="text"][disabled][data-v-546541ec],\ninput[type="number"][disabled][data-v-546541ec],\ninput[type="email"][disabled][data-v-546541ec] {\n background: #fafafa;\n cursor: not-allowed;\n}\n.additional-link[data-v-546541ec] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-546541ec], .additional-link a[data-v-546541ec] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-546541ec]:hover, .additional-link a[data-v-546541ec]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-546541ec] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-546541ec] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-546541ec], .form textarea[data-v-546541ec] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-546541ec] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-546541ec] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-546541ec] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-546541ec] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-546541ec] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-546541ec] {\n padding: 14px 32px;\n}\ntextarea[data-v-546541ec],\n input[type="password"][data-v-546541ec],\n input[type="number"][data-v-546541ec],\n input[type="text"][data-v-546541ec],\n input[type="email"][data-v-546541ec] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-546541ec] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-546541ec] {\n color: #bec6cf;\n}\ntextarea[data-v-546541ec],\n input[type="password"][data-v-546541ec],\n input[type="text"][data-v-546541ec],\n input[type="number"][data-v-546541ec],\n input[type="email"][data-v-546541ec] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-546541ec]::-webkit-input-placeholder, input[type="password"][data-v-546541ec]::-webkit-input-placeholder, input[type="text"][data-v-546541ec]::-webkit-input-placeholder, input[type="number"][data-v-546541ec]::-webkit-input-placeholder, input[type="email"][data-v-546541ec]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-546541ec]::-moz-placeholder, input[type="password"][data-v-546541ec]::-moz-placeholder, input[type="text"][data-v-546541ec]::-moz-placeholder, input[type="number"][data-v-546541ec]::-moz-placeholder, input[type="email"][data-v-546541ec]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-546541ec]:-ms-input-placeholder, input[type="password"][data-v-546541ec]:-ms-input-placeholder, input[type="text"][data-v-546541ec]:-ms-input-placeholder, input[type="number"][data-v-546541ec]:-ms-input-placeholder, input[type="email"][data-v-546541ec]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-546541ec]::-ms-input-placeholder, input[type="password"][data-v-546541ec]::-ms-input-placeholder, input[type="text"][data-v-546541ec]::-ms-input-placeholder, input[type="number"][data-v-546541ec]::-ms-input-placeholder, input[type="email"][data-v-546541ec]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-546541ec]::placeholder,\n input[type="password"][data-v-546541ec]::placeholder,\n input[type="text"][data-v-546541ec]::placeholder,\n input[type="number"][data-v-546541ec]::placeholder,\n input[type="email"][data-v-546541ec]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-546541ec],\n input[type="password"][disabled][data-v-546541ec],\n input[type="text"][disabled][data-v-546541ec],\n input[type="number"][disabled][data-v-546541ec],\n input[type="email"][disabled][data-v-546541ec] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.page-tab .page-tab-group[data-v-546541ec] {\n margin-bottom: 45px;\n}\n.block-form[data-v-546541ec] {\n max-width: 100%;\n}\n',""])},function(e,t,n){"use strict";var a=n(84);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".fade-enter-active[data-v-d6f3c004],\n.fade-leave-active[data-v-d6f3c004] {\n transition: 0.3s ease;\n}\n.fade-enter[data-v-d6f3c004],\n.fade-leave-to[data-v-d6f3c004] {\n opacity: 0;\n transform: translateX(100%);\n}\n.toastr-content-wrapper[data-v-d6f3c004] {\n display: flex;\n align-items: center;\n padding: 15px;\n box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);\n}\n.progressbar[data-v-d6f3c004] {\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n opacity: 0.35;\n}\n.progressbar span[data-v-d6f3c004] {\n width: 0;\n height: 3px;\n display: block;\n background: #00BC7E;\n -webkit-animation: progressbar-data-v-d6f3c004 5s linear;\n animation: progressbar-data-v-d6f3c004 5s linear;\n}\n@-webkit-keyframes progressbar-data-v-d6f3c004 {\n0% {\n width: 0;\n}\n100% {\n width: 100%;\n}\n}\n@keyframes progressbar-data-v-d6f3c004 {\n0% {\n width: 0;\n}\n100% {\n width: 100%;\n}\n}\n.toastr-item[data-v-d6f3c004] {\n max-width: 320px;\n margin-bottom: 20px;\n position: relative;\n overflow: hidden;\n display: block;\n border-radius: 8px;\n}\n.toastr-item .toastr-description[data-v-d6f3c004] {\n font-size: 0.9375em;\n font-weight: bold;\n}\n.toastr-item .toastr-icon[data-v-d6f3c004] {\n height: 42px;\n width: 42px;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n font-size: 20px;\n margin-right: 10px;\n}\n.toastr-item.success[data-v-d6f3c004] {\n background: #ECF7F2;\n}\n.toastr-item.success polyline[data-v-d6f3c004] {\n stroke: #00BC7E;\n}\n.toastr-item.success .toastr-description[data-v-d6f3c004] {\n color: #00BC7E;\n}\n.toastr-item.danger[data-v-d6f3c004] {\n background: rgba(253, 57, 122, 0.1);\n}\n.toastr-item.danger polyline[data-v-d6f3c004] {\n stroke: #fd397a;\n}\n.toastr-item.danger .toastr-description[data-v-d6f3c004] {\n color: #fd397a;\n}\n@media only screen and (max-width: 690px) {\n.toastr-item[data-v-d6f3c004] {\n margin-bottom: 0;\n margin-top: 20px;\n max-width: 100%;\n}\n.fade-enter[data-v-d6f3c004],\n .fade-leave-to[data-v-d6f3c004] {\n opacity: 0;\n transform: translateY(100%);\n}\n}\n@media (prefers-color-scheme: dark) {\n.toastr-item.success[data-v-d6f3c004], .toastr-item.danger[data-v-d6f3c004] {\n background: #1e2024;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(85);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".toastr-list[data-v-479c4f2a] {\n transition: all 5s ease;\n display: inline-block;\n}\n.toastr-list-enter[data-v-479c4f2a],\n.toastr-list-leave-to[data-v-479c4f2a] {\n opacity: 0;\n transform: translateY(-100%);\n}\n.toastr-list-leave-active[data-v-479c4f2a] {\n position: absolute;\n}\n#toastr-wrapper[data-v-479c4f2a] {\n position: absolute;\n right: 30px;\n top: 30px;\n z-index: 10;\n}\n@media only screen and (max-width: 690px) {\n#toastr-wrapper[data-v-479c4f2a] {\n top: initial;\n right: 15px;\n left: 15px;\n bottom: 15px;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(86);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".user-meta[data-v-eeee1b4e] {\n padding-left: 20px;\n}\n.user-meta .name[data-v-eeee1b4e] {\n display: block;\n font-size: 1.125em;\n}\n.user-meta .email[data-v-eeee1b4e] {\n display: block;\n font-size: 0.75em;\n color: #00BC7E;\n font-weight: 600;\n}\n",""])},function(e,t,n){"use strict";var a=n(87);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".user-avatar[data-v-d7163df8] {\n line-height: 0;\n}\n.user-avatar img[data-v-d7163df8] {\n border-radius: 6px;\n width: 40px;\n height: 40px;\n}\n.user-avatar.large img[data-v-d7163df8] {\n border-radius: 9px;\n width: 52px;\n height: 52px;\n}\n",""])},function(e,t,n){"use strict";var a=n(88);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".mobile-navigation[data-v-5943894c] {\n padding: 20px;\n width: 100%;\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 99;\n background: white;\n border-top-left-radius: 12px;\n border-top-right-radius: 12px;\n min-height: 440px;\n max-height: 80%;\n overflow-y: auto;\n}\n.vignette[data-v-5943894c] {\n background: rgba(0, 0, 0, 0.35);\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 9;\n cursor: pointer;\n opacity: 1;\n}\n.user-info[data-v-5943894c] {\n display: flex;\n align-items: center;\n margin-bottom: 10px;\n}\n@media (prefers-color-scheme: dark) {\n.mobile-navigation[data-v-5943894c] {\n background: #111314;\n}\n}\n.context-menu-enter-active[data-v-5943894c],\n.fade-enter-active[data-v-5943894c] {\n transition: all 200ms;\n}\n.context-menu-leave-active[data-v-5943894c],\n.fade-leave-active[data-v-5943894c] {\n transition: all 200ms;\n}\n.fade-enter[data-v-5943894c],\n.fade-leave-to[data-v-5943894c] {\n opacity: 0;\n}\n.context-menu-enter[data-v-5943894c],\n.context-menu-leave-to[data-v-5943894c] {\n opacity: 0;\n transform: translateY(100%);\n}\n.context-menu-leave-active[data-v-5943894c] {\n position: absolute;\n}\n",""])},function(e,t,n){"use strict";var a=n(89);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".input-wrapper[data-v-3922b662] {\n display: flex;\n width: 100%;\n}\n.input-wrapper .input-label[data-v-3922b662] {\n color: #1c1d1f;\n}\n.input-wrapper .switch-content[data-v-3922b662] {\n width: 100%;\n}\n.input-wrapper .switch-content[data-v-3922b662]:last-child {\n width: 80px;\n}\n.switch[data-v-3922b662] {\n width: 50px;\n height: 28px;\n border-radius: 50px;\n display: block;\n background: #f1f1f5;\n position: relative;\n transition: 0.3s all ease;\n}\n.switch .switch-button[data-v-3922b662] {\n transition: 0.3s all ease;\n width: 22px;\n height: 22px;\n border-radius: 50px;\n display: block;\n background: white;\n position: absolute;\n top: 3px;\n left: 3px;\n box-shadow: 0 2px 4px rgba(37, 38, 94, 0.1);\n cursor: pointer;\n}\n.switch.active[data-v-3922b662] {\n background: #00BC7E;\n}\n.switch.active .switch-button[data-v-3922b662] {\n left: 25px;\n}\n@media (prefers-color-scheme: dark) {\n.switch[data-v-3922b662] {\n background: #1e2024;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(90);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form-wrapper[data-v-058924c8] {\n padding: 0 20px;\n}\n.input-wrapper[data-v-058924c8] {\n margin-bottom: 20px;\n}\n.input-wrapper[data-v-058924c8]:last-child {\n margin-bottom: 0;\n}\n.input-wrapper input[data-v-058924c8] {\n width: 100%;\n color: #1c1d1f;\n}\n.input-wrapper input.is-error[data-v-058924c8] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\n.inline-wrapper[data-v-058924c8] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.inline-wrapper.icon-append .input-text[data-v-058924c8] {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.inline-wrapper.icon-append .icon[data-v-058924c8] {\n background: black;\n padding: 15px 18px;\n border-top-right-radius: 8px;\n border-bottom-right-radius: 8px;\n text-align: center;\n line-height: 0;\n}\n.inline-wrapper.icon-append .icon path[data-v-058924c8], .inline-wrapper.icon-append .icon polyline[data-v-058924c8] {\n stroke: white;\n}\n.input-label[data-v-058924c8] {\n font-size: 0.75em;\n color: #1c1d1f;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n@media (prefers-color-scheme: dark) {\n.inline-wrapper.icon-append .icon[data-v-058924c8] {\n background: rgba(0, 188, 126, 0.1);\n}\n.inline-wrapper.icon-append .icon path[data-v-058924c8], .inline-wrapper.icon-append .icon polyline[data-v-058924c8] {\n stroke: #00BC7E;\n}\n.input-label[data-v-058924c8] {\n color: #bec6cf;\n}\n}\n.form[data-v-058924c8] {\n max-width: 700px;\n}\n.form.inline-form[data-v-058924c8] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-058924c8] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-058924c8] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-058924c8] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-058924c8] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-058924c8] {\n margin-bottom: 20px;\n}\n.form.block-form .block-wrapper label[data-v-058924c8] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n.form.block-form .block-wrapper[data-v-058924c8]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-058924c8] {\n margin-top: 50px;\n}\n.error-message[data-v-058924c8] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-058924c8] {\n width: 100%;\n}\ntextarea[data-v-058924c8],\ninput[type="password"][data-v-058924c8],\ninput[type="text"][data-v-058924c8],\ninput[type="number"][data-v-058924c8],\ninput[type="email"][data-v-058924c8] {\n border: 1px solid #ebebeb;\n transition: 150ms all ease;\n font-size: 0.9375em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n background: #fafafa;\n}\ntextarea.is-error[data-v-058924c8],\ninput[type="password"].is-error[data-v-058924c8],\ninput[type="text"].is-error[data-v-058924c8],\ninput[type="number"].is-error[data-v-058924c8],\ninput[type="email"].is-error[data-v-058924c8] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-058924c8]::-webkit-input-placeholder, input[type="password"][data-v-058924c8]::-webkit-input-placeholder, input[type="text"][data-v-058924c8]::-webkit-input-placeholder, input[type="number"][data-v-058924c8]::-webkit-input-placeholder, input[type="email"][data-v-058924c8]::-webkit-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-058924c8]::-moz-placeholder, input[type="password"][data-v-058924c8]::-moz-placeholder, input[type="text"][data-v-058924c8]::-moz-placeholder, input[type="number"][data-v-058924c8]::-moz-placeholder, input[type="email"][data-v-058924c8]::-moz-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-058924c8]:-ms-input-placeholder, input[type="password"][data-v-058924c8]:-ms-input-placeholder, input[type="text"][data-v-058924c8]:-ms-input-placeholder, input[type="number"][data-v-058924c8]:-ms-input-placeholder, input[type="email"][data-v-058924c8]:-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-058924c8]::-ms-input-placeholder, input[type="password"][data-v-058924c8]::-ms-input-placeholder, input[type="text"][data-v-058924c8]::-ms-input-placeholder, input[type="number"][data-v-058924c8]::-ms-input-placeholder, input[type="email"][data-v-058924c8]::-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-058924c8]::placeholder,\ninput[type="password"][data-v-058924c8]::placeholder,\ninput[type="text"][data-v-058924c8]::placeholder,\ninput[type="number"][data-v-058924c8]::placeholder,\ninput[type="email"][data-v-058924c8]::placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-058924c8]:focus,\ninput[type="password"][data-v-058924c8]:focus,\ninput[type="text"][data-v-058924c8]:focus,\ninput[type="number"][data-v-058924c8]:focus,\ninput[type="email"][data-v-058924c8]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-058924c8],\ninput[type="password"][disabled][data-v-058924c8],\ninput[type="text"][disabled][data-v-058924c8],\ninput[type="number"][disabled][data-v-058924c8],\ninput[type="email"][disabled][data-v-058924c8] {\n background: #fafafa;\n cursor: not-allowed;\n}\n.additional-link[data-v-058924c8] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-058924c8], .additional-link a[data-v-058924c8] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-058924c8]:hover, .additional-link a[data-v-058924c8]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-058924c8] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-058924c8] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-058924c8], .form textarea[data-v-058924c8] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-058924c8] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-058924c8] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-058924c8] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-058924c8] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-058924c8] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-058924c8] {\n padding: 14px 32px;\n}\ntextarea[data-v-058924c8],\n input[type="password"][data-v-058924c8],\n input[type="number"][data-v-058924c8],\n input[type="text"][data-v-058924c8],\n input[type="email"][data-v-058924c8] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-058924c8] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-058924c8] {\n color: #bec6cf;\n}\ntextarea[data-v-058924c8],\n input[type="password"][data-v-058924c8],\n input[type="text"][data-v-058924c8],\n input[type="number"][data-v-058924c8],\n input[type="email"][data-v-058924c8] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-058924c8]::-webkit-input-placeholder, input[type="password"][data-v-058924c8]::-webkit-input-placeholder, input[type="text"][data-v-058924c8]::-webkit-input-placeholder, input[type="number"][data-v-058924c8]::-webkit-input-placeholder, input[type="email"][data-v-058924c8]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-058924c8]::-moz-placeholder, input[type="password"][data-v-058924c8]::-moz-placeholder, input[type="text"][data-v-058924c8]::-moz-placeholder, input[type="number"][data-v-058924c8]::-moz-placeholder, input[type="email"][data-v-058924c8]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-058924c8]:-ms-input-placeholder, input[type="password"][data-v-058924c8]:-ms-input-placeholder, input[type="text"][data-v-058924c8]:-ms-input-placeholder, input[type="number"][data-v-058924c8]:-ms-input-placeholder, input[type="email"][data-v-058924c8]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-058924c8]::-ms-input-placeholder, input[type="password"][data-v-058924c8]::-ms-input-placeholder, input[type="text"][data-v-058924c8]::-ms-input-placeholder, input[type="number"][data-v-058924c8]::-ms-input-placeholder, input[type="email"][data-v-058924c8]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-058924c8]::placeholder,\n input[type="password"][data-v-058924c8]::placeholder,\n input[type="text"][data-v-058924c8]::placeholder,\n input[type="number"][data-v-058924c8]::placeholder,\n input[type="email"][data-v-058924c8]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-058924c8],\n input[type="password"][disabled][data-v-058924c8],\n input[type="text"][disabled][data-v-058924c8],\n input[type="number"][disabled][data-v-058924c8],\n input[type="email"][disabled][data-v-058924c8] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.input-wrapper.password[data-v-058924c8] {\n margin-top: -10px;\n}\n.item-thumbnail[data-v-058924c8] {\n margin-bottom: 20px;\n}\n',""])},function(e,t,n){"use strict";var a=n(91);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".action-button[data-v-d9be4a42] {\n cursor: pointer;\n}\n.action-button .label[data-v-d9be4a42] {\n font-size: 0.75em;\n color: #00BC7E;\n font-weight: 600;\n text-decoration: underline;\n}\n.action-button .icon[data-v-d9be4a42] {\n font-size: 0.625em;\n display: inline-block;\n margin-right: 2px;\n}\n.action-button .icon path[data-v-d9be4a42] {\n fill: #00BC7E;\n}\n",""])},function(e,t,n){"use strict";var a=n(92);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,'.form-wrapper[data-v-dcce0aec] {\n padding: 0 20px;\n}\n.input-wrapper[data-v-dcce0aec] {\n margin-bottom: 20px;\n}\n.input-wrapper[data-v-dcce0aec]:last-child {\n margin-bottom: 0;\n}\n.input-wrapper input[data-v-dcce0aec] {\n width: 100%;\n color: #1c1d1f;\n}\n.input-wrapper input.is-error[data-v-dcce0aec] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\n.inline-wrapper[data-v-dcce0aec] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.inline-wrapper.icon-append .input-text[data-v-dcce0aec] {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.inline-wrapper.icon-append .icon[data-v-dcce0aec] {\n background: black;\n padding: 15px 18px;\n border-top-right-radius: 8px;\n border-bottom-right-radius: 8px;\n text-align: center;\n line-height: 0;\n}\n.inline-wrapper.icon-append .icon path[data-v-dcce0aec], .inline-wrapper.icon-append .icon polyline[data-v-dcce0aec] {\n stroke: white;\n}\n.input-label[data-v-dcce0aec] {\n font-size: 0.75em;\n color: #1c1d1f;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n@media (prefers-color-scheme: dark) {\n.inline-wrapper.icon-append .icon[data-v-dcce0aec] {\n background: rgba(0, 188, 126, 0.1);\n}\n.inline-wrapper.icon-append .icon path[data-v-dcce0aec], .inline-wrapper.icon-append .icon polyline[data-v-dcce0aec] {\n stroke: #00BC7E;\n}\n.input-label[data-v-dcce0aec] {\n color: #bec6cf;\n}\n}\n.form[data-v-dcce0aec] {\n max-width: 700px;\n}\n.form.inline-form[data-v-dcce0aec] {\n display: flex;\n position: relative;\n justify-content: center;\n}\n.form.inline-form .input-wrapper[data-v-dcce0aec] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-dcce0aec] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-dcce0aec] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-dcce0aec] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-dcce0aec] {\n margin-bottom: 20px;\n}\n.form.block-form .block-wrapper label[data-v-dcce0aec] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n.form.block-form .block-wrapper[data-v-dcce0aec]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-dcce0aec] {\n margin-top: 50px;\n}\n.error-message[data-v-dcce0aec] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-dcce0aec] {\n width: 100%;\n}\ntextarea[data-v-dcce0aec],\ninput[type="password"][data-v-dcce0aec],\ninput[type="text"][data-v-dcce0aec],\ninput[type="number"][data-v-dcce0aec],\ninput[type="email"][data-v-dcce0aec] {\n border: 1px solid #ebebeb;\n transition: 150ms all ease;\n font-size: 0.9375em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n background: #fafafa;\n}\ntextarea.is-error[data-v-dcce0aec],\ninput[type="password"].is-error[data-v-dcce0aec],\ninput[type="text"].is-error[data-v-dcce0aec],\ninput[type="number"].is-error[data-v-dcce0aec],\ninput[type="email"].is-error[data-v-dcce0aec] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-dcce0aec]::-webkit-input-placeholder, input[type="password"][data-v-dcce0aec]::-webkit-input-placeholder, input[type="text"][data-v-dcce0aec]::-webkit-input-placeholder, input[type="number"][data-v-dcce0aec]::-webkit-input-placeholder, input[type="email"][data-v-dcce0aec]::-webkit-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-dcce0aec]::-moz-placeholder, input[type="password"][data-v-dcce0aec]::-moz-placeholder, input[type="text"][data-v-dcce0aec]::-moz-placeholder, input[type="number"][data-v-dcce0aec]::-moz-placeholder, input[type="email"][data-v-dcce0aec]::-moz-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-dcce0aec]:-ms-input-placeholder, input[type="password"][data-v-dcce0aec]:-ms-input-placeholder, input[type="text"][data-v-dcce0aec]:-ms-input-placeholder, input[type="number"][data-v-dcce0aec]:-ms-input-placeholder, input[type="email"][data-v-dcce0aec]:-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-dcce0aec]::-ms-input-placeholder, input[type="password"][data-v-dcce0aec]::-ms-input-placeholder, input[type="text"][data-v-dcce0aec]::-ms-input-placeholder, input[type="number"][data-v-dcce0aec]::-ms-input-placeholder, input[type="email"][data-v-dcce0aec]::-ms-input-placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-dcce0aec]::placeholder,\ninput[type="password"][data-v-dcce0aec]::placeholder,\ninput[type="text"][data-v-dcce0aec]::placeholder,\ninput[type="number"][data-v-dcce0aec]::placeholder,\ninput[type="email"][data-v-dcce0aec]::placeholder {\n color: rgba(28, 29, 31, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-dcce0aec]:focus,\ninput[type="password"][data-v-dcce0aec]:focus,\ninput[type="text"][data-v-dcce0aec]:focus,\ninput[type="number"][data-v-dcce0aec]:focus,\ninput[type="email"][data-v-dcce0aec]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-dcce0aec],\ninput[type="password"][disabled][data-v-dcce0aec],\ninput[type="text"][disabled][data-v-dcce0aec],\ninput[type="number"][disabled][data-v-dcce0aec],\ninput[type="email"][disabled][data-v-dcce0aec] {\n background: #fafafa;\n cursor: not-allowed;\n}\n.additional-link[data-v-dcce0aec] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1c1d1f;\n}\n.additional-link b[data-v-dcce0aec], .additional-link a[data-v-dcce0aec] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-dcce0aec]:hover, .additional-link a[data-v-dcce0aec]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-dcce0aec] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-dcce0aec] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-dcce0aec], .form textarea[data-v-dcce0aec] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-dcce0aec] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-dcce0aec] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-dcce0aec] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-dcce0aec] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-dcce0aec] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-dcce0aec] {\n padding: 14px 32px;\n}\ntextarea[data-v-dcce0aec],\n input[type="password"][data-v-dcce0aec],\n input[type="number"][data-v-dcce0aec],\n input[type="text"][data-v-dcce0aec],\n input[type="email"][data-v-dcce0aec] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-dcce0aec] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-dcce0aec] {\n color: #bec6cf;\n}\ntextarea[data-v-dcce0aec],\n input[type="password"][data-v-dcce0aec],\n input[type="text"][data-v-dcce0aec],\n input[type="number"][data-v-dcce0aec],\n input[type="email"][data-v-dcce0aec] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-dcce0aec]::-webkit-input-placeholder, input[type="password"][data-v-dcce0aec]::-webkit-input-placeholder, input[type="text"][data-v-dcce0aec]::-webkit-input-placeholder, input[type="number"][data-v-dcce0aec]::-webkit-input-placeholder, input[type="email"][data-v-dcce0aec]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-dcce0aec]::-moz-placeholder, input[type="password"][data-v-dcce0aec]::-moz-placeholder, input[type="text"][data-v-dcce0aec]::-moz-placeholder, input[type="number"][data-v-dcce0aec]::-moz-placeholder, input[type="email"][data-v-dcce0aec]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-dcce0aec]:-ms-input-placeholder, input[type="password"][data-v-dcce0aec]:-ms-input-placeholder, input[type="text"][data-v-dcce0aec]:-ms-input-placeholder, input[type="number"][data-v-dcce0aec]:-ms-input-placeholder, input[type="email"][data-v-dcce0aec]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-dcce0aec]::-ms-input-placeholder, input[type="password"][data-v-dcce0aec]::-ms-input-placeholder, input[type="text"][data-v-dcce0aec]::-ms-input-placeholder, input[type="number"][data-v-dcce0aec]::-ms-input-placeholder, input[type="email"][data-v-dcce0aec]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-dcce0aec]::placeholder,\n input[type="password"][data-v-dcce0aec]::placeholder,\n input[type="text"][data-v-dcce0aec]::placeholder,\n input[type="number"][data-v-dcce0aec]::placeholder,\n input[type="email"][data-v-dcce0aec]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-dcce0aec],\n input[type="password"][disabled][data-v-dcce0aec],\n input[type="text"][disabled][data-v-dcce0aec],\n input[type="number"][disabled][data-v-dcce0aec],\n input[type="email"][disabled][data-v-dcce0aec] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.input-wrapper.password[data-v-dcce0aec] {\n margin-top: -10px;\n}\n.item-thumbnail[data-v-dcce0aec] {\n margin-bottom: 20px;\n}\n',""])},function(e,t,n){"use strict";var a=n(93);n.n(a).a},function(e,t,n){(e.exports=n(1)(!1)).push([e.i,".menu-bar[data-v-3e42fbe4] {\n background: linear-gradient(180deg, rgba(246, 245, 241, 0.8) 0%, rgba(243, 244, 246, 0.8) 100%);\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n padding-top: 25px;\n display: grid;\n width: 72px;\n}\n.icon-navigation[data-v-3e42fbe4] {\n text-align: center;\n}\n.icon-navigation.menu[data-v-3e42fbe4] {\n margin-bottom: auto;\n}\n.icon-navigation.logout[data-v-3e42fbe4] {\n margin-top: auto;\n}\n.icon-navigation .icon-navigation-item[data-v-3e42fbe4] {\n display: block;\n margin-bottom: 10px;\n}\n.icon-navigation .icon-navigation-item.user[data-v-3e42fbe4] {\n margin-bottom: 20px;\n display: block;\n}\n.icon-navigation .button-icon[data-v-3e42fbe4] {\n cursor: pointer;\n border-radius: 4px;\n padding: 12px;\n display: inline-block;\n line-height: 0;\n transition: 150ms all ease;\n}\n.icon-navigation .button-icon[data-v-3e42fbe4]:hover {\n background: #e9e9e9;\n}\n.icon-navigation .button-icon path[data-v-3e42fbe4], .icon-navigation .button-icon line[data-v-3e42fbe4], .icon-navigation .button-icon polyline[data-v-3e42fbe4], .icon-navigation .button-icon rect[data-v-3e42fbe4], .icon-navigation .button-icon circle[data-v-3e42fbe4] {\n transition: 150ms all ease;\n stroke: black;\n}\n.icon-navigation .router-link-active.home .button-icon[data-v-3e42fbe4],\n.icon-navigation .is-active.home .button-icon[data-v-3e42fbe4] {\n background: rgba(0, 188, 126, 0.1);\n}\n.icon-navigation .router-link-active.home .button-icon path[data-v-3e42fbe4], .icon-navigation .router-link-active.home .button-icon line[data-v-3e42fbe4], .icon-navigation .router-link-active.home .button-icon polyline[data-v-3e42fbe4], .icon-navigation .router-link-active.home .button-icon rect[data-v-3e42fbe4], .icon-navigation .router-link-active.home .button-icon circle[data-v-3e42fbe4],\n.icon-navigation .is-active.home .button-icon path[data-v-3e42fbe4],\n.icon-navigation .is-active.home .button-icon line[data-v-3e42fbe4],\n.icon-navigation .is-active.home .button-icon polyline[data-v-3e42fbe4],\n.icon-navigation .is-active.home .button-icon rect[data-v-3e42fbe4],\n.icon-navigation .is-active.home .button-icon circle[data-v-3e42fbe4] {\n stroke: #00BC7E;\n}\n.icon-navigation .router-link-active.shared .button-icon[data-v-3e42fbe4],\n.icon-navigation .is-active.shared .button-icon[data-v-3e42fbe4] {\n background: rgba(255, 189, 45, 0.1);\n}\n.icon-navigation .router-link-active.shared .button-icon path[data-v-3e42fbe4], .icon-navigation .router-link-active.shared .button-icon line[data-v-3e42fbe4], .icon-navigation .router-link-active.shared .button-icon polyline[data-v-3e42fbe4], .icon-navigation .router-link-active.shared .button-icon rect[data-v-3e42fbe4], .icon-navigation .router-link-active.shared .button-icon circle[data-v-3e42fbe4],\n.icon-navigation .is-active.shared .button-icon path[data-v-3e42fbe4],\n.icon-navigation .is-active.shared .button-icon line[data-v-3e42fbe4],\n.icon-navigation .is-active.shared .button-icon polyline[data-v-3e42fbe4],\n.icon-navigation .is-active.shared .button-icon rect[data-v-3e42fbe4],\n.icon-navigation .is-active.shared .button-icon circle[data-v-3e42fbe4] {\n stroke: #FFBD2D;\n}\n.icon-navigation .router-link-active.trash .button-icon[data-v-3e42fbe4],\n.icon-navigation .is-active.trash .button-icon[data-v-3e42fbe4] {\n background: rgba(254, 96, 87, 0.1);\n}\n.icon-navigation .router-link-active.trash .button-icon path[data-v-3e42fbe4], .icon-navigation .router-link-active.trash .button-icon line[data-v-3e42fbe4], .icon-navigation .router-link-active.trash .button-icon polyline[data-v-3e42fbe4], .icon-navigation .router-link-active.trash .button-icon rect[data-v-3e42fbe4], .icon-navigation .router-link-active.trash .button-icon circle[data-v-3e42fbe4],\n.icon-navigation .is-active.trash .button-icon path[data-v-3e42fbe4],\n.icon-navigation .is-active.trash .button-icon line[data-v-3e42fbe4],\n.icon-navigation .is-active.trash .button-icon polyline[data-v-3e42fbe4],\n.icon-navigation .is-active.trash .button-icon rect[data-v-3e42fbe4],\n.icon-navigation .is-active.trash .button-icon circle[data-v-3e42fbe4] {\n stroke: #FE6057;\n}\n.icon-navigation .router-link-active.settings .button-icon[data-v-3e42fbe4],\n.icon-navigation .is-active.settings .button-icon[data-v-3e42fbe4] {\n background: rgba(157, 102, 254, 0.1);\n}\n.icon-navigation .router-link-active.settings .button-icon path[data-v-3e42fbe4], .icon-navigation .router-link-active.settings .button-icon line[data-v-3e42fbe4], .icon-navigation .router-link-active.settings .button-icon polyline[data-v-3e42fbe4], .icon-navigation .router-link-active.settings .button-icon rect[data-v-3e42fbe4], .icon-navigation .router-link-active.settings .button-icon circle[data-v-3e42fbe4],\n.icon-navigation .is-active.settings .button-icon path[data-v-3e42fbe4],\n.icon-navigation .is-active.settings .button-icon line[data-v-3e42fbe4],\n.icon-navigation .is-active.settings .button-icon polyline[data-v-3e42fbe4],\n.icon-navigation .is-active.settings .button-icon rect[data-v-3e42fbe4],\n.icon-navigation .is-active.settings .button-icon circle[data-v-3e42fbe4] {\n stroke: #9D66FE;\n}\n.icon-navigation .router-link-active.users .button-icon[data-v-3e42fbe4],\n.icon-navigation .is-active.users .button-icon[data-v-3e42fbe4] {\n background: rgba(254, 102, 161, 0.1);\n}\n.icon-navigation .router-link-active.users .button-icon path[data-v-3e42fbe4], .icon-navigation .router-link-active.users .button-icon line[data-v-3e42fbe4], .icon-navigation .router-link-active.users .button-icon polyline[data-v-3e42fbe4], .icon-navigation .router-link-active.users .button-icon rect[data-v-3e42fbe4], .icon-navigation .router-link-active.users .button-icon circle[data-v-3e42fbe4],\n.icon-navigation .is-active.users .button-icon path[data-v-3e42fbe4],\n.icon-navigation .is-active.users .button-icon line[data-v-3e42fbe4],\n.icon-navigation .is-active.users .button-icon polyline[data-v-3e42fbe4],\n.icon-navigation .is-active.users .button-icon rect[data-v-3e42fbe4],\n.icon-navigation .is-active.users .button-icon circle[data-v-3e42fbe4] {\n stroke: #FE66A1;\n}\n@media only screen and (max-width: 1024px) {\n.menu-bar[data-v-3e42fbe4] {\n min-width: 60px;\n width: 60px;\n}\n.icon-navigation .icon-navigation-item[data-v-3e42fbe4] {\n margin-bottom: 15px;\n}\n.icon-navigation .button-icon[data-v-3e42fbe4] {\n padding: 8px;\n}\n}\n@media only screen and (max-width: 690px) {\n.menu-bar[data-v-3e42fbe4] {\n display: none;\n}\n}\n@media (prefers-color-scheme: dark) {\n.icon-navigation .button-icon[data-v-3e42fbe4]:hover {\n background: #111314;\n}\n.icon-navigation .button-icon path[data-v-3e42fbe4], .icon-navigation .button-icon line[data-v-3e42fbe4], .icon-navigation .button-icon polyline[data-v-3e42fbe4], .icon-navigation .button-icon rect[data-v-3e42fbe4], .icon-navigation .button-icon circle[data-v-3e42fbe4] {\n stroke: #bec6cf;\n}\n.menu-bar[data-v-3e42fbe4] {\n background: #1e2024;\n}\n}\n",""])},function(e,t,n){"use strict";var a=n(94);n.n(a).a},function(e,t,n){(t=e.exports=n(1)(!1)).push([e.i,"@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;900&display=swap);",""]),t.push([e.i,"[v-cloak],\n[v-cloak] > * {\n display: none;\n}\n* {\n outline: 0;\n margin: 0;\n padding: 0;\n font-family: 'Nunito', sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n box-sizing: border-box;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n font-size: 16px;\n}\n#auth {\n width: 100%;\n height: 100%;\n}\n#vue-file-manager {\n position: absolute;\n width: 100%;\n height: 100%;\n overflow-y: auto;\n}\n@media only screen and (max-width: 690px) {\n.is-scaled-down {\n transform: scale(0.95);\n}\n}\n@media (prefers-color-scheme: dark) {\nbody, html {\n background: #111314;\n color: #bec6cf;\n}\nbody img, html img {\n opacity: .95;\n}\n}\n",""])},function(e,t,n){"use strict";n.r(t);var a=n(8),r=n.n(a);function i(e){return Object.prototype.toString.call(e).indexOf("Error")>-1}function o(e,t){return t instanceof e||t&&(t.name===e.name||t._name===e._name)}function s(e,t){for(var n in t)e[n]=t[n];return e}var c={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(e,t){var n=t.props,a=t.children,r=t.parent,i=t.data;i.routerView=!0;for(var o=r.$createElement,c=n.name,d=r.$route,p=r._routerViewCache||(r._routerViewCache={}),u=0,f=!1;r&&r._routerRoot!==r;){var v=r.$vnode?r.$vnode.data:{};v.routerView&&u++,v.keepAlive&&r._directInactive&&r._inactive&&(f=!0),r=r.$parent}if(i.routerViewDepth=u,f){var m=p[c],h=m&&m.component;return h?(m.configProps&&l(h,i,m.route,m.configProps),o(h,i,a)):o()}var b=d.matched[u],g=b&&b.components[c];if(!b||!g)return p[c]=null,o();p[c]={component:g},i.registerRouteInstance=function(e,t){var n=b.instances[c];(t&&n!==e||!t&&n===e)&&(b.instances[c]=t)},(i.hook||(i.hook={})).prepatch=function(e,t){b.instances[c]=t.componentInstance},i.hook.init=function(e){e.data.keepAlive&&e.componentInstance&&e.componentInstance!==b.instances[c]&&(b.instances[c]=e.componentInstance)};var y=b.props&&b.props[c];return y&&(s(p[c],{route:d,configProps:y}),l(g,i,d,y)),o(g,i,a)}};function l(e,t,n,a){var r=t.props=function(e,t){switch(typeof t){case"undefined":return;case"object":return t;case"function":return t(e);case"boolean":return t?e.params:void 0;default:0}}(n,a);if(r){r=t.props=s({},r);var i=t.attrs=t.attrs||{};for(var o in r)e.props&&o in e.props||(i[o]=r[o],delete r[o])}}var d=/[!'()*]/g,p=function(e){return"%"+e.charCodeAt(0).toString(16)},u=/%2C/g,f=function(e){return encodeURIComponent(e).replace(d,p).replace(u,",")},v=decodeURIComponent;function m(e){var t={};return(e=e.trim().replace(/^(\?|#|&)/,""))?(e.split("&").forEach((function(e){var n=e.replace(/\+/g," ").split("="),a=v(n.shift()),r=n.length>0?v(n.join("=")):null;void 0===t[a]?t[a]=r:Array.isArray(t[a])?t[a].push(r):t[a]=[t[a],r]})),t):t}function h(e){var t=e?Object.keys(e).map((function(t){var n=e[t];if(void 0===n)return"";if(null===n)return f(t);if(Array.isArray(n)){var a=[];return n.forEach((function(e){void 0!==e&&(null===e?a.push(f(t)):a.push(f(t)+"="+f(e)))})),a.join("&")}return f(t)+"="+f(n)})).filter((function(e){return e.length>0})).join("&"):null;return t?"?"+t:""}var b=/\/?$/;function g(e,t,n,a){var r=a&&a.options.stringifyQuery,i=t.query||{};try{i=y(i)}catch(e){}var o={name:t.name||e&&e.name,meta:e&&e.meta||{},path:t.path||"/",hash:t.hash||"",query:i,params:t.params||{},fullPath:x(t,r),matched:e?w(e):[]};return n&&(o.redirectedFrom=x(n,r)),Object.freeze(o)}function y(e){if(Array.isArray(e))return e.map(y);if(e&&"object"==typeof e){var t={};for(var n in e)t[n]=y(e[n]);return t}return e}var _=g(null,{path:"/"});function w(e){for(var t=[];e;)t.unshift(e),e=e.parent;return t}function x(e,t){var n=e.path,a=e.query;void 0===a&&(a={});var r=e.hash;return void 0===r&&(r=""),(n||"/")+(t||h)(a)+r}function k(e,t){return t===_?e===t:!!t&&(e.path&&t.path?e.path.replace(b,"")===t.path.replace(b,"")&&e.hash===t.hash&&C(e.query,t.query):!(!e.name||!t.name)&&(e.name===t.name&&e.hash===t.hash&&C(e.query,t.query)&&C(e.params,t.params)))}function C(e,t){if(void 0===e&&(e={}),void 0===t&&(t={}),!e||!t)return e===t;var n=Object.keys(e),a=Object.keys(t);return n.length===a.length&&n.every((function(n){var a=e[n],r=t[n];return"object"==typeof a&&"object"==typeof r?C(a,r):String(a)===String(r)}))}function O(e,t,n){var a=e.charAt(0);if("/"===a)return e;if("?"===a||"#"===a)return t+e;var r=t.split("/");n&&r[r.length-1]||r.pop();for(var i=e.replace(/^\//,"").split("/"),o=0;o=0&&(t=e.slice(a),e=e.slice(0,a));var r=e.indexOf("?");return r>=0&&(n=e.slice(r+1),e=e.slice(0,r)),{path:e,query:n,hash:t}}(r.path||""),d=t&&t.path||"/",p=l.path?O(l.path,d,n||r.append):d,u=function(e,t,n){void 0===t&&(t={});var a,r=n||m;try{a=r(e||"")}catch(e){a={}}for(var i in t)a[i]=t[i];return a}(l.query,r.query,a&&a.options.parseQuery),f=r.hash||l.hash;return f&&"#"!==f.charAt(0)&&(f="#"+f),{_normalized:!0,path:p,query:u,hash:f}}var W,G=function(){},Z={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:[String,Array],default:"click"}},render:function(e){var t=this,n=this.$router,a=this.$route,r=n.resolve(this.to,a,this.append),i=r.location,o=r.route,c=r.href,l={},d=n.options.linkActiveClass,p=n.options.linkExactActiveClass,u=null==d?"router-link-active":d,f=null==p?"router-link-exact-active":p,v=null==this.activeClass?u:this.activeClass,m=null==this.exactActiveClass?f:this.exactActiveClass,h=o.redirectedFrom?g(null,H(o.redirectedFrom),null,n):o;l[m]=k(a,h),l[v]=this.exact?l[m]:function(e,t){return 0===e.path.replace(b,"/").indexOf(t.path.replace(b,"/"))&&(!t.hash||e.hash===t.hash)&&function(e,t){for(var n in t)if(!(n in e))return!1;return!0}(e.query,t.query)}(a,h);var y=function(e){Y(e)&&(t.replace?n.replace(i,G):n.push(i,G))},_={click:Y};Array.isArray(this.event)?this.event.forEach((function(e){_[e]=y})):_[this.event]=y;var w={class:l},x=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:c,route:o,navigate:y,isActive:l[v],isExactActive:l[m]});if(x){if(1===x.length)return x[0];if(x.length>1||!x.length)return 0===x.length?e():e("span",{},x)}if("a"===this.tag)w.on=_,w.attrs={href:c};else{var C=function e(t){var n;if(t)for(var a=0;a-1&&(s.params[u]=n.params[u]);return s.path=q(d.path,s.params),c(d,s,o)}if(s.path){s.params={};for(var f=0;f=e.length?n():e[r]?t(e[r],(function(){a(r+1)})):a(r+1)};a(0)}function _e(e){return function(t,n,a){var r=!1,o=0,s=null;we(e,(function(e,t,n,c){if("function"==typeof e&&void 0===e.cid){r=!0,o++;var l,d=Ce((function(t){var r;((r=t).__esModule||ke&&"Module"===r[Symbol.toStringTag])&&(t=t.default),e.resolved="function"==typeof t?t:W.extend(t),n.components[c]=t,--o<=0&&a()})),p=Ce((function(e){var t="Failed to resolve async component "+c+": "+e;s||(s=i(e)?e:new Error(t),a(s))}));try{l=e(d,p)}catch(e){p(e)}if(l)if("function"==typeof l.then)l.then(d,p);else{var u=l.component;u&&"function"==typeof u.then&&u.then(d,p)}}})),r||a()}}function we(e,t){return xe(e.map((function(e){return Object.keys(e.components).map((function(n){return t(e.components[n],e.instances[n],e,n)}))})))}function xe(e){return Array.prototype.concat.apply([],e)}var ke="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function Ce(e){var t=!1;return function(){for(var n=[],a=arguments.length;a--;)n[a]=arguments[a];if(!t)return t=!0,e.apply(this,n)}}var Oe=function(e){function t(t){e.call(this),this.name=this._name="NavigationDuplicated",this.message='Navigating to current location ("'+t.fullPath+'") is not allowed',Object.defineProperty(this,"stack",{value:(new e).stack,writable:!0,configurable:!0})}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t}(Error);Oe._name="NavigationDuplicated";var $e=function(e,t){this.router=e,this.base=function(e){if(!e)if(K){var t=document.querySelector("base");e=(e=t&&t.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else e="/";"/"!==e.charAt(0)&&(e="/"+e);return e.replace(/\/$/,"")}(t),this.current=_,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function ze(e,t,n,a){var r=we(e,(function(e,a,r,i){var o=function(e,t){"function"!=typeof e&&(e=W.extend(e));return e.options[t]}(e,t);if(o)return Array.isArray(o)?o.map((function(e){return n(e,a,r,i)})):n(o,a,r,i)}));return xe(a?r.reverse():r)}function Pe(e,t){if(t)return function(){return e.apply(t,arguments)}}$e.prototype.listen=function(e){this.cb=e},$e.prototype.onReady=function(e,t){this.ready?e():(this.readyCbs.push(e),t&&this.readyErrorCbs.push(t))},$e.prototype.onError=function(e){this.errorCbs.push(e)},$e.prototype.transitionTo=function(e,t,n){var a=this,r=this.router.match(e,this.current);this.confirmTransition(r,(function(){a.updateRoute(r),t&&t(r),a.ensureURL(),a.ready||(a.ready=!0,a.readyCbs.forEach((function(e){e(r)})))}),(function(e){n&&n(e),e&&!a.ready&&(a.ready=!0,a.readyErrorCbs.forEach((function(t){t(e)})))}))},$e.prototype.confirmTransition=function(e,t,n){var a=this,r=this.current,s=function(e){!o(Oe,e)&&i(e)&&(a.errorCbs.length?a.errorCbs.forEach((function(t){t(e)})):console.error(e)),n&&n(e)};if(k(e,r)&&e.matched.length===r.matched.length)return this.ensureURL(),s(new Oe(e));var c=function(e,t){var n,a=Math.max(e.length,t.length);for(n=0;n-1?decodeURI(e.slice(0,a))+e.slice(a):decodeURI(e)}else e=decodeURI(e.slice(0,n))+e.slice(n);return e}function Te(e){var t=window.location.href,n=t.indexOf("#");return(n>=0?t.slice(0,n):t)+"#"+e}function De(e){he?be(Te(e)):window.location.hash=e}function Fe(e){he?ge(Te(e)):window.location.replace(Te(e))}var Le=function(e){function t(t,n){e.call(this,t,n),this.stack=[],this.index=-1}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.push=function(e,t,n){var a=this;this.transitionTo(e,(function(e){a.stack=a.stack.slice(0,a.index+1).concat(e),a.index++,t&&t(e)}),n)},t.prototype.replace=function(e,t,n){var a=this;this.transitionTo(e,(function(e){a.stack=a.stack.slice(0,a.index).concat(e),t&&t(e)}),n)},t.prototype.go=function(e){var t=this,n=this.index+e;if(!(n<0||n>=this.stack.length)){var a=this.stack[n];this.confirmTransition(a,(function(){t.index=n,t.updateRoute(a)}),(function(e){o(Oe,e)&&(t.index=n)}))}},t.prototype.getCurrentLocation=function(){var e=this.stack[this.stack.length-1];return e?e.fullPath:"/"},t.prototype.ensureURL=function(){},t}($e),Ne=function(e){void 0===e&&(e={}),this.app=null,this.apps=[],this.options=e,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Q(e.routes||[],this);var t=e.mode||"hash";switch(this.fallback="history"===t&&!he&&!1!==e.fallback,this.fallback&&(t="hash"),K||(t="abstract"),this.mode=t,t){case"history":this.history=new Ie(this,e.base);break;case"hash":this.history=new Ae(this,e.base,this.fallback);break;case"abstract":this.history=new Le(this,e.base);break;default:0}},Me={currentRoute:{configurable:!0}};function Re(e,t){return e.push(t),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}Ne.prototype.match=function(e,t,n){return this.matcher.match(e,t,n)},Me.currentRoute.get=function(){return this.history&&this.history.current},Ne.prototype.init=function(e){var t=this;if(this.apps.push(e),e.$once("hook:destroyed",(function(){var n=t.apps.indexOf(e);n>-1&&t.apps.splice(n,1),t.app===e&&(t.app=t.apps[0]||null)})),!this.app){this.app=e;var n=this.history;if(n instanceof Ie)n.transitionTo(n.getCurrentLocation());else if(n instanceof Ae){var a=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),a,a)}n.listen((function(e){t.apps.forEach((function(t){t._route=e}))}))}},Ne.prototype.beforeEach=function(e){return Re(this.beforeHooks,e)},Ne.prototype.beforeResolve=function(e){return Re(this.resolveHooks,e)},Ne.prototype.afterEach=function(e){return Re(this.afterHooks,e)},Ne.prototype.onReady=function(e,t){this.history.onReady(e,t)},Ne.prototype.onError=function(e){this.history.onError(e)},Ne.prototype.push=function(e,t,n){var a=this;if(!t&&!n&&"undefined"!=typeof Promise)return new Promise((function(t,n){a.history.push(e,t,n)}));this.history.push(e,t,n)},Ne.prototype.replace=function(e,t,n){var a=this;if(!t&&!n&&"undefined"!=typeof Promise)return new Promise((function(t,n){a.history.replace(e,t,n)}));this.history.replace(e,t,n)},Ne.prototype.go=function(e){this.history.go(e)},Ne.prototype.back=function(){this.go(-1)},Ne.prototype.forward=function(){this.go(1)},Ne.prototype.getMatchedComponents=function(e){var t=e?e.matched?e:this.resolve(e).route:this.currentRoute;return t?[].concat.apply([],t.matched.map((function(e){return Object.keys(e.components).map((function(t){return e.components[t]}))}))):[]},Ne.prototype.resolve=function(e,t,n){var a=H(e,t=t||this.history.current,n,this),r=this.match(a,t),i=r.redirectedFrom||r.fullPath;return{location:a,route:r,href:function(e,t,n){var a="hash"===n?"#"+t:t;return e?$(e+"/"+a):a}(this.history.base,i,this.mode),normalizedTo:a,resolved:r}},Ne.prototype.addRoutes=function(e){this.matcher.addRoutes(e),this.history.current!==_&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(Ne.prototype,Me),Ne.install=function e(t){if(!e.installed||W!==t){e.installed=!0,W=t;var n=function(e){return void 0!==e},a=function(e,t){var a=e.$options._parentVnode;n(a)&&n(a=a.data)&&n(a=a.registerRouteInstance)&&a(e,t)};t.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),t.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,a(this,this)},destroyed:function(){a(this)}}),Object.defineProperty(t.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(t.prototype,"$route",{get:function(){return this._routerRoot._route}}),t.component("RouterView",c),t.component("RouterLink",Z);var r=t.config.optionMergeStrategies;r.beforeRouteEnter=r.beforeRouteLeave=r.beforeRouteUpdate=r.created}},Ne.version="3.1.6",K&&window.Vue&&window.Vue.use(Ne);var Be=Ne,Ve=["style","currency","currencyDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","localeMatcher","formatMatcher","unit"];function Ue(e,t){"undefined"!=typeof console&&(console.warn("[vue-i18n] "+e),t&&console.warn(t.stack))}function qe(e){return null!==e&&"object"==typeof e}var He=Object.prototype.toString;function We(e){return"[object Object]"===He.call(e)}function Ge(e){return null==e}function Ze(){for(var e=[],t=arguments.length;t--;)e[t]=arguments[t];var n=null,a=null;return 1===e.length?qe(e[0])||Array.isArray(e[0])?a=e[0]:"string"==typeof e[0]&&(n=e[0]):2===e.length&&("string"==typeof e[0]&&(n=e[0]),(qe(e[1])||Array.isArray(e[1]))&&(a=e[1])),{locale:n,params:a}}function Ye(e){return JSON.parse(JSON.stringify(e))}function Ke(e,t){return!!~e.indexOf(t)}var Xe=Object.prototype.hasOwnProperty;function Je(e,t){return Xe.call(e,t)}function Qe(e){for(var t=arguments,n=Object(e),a=1;a0;)t[n]=arguments[n+1];var a=this.$i18n;return a._t.apply(a,[e,a.locale,a._getMessages(),this].concat(t))},t.prototype.$tc=function(e,t){for(var n=[],a=arguments.length-2;a-- >0;)n[a]=arguments[a+2];var r=this.$i18n;return r._tc.apply(r,[e,r.locale,r._getMessages(),this,t].concat(n))},t.prototype.$te=function(e,t){var n=this.$i18n;return n._te(e,n.locale,n._getMessages(),t)},t.prototype.$d=function(e){for(var t,n=[],a=arguments.length-1;a-- >0;)n[a]=arguments[a+1];return(t=this.$i18n).d.apply(t,[e].concat(n))},t.prototype.$n=function(e){for(var t,n=[],a=arguments.length-1;a-- >0;)n[a]=arguments[a+1];return(t=this.$i18n).n.apply(t,[e].concat(n))},ot.mixin(tt),ot.directive("t",{bind:ct,update:lt,unbind:dt}),ot.component(nt.name,nt),ot.component(st.name,st),ot.config.optionMergeStrategies.i18n=function(e,t){return void 0===t?e:t}}var mt=function(){this._caches=Object.create(null)};mt.prototype.interpolate=function(e,t){if(!t)return[e];var n=this._caches[e];return n||(n=function(e){var t=[],n=0,a="";for(;n0)p--,d=4,u[0]();else{if(p=0,void 0===n)return!1;if(!1===(n=wt(n)))return!1;u[1]()}};null!==d;)if(l++,"\\"!==(t=e[l])||!f()){if(r=_t(t),8===(i=(s=gt[d])[r]||s.else||8))return;if(d=i[0],(o=u[i[1]])&&(a=void 0===(a=i[2])?t:a,!1===o()))return;if(7===d)return c}}(e))&&(this._cache[e]=t),t||[]},xt.prototype.getPathValue=function(e,t){if(!qe(e))return null;var n=this.parsePath(t);if(0===n.length)return null;for(var a=n.length,r=e,i=0;i/,Ot=/(?:@(?:\.[a-z]+)?:(?:[\w\-_|.]+|\([\w\-_|.]+\)))/g,$t=/^@(?:\.([a-z]+))?:/,zt=/[()]/g,Pt={upper:function(e){return e.toLocaleUpperCase()},lower:function(e){return e.toLocaleLowerCase()},capitalize:function(e){return""+e.charAt(0).toLocaleUpperCase()+e.substr(1)}},It=new mt,jt=function(e){var t=this;void 0===e&&(e={}),!ot&&"undefined"!=typeof window&&window.Vue&&vt(window.Vue);var n=e.locale||"en-US",a=!1!==e.fallbackLocale&&(e.fallbackLocale||"en-US"),r=e.messages||{},i=e.dateTimeFormats||{},o=e.numberFormats||{};this._vm=null,this._formatter=e.formatter||It,this._modifiers=e.modifiers||{},this._missing=e.missing||null,this._root=e.root||null,this._sync=void 0===e.sync||!!e.sync,this._fallbackRoot=void 0===e.fallbackRoot||!!e.fallbackRoot,this._formatFallbackMessages=void 0!==e.formatFallbackMessages&&!!e.formatFallbackMessages,this._silentTranslationWarn=void 0!==e.silentTranslationWarn&&e.silentTranslationWarn,this._silentFallbackWarn=void 0!==e.silentFallbackWarn&&!!e.silentFallbackWarn,this._dateTimeFormatters={},this._numberFormatters={},this._path=new xt,this._dataListeners=[],this._preserveDirectiveContent=void 0!==e.preserveDirectiveContent&&!!e.preserveDirectiveContent,this.pluralizationRules=e.pluralizationRules||{},this._warnHtmlInMessage=e.warnHtmlInMessage||"off",this._postTranslation=e.postTranslation||null,this._exist=function(e,n){return!(!e||!n)&&(!Ge(t._path.getPathValue(e,n))||!!e[n])},"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||Object.keys(r).forEach((function(e){t._checkLocaleMessage(e,t._warnHtmlInMessage,r[e])})),this._initVM({locale:n,fallbackLocale:a,messages:r,dateTimeFormats:i,numberFormats:o})},At={vm:{configurable:!0},messages:{configurable:!0},dateTimeFormats:{configurable:!0},numberFormats:{configurable:!0},availableLocales:{configurable:!0},locale:{configurable:!0},fallbackLocale:{configurable:!0},formatFallbackMessages:{configurable:!0},missing:{configurable:!0},formatter:{configurable:!0},silentTranslationWarn:{configurable:!0},silentFallbackWarn:{configurable:!0},preserveDirectiveContent:{configurable:!0},warnHtmlInMessage:{configurable:!0},postTranslation:{configurable:!0}};jt.prototype._checkLocaleMessage=function(e,t,n){var a=function(e,t,n,r){if(We(n))Object.keys(n).forEach((function(i){var o=n[i];We(o)?(r.push(i),r.push("."),a(e,t,o,r),r.pop(),r.pop()):(r.push(i),a(e,t,o,r),r.pop())}));else if(Array.isArray(n))n.forEach((function(n,i){We(n)?(r.push("["+i+"]"),r.push("."),a(e,t,n,r),r.pop(),r.pop()):(r.push("["+i+"]"),a(e,t,n,r),r.pop())}));else if("string"==typeof n){if(Ct.test(n)){var i="Detected HTML in message '"+n+"' of keypath '"+r.join("")+"' at '"+t+"'. Consider component interpolation with '' to avoid XSS. See https://bit.ly/2ZqJzkp";"warn"===e?Ue(i):"error"===e&&function(e,t){"undefined"!=typeof console&&(console.error("[vue-i18n] "+e),t&&console.error(t.stack))}(i)}}};a(t,e,n,[])},jt.prototype._initVM=function(e){var t=ot.config.silent;ot.config.silent=!0,this._vm=new ot({data:e}),ot.config.silent=t},jt.prototype.destroyVM=function(){this._vm.$destroy()},jt.prototype.subscribeDataChanging=function(e){this._dataListeners.push(e)},jt.prototype.unsubscribeDataChanging=function(e){!function(e,t){if(e.length){var n=e.indexOf(t);if(n>-1)e.splice(n,1)}}(this._dataListeners,e)},jt.prototype.watchI18nData=function(){var e=this;return this._vm.$watch("$data",(function(){for(var t=e._dataListeners.length;t--;)ot.nextTick((function(){e._dataListeners[t]&&e._dataListeners[t].$forceUpdate()}))}),{deep:!0})},jt.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var e=this._vm;return this._root.$i18n.vm.$watch("locale",(function(t){e.$set(e,"locale",t),e.$forceUpdate()}),{immediate:!0})},At.vm.get=function(){return this._vm},At.messages.get=function(){return Ye(this._getMessages())},At.dateTimeFormats.get=function(){return Ye(this._getDateTimeFormats())},At.numberFormats.get=function(){return Ye(this._getNumberFormats())},At.availableLocales.get=function(){return Object.keys(this.messages).sort()},At.locale.get=function(){return this._vm.locale},At.locale.set=function(e){this._vm.$set(this._vm,"locale",e)},At.fallbackLocale.get=function(){return this._vm.fallbackLocale},At.fallbackLocale.set=function(e){this._localeChainCache={},this._vm.$set(this._vm,"fallbackLocale",e)},At.formatFallbackMessages.get=function(){return this._formatFallbackMessages},At.formatFallbackMessages.set=function(e){this._formatFallbackMessages=e},At.missing.get=function(){return this._missing},At.missing.set=function(e){this._missing=e},At.formatter.get=function(){return this._formatter},At.formatter.set=function(e){this._formatter=e},At.silentTranslationWarn.get=function(){return this._silentTranslationWarn},At.silentTranslationWarn.set=function(e){this._silentTranslationWarn=e},At.silentFallbackWarn.get=function(){return this._silentFallbackWarn},At.silentFallbackWarn.set=function(e){this._silentFallbackWarn=e},At.preserveDirectiveContent.get=function(){return this._preserveDirectiveContent},At.preserveDirectiveContent.set=function(e){this._preserveDirectiveContent=e},At.warnHtmlInMessage.get=function(){return this._warnHtmlInMessage},At.warnHtmlInMessage.set=function(e){var t=this,n=this._warnHtmlInMessage;if(this._warnHtmlInMessage=e,n!==e&&("warn"===e||"error"===e)){var a=this._getMessages();Object.keys(a).forEach((function(e){t._checkLocaleMessage(e,t._warnHtmlInMessage,a[e])}))}},At.postTranslation.get=function(){return this._postTranslation},At.postTranslation.set=function(e){this._postTranslation=e},jt.prototype._getMessages=function(){return this._vm.messages},jt.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},jt.prototype._getNumberFormats=function(){return this._vm.numberFormats},jt.prototype._warnDefault=function(e,t,n,a,r,i){if(!Ge(n))return n;if(this._missing){var o=this._missing.apply(null,[e,t,a,r]);if("string"==typeof o)return o}else 0;if(this._formatFallbackMessages){var s=Ze.apply(void 0,r);return this._render(t,i,s.params,t)}return t},jt.prototype._isFallbackRoot=function(e){return!e&&!Ge(this._root)&&this._fallbackRoot},jt.prototype._isSilentFallbackWarn=function(e){return this._silentFallbackWarn instanceof RegExp?this._silentFallbackWarn.test(e):this._silentFallbackWarn},jt.prototype._isSilentFallback=function(e,t){return this._isSilentFallbackWarn(t)&&(this._isFallbackRoot()||e!==this.fallbackLocale)},jt.prototype._isSilentTranslationWarn=function(e){return this._silentTranslationWarn instanceof RegExp?this._silentTranslationWarn.test(e):this._silentTranslationWarn},jt.prototype._interpolate=function(e,t,n,a,r,i,o){if(!t)return null;var s,c=this._path.getPathValue(t,n);if(Array.isArray(c)||We(c))return c;if(Ge(c)){if(!We(t))return null;if("string"!=typeof(s=t[n]))return null}else{if("string"!=typeof c)return null;s=c}return(s.indexOf("@:")>=0||s.indexOf("@.")>=0)&&(s=this._link(e,t,s,a,"raw",i,o)),this._render(s,r,i,n)},jt.prototype._link=function(e,t,n,a,r,i,o){var s=n,c=s.match(Ot);for(var l in c)if(c.hasOwnProperty(l)){var d=c[l],p=d.match($t),u=p[0],f=p[1],v=d.replace(u,"").replace(zt,"");if(Ke(o,v))return s;o.push(v);var m=this._interpolate(e,t,v,a,"raw"===r?"string":r,"raw"===r?void 0:i,o);if(this._isFallbackRoot(m)){if(!this._root)throw Error("unexpected error");var h=this._root.$i18n;m=h._translate(h._getMessages(),h.locale,h.fallbackLocale,v,a,r,i)}m=this._warnDefault(e,v,m,a,Array.isArray(i)?i:[i],r),this._modifiers.hasOwnProperty(f)?m=this._modifiers[f](m):Pt.hasOwnProperty(f)&&(m=Pt[f](m)),o.pop(),s=m?s.replace(d,m):s}return s},jt.prototype._render=function(e,t,n,a){var r=this._formatter.interpolate(e,n,a);return r||(r=It.interpolate(e,n,a)),"string"===t&&"string"!=typeof r?r.join(""):r},jt.prototype._appendItemToChain=function(e,t,n){var a=!1;return Ke(e,t)||(a=!0,t&&(a="!"!==t[t.length-1],t=t.replace(/!/g,""),e.push(t),n&&n[t]&&(a=n[t]))),a},jt.prototype._appendLocaleToChain=function(e,t,n){var a,r=t.split("-");do{var i=r.join("-");a=this._appendItemToChain(e,i,n),r.splice(-1,1)}while(r.length&&!0===a);return a},jt.prototype._appendBlockToChain=function(e,t,n){for(var a=!0,r=0;r0;)i[o]=arguments[o+4];if(!e)return"";var s=Ze.apply(void 0,i),c=s.locale||t,l=this._translate(n,c,this.fallbackLocale,e,a,"string",s.params);if(this._isFallbackRoot(l)){if(!this._root)throw Error("unexpected error");return(r=this._root).$t.apply(r,[e].concat(i))}return l=this._warnDefault(c,e,l,a,i,"string"),this._postTranslation&&null!=l&&(l=this._postTranslation(l,e)),l},jt.prototype.t=function(e){for(var t,n=[],a=arguments.length-1;a-- >0;)n[a]=arguments[a+1];return(t=this)._t.apply(t,[e,this.locale,this._getMessages(),null].concat(n))},jt.prototype._i=function(e,t,n,a,r){var i=this._translate(n,t,this.fallbackLocale,e,a,"raw",r);if(this._isFallbackRoot(i)){if(!this._root)throw Error("unexpected error");return this._root.$i18n.i(e,t,r)}return this._warnDefault(t,e,i,a,[r],"raw")},jt.prototype.i=function(e,t,n){return e?("string"!=typeof t&&(t=this.locale),this._i(e,t,this._getMessages(),null,n)):""},jt.prototype._tc=function(e,t,n,a,r){for(var i,o=[],s=arguments.length-5;s-- >0;)o[s]=arguments[s+5];if(!e)return"";void 0===r&&(r=1);var c={count:r,n:r},l=Ze.apply(void 0,o);return l.params=Object.assign(c,l.params),o=null===l.locale?[l.params]:[l.locale,l.params],this.fetchChoice((i=this)._t.apply(i,[e,t,n,a].concat(o)),r)},jt.prototype.fetchChoice=function(e,t){if(!e&&"string"!=typeof e)return null;var n=e.split("|");return n[t=this.getChoiceIndex(t,n.length)]?n[t].trim():e},jt.prototype.getChoiceIndex=function(e,t){var n,a;return this.locale in this.pluralizationRules?this.pluralizationRules[this.locale].apply(this,[e,t]):(n=e,a=t,n=Math.abs(n),2===a?n?n>1?1:0:1:n?Math.min(n,2):0)},jt.prototype.tc=function(e,t){for(var n,a=[],r=arguments.length-2;r-- >0;)a[r]=arguments[r+2];return(n=this)._tc.apply(n,[e,this.locale,this._getMessages(),null,t].concat(a))},jt.prototype._te=function(e,t,n){for(var a=[],r=arguments.length-3;r-- >0;)a[r]=arguments[r+3];var i=Ze.apply(void 0,a).locale||t;return this._exist(n[i],e)},jt.prototype.te=function(e,t){return this._te(e,this.locale,this._getMessages(),t)},jt.prototype.getLocaleMessage=function(e){return Ye(this._vm.messages[e]||{})},jt.prototype.setLocaleMessage=function(e,t){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(e,this._warnHtmlInMessage,t),this._vm.$set(this._vm.messages,e,t)},jt.prototype.mergeLocaleMessage=function(e,t){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(e,this._warnHtmlInMessage,t),this._vm.$set(this._vm.messages,e,Qe({},this._vm.messages[e]||{},t))},jt.prototype.getDateTimeFormat=function(e){return Ye(this._vm.dateTimeFormats[e]||{})},jt.prototype.setDateTimeFormat=function(e,t){this._vm.$set(this._vm.dateTimeFormats,e,t),this._clearDateTimeFormat(e,t)},jt.prototype.mergeDateTimeFormat=function(e,t){this._vm.$set(this._vm.dateTimeFormats,e,Qe(this._vm.dateTimeFormats[e]||{},t)),this._clearDateTimeFormat(e,t)},jt.prototype._clearDateTimeFormat=function(e,t){for(var n in t){var a=e+"__"+n;this._dateTimeFormatters.hasOwnProperty(a)&&delete this._dateTimeFormatters[a]}},jt.prototype._localizeDateTime=function(e,t,n,a,r){for(var i=t,o=a[i],s=this._getLocaleChain(t,n),c=0;c0;)t[n]=arguments[n+1];var a=this.locale,r=null;return 1===t.length?"string"==typeof t[0]?r=t[0]:qe(t[0])&&(t[0].locale&&(a=t[0].locale),t[0].key&&(r=t[0].key)):2===t.length&&("string"==typeof t[0]&&(r=t[0]),"string"==typeof t[1]&&(a=t[1])),this._d(e,a,r)},jt.prototype.getNumberFormat=function(e){return Ye(this._vm.numberFormats[e]||{})},jt.prototype.setNumberFormat=function(e,t){this._vm.$set(this._vm.numberFormats,e,t),this._clearNumberFormat(e,t)},jt.prototype.mergeNumberFormat=function(e,t){this._vm.$set(this._vm.numberFormats,e,Qe(this._vm.numberFormats[e]||{},t)),this._clearNumberFormat(e,t)},jt.prototype._clearNumberFormat=function(e,t){for(var n in t){var a=e+"__"+n;this._numberFormatters.hasOwnProperty(a)&&delete this._numberFormatters[a]}},jt.prototype._getNumberFormatter=function(e,t,n,a,r,i){for(var o=t,s=a[o],c=this._getLocaleChain(t,n),l=0;l0;)t[n]=arguments[n+1];var a=this.locale,r=null,i=null;return 1===t.length?"string"==typeof t[0]?r=t[0]:qe(t[0])&&(t[0].locale&&(a=t[0].locale),t[0].key&&(r=t[0].key),i=Object.keys(t[0]).reduce((function(e,n){var a;return Ke(Ve,n)?Object.assign({},e,((a={})[n]=t[0][n],a)):e}),null)):2===t.length&&("string"==typeof t[0]&&(r=t[0]),"string"==typeof t[1]&&(a=t[1])),this._n(e,a,r,i)},jt.prototype._ntp=function(e,t,n,a){if(!jt.availabilities.numberFormat)return[];if(!n)return(a?new Intl.NumberFormat(t,a):new Intl.NumberFormat(t)).formatToParts(e);var r=this._getNumberFormatter(e,t,this.fallbackLocale,this._getNumberFormats(),n,a),i=r&&r.formatToParts(e);if(this._isFallbackRoot(i)){if(!this._root)throw Error("unexpected error");return this._root.$i18n._ntp(e,t,n,a)}return i||[]},Object.defineProperties(jt.prototype,At),Object.defineProperty(jt,"availabilities",{get:function(){if(!kt){var e="undefined"!=typeof Intl;kt={dateTimeFormat:e&&void 0!==Intl.DateTimeFormat,numberFormat:e&&void 0!==Intl.NumberFormat}}return kt}}),jt.install=vt,jt.version="8.17.4";var Et=jt,St=n(105),Tt=n(106);r.a.use(Et);var Dt=new Et({locale:config.locale,messages:Object.assign({en:St,sk:Tt})}),Ft=n(6),Lt=n.n(Ft),Nt={name:"AuthContentWrapper"};n(130);function Mt(e,t,n,a,r,i,o,s){var c,l="function"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=n,l._compiled=!0),a&&(l.functional=!0),i&&(l._scopeId="data-v-"+i),o?(c=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},l._ssrRegister=c):r&&(c=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),c)if(l.functional){l._injectStyles=c;var d=l.render;l.render=function(e,t){return c.call(t),d(e,t)}}else{var p=l.beforeCreate;l.beforeCreate=p?[].concat(p,c):[c]}return{exports:e,options:l}}var Rt=Mt(Nt,(function(){var e=this.$createElement;return(this._self._c||e)("div",{attrs:{id:"auth"}},[this._t("default")],2)}),[],!1,null,"31af8372",null).exports,Bt=n(5),Vt=Mt({name:"AuthContent",props:["visible","name"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}},(function(){var e=this.$createElement,t=this._self._c||e;return this.isVisible?t("div",{staticClass:"auth-form"},[this._t("default")],2):this._e()}),[],!1,null,null,null).exports,Ut={name:"AuthContent",props:["loading","icon","text"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}},qt=(n(133),Mt(Ut,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("button",{staticClass:"button outline"},[n("span",{staticClass:"text-label"},[e._v(e._s(e.text))]),e._v(" "),e.loading?n("span",{staticClass:"icon"},[n("FontAwesomeIcon",{staticClass:"sync-alt",attrs:{icon:"sync-alt"}})],1):e._e(),e._v(" "),!e.loading&&e.icon?n("span",{staticClass:"icon"},[n("FontAwesomeIcon",{attrs:{icon:e.icon}})],1):e._e()])}),[],!1,null,"59e2dfc0",null).exports);function Ht(e){return null==e}function Wt(e){return Array.isArray(e)&&0===e.length}var Gt={validate:function(e,t){var n=(void 0===t?{allowFalse:!0}:t).allowFalse,a={valid:!1,required:!0};return Ht(e)||Wt(e)?a:!1!==e||n?(a.valid=!!String(e).trim().length,a):a},params:[{name:"allowFalse",default:!0}],computesRequired:!0},Zt=n(3),Yt=new r.a,Kt=n(4),Xt=n.n(Kt);function Jt(e,t,n,a,r,i,o){try{var s=e[i](o),c=s.value}catch(e){return void n(e)}s.done?t(c):Promise.resolve(c).then(a,r)}function Qt(e){return function(){var t=this,n=arguments;return new Promise((function(a,r){var i=e.apply(t,n);function o(e){Jt(i,a,r,o,s,"next",e)}function s(e){Jt(i,a,r,o,s,"throw",e)}o(void 0)}))}}function en(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function tn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var nn={name:"SignIn",components:{AuthContentWrapper:Rt,ValidationProvider:Bt.ValidationProvider,ValidationObserver:Bt.ValidationObserver,AuthContent:Vt,AuthButton:qt,required:Gt},computed:function(e){for(var t=1;t=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-check"},t.data]),[e("polyline",{attrs:{points:"20 6 9 17 4 12"}})])}},mn={name:"ChevronDownIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-chevron-down"},t.data]),[e("polyline",{attrs:{points:"6 9 12 15 18 9"}})])}},hn={name:"ChevronLeftIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-chevron-left"},t.data]),[e("polyline",{attrs:{points:"15 18 9 12 15 6"}})])}},bn={name:"ChevronRightIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-chevron-right"},t.data]),[e("polyline",{attrs:{points:"9 18 15 12 9 6"}})])}},gn={name:"ChevronUpIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-chevron-up"},t.data]),[e("polyline",{attrs:{points:"18 15 12 9 6 15"}})])}},yn={name:"CornerDownRightIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-corner-down-right"},t.data]),[e("polyline",{attrs:{points:"15 10 20 15 15 20"}}),e("path",{attrs:{d:"M4 4v7a4 4 0 0 0 4 4h12"}})])}},_n={name:"DownloadCloudIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-download-cloud"},t.data]),[e("polyline",{attrs:{points:"8 17 12 21 16 17"}}),e("line",{attrs:{x1:"12",y1:"12",x2:"12",y2:"21"}}),e("path",{attrs:{d:"M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"}})])}},wn={name:"Edit2Icon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-edit-2"},t.data]),[e("path",{attrs:{d:"M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"}})])}},xn={name:"EyeOffIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-eye-off"},t.data]),[e("path",{attrs:{d:"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"}}),e("line",{attrs:{x1:"1",y1:"1",x2:"23",y2:"23"}})])}},kn={name:"EyeIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-eye"},t.data]),[e("path",{attrs:{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}}),e("circle",{attrs:{cx:"12",cy:"12",r:"3"}})])}},Cn={name:"FileTextIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-file-text"},t.data]),[e("path",{attrs:{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}}),e("polyline",{attrs:{points:"14 2 14 8 20 8"}}),e("line",{attrs:{x1:"16",y1:"13",x2:"8",y2:"13"}}),e("line",{attrs:{x1:"16",y1:"17",x2:"8",y2:"17"}}),e("polyline",{attrs:{points:"10 9 9 9 8 9"}})])}},On={name:"FileIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-file"},t.data]),[e("path",{attrs:{d:"M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"}}),e("polyline",{attrs:{points:"13 2 13 9 20 9"}})])}},$n={name:"FolderPlusIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-folder-plus"},t.data]),[e("path",{attrs:{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}}),e("line",{attrs:{x1:"12",y1:"11",x2:"12",y2:"17"}}),e("line",{attrs:{x1:"9",y1:"14",x2:"15",y2:"14"}})])}},zn={name:"FolderIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-folder"},t.data]),[e("path",{attrs:{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}})])}},Pn={name:"GridIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-grid"},t.data]),[e("rect",{attrs:{x:"3",y:"3",width:"7",height:"7"}}),e("rect",{attrs:{x:"14",y:"3",width:"7",height:"7"}}),e("rect",{attrs:{x:"14",y:"14",width:"7",height:"7"}}),e("rect",{attrs:{x:"3",y:"14",width:"7",height:"7"}})])}},In={name:"HardDriveIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-hard-drive"},t.data]),[e("line",{attrs:{x1:"22",y1:"12",x2:"2",y2:"12"}}),e("path",{attrs:{d:"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}}),e("line",{attrs:{x1:"6",y1:"16",x2:"6",y2:"16"}}),e("line",{attrs:{x1:"10",y1:"16",x2:"10",y2:"16"}})])}},jn={name:"HomeIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-home"},t.data]),[e("path",{attrs:{d:"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}}),e("polyline",{attrs:{points:"9 22 9 12 15 12 15 22"}})])}},An={name:"ImageIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-image"},t.data]),[e("rect",{attrs:{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}}),e("circle",{attrs:{cx:"8.5",cy:"8.5",r:"1.5"}}),e("polyline",{attrs:{points:"21 15 16 10 5 21"}})])}},En={name:"InfoIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-info"},t.data]),[e("circle",{attrs:{cx:"12",cy:"12",r:"10"}}),e("line",{attrs:{x1:"12",y1:"16",x2:"12",y2:"12"}}),e("line",{attrs:{x1:"12",y1:"8",x2:"12",y2:"8"}})])}},Sn={name:"LifeBuoyIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-life-buoy"},t.data]),[e("circle",{attrs:{cx:"12",cy:"12",r:"10"}}),e("circle",{attrs:{cx:"12",cy:"12",r:"4"}}),e("line",{attrs:{x1:"4.93",y1:"4.93",x2:"9.17",y2:"9.17"}}),e("line",{attrs:{x1:"14.83",y1:"14.83",x2:"19.07",y2:"19.07"}}),e("line",{attrs:{x1:"14.83",y1:"9.17",x2:"19.07",y2:"4.93"}}),e("line",{attrs:{x1:"14.83",y1:"9.17",x2:"18.36",y2:"5.64"}}),e("line",{attrs:{x1:"4.93",y1:"19.07",x2:"9.17",y2:"14.83"}})])}},Tn={name:"LinkIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-link"},t.data]),[e("path",{attrs:{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}}),e("path",{attrs:{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}})])}},Dn={name:"ListIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-list"},t.data]),[e("line",{attrs:{x1:"8",y1:"6",x2:"21",y2:"6"}}),e("line",{attrs:{x1:"8",y1:"12",x2:"21",y2:"12"}}),e("line",{attrs:{x1:"8",y1:"18",x2:"21",y2:"18"}}),e("line",{attrs:{x1:"3",y1:"6",x2:"3",y2:"6"}}),e("line",{attrs:{x1:"3",y1:"12",x2:"3",y2:"12"}}),e("line",{attrs:{x1:"3",y1:"18",x2:"3",y2:"18"}})])}},Fn={name:"LockIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-lock"},t.data]),[e("rect",{attrs:{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}}),e("path",{attrs:{d:"M7 11V7a5 5 0 0 1 10 0v4"}})])}},Ln={name:"MenuIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-menu"},t.data]),[e("line",{attrs:{x1:"3",y1:"12",x2:"21",y2:"12"}}),e("line",{attrs:{x1:"3",y1:"6",x2:"21",y2:"6"}}),e("line",{attrs:{x1:"3",y1:"18",x2:"21",y2:"18"}})])}},Nn={name:"MoreHorizontalIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-more-horizontal"},t.data]),[e("circle",{attrs:{cx:"12",cy:"12",r:"1"}}),e("circle",{attrs:{cx:"19",cy:"12",r:"1"}}),e("circle",{attrs:{cx:"5",cy:"12",r:"1"}})])}},Mn={name:"MusicIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-music"},t.data]),[e("path",{attrs:{d:"M9 18V5l12-2v13"}}),e("circle",{attrs:{cx:"6",cy:"18",r:"3"}}),e("circle",{attrs:{cx:"18",cy:"16",r:"3"}})])}},Rn={name:"PowerIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-power"},t.data]),[e("path",{attrs:{d:"M18.36 6.64a9 9 0 1 1-12.73 0"}}),e("line",{attrs:{x1:"12",y1:"2",x2:"12",y2:"12"}})])}},Bn={name:"SearchIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-search"},t.data]),[e("circle",{attrs:{cx:"11",cy:"11",r:"8"}}),e("line",{attrs:{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}})])}},Vn={name:"SettingsIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-settings"},t.data]),[e("circle",{attrs:{cx:"12",cy:"12",r:"3"}}),e("path",{attrs:{d:"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"}})])}},Un={name:"ShareIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-share"},t.data]),[e("path",{attrs:{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}}),e("polyline",{attrs:{points:"16 6 12 2 8 6"}}),e("line",{attrs:{x1:"12",y1:"2",x2:"12",y2:"15"}})])}},qn={name:"StarIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-star"},t.data]),[e("polygon",{attrs:{points:"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"}})])}},Hn={name:"Trash2Icon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-trash-2"},t.data]),[e("polyline",{attrs:{points:"3 6 5 6 21 6"}}),e("path",{attrs:{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}}),e("line",{attrs:{x1:"10",y1:"11",x2:"10",y2:"17"}}),e("line",{attrs:{x1:"14",y1:"11",x2:"14",y2:"17"}})])}},Wn={name:"TrashIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-trash"},t.data]),[e("polyline",{attrs:{points:"3 6 5 6 21 6"}}),e("path",{attrs:{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}})])}},Gn={name:"UnlockIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-unlock"},t.data]),[e("rect",{attrs:{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}}),e("path",{attrs:{d:"M7 11V7a5 5 0 0 1 9.9-1"}})])}},Zn={name:"UploadCloudIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-upload-cloud"},t.data]),[e("polyline",{attrs:{points:"16 16 12 12 8 16"}}),e("line",{attrs:{x1:"12",y1:"12",x2:"12",y2:"21"}}),e("path",{attrs:{d:"M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"}}),e("polyline",{attrs:{points:"16 16 12 12 8 16"}})])}},Yn={name:"UploadIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-upload"},t.data]),[e("path",{attrs:{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}}),e("polyline",{attrs:{points:"17 8 12 3 7 8"}}),e("line",{attrs:{x1:"12",y1:"3",x2:"12",y2:"15"}})])}},Kn={name:"UserPlusIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-user-plus"},t.data]),[e("path",{attrs:{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}}),e("circle",{attrs:{cx:"8.5",cy:"7",r:"4"}}),e("line",{attrs:{x1:"20",y1:"8",x2:"20",y2:"14"}}),e("line",{attrs:{x1:"23",y1:"11",x2:"17",y2:"11"}})])}},Xn={name:"UserIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-user"},t.data]),[e("path",{attrs:{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}}),e("circle",{attrs:{cx:"12",cy:"7",r:"4"}})])}},Jn={name:"UsersIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-users"},t.data]),[e("path",{attrs:{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}}),e("circle",{attrs:{cx:"9",cy:"7",r:"4"}}),e("path",{attrs:{d:"M23 21v-2a4 4 0 0 0-3-3.87"}}),e("path",{attrs:{d:"M16 3.13a4 4 0 0 1 0 7.75"}})])}},Qn={name:"VideoIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-video"},t.data]),[e("polygon",{attrs:{points:"23 7 16 12 23 17 23 7"}}),e("rect",{attrs:{x:"1",y:"5",width:"15",height:"14",rx:"2",ry:"2"}})])}},ea={name:"XIcon",props:{size:{type:String,default:"24",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&"x"===e.slice(-1)}}},functional:!0,render:function(e,t){var n="x"===t.props.size.slice(-1)?t.props.size.slice(0,t.props.size.length-1)+"em":parseInt(t.props.size)+"px",a=t.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,t.data.attrs=a,e("svg",fn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-x"},t.data]),[e("line",{attrs:{x1:"18",y1:"6",x2:"6",y2:"18"}}),e("line",{attrs:{x1:"6",y1:"6",x2:"18",y2:"18"}})])}},ta={name:"ToolbarButtonUpload",props:["action"],components:{UploadCloudIcon:Zn},methods:{emmitFiles:function(e){this.$uploadFiles(e.target.files)}}},na=(n(139),Mt(ta,(function(){var e=this.$createElement,t=this._self._c||e;return t("label",{staticClass:"button file-input",attrs:{label:"file"}},[t("upload-cloud-icon",{attrs:{size:"17"}}),this._v(" "),t("input",{directives:[{name:"show",rawName:"v-show",value:!1,expression:"false"}],attrs:{id:"file",type:"file",name:"files[]",multiple:""},on:{change:this.emmitFiles}})],1)}),[],!1,null,"3a42fd9f",null).exports),aa={name:"ProgressBar",props:["progress"]},ra=(n(141),Mt(aa,(function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"progress-bar"},[t("span",{style:{width:this.progress+"%"}})])}),[],!1,null,"3169894e",null).exports);function ia(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function oa(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var sa={name:"UploadProgress",components:{ProgressBar:ra},computed:function(e){for(var t=1;t1},attrs:{size:"17"}}),e._v(" "),n("span",{staticClass:"back-directory-title"},[e._v("\n "+e._s(e.directoryName)+"\n ")]),e._v(" "),e.browseHistory.length>1&&e.$isThisLocation(["base","public"])?n("span",{staticClass:"folder-options",attrs:{id:"folder-actions"},on:{click:function(t){return t.stopPropagation(),e.folderActions(t)}}},[n("more-horizontal-icon",{staticClass:"icon-more",attrs:{size:"14"}})],1):e._e()],1)]):e._e(),e._v(" "),n("div",{staticClass:"toolbar-tools"},[n("div",{staticClass:"toolbar-button-wrapper"},[n("SearchBar")],1),e._v(" "),e.$checkPermission(["master","editor"])?n("div",{staticClass:"toolbar-button-wrapper"},[n("ToolbarButtonUpload",{class:{"is-inactive":e.canUploadInView},attrs:{action:e.$t("actions.upload")}}),e._v(" "),n("ToolbarButton",{class:{"is-inactive":e.canCreateFolderInView},attrs:{source:"folder-plus",action:e.$t("actions.create_folder")},nativeOn:{click:function(t){return e.createFolder(t)}}})],1):e._e(),e._v(" "),e.$checkPermission(["master","editor"])?n("div",{staticClass:"toolbar-button-wrapper"},[n("ToolbarButton",{class:{"is-inactive":e.canMoveInView},attrs:{source:"move",action:e.$t("actions.move")},nativeOn:{click:function(t){return e.moveItem(t)}}}),e._v(" "),e.$isThisLocation(["public"])?e._e():n("ToolbarButton",{class:{"is-inactive":e.canShareInView},attrs:{source:"share",action:e.$t("actions.share")},nativeOn:{click:function(t){return e.shareItem(t)}}}),e._v(" "),n("ToolbarButton",{class:{"is-inactive":e.canDeleteInView},attrs:{source:"trash",action:e.$t("actions.delete")},nativeOn:{click:function(t){return e.deleteItem(t)}}})],1):e._e(),e._v(" "),n("div",{staticClass:"toolbar-button-wrapper"},[n("ToolbarButton",{attrs:{source:e.preview,action:e.$t("actions.preview")},nativeOn:{click:function(t){return e.$store.dispatch("changePreviewType")}}}),e._v(" "),n("ToolbarButton",{class:{active:e.fileInfoVisible},attrs:{source:"info"},nativeOn:{click:function(t){return e.$store.dispatch("fileInfoToggle")}}})],1)])]),e._v(" "),n("UploadProgress")],1)}),[],!1,null,"76e7a57a",null).exports);function _a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function wa(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var xa={name:"FileItemGrid",props:["data"],components:{UserPlusIcon:Kn,LinkIcon:Tn},computed:function(e){for(var t=1;t1},attrs:{size:"17"}})],1),e._v(" "),n("div",{staticClass:"directory-name"},[e._v(e._s(e.directoryName))]),e._v(" "),n("div",{staticClass:"more-actions-button"},[e.$checkPermission("master")?n("div",{staticClass:"tap-area",on:{click:e.showMobileNavigation}},[n("menu-icon",{attrs:{size:"17"}})],1):e._e()])])}),[],!1,null,"d0931b78",null).exports),Pa={name:"MobileActionButtonUpload",components:{UploadCloudIcon:Zn},methods:{emmitFiles:function(e){this.$uploadFiles(e.target.files)}}},Ia=(n(155),Mt(Pa,(function(){var e=this.$createElement,t=this._self._c||e;return t("button",{staticClass:"mobile-action-button"},[t("div",{staticClass:"flex"},[t("upload-cloud-icon",{staticClass:"icon",attrs:{size:"15"}}),this._v(" "),t("label",{staticClass:"label button file-input button-base",attrs:{label:"file"}},[this._t("default"),this._v(" "),t("input",{directives:[{name:"show",rawName:"v-show",value:!1,expression:"false"}],attrs:{id:"file",type:"file",name:"files[]",multiple:""},on:{change:this.emmitFiles}})],2)],1)])}),[],!1,null,"160992a2",null).exports),ja={name:"MobileActionButton",props:["icon"],components:{FolderPlusIcon:$n,UserPlusIcon:Kn,TrashIcon:Wn,ListIcon:Dn,GridIcon:Pn}},Aa=(n(157),Mt(ja,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("button",{staticClass:"mobile-action-button"},[n("div",{staticClass:"flex"},["folder-plus"===e.icon?n("folder-plus-icon",{staticClass:"icon",attrs:{size:"15"}}):e._e(),e._v(" "),"th-list"===e.icon?n("list-icon",{staticClass:"icon",attrs:{size:"15"}}):e._e(),e._v(" "),"trash"===e.icon?n("trash-icon",{staticClass:"icon",attrs:{size:"15"}}):e._e(),e._v(" "),"th"===e.icon?n("grid-icon",{staticClass:"icon",attrs:{size:"15"}}):e._e(),e._v(" "),"user-plus"===e.icon?n("user-plus-icon",{staticClass:"icon",attrs:{size:"15"}}):e._e(),e._v(" "),n("span",{staticClass:"label"},[e._t("default")],2)],1)])}),[],!1,null,"39df5540",null).exports);function Ea(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function Sa(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ta={name:"MobileActions",components:{MobileActionButtonUpload:Ia,MobileActionButton:Aa,UploadProgress:ca},computed:function(e){for(var t=1;t3?e.substring(0,3)+"...":e.substring(0,3)}},data:function(){return{isClicked:!1,area:!1,itemName:void 0}},methods:{showItemActions:function(){this.$store.commit("GET_FILEINFO_DETAIL",this.data),Yt.$emit("mobileMenu:show")},dragEnter:function(){"folder"===this.data.type&&(this.area=!0)},dragLeave:function(){this.area=!1},clickedItem:function(e){Yt.$emit("contextMenu:hide"),Yt.$emit("fileItem:deselect"),this.isClicked=!0,this.$isMobile()&&this.isFolder&&(this.$isThisLocation("public")?this.$store.dispatch("browseShared",[{folder:this.data,back:!1,init:!1}]):this.$store.dispatch("getFolder",[{folder:this.data,back:!1,init:!1}])),this.$store.commit("GET_FILEINFO_DETAIL",this.data);var t=e.target.className;["name","icon","file-link","file-icon-text"].includes(t)},goToItem:function(){this.isImage&&this.$openImageOnNewTab(this.data.file_url),this.isFile&&this.$downloadFile(this.data.file_url,this.data.name+"."+this.data.mimetype),this.isFolder&&(this.$isThisLocation("public")?this.$store.dispatch("browseShared",[{folder:this.data,back:!1,init:!1}]):this.$store.dispatch("getFolder",[{folder:this.data,back:!1,init:!1}]))},renameItem:Object(pa.debounce)((function(e){""!==e.target.innerText.trim()&&this.$store.dispatch("renameItem",{unique_id:this.data.unique_id,type:this.data.type,name:e.target.innerText})}),300)},created:function(){var e=this;this.itemName=this.data.name,Yt.$on("fileItem:deselect",(function(){e.isClicked=!1})),Yt.$on("change:name",(function(t){e.data.unique_id==t.unique_id&&(e.itemName=t.name)}))}},Ya=(n(167),Mt(Za,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"file-wrapper",attrs:{spellcheck:"false"},on:{click:function(t){return t.stopPropagation(),e.clickedItem(t)},dblclick:e.goToItem}},[n("div",{staticClass:"file-item",class:{"is-clicked":e.isClicked,"is-dragenter":e.area},attrs:{draggable:e.canDrag},on:{dragstart:function(t){return e.$emit("dragstart")},drop:function(t){e.$emit("drop"),e.area=!1},dragleave:e.dragLeave,dragover:function(t){return t.preventDefault(),e.dragEnter(t)}}},[n("div",{staticClass:"icon-item"},[e.isFile?n("span",{staticClass:"file-icon-text"},[e._v("\n "+e._s(e._f("limitCharacters")(e.data.mimetype))+"\n ")]):e._e(),e._v(" "),e.isFile?n("FontAwesomeIcon",{staticClass:"file-icon",attrs:{icon:"file"}}):e._e(),e._v(" "),e.isImage?n("img",{staticClass:"image",attrs:{src:e.data.thumbnail,alt:e.data.name}}):e._e(),e._v(" "),e.isFolder?n("FontAwesomeIcon",{staticClass:"folder-icon",class:{"is-deleted":e.isDeleted},attrs:{icon:"folder"}}):e._e()],1),e._v(" "),n("div",{staticClass:"item-name"},[n("b",{ref:"name",staticClass:"name",attrs:{contenteditable:e.canEditName},on:{input:e.renameItem}},[e._v("\n "+e._s(e.itemName)+"\n ")]),e._v(" "),n("div",{staticClass:"item-info"},[e.$checkPermission("master")&&e.data.shared?n("div",{staticClass:"item-shared"},[n("link-icon",{staticClass:"shared-icon",attrs:{size:"12"}})],1):e._e(),e._v(" "),e.$checkPermission("master")&&"master"!==e.data.user_scope?n("div",{staticClass:"item-shared"},[n("user-plus-icon",{staticClass:"shared-icon",attrs:{size:"12"}})],1):e._e(),e._v(" "),e.isFolder?e._e():n("span",{staticClass:"item-size"},[e._v(e._s(e.data.filesize)+", "+e._s(e.timeStamp))]),e._v(" "),e.isFolder?n("span",{staticClass:"item-length"},[e._v("\n "+e._s(0==e.folderItems?e.$t("folder.empty"):e.$tc("folder.item_counts",e.folderItems))+", "+e._s(e.timeStamp)+"\n ")]):e._e()])]),e._v(" "),!e.$isMobile()||e.$checkPermission("visitor")&&e.isFolder?e._e():n("div",{staticClass:"actions"},[n("span",{staticClass:"show-actions",on:{click:function(t){return t.stopPropagation(),e.showItemActions(t)}}},[n("FontAwesomeIcon",{staticClass:"icon-action",attrs:{icon:"ellipsis-v"}})],1)])])])}),[],!1,null,"0e147eab",null).exports),Ka={name:"EmptyMessage",props:["icon","message"],components:{EyeOffIcon:xn}},Xa=(n(169),Mt(Ka,(function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"empty-message"},[t("div",{staticClass:"message"},["eye-off"===this.icon?t("eye-off-icon",{staticClass:"icon",attrs:{size:"36"}}):this._e(),this._v(" "),t("p",[this._v(this._s(this.message))])],1)])}),[],!1,null,"f1b82072",null).exports),Ja={name:"ButtonBase",props:["buttonStyle"],data:function(){return{files:void 0}},methods:{emmitFiles:function(e){this.$uploadFiles(e.target.files)}}},Qa=(n(171),Mt(Ja,(function(){var e=this.$createElement,t=this._self._c||e;return t("label",{staticClass:"button file-input button-base",class:this.buttonStyle,attrs:{label:"file"}},[this._t("default"),this._v(" "),t("input",{directives:[{name:"show",rawName:"v-show",value:!1,expression:"false"}],attrs:{accept:"*",id:"file",type:"file",name:"files[]",multiple:""},on:{change:this.emmitFiles}})],2)}),[],!1,null,"00125c42",null).exports),er={name:"Spinner"},tr=(n(173),Mt(er,(function(){var e=this.$createElement;this._self._c;return this._m(0)}),[function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"spinner",attrs:{id:"loading-bar-spinner"}},[t("div",{staticClass:"spinner-icon"})])}],!1,null,"6a1e6612",null).exports);function nr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function ar(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var rr={name:"EmptyPage",props:["title","description"],components:{ButtonUpload:Qa,Spinner:tr},computed:function(e){for(var t=1;t0},visibleData:function(){if(this.hasData)return this.filter.field?"DESC"===this.filter.sort?this.chunks=Object(pa.chunk)(Object(pa.sortBy)(this.data,this.filter.field),this.items_per_view):this.chunks=Object(pa.chunk)(Object(pa.sortBy)(this.data,this.filter.field).reverse(),this.items_per_view):this.chunks=Object(pa.chunk)(this.data,this.items_per_view),this.chunks[this.pageIndex]}}}),co=(n(251),Mt(so,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"datatable"},[e.hasData?n("table",{staticClass:"table"},[n("thead",{staticClass:"table-header"},[n("tr",e._l(e.columns,(function(t,a){return n("td",{key:a,class:{sortable:t.sortable},on:{click:function(n){return e.sort(t.field,t.sortable,a)}}},[n("span",[e._v(e._s(t.label))]),e._v(" "),e._e()],1)})),0)]),e._v(" "),n("tbody",{staticClass:"table-body"},[e._l(e.visibleData,(function(t){return e._t("default",[n("DatatableCell",{key:t.id,attrs:{data:t}})],{row:t})}))],2)]):e._e(),e._v(" "),e.hasData&&e.paginator?n("div",{staticClass:"paginator-wrapper"},[e.chunks.length>1?n("ul",{staticClass:"pagination"},[n("li",{staticClass:"page-item"},[n("a",{staticClass:"page-link",class:{disabled:0==e.pageIndex},on:{click:function(t){return e.goToPage(e.pageIndex-1)}}},[n("chevron-left-icon",{staticClass:"icon",attrs:{size:"14"}})],1)]),e._v(" "),e._l(e.chunks,(function(t,a){return n("li",{key:a,staticClass:"page-item",on:{click:function(t){return e.goToPage(a)}}},[n("a",{staticClass:"page-link",class:{active:e.pageIndex==a}},[e._v("\n "+e._s(a+1)+"\n ")])])})),e._v(" "),n("li",{staticClass:"page-item"},[n("a",{staticClass:"page-link",class:{disabled:e.pageIndex+1==e.chunks.length},on:{click:function(t){return e.goToPage(e.pageIndex+1)}}},[n("chevron-right-icon",{staticClass:"icon",attrs:{size:"14"}})],1)])],2):e._e(),e._v(" "),n("span",{staticClass:"paginator-info"},[e._v(e._s(e.$t("datatable.paginate_info",{visible:e.visibleData.length,total:e.data.length})))])]):e._e()])}),[],!1,null,"4801e011",null).exports),lo={name:"ColorLabel",props:["color"]},po=(n(253),Mt(lo,(function(){var e=this.$createElement;return(this._self._c||e)("b",{staticClass:"color-label",class:this.color},[this._t("default")],2)}),[],!1,null,"35ce19a1",null).exports),uo={name:"Profile",components:{MobileActionButton:Aa,DatatableWrapper:co,SectionTitle:Oi,MobileHeader:li,Trash2Icon:Hn,PageHeader:pi,ButtonBase:vr,ColorLabel:po,Edit2Icon:wn,Spinner:tr},data:function(){return{isLoading:!0,users:[],columns:[{label:this.$t("admin_page_user.table.name"),field:"data.attributes.name",sortable:!0},{label:this.$t("admin_page_user.table.role"),field:"data.attributes.role",sortable:!0},{label:this.$t("admin_page_user.table.storage_used"),field:"data.attributes.storage.used",sortable:!0},{label:this.$t("admin_page_user.table.storage_capacity"),field:"data.attributes.storage.capacity",sortable:!0},{label:this.$t("admin_page_user.table.created_at"),field:"data.attributes.created_at_formatted",sortable:!0},{label:this.$t("admin_page_user.table.action"),field:"data.action",sortable:!1}]}},methods:{getRoleColor:function(e){switch(e){case"admin":return"purple";case"user":return"yellow"}}},created:function(){var e=this;Xt.a.get("/api/users").then((function(t){e.users=t.data.data,e.isLoading=!1}))}},fo=(n(255),Mt(uo,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{attrs:{id:"single-page"}},[e.isLoading?e._e():n("div",{staticClass:"medium-width",attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:e.$router.currentRoute.meta.title}}),e._v(" "),n("PageHeader",{attrs:{title:e.$router.currentRoute.meta.title}}),e._v(" "),n("div",{staticClass:"content-page"},[n("div",{staticClass:"table-tools"},[n("div",{staticClass:"buttons"},[n("router-link",{attrs:{to:{name:"UserCreate"}}},[n("MobileActionButton",{attrs:{icon:"user-plus"}},[e._v("\n "+e._s(e.$t("admin_page_user.create_user.submit"))+"\n ")])],1)],1),e._v(" "),n("div",{staticClass:"searching"})]),e._v(" "),n("DatatableWrapper",{staticClass:"table table-users",attrs:{paginator:!0,columns:e.columns,data:e.users},scopedSlots:e._u([{key:"default",fn:function(t){var a=t.row;return[n("tr",[n("td",{staticStyle:{width:"300px"}},[n("router-link",{staticClass:"user-thumbnail",attrs:{to:{name:"UserDetail",params:{id:a.data.id}},tag:"div"}},[n("div",{staticClass:"avatar"},[n("img",{attrs:{src:a.data.attributes.avatar,alt:a.data.attributes.name}})]),e._v(" "),n("div",{staticClass:"info"},[n("b",{staticClass:"name"},[e._v(e._s(a.data.attributes.name))]),e._v(" "),n("span",{staticClass:"email"},[e._v(e._s(a.data.attributes.email))])])])],1),e._v(" "),n("td",[n("ColorLabel",{attrs:{color:e.getRoleColor(a.data.attributes.role)}},[e._v("\n "+e._s(a.data.attributes.role)+"\n ")])],1),e._v(" "),n("td",[n("span",{staticClass:"cell-item"},[e._v("\n "+e._s(a.data.attributes.storage.used)+"%\n ")])]),e._v(" "),n("td",[n("span",{staticClass:"cell-item"},[e._v("\n "+e._s(a.data.attributes.storage.capacity_formatted)+"\n ")])]),e._v(" "),n("td",[n("span",{staticClass:"cell-item"},[e._v("\n "+e._s(a.data.attributes.created_at_formatted)+"\n ")])]),e._v(" "),n("td",[n("div",{staticClass:"action-icons"},[n("router-link",{attrs:{to:{name:"UserDetail",params:{id:a.data.id}}}},[n("edit-2-icon",{staticClass:"icon icon-edit",attrs:{size:"15"}})],1),e._v(" "),n("router-link",{attrs:{to:{name:"UserDelete",params:{id:a.data.id}}}},[n("trash2-icon",{staticClass:"icon icon-trash",attrs:{size:"15"}})],1)],1)])])]}}],null,!1,2902994377)})],1)],1),e._v(" "),e.isLoading?n("div",{attrs:{id:"loader"}},[n("Spinner")],1):e._e()])}),[],!1,null,"da82b38c",null).exports);function vo(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function mo(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ho={name:"Profile",components:{Trash2Icon:Hn,LockIcon:Fn,HardDriveIcon:In,StorageItemDetail:ki,SectionTitle:Oi,MobileHeader:li,PageHeader:pi,ColorLabel:po,UserIcon:Xn,Spinner:tr},computed:function(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,a=new Array(t);ne.length)&&(t=e.length);for(var n=0,a=new Array(t);ne.length)&&(t=e.length);for(var n=0,a=new Array(t);n1&&void 0!==arguments[1]?arguments[1]:void 0;t?e.commit("FILE_INFO_TOGGLE",t):e.state.fileInfoPanelVisible?e.commit("FILE_INFO_TOGGLE",!1):e.commit("FILE_INFO_TOGGLE",!0)}},mutations:{INIT:function(e,t){e.config=t.config,e.authorized=t.authCookie,e.homeDirectory=t.rootDirectory},FILE_INFO_TOGGLE:function(e,t){e.fileInfoPanelVisible=t,localStorage.setItem("file_info_visibility",t)},SET_AUTHORIZED:function(e,t){e.authorized=t},CHANGE_PREVIEW:function(e,t){e.FilePreviewType=t}}};r.a.use(Zt.a);var Ms=new Zt.a.Store({modules:{fileFunctions:Is,fileBrowser:Ss,userAuth:Ts,sharing:Ls,app:Ns}});function Rs(e){return function(e){if(Array.isArray(e))return Bs(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return Bs(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Bs(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Bs(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n=100)){e.next=5;break}return Yt.$emit("alert:open",{emoji:"😬😬😬",title:this.$t("popup_exceed_limit.title"),message:this.$t("popup_exceed_limit.message")}),e.abrupt("return");case 5:n=t?t.length:0,a=1,Ms.commit("UPDATE_FILE_COUNT_PROGRESS",{current:a,total:n}),r=this.$store.getters.currentFolder?this.$store.getters.currentFolder.unique_id:0,i=t.length-1;case 10:if(!(i>=0)){e.next=22;break}return(o=new FormData).append("file",t[i]),o.append("parent_id",r),console.log(i),console.log(t[i]),console.log(o),e.next=19,Ms.dispatch("uploadFiles",o).then((function(){Ms.commit("UPDATE_FILE_COUNT_PROGRESS",{current:a,total:n}),n===a?Ms.commit("UPDATE_FILE_COUNT_PROGRESS",void 0):a++})).catch((function(e){423===e.response.status?Yt.$emit("alert:open",{emoji:"😬😬😬",title:s.$t("popup_exceed_limit.title"),message:s.$t("popup_exceed_limit.message")}):413===e.response.status?Yt.$emit("alert:open",{emoji:"😟",title:s.$t("popup_paylod_error.title"),message:s.$t("popup_paylod_error.message")}):Yt.$emit("alert:open",{title:s.$t("popup_error.title"),message:s.$t("popup_error.message")})}));case 19:i--,e.next=10;break;case 22:case"end":return e.stop()}}),e,this)})));return function(t){return e.apply(this,arguments)}}(),e.prototype.$uploadExternalFiles=function(){var e=Us(Lt.a.mark((function e(t,n){var a,r,i,o,s=this;return Lt.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(0!=t.dataTransfer.items.length){e.next=2;break}return e.abrupt("return");case 2:if(a=Rs(t.dataTransfer.items).map((function(e){return e.getAsFile()})),this.$isThisLocation(["public"])||!(this.$store.getters.app.storage.percentage>=100)){e.next=6;break}return Yt.$emit("alert:open",{emoji:"😬😬😬",title:this.$t("popup_exceed_limit.title"),message:this.$t("popup_exceed_limit.message")}),e.abrupt("return");case 6:r=1,Ms.commit("UPDATE_FILE_COUNT_PROGRESS",{current:r,total:a.length}),i=a.length-1;case 9:if(!(i>=0)){e.next=18;break}return(o=new FormData).append("file",a[i]),o.append("parent_id",n),e.next=15,Ms.dispatch("uploadFiles",o).then((function(){Ms.commit("UPDATE_FILE_COUNT_PROGRESS",{current:r,total:a.length}),Ms.commit("INCREASE_FOLDER_ITEM",n),a.length===r?Ms.commit("UPDATE_FILE_COUNT_PROGRESS",void 0):r++})).catch((function(e){423==e.response.status?Yt.$emit("alert:open",{emoji:"😬😬😬",title:s.$t("popup_exceed_limit.title"),message:s.$t("popup_exceed_limit.message")}):413===e.response.status?Yt.$emit("alert:open",{emoji:"😟",title:s.$t("popup_paylod_error.title"),message:s.$t("popup_paylod_error.message")}):Yt.$emit("alert:open",{title:s.$t("popup_error.title"),message:s.$t("popup_error.message")})}));case 15:i--,e.next=9;break;case 18:case"end":return e.stop()}}),e,this)})));return function(t,n){return e.apply(this,arguments)}}(),e.prototype.$downloadFile=function(e,t){var n=document.createElement("a");n.href=e,n.download=t,document.body.appendChild(n),n.click()},e.prototype.$closePopup=function(){Yt.$emit("popup:close")},e.prototype.$isThisRoute=function(e,t){return Object(pa.includes)(t,e.name)},e.prototype.$isThisLocation=function(e){var t=Ms.getters.currentFolder&&Ms.getters.currentFolder.location?Ms.getters.currentFolder.location:void 0;return"Object"==typeof e||e instanceof Object?Object(pa.includes)(e,t):t===e},e.prototype.$checkPermission=function(e){var t=Ms.getters.permission;return"Object"==typeof e||e instanceof Object?Object(pa.includes)(e,t):t===e},e.prototype.$isMobile=function(){return[/Android/i,/webOS/i,/iPhone/i,/iPad/i,/iPod/i,/BlackBerry/i,/Windows Phone/i].some((function(e){return navigator.userAgent.match(e)}))},e.prototype.$isMinimalScale=function(){return"minimal-scale"===Ms.getters.filesViewWidth},e.prototype.$isCompactScale=function(){return"compact-scale"===Ms.getters.filesViewWidth},e.prototype.$isFullScale=function(){return"full-scale"===Ms.getters.filesViewWidth},e.prototype.$isSomethingWrong=function(){Yt.$emit("alert:open",{title:this.$t("popup_error.title"),message:this.$t("popup_error.message")})}}},Hs=qs,Ws=n(10),Gs=n(107),Zs={prefix:"fas",iconName:"bars",icon:[448,512,[],"f0c9","M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"]},Ys={prefix:"fas",iconName:"check",icon:[512,512,[],"f00c","M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"]},Ks={prefix:"fas",iconName:"chevron-down",icon:[448,512,[],"f078","M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"]},Xs={prefix:"fas",iconName:"chevron-left",icon:[320,512,[],"f053","M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"]},Js={prefix:"fas",iconName:"chevron-right",icon:[320,512,[],"f054","M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"]},Qs={prefix:"fas",iconName:"download",icon:[512,512,[],"f019","M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"]},ec={prefix:"fas",iconName:"ellipsis-h",icon:[512,512,[],"f141","M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"]},tc={prefix:"fas",iconName:"ellipsis-v",icon:[192,512,[],"f142","M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"]},nc={prefix:"fas",iconName:"eye-slash",icon:[640,512,[],"f070","M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z"]},ac={prefix:"fas",iconName:"file",icon:[384,512,[],"f15b","M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"]},rc={prefix:"fas",iconName:"file-audio",icon:[384,512,[],"f1c7","M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"]},ic={prefix:"fas",iconName:"file-image",icon:[384,512,[],"f1c5","M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"]},oc={prefix:"fas",iconName:"file-video",icon:[384,512,[],"f1c8","M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"]},sc={prefix:"fas",iconName:"folder",icon:[512,512,[],"f07b","M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"]},cc={prefix:"fas",iconName:"folder-plus",icon:[512,512,[],"f65e","M464,128H272L208,64H48A48,48,0,0,0,0,112V400a48,48,0,0,0,48,48H464a48,48,0,0,0,48-48V176A48,48,0,0,0,464,128ZM359.5,296a16,16,0,0,1-16,16h-64v64a16,16,0,0,1-16,16h-16a16,16,0,0,1-16-16V312h-64a16,16,0,0,1-16-16V280a16,16,0,0,1,16-16h64V200a16,16,0,0,1,16-16h16a16,16,0,0,1,16,16v64h64a16,16,0,0,1,16,16Z"]},lc={prefix:"fas",iconName:"hdd",icon:[576,512,[],"f0a0","M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"]},dc={prefix:"fas",iconName:"home",icon:[576,512,[],"f015","M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z"]},pc={prefix:"fas",iconName:"info",icon:[192,512,[],"f129","M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"]},uc={prefix:"fas",iconName:"link",icon:[512,512,[],"f0c1","M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"]},fc={prefix:"fas",iconName:"lock",icon:[448,512,[],"f023","M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"]},vc={prefix:"fas",iconName:"lock-open",icon:[576,512,[],"f3c1","M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"]},mc={prefix:"fas",iconName:"pencil-alt",icon:[512,512,[],"f303","M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"]},hc={prefix:"fas",iconName:"search",icon:[512,512,[],"f002","M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"]},bc={prefix:"fas",iconName:"share",icon:[512,512,[],"f064","M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"]},gc={prefix:"fas",iconName:"sort",icon:[320,512,[],"f0dc","M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"]},yc={prefix:"fas",iconName:"sync-alt",icon:[512,512,[],"f2f1","M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"]},_c={prefix:"fas",iconName:"th",icon:[512,512,[],"f00a","M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"]},wc={prefix:"fas",iconName:"th-list",icon:[512,512,[],"f00b","M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"]},xc={prefix:"fas",iconName:"times",icon:[352,512,[],"f00d","M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"]},kc={prefix:"fas",iconName:"trash-alt",icon:[448,512,[],"f2ed","M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"]},Cc={prefix:"fas",iconName:"upload",icon:[512,512,[],"f093","M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"]},Oc={prefix:"fas",iconName:"user",icon:[448,512,[],"f007","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"]},$c={prefix:"fas",iconName:"user-edit",icon:[640,512,[],"f4ff","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"]},zc={prefix:"fas",iconName:"user-friends",icon:[640,512,[],"f500","M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"]};n(109),Ws.c.add(fc,vc,Qs,zc,Ys,uc,$c,Oc,rc,oc,lc,yc,bc,dc,nc,Zs,hc,tc,Xs,Js,Ks,Cc,kc,cc,_c,wc,pc,sc,ac,ic,xc,gc,ec,mc),r.a.component("FontAwesomeIcon",Gs.a),r.a.use(Be),r.a.use(Hs),r.a.config.productionTip=!1;new r.a({i18n:Dt,store:Ms,router:Uo,data:{config:config},render:function(e){return e(Os)}}).$mount("#app")},function(e,t){}]); \ No newline at end of file +!function(t){var e={};function n(a){if(e[a])return e[a].exports;var i=e[a]={i:a,l:!1,exports:{}};return t[a].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=t,n.c=e,n.d=function(t,e,a){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:a})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(a,i,function(e){return t[e]}.bind(null,i));return a},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/",n(n.s=171)}([function(t,e){var n=/^(attrs|props|on|nativeOn|class|style|hook)$/;function a(t,e){return function(){t&&t.apply(this,arguments),e&&e.apply(this,arguments)}}t.exports=function(t){return t.reduce((function(t,e){var i,r,o,s,l;for(o in e)if(i=t[o],r=e[o],i&&n.test(o))if("class"===o&&("string"==typeof i&&(l=i,t[o]=i={},i[l]=!0),"string"==typeof r&&(l=r,e[o]=r={},r[l]=!0)),"on"===o||"nativeOn"===o||"hook"===o)for(s in r)i[s]=a(i[s],r[s]);else if(Array.isArray(i))t[o]=i.concat(r);else if(Array.isArray(r))t[o]=[i].concat(r);else for(s in r)i[s]=r[s];else t[o]=e[o];return t}),{})}},function(t,e,n){t.exports=n(174)},function(t,e){t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=function(t,e){var n=t[1]||"",a=t[3];if(!a)return n;if(e&&"function"==typeof btoa){var i=(o=a,"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+" */"),r=a.sources.map((function(t){return"/*# sourceURL="+a.sourceRoot+t+" */"}));return[n].concat(r).concat([i]).join("\n")}var o;return[n].join("\n")}(e,t);return e[2]?"@media "+e[2]+"{"+n+"}":n})).join("")},e.i=function(t,n){"string"==typeof t&&(t=[[null,t,""]]);for(var a={},i=0;i=0&&c.splice(e,1)}function h(t){var e=document.createElement("style");if(void 0===t.attrs.type&&(t.attrs.type="text/css"),void 0===t.attrs.nonce){var a=function(){0;return n.nc}();a&&(t.attrs.nonce=a)}return g(e,t.attrs),v(t,e),e}function g(t,e){Object.keys(e).forEach((function(n){t.setAttribute(n,e[n])}))}function y(t,e){var n,a,i,r;if(e.transform&&t.css){if(!(r="function"==typeof e.transform?e.transform(t.css):e.transform.default(t.css)))return function(){};t.css=r}if(e.singleton){var o=p++;n=d||(d=h(e)),a=w.bind(null,n,o,!1),i=w.bind(null,n,o,!0)}else t.sourceMap&&"function"==typeof URL&&"function"==typeof URL.createObjectURL&&"function"==typeof URL.revokeObjectURL&&"function"==typeof Blob&&"function"==typeof btoa?(n=function(t){var e=document.createElement("link");return void 0===t.attrs.type&&(t.attrs.type="text/css"),t.attrs.rel="stylesheet",g(e,t.attrs),v(t,e),e}(e),a=C.bind(null,n,e),i=function(){b(n),n.href&&URL.revokeObjectURL(n.href)}):(n=h(e),a=k.bind(null,n),i=function(){b(n)});return a(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;a(t=e)}else i()}}t.exports=function(t,e){if("undefined"!=typeof DEBUG&&DEBUG&&"object"!=typeof document)throw new Error("The style-loader cannot be used in a non-browser environment");(e=e||{}).attrs="object"==typeof e.attrs?e.attrs:{},e.singleton||"boolean"==typeof e.singleton||(e.singleton=o()),e.insertInto||(e.insertInto="head"),e.insertAt||(e.insertAt="bottom");var n=m(t,e);return f(n,e),function(t){for(var a=[],i=0;i-1&&e.splice(n,1)}}function m(t,e){t._actions=Object.create(null),t._mutations=Object.create(null),t._wrappedGetters=Object.create(null),t._modulesNamespaceMap=Object.create(null);var n=t.state;b(t,n,[],t._modules.root,!0),v(t,n,e)}function v(t,e,n){var a=t._vm;t.getters={},t._makeLocalGettersCache=Object.create(null);var i=t._wrappedGetters,o={};r(i,(function(e,n){o[n]=function(t,e){return function(){return t(e)}}(e,t),Object.defineProperty(t.getters,n,{get:function(){return t._vm[n]},enumerable:!0})}));var s=p.config.silent;p.config.silent=!0,t._vm=new p({data:{$$state:e},computed:o}),p.config.silent=s,t.strict&&function(t){t._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}(t),a&&(n&&t._withCommit((function(){a._data.$$state=null})),p.nextTick((function(){return a.$destroy()})))}function b(t,e,n,a,i){var r=!n.length,o=t._modules.getNamespace(n);if(a.namespaced&&(t._modulesNamespaceMap[o],t._modulesNamespaceMap[o]=a),!r&&!i){var s=h(e,n.slice(0,-1)),l=n[n.length-1];t._withCommit((function(){p.set(s,l,a.state)}))}var d=a.context=function(t,e,n){var a=""===e,i={dispatch:a?t.dispatch:function(n,a,i){var r=g(n,a,i),o=r.payload,s=r.options,l=r.type;return s&&s.root||(l=e+l),t.dispatch(l,o)},commit:a?t.commit:function(n,a,i){var r=g(n,a,i),o=r.payload,s=r.options,l=r.type;s&&s.root||(l=e+l),t.commit(l,o,s)}};return Object.defineProperties(i,{getters:{get:a?function(){return t.getters}:function(){return function(t,e){if(!t._makeLocalGettersCache[e]){var n={},a=e.length;Object.keys(t.getters).forEach((function(i){if(i.slice(0,a)===e){var r=i.slice(a);Object.defineProperty(n,r,{get:function(){return t.getters[i]},enumerable:!0})}})),t._makeLocalGettersCache[e]=n}return t._makeLocalGettersCache[e]}(t,e)}},state:{get:function(){return h(t.state,n)}}}),i}(t,o,n);a.forEachMutation((function(e,n){!function(t,e,n,a){(t._mutations[e]||(t._mutations[e]=[])).push((function(e){n.call(t,a.state,e)}))}(t,o+n,e,d)})),a.forEachAction((function(e,n){var a=e.root?n:o+n,i=e.handler||e;!function(t,e,n,a){(t._actions[e]||(t._actions[e]=[])).push((function(e){var i,r=n.call(t,{dispatch:a.dispatch,commit:a.commit,getters:a.getters,state:a.state,rootGetters:t.getters,rootState:t.state},e);return(i=r)&&"function"==typeof i.then||(r=Promise.resolve(r)),t._devtoolHook?r.catch((function(e){throw t._devtoolHook.emit("vuex:error",e),e})):r}))}(t,a,i,d)})),a.forEachGetter((function(e,n){!function(t,e,n,a){if(t._wrappedGetters[e])return void 0;t._wrappedGetters[e]=function(t){return n(a.state,a.getters,t.state,t.getters)}}(t,o+n,e,d)})),a.forEachChild((function(a,r){b(t,e,n.concat(r),a,i)}))}function h(t,e){return e.reduce((function(t,e){return t[e]}),t)}function g(t,e,n){return o(t)&&t.type&&(n=e,e=t,t=t.type),{type:t,payload:e,options:n}}function y(t){p&&t===p||function(t){if(Number(t.version.split(".")[0])>=2)t.mixin({beforeCreate:n});else{var e=t.prototype._init;t.prototype._init=function(t){void 0===t&&(t={}),t.init=t.init?[n].concat(t.init):n,e.call(this,t)}}function n(){var t=this.$options;t.store?this.$store="function"==typeof t.store?t.store():t.store:t.parent&&t.parent.$store&&(this.$store=t.parent.$store)}}(p=t)}u.state.get=function(){return this._vm._data.$$state},u.state.set=function(t){0},c.prototype.commit=function(t,e,n){var a=this,i=g(t,e,n),r=i.type,o=i.payload,s=(i.options,{type:r,payload:o}),l=this._mutations[r];l&&(this._withCommit((function(){l.forEach((function(t){t(o)}))})),this._subscribers.slice().forEach((function(t){return t(s,a.state)})))},c.prototype.dispatch=function(t,e){var n=this,a=g(t,e),i=a.type,r=a.payload,o={type:i,payload:r},s=this._actions[i];if(s){try{this._actionSubscribers.slice().filter((function(t){return t.before})).forEach((function(t){return t.before(o,n.state)}))}catch(t){0}var l=s.length>1?Promise.all(s.map((function(t){return t(r)}))):s[0](r);return new Promise((function(t,e){l.then((function(e){try{n._actionSubscribers.filter((function(t){return t.after})).forEach((function(t){return t.after(o,n.state)}))}catch(t){0}t(e)}),(function(t){try{n._actionSubscribers.filter((function(t){return t.error})).forEach((function(e){return e.error(o,n.state,t)}))}catch(t){0}e(t)}))}))}},c.prototype.subscribe=function(t,e){return f(t,this._subscribers,e)},c.prototype.subscribeAction=function(t,e){return f("function"==typeof t?{before:t}:t,this._actionSubscribers,e)},c.prototype.watch=function(t,e,n){var a=this;return this._watcherVM.$watch((function(){return t(a.state,a.getters)}),e,n)},c.prototype.replaceState=function(t){var e=this;this._withCommit((function(){e._vm._data.$$state=t}))},c.prototype.registerModule=function(t,e,n){void 0===n&&(n={}),"string"==typeof t&&(t=[t]),this._modules.register(t,e),b(this,this.state,t,this._modules.get(t),n.preserveState),v(this,this.state)},c.prototype.unregisterModule=function(t){var e=this;"string"==typeof t&&(t=[t]),this._modules.unregister(t),this._withCommit((function(){var n=h(e.state,t.slice(0,-1));p.delete(n,t[t.length-1])})),m(this)},c.prototype.hasModule=function(t){return"string"==typeof t&&(t=[t]),this._modules.isRegistered(t)},c.prototype.hotUpdate=function(t){this._modules.update(t),m(this,!0)},c.prototype._withCommit=function(t){var e=this._committing;this._committing=!0,t(),this._committing=e},Object.defineProperties(c.prototype,u);var _=z((function(t,e){var n={};return C(e).forEach((function(e){var a=e.key,i=e.val;n[a]=function(){var e=this.$store.state,n=this.$store.getters;if(t){var a=P(this.$store,"mapState",t);if(!a)return;e=a.context.state,n=a.context.getters}return"function"==typeof i?i.call(this,e,n):e[i]},n[a].vuex=!0})),n})),x=z((function(t,e){var n={};return C(e).forEach((function(e){var a=e.key,i=e.val;n[a]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var a=this.$store.commit;if(t){var r=P(this.$store,"mapMutations",t);if(!r)return;a=r.context.commit}return"function"==typeof i?i.apply(this,[a].concat(e)):a.apply(this.$store,[i].concat(e))}})),n})),w=z((function(t,e){var n={};return C(e).forEach((function(e){var a=e.key,i=e.val;i=t+i,n[a]=function(){if(!t||P(this.$store,"mapGetters",t))return this.$store.getters[i]},n[a].vuex=!0})),n})),k=z((function(t,e){var n={};return C(e).forEach((function(e){var a=e.key,i=e.val;n[a]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var a=this.$store.dispatch;if(t){var r=P(this.$store,"mapActions",t);if(!r)return;a=r.context.dispatch}return"function"==typeof i?i.apply(this,[a].concat(e)):a.apply(this.$store,[i].concat(e))}})),n}));function C(t){return function(t){return Array.isArray(t)||o(t)}(t)?Array.isArray(t)?t.map((function(t){return{key:t,val:t}})):Object.keys(t).map((function(e){return{key:e,val:t[e]}})):[]}function z(t){return function(e,n){return"string"!=typeof e?(n=e,e=""):"/"!==e.charAt(e.length-1)&&(e+="/"),t(e,n)}}function P(t,e,n){return t._modulesNamespaceMap[n]}function O(t,e,n){var a=n?t.groupCollapsed:t.group;try{a.call(t,e)}catch(n){t.log(e)}}function S(t){try{t.groupEnd()}catch(e){t.log("—— log end ——")}}function $(){var t=new Date;return" @ "+I(t.getHours(),2)+":"+I(t.getMinutes(),2)+":"+I(t.getSeconds(),2)+"."+I(t.getMilliseconds(),3)}function I(t,e){return n="0",a=e-t.toString().length,new Array(a+1).join(n)+t;var n,a}var A={Store:c,install:y,version:"3.5.1",mapState:_,mapMutations:x,mapGetters:w,mapActions:k,createNamespacedHelpers:function(t){return{mapState:_.bind(null,t),mapGetters:w.bind(null,t),mapMutations:x.bind(null,t),mapActions:k.bind(null,t)}},createLogger:function(t){void 0===t&&(t={});var e=t.collapsed;void 0===e&&(e=!0);var n=t.filter;void 0===n&&(n=function(t,e,n){return!0});var a=t.transformer;void 0===a&&(a=function(t){return t});var r=t.mutationTransformer;void 0===r&&(r=function(t){return t});var o=t.actionFilter;void 0===o&&(o=function(t,e){return!0});var s=t.actionTransformer;void 0===s&&(s=function(t){return t});var l=t.logMutations;void 0===l&&(l=!0);var d=t.logActions;void 0===d&&(d=!0);var p=t.logger;return void 0===p&&(p=console),function(t){var c=i(t.state);void 0!==p&&(l&&t.subscribe((function(t,o){var s=i(o);if(n(t,c,s)){var l=$(),d=r(t),u="mutation "+t.type+l;O(p,u,e),p.log("%c prev state","color: #9E9E9E; font-weight: bold",a(c)),p.log("%c mutation","color: #03A9F4; font-weight: bold",d),p.log("%c next state","color: #4CAF50; font-weight: bold",a(s)),S(p)}c=s})),d&&t.subscribeAction((function(t,n){if(o(t,n)){var a=$(),i=s(t),r="action "+t.type+a;O(p,r,e),p.log("%c action","color: #03A9F4; font-weight: bold",i),S(p)}})))}}};e.a=A}).call(this,n(11))},function(t,e,n){!function(t,e){"use strict";e=e&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e;var n={code:"en",messages:{alpha:"The {_field_} field may only contain alphabetic characters",alpha_num:"The {_field_} field may only contain alpha-numeric characters",alpha_dash:"The {_field_} field may contain alpha-numeric characters as well as dashes and underscores",alpha_spaces:"The {_field_} field may only contain alphabetic characters as well as spaces",between:"The {_field_} field must be between {min} and {max}",confirmed:"The {_field_} field confirmation does not match",digits:"The {_field_} field must be numeric and exactly contain {length} digits",dimensions:"The {_field_} field must be {width} pixels by {height} pixels",email:"The {_field_} field must be a valid email",excluded:"The {_field_} field is not a valid value",ext:"The {_field_} field is not a valid file",image:"The {_field_} field must be an image",integer:"The {_field_} field must be an integer",length:"The {_field_} field must be {length} long",max_value:"The {_field_} field must be {max} or less",max:"The {_field_} field may not be greater than {length} characters",mimes:"The {_field_} field must have a valid file type",min_value:"The {_field_} field must be {min} or more",min:"The {_field_} field must be at least {length} characters",numeric:"The {_field_} field may only contain numeric characters",oneOf:"The {_field_} field is not a valid value",regex:"The {_field_} field format is invalid",required_if:"The {_field_} field is required",required:"The {_field_} field is required",size:"The {_field_} field size must be less than {size}KB"}},a={en:/^[A-Z]*$/i,cs:/^[A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]*$/i,da:/^[A-ZÆØÅ]*$/i,de:/^[A-ZÄÖÜß]*$/i,es:/^[A-ZÁÉÍÑÓÚÜ]*$/i,fa:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰپژگچکی]*$/,fr:/^[A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]*$/i,it:/^[A-Z\xC0-\xFF]*$/i,lt:/^[A-ZĄČĘĖĮŠŲŪŽ]*$/i,nl:/^[A-ZÉËÏÓÖÜ]*$/i,hu:/^[A-ZÁÉÍÓÖŐÚÜŰ]*$/i,pl:/^[A-ZĄĆĘŚŁŃÓŻŹ]*$/i,pt:/^[A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ]*$/i,ro:/^[A-ZĂÂÎŞŢ]*$/i,ru:/^[А-ЯЁ]*$/i,sk:/^[A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ]*$/i,sr:/^[A-ZČĆŽŠĐ]*$/i,sv:/^[A-ZÅÄÖ]*$/i,tr:/^[A-ZÇĞİıÖŞÜ]*$/i,uk:/^[А-ЩЬЮЯЄІЇҐ]*$/i,ar:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]*$/,az:/^[A-ZÇƏĞİıÖŞÜ]*$/i,el:/^[Α-ώ]*$/i},i={en:/^[A-Z\s]*$/i,cs:/^[A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ\s]*$/i,da:/^[A-ZÆØÅ\s]*$/i,de:/^[A-ZÄÖÜß\s]*$/i,es:/^[A-ZÁÉÍÑÓÚÜ\s]*$/i,fa:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰپژگچکی]*$/,fr:/^[A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ\s]*$/i,it:/^[A-Z\xC0-\xFF\s]*$/i,lt:/^[A-ZĄČĘĖĮŠŲŪŽ\s]*$/i,nl:/^[A-ZÉËÏÓÖÜ\s]*$/i,hu:/^[A-ZÁÉÍÓÖŐÚÜŰ\s]*$/i,pl:/^[A-ZĄĆĘŚŁŃÓŻŹ\s]*$/i,pt:/^[A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ\s]*$/i,ro:/^[A-ZĂÂÎŞŢ\s]*$/i,ru:/^[А-ЯЁ\s]*$/i,sk:/^[A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ\s]*$/i,sr:/^[A-ZČĆŽŠĐ\s]*$/i,sv:/^[A-ZÅÄÖ\s]*$/i,tr:/^[A-ZÇĞİıÖŞÜ\s]*$/i,uk:/^[А-ЩЬЮЯЄІЇҐ\s]*$/i,ar:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ\s]*$/,az:/^[A-ZÇƏĞİıÖŞÜ\s]*$/i,el:/^[Α-ώ\s]*$/i},r={en:/^[0-9A-Z]*$/i,cs:/^[0-9A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]*$/i,da:/^[0-9A-ZÆØÅ]$/i,de:/^[0-9A-ZÄÖÜß]*$/i,es:/^[0-9A-ZÁÉÍÑÓÚÜ]*$/i,fa:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰپژگچکی]*$/,fr:/^[0-9A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]*$/i,it:/^[0-9A-Z\xC0-\xFF]*$/i,lt:/^[0-9A-ZĄČĘĖĮŠŲŪŽ]*$/i,hu:/^[0-9A-ZÁÉÍÓÖŐÚÜŰ]*$/i,nl:/^[0-9A-ZÉËÏÓÖÜ]*$/i,pl:/^[0-9A-ZĄĆĘŚŁŃÓŻŹ]*$/i,pt:/^[0-9A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ]*$/i,ro:/^[0-9A-ZĂÂÎŞŢ]*$/i,ru:/^[0-9А-ЯЁ]*$/i,sk:/^[0-9A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ]*$/i,sr:/^[0-9A-ZČĆŽŠĐ]*$/i,sv:/^[0-9A-ZÅÄÖ]*$/i,tr:/^[0-9A-ZÇĞİıÖŞÜ]*$/i,uk:/^[0-9А-ЩЬЮЯЄІЇҐ]*$/i,ar:/^[٠١٢٣٤٥٦٧٨٩0-9ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]*$/,az:/^[0-9A-ZÇƏĞİıÖŞÜ]*$/i,el:/^[0-9Α-ώ]*$/i},o={en:/^[0-9A-Z_-]*$/i,cs:/^[0-9A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ_-]*$/i,da:/^[0-9A-ZÆØÅ_-]*$/i,de:/^[0-9A-ZÄÖÜß_-]*$/i,es:/^[0-9A-ZÁÉÍÑÓÚÜ_-]*$/i,fa:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰپژگچکی]*$/,fr:/^[0-9A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ_-]*$/i,it:/^[0-9A-Z\xC0-\xFF_-]*$/i,lt:/^[0-9A-ZĄČĘĖĮŠŲŪŽ_-]*$/i,nl:/^[0-9A-ZÉËÏÓÖÜ_-]*$/i,hu:/^[0-9A-ZÁÉÍÓÖŐÚÜŰ_-]*$/i,pl:/^[0-9A-ZĄĆĘŚŁŃÓŻŹ_-]*$/i,pt:/^[0-9A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ_-]*$/i,ro:/^[0-9A-ZĂÂÎŞŢ_-]*$/i,ru:/^[0-9А-ЯЁ_-]*$/i,sk:/^[0-9A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ_-]*$/i,sr:/^[0-9A-ZČĆŽŠĐ_-]*$/i,sv:/^[0-9A-ZÅÄÖ_-]*$/i,tr:/^[0-9A-ZÇĞİıÖŞÜ_-]*$/i,uk:/^[0-9А-ЩЬЮЯЄІЇҐ_-]*$/i,ar:/^[٠١٢٣٤٥٦٧٨٩0-9ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ_-]*$/,az:/^[0-9A-ZÇƏĞİıÖŞÜ_-]*$/i,el:/^[0-9Α-ώ_-]*$/i},s=function(t,e){var n=(void 0===e?{}:e).locale,i=void 0===n?"":n;return Array.isArray(t)?t.every((function(t){return s(t,{locale:i})})):i?(a[i]||a.en).test(t):Object.keys(a).some((function(e){return a[e].test(t)}))},l={validate:s,params:[{name:"locale"}]},d=function(t,e){var n=(void 0===e?{}:e).locale,a=void 0===n?"":n;return Array.isArray(t)?t.every((function(t){return d(t,{locale:a})})):a?(o[a]||o.en).test(t):Object.keys(o).some((function(e){return o[e].test(t)}))},p={validate:d,params:[{name:"locale"}]},c=function(t,e){var n=(void 0===e?{}:e).locale,a=void 0===n?"":n;return Array.isArray(t)?t.every((function(t){return c(t,{locale:a})})):a?(r[a]||r.en).test(t):Object.keys(r).some((function(e){return r[e].test(t)}))},u={validate:c,params:[{name:"locale"}]},f=function(t,e){var n=(void 0===e?{}:e).locale,a=void 0===n?"":n;return Array.isArray(t)?t.every((function(t){return f(t,{locale:a})})):a?(i[a]||i.en).test(t):Object.keys(i).some((function(e){return i[e].test(t)}))},m={validate:f,params:[{name:"locale"}]},v=function(t,e){var n=void 0===e?{}:e,a=n.min,i=n.max;return Array.isArray(t)?t.every((function(t){return!!v(t,{min:a,max:i})})):Number(a)<=t&&Number(i)>=t},b={validate:v,params:[{name:"min"},{name:"max"}]},h={validate:function(t,e){var n=e.target;return String(t)===String(n)},params:[{name:"target",isTarget:!0}]},g=function(t,e){var n=e.length;if(Array.isArray(t))return t.every((function(t){return g(t,{length:n})}));var a=String(t);return/^[0-9]*$/.test(a)&&a.length===n},y={validate:g,params:[{name:"length",cast:function(t){return Number(t)}}]},_={validate:function(t,e){var n=e.width,a=e.height,i=[];t=Array.isArray(t)?t:[t];for(var r=0;r()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;return n&&!Array.isArray(t)&&(t=String(t).split(",").map((function(t){return t.trim()}))),Array.isArray(t)?t.every((function(t){return a.test(String(t))})):a.test(String(t))},params:[{name:"multiple",default:!1}]};function w(t){return t!=t}function k(t){return null==t}function C(t){return Array.isArray(t)&&0===t.length}var z=function(t){return null!==t&&t&&"object"==typeof t&&!Array.isArray(t)};function P(t,e){return!(!w(t)||!w(e))||t===e}function O(t,e){if(t instanceof RegExp&&e instanceof RegExp)return O(t.source,e.source)&&O(t.flags,e.flags);if(Array.isArray(t)&&Array.isArray(e)){if(t.length!==e.length)return!1;for(var n=0;n=0:Array.isArray(t)?t.every((function(t){return K(t,{length:n})})):String(t).length<=n},Y={validate:K,params:[{name:"length",cast:function(t){return Number(t)}}]},Z=function(t,e){var n=e.max;return!k(t)&&""!==t&&(Array.isArray(t)?t.length>0&&t.every((function(t){return Z(t,{max:n})})):Number(t)<=n)},J={validate:Z,params:[{name:"max",cast:function(t){return Number(t)}}]},X={validate:function(t,e){var n=new RegExp(e.join("|").replace("*",".+")+"$","i");return Array.isArray(t)?t.every((function(t){return n.test(t.type)})):n.test(t.type)}},Q=function(t,e){var n=e.length;return!k(t)&&(Array.isArray(t)?t.every((function(t){return Q(t,{length:n})})):String(t).length>=n)},tt={validate:Q,params:[{name:"length",cast:function(t){return Number(t)}}]},et=function(t,e){var n=e.min;return!k(t)&&""!==t&&(Array.isArray(t)?t.length>0&&t.every((function(t){return et(t,{min:n})})):Number(t)>=n)},nt={validate:et,params:[{name:"min",cast:function(t){return Number(t)}}]},at=/^[٠١٢٣٤٥٦٧٨٩]+$/,it=/^[0-9]+$/,rt={validate:function(t){var e=function(t){var e=String(t);return it.test(e)||at.test(e)};return Array.isArray(t)?t.every(e):e(t)}},ot=function(t,e){var n=e.regex;return Array.isArray(t)?t.every((function(t){return ot(t,{regex:n})})):n.test(String(t))},st={validate:ot,params:[{name:"regex",cast:function(t){return"string"==typeof t?new RegExp(t):t}}]},lt={validate:function(t,e){var n=(void 0===e?{allowFalse:!0}:e).allowFalse,a={valid:!1,required:!0};return k(t)||C(t)?a:!1!==t||n?(a.valid=!!String(t).trim().length,a):a},params:[{name:"allowFalse",default:!0}],computesRequired:!0},dt=function(t){return C(t)||E([!1,null,void 0],t)||!String(t).trim().length},pt={validate:function(t,e){var n,a=e.target,i=e.values;return i&&i.length?(Array.isArray(i)||"string"!=typeof i||(i=[i]),n=i.some((function(t){return t==String(a).trim()}))):n=!dt(a),n?{valid:!dt(t),required:n}:{valid:!0,required:n}},params:[{name:"target",isTarget:!0},{name:"values"}],computesRequired:!0},ct={validate:function(t,e){var n=e.size;if(isNaN(n))return!1;var a=1024*n;if(!Array.isArray(t))return t.size<=a;for(var i=0;ia)return!1;return!0},params:[{name:"size",cast:function(t){return Number(t)}}]},ut=Object.freeze({__proto__:null,alpha_dash:p,alpha_num:u,alpha_spaces:m,alpha:l,between:b,confirmed:h,digits:y,dimensions:_,email:x,ext:V,image:U,oneOf:M,integer:q,length:W,is_not:G,is:H,max:Y,max_value:J,mimes:X,min:tt,min_value:nt,excluded:R,numeric:rt,regex:st,required:lt,required_if:pt,size:ct}),ft=function(){return(ft=Object.assign||function(t){for(var e,n=1,a=arguments.length;n0&&i[i.length-1])||6!==r[0]&&2!==r[0])){o=0;continue}if(3===r[0]&&(!i||r[1]>i[0]&&r[1]=0&&Pt.getRuleDefinition("max")&&(a.max=n.maxlength),n.minlength>=0&&Pt.getRuleDefinition("min")&&(a.min=n.minlength),"number"===n.type&&(S(n.min)&&Pt.getRuleDefinition("min_value")&&(a.min_value=Number(n.min)),S(n.max)&&Pt.getRuleDefinition("max_value")&&(a.max_value=Number(n.max))),a):a}(t))):$t(a)}function Kt(t,e){return t.$scopedSlots.default?t.$scopedSlots.default(e)||[]:t.$slots.default||[]}function Yt(t){return ft(ft({},t.flags),{errors:t.errors,classes:t.classes,failedRules:t.failedRules,reset:function(){return t.reset()},validate:function(){for(var e=[],n=0;n0&&this.syncValue(t[0]),[2,Xt(this)]}))}))},validateSilent:function(){return mt(this,void 0,void 0,(function(){var t,e;return vt(this,(function(n){switch(n.label){case 0:return this.setFlags({pending:!0}),t=ft(ft({},this._resolvedRules),this.normalizedRules),Object.defineProperty(t,"_$$isNormalized",{value:!0,writable:!1,enumerable:!1,configurable:!1}),[4,jt(this.value,t,ft(ft({name:this.name||this.fieldName},(a=this,i=a.$_veeObserver.refs,a.fieldDeps.reduce((function(t,e){return i[e]?(t.values[e]=i[e].value,t.names[e]=i[e].name,t):t}),{names:{},values:{}}))),{bails:this.bails,skipIfEmpty:this.skipIfEmpty,isInitial:!this.initialized,customMessages:this.customMessages}))];case 1:return e=n.sent(),this.setFlags({pending:!1,valid:e.valid,invalid:!e.valid}),[2,e]}var a,i}))}))},setErrors:function(t){this.applyResult({errors:t,failedRules:{}})},applyResult:function(t){var e=t.errors,n=t.failedRules,a=t.regenerateMap;this.errors=e,this._regenerateMap=a,this.failedRules=ft({},n||{}),this.setFlags({valid:!e.length,passed:!e.length,invalid:!!e.length,failed:!!e.length,validated:!0,changed:this.value!==this.initialValue})},registerField:function(){var t,e,n;e=function(t){return t.vid?t.vid:t.name?t.name:t.id?t.id:t.fieldName?t.fieldName:"_vee_"+ ++te}(t=this),n=t.id,!t.isActive||n===e&&t.$_veeObserver.refs[n]||(n!==e&&t.$_veeObserver.refs[n]===t&&t.$_veeObserver.unobserve(n),t.id=e,t.$_veeObserver.observe(t))}}}),ne=[["pristine","every"],["dirty","some"],["touched","some"],["untouched","every"],["valid","every"],["invalid","some"],["pending","some"],["validated","every"],["changed","some"],["passed","every"],["failed","some"]],ae=0,ie=e.extend({name:"ValidationObserver",provide:function(){return{$_veeObserver:this}},inject:{$_veeObserver:{from:"$_veeObserver",default:function(){return this.$vnode.context.$_veeObserver?this.$vnode.context.$_veeObserver:null}}},props:{tag:{type:String,default:"span"},vid:{type:String,default:function(){return"obs_"+ae++}},slim:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},data:function(){return{id:"",refs:{},observers:[],errors:{},flags:se(),fields:{}}},created:function(){var t=this;this.id=this.vid,oe(this);var e=B((function(e){var n=e.errors,a=e.flags,i=e.fields;t.errors=n,t.flags=a,t.fields=i}),16);this.$watch(le,e)},activated:function(){oe(this)},deactivated:function(){re(this)},beforeDestroy:function(){re(this)},render:function(t){var e,n=Kt(this,ft(ft({},(e=this).flags),{errors:e.errors,fields:e.fields,validate:e.validate,passes:e.handleSubmit,handleSubmit:e.handleSubmit,reset:e.reset}));return this.slim&&n.length<=1?n[0]:t(this.tag,{on:this.$listeners},n)},methods:{observe:function(t,e){var n;void 0===e&&(e="provider"),"observer"!==e?this.refs=ft(ft({},this.refs),((n={})[t.id]=t,n)):this.observers.push(t)},unobserve:function(t,e){if(void 0===e&&(e="provider"),"provider"!==e){var n=A(this.observers,(function(e){return e.id===t}));-1!==n&&this.observers.splice(n,1)}else{if(!this.refs[t])return;this.$delete(this.refs,t)}},validate:function(t){var e=(void 0===t?{}:t).silent,n=void 0!==e&&e;return mt(this,void 0,void 0,(function(){return vt(this,(function(t){switch(t.label){case 0:return[4,Promise.all(bt(D(this.refs).filter((function(t){return!t.disabled})).map((function(t){return t[n?"validateSilent":"validate"]().then((function(t){return t.valid}))})),this.observers.filter((function(t){return!t.disabled})).map((function(t){return t.validate({silent:n})}))))];case 1:return[2,t.sent().every((function(t){return t}))]}}))}))},handleSubmit:function(t){return mt(this,void 0,void 0,(function(){return vt(this,(function(e){switch(e.label){case 0:return[4,this.validate()];case 1:return e.sent()&&t?[2,t()]:[2]}}))}))},reset:function(){return bt(D(this.refs),this.observers).forEach((function(t){return t.reset()}))},setErrors:function(t){var e=this;Object.keys(t).forEach((function(n){var a=e.refs[n];if(a){var i=t[n]||[];i="string"==typeof i?[i]:i,a.setErrors(i)}})),this.observers.forEach((function(e){e.setErrors(t)}))}}});function re(t){t.$_veeObserver&&t.$_veeObserver.unobserve(t.id,"observer")}function oe(t){t.$_veeObserver&&t.$_veeObserver.observe(t,"observer")}function se(){return ft(ft({},{untouched:!0,touched:!1,dirty:!1,pristine:!0,valid:!1,invalid:!1,validated:!1,pending:!1,required:!1,changed:!1,passed:!1,failed:!1}),{valid:!0,invalid:!1})}function le(){for(var t=bt(D(this.refs),this.observers),e={},n=se(),a={},i=t.length,r=0;r"']/g,N=RegExp(L.source),F=RegExp(B.source),M=/<%-([\s\S]+?)%>/g,R=/<%([\s\S]+?)%>/g,V=/<%=([\s\S]+?)%>/g,U=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,q=/^\w*$/,H=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,G=/[\\^$.*+?()[\]{}|]/g,W=RegExp(G.source),K=/^\s+|\s+$/g,Y=/^\s+/,Z=/\s+$/,J=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,X=/\{\n\/\* \[wrapped with (.+)\] \*/,Q=/,? & /,tt=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,et=/\\(\\)?/g,nt=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,at=/\w*$/,it=/^[-+]0x[0-9a-f]+$/i,rt=/^0b[01]+$/i,ot=/^\[object .+?Constructor\]$/,st=/^0o[0-7]+$/i,lt=/^(?:0|[1-9]\d*)$/,dt=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,pt=/($^)/,ct=/['\n\r\u2028\u2029\\]/g,ut="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",ft="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",mt="[\\ud800-\\udfff]",vt="["+ft+"]",bt="["+ut+"]",ht="\\d+",gt="[\\u2700-\\u27bf]",yt="[a-z\\xdf-\\xf6\\xf8-\\xff]",_t="[^\\ud800-\\udfff"+ft+ht+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",xt="\\ud83c[\\udffb-\\udfff]",wt="[^\\ud800-\\udfff]",kt="(?:\\ud83c[\\udde6-\\uddff]){2}",Ct="[\\ud800-\\udbff][\\udc00-\\udfff]",zt="[A-Z\\xc0-\\xd6\\xd8-\\xde]",Pt="(?:"+yt+"|"+_t+")",Ot="(?:"+zt+"|"+_t+")",St="(?:"+bt+"|"+xt+")"+"?",$t="[\\ufe0e\\ufe0f]?"+St+("(?:\\u200d(?:"+[wt,kt,Ct].join("|")+")[\\ufe0e\\ufe0f]?"+St+")*"),It="(?:"+[gt,kt,Ct].join("|")+")"+$t,At="(?:"+[wt+bt+"?",bt,kt,Ct,mt].join("|")+")",Et=RegExp("['’]","g"),jt=RegExp(bt,"g"),Dt=RegExp(xt+"(?="+xt+")|"+At+$t,"g"),Tt=RegExp([zt+"?"+yt+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[vt,zt,"$"].join("|")+")",Ot+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[vt,zt+Pt,"$"].join("|")+")",zt+"?"+Pt+"+(?:['’](?:d|ll|m|re|s|t|ve))?",zt+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",ht,It].join("|"),"g"),Lt=RegExp("[\\u200d\\ud800-\\udfff"+ut+"\\ufe0e\\ufe0f]"),Bt=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Nt=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Ft=-1,Mt={};Mt[z]=Mt[P]=Mt[O]=Mt[S]=Mt[$]=Mt[I]=Mt["[object Uint8ClampedArray]"]=Mt[A]=Mt[E]=!0,Mt[l]=Mt[d]=Mt[k]=Mt[p]=Mt[C]=Mt[c]=Mt[u]=Mt[f]=Mt[v]=Mt[b]=Mt[h]=Mt[g]=Mt[y]=Mt[_]=Mt[w]=!1;var Rt={};Rt[l]=Rt[d]=Rt[k]=Rt[C]=Rt[p]=Rt[c]=Rt[z]=Rt[P]=Rt[O]=Rt[S]=Rt[$]=Rt[v]=Rt[b]=Rt[h]=Rt[g]=Rt[y]=Rt[_]=Rt[x]=Rt[I]=Rt["[object Uint8ClampedArray]"]=Rt[A]=Rt[E]=!0,Rt[u]=Rt[f]=Rt[w]=!1;var Vt={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Ut=parseFloat,qt=parseInt,Ht="object"==typeof t&&t&&t.Object===Object&&t,Gt="object"==typeof self&&self&&self.Object===Object&&self,Wt=Ht||Gt||Function("return this")(),Kt=e&&!e.nodeType&&e,Yt=Kt&&"object"==typeof a&&a&&!a.nodeType&&a,Zt=Yt&&Yt.exports===Kt,Jt=Zt&&Ht.process,Xt=function(){try{var t=Yt&&Yt.require&&Yt.require("util").types;return t||Jt&&Jt.binding&&Jt.binding("util")}catch(t){}}(),Qt=Xt&&Xt.isArrayBuffer,te=Xt&&Xt.isDate,ee=Xt&&Xt.isMap,ne=Xt&&Xt.isRegExp,ae=Xt&&Xt.isSet,ie=Xt&&Xt.isTypedArray;function re(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}function oe(t,e,n,a){for(var i=-1,r=null==t?0:t.length;++i-1}function ue(t,e,n){for(var a=-1,i=null==t?0:t.length;++a-1;);return n}function De(t,e){for(var n=t.length;n--&&xe(e,t[n],0)>-1;);return n}function Te(t,e){for(var n=t.length,a=0;n--;)t[n]===e&&++a;return a}var Le=Pe({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),Be=Pe({"&":"&","<":"<",">":">",'"':""","'":"'"});function Ne(t){return"\\"+Vt[t]}function Fe(t){return Lt.test(t)}function Me(t){var e=-1,n=Array(t.size);return t.forEach((function(t,a){n[++e]=[a,t]})),n}function Re(t,e){return function(n){return t(e(n))}}function Ve(t,e){for(var n=-1,a=t.length,i=0,r=[];++n",""":'"',"'":"'"});var Ke=function t(e){var n,a=(e=null==e?Wt:Ke.defaults(Wt.Object(),e,Ke.pick(Wt,Nt))).Array,i=e.Date,ut=e.Error,ft=e.Function,mt=e.Math,vt=e.Object,bt=e.RegExp,ht=e.String,gt=e.TypeError,yt=a.prototype,_t=ft.prototype,xt=vt.prototype,wt=e["__core-js_shared__"],kt=_t.toString,Ct=xt.hasOwnProperty,zt=0,Pt=(n=/[^.]+$/.exec(wt&&wt.keys&&wt.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",Ot=xt.toString,St=kt.call(vt),$t=Wt._,It=bt("^"+kt.call(Ct).replace(G,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),At=Zt?e.Buffer:void 0,Dt=e.Symbol,Lt=e.Uint8Array,Vt=At?At.allocUnsafe:void 0,Ht=Re(vt.getPrototypeOf,vt),Gt=vt.create,Kt=xt.propertyIsEnumerable,Yt=yt.splice,Jt=Dt?Dt.isConcatSpreadable:void 0,Xt=Dt?Dt.iterator:void 0,ge=Dt?Dt.toStringTag:void 0,Pe=function(){try{var t=Qi(vt,"defineProperty");return t({},"",{}),t}catch(t){}}(),Ye=e.clearTimeout!==Wt.clearTimeout&&e.clearTimeout,Ze=i&&i.now!==Wt.Date.now&&i.now,Je=e.setTimeout!==Wt.setTimeout&&e.setTimeout,Xe=mt.ceil,Qe=mt.floor,tn=vt.getOwnPropertySymbols,en=At?At.isBuffer:void 0,nn=e.isFinite,an=yt.join,rn=Re(vt.keys,vt),on=mt.max,sn=mt.min,ln=i.now,dn=e.parseInt,pn=mt.random,cn=yt.reverse,un=Qi(e,"DataView"),fn=Qi(e,"Map"),mn=Qi(e,"Promise"),vn=Qi(e,"Set"),bn=Qi(e,"WeakMap"),hn=Qi(vt,"create"),gn=bn&&new bn,yn={},_n=Pr(un),xn=Pr(fn),wn=Pr(mn),kn=Pr(vn),Cn=Pr(bn),zn=Dt?Dt.prototype:void 0,Pn=zn?zn.valueOf:void 0,On=zn?zn.toString:void 0;function Sn(t){if(qo(t)&&!jo(t)&&!(t instanceof En)){if(t instanceof An)return t;if(Ct.call(t,"__wrapped__"))return Or(t)}return new An(t)}var $n=function(){function t(){}return function(e){if(!Uo(e))return{};if(Gt)return Gt(e);t.prototype=e;var n=new t;return t.prototype=void 0,n}}();function In(){}function An(t,e){this.__wrapped__=t,this.__actions__=[],this.__chain__=!!e,this.__index__=0,this.__values__=void 0}function En(t){this.__wrapped__=t,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=4294967295,this.__views__=[]}function jn(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e=e?t:e)),t}function Zn(t,e,n,a,i,r){var o,s=1&e,d=2&e,u=4&e;if(n&&(o=i?n(t,a,i,r):n(t)),void 0!==o)return o;if(!Uo(t))return t;var w=jo(t);if(w){if(o=function(t){var e=t.length,n=new t.constructor(e);e&&"string"==typeof t[0]&&Ct.call(t,"index")&&(n.index=t.index,n.input=t.input);return n}(t),!s)return hi(t,o)}else{var j=nr(t),D=j==f||j==m;if(Bo(t))return ci(t,s);if(j==h||j==l||D&&!i){if(o=d||D?{}:ir(t),!s)return d?function(t,e){return gi(t,er(t),e)}(t,function(t,e){return t&&gi(e,xs(e),t)}(o,t)):function(t,e){return gi(t,tr(t),e)}(t,Gn(o,t))}else{if(!Rt[j])return i?t:{};o=function(t,e,n){var a=t.constructor;switch(e){case k:return ui(t);case p:case c:return new a(+t);case C:return function(t,e){var n=e?ui(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.byteLength)}(t,n);case z:case P:case O:case S:case $:case I:case"[object Uint8ClampedArray]":case A:case E:return fi(t,n);case v:return new a;case b:case _:return new a(t);case g:return function(t){var e=new t.constructor(t.source,at.exec(t));return e.lastIndex=t.lastIndex,e}(t);case y:return new a;case x:return i=t,Pn?vt(Pn.call(i)):{}}var i}(t,j,s)}}r||(r=new Bn);var T=r.get(t);if(T)return T;r.set(t,o),Yo(t)?t.forEach((function(a){o.add(Zn(a,e,n,a,t,r))})):Ho(t)&&t.forEach((function(a,i){o.set(i,Zn(a,e,n,i,t,r))}));var L=w?void 0:(u?d?Gi:Hi:d?xs:_s)(t);return se(L||t,(function(a,i){L&&(a=t[i=a]),Un(o,i,Zn(a,e,n,i,t,r))})),o}function Jn(t,e,n){var a=n.length;if(null==t)return!a;for(t=vt(t);a--;){var i=n[a],r=e[i],o=t[i];if(void 0===o&&!(i in t)||!r(o))return!1}return!0}function Xn(t,e,n){if("function"!=typeof t)throw new gt(r);return yr((function(){t.apply(void 0,n)}),e)}function Qn(t,e,n,a){var i=-1,r=ce,o=!0,s=t.length,l=[],d=e.length;if(!s)return l;n&&(e=fe(e,Ie(n))),a?(r=ue,o=!1):e.length>=200&&(r=Ee,o=!1,e=new Ln(e));t:for(;++i-1},Dn.prototype.set=function(t,e){var n=this.__data__,a=qn(n,t);return a<0?(++this.size,n.push([t,e])):n[a][1]=e,this},Tn.prototype.clear=function(){this.size=0,this.__data__={hash:new jn,map:new(fn||Dn),string:new jn}},Tn.prototype.delete=function(t){var e=Ji(this,t).delete(t);return this.size-=e?1:0,e},Tn.prototype.get=function(t){return Ji(this,t).get(t)},Tn.prototype.has=function(t){return Ji(this,t).has(t)},Tn.prototype.set=function(t,e){var n=Ji(this,t),a=n.size;return n.set(t,e),this.size+=n.size==a?0:1,this},Ln.prototype.add=Ln.prototype.push=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this},Ln.prototype.has=function(t){return this.__data__.has(t)},Bn.prototype.clear=function(){this.__data__=new Dn,this.size=0},Bn.prototype.delete=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n},Bn.prototype.get=function(t){return this.__data__.get(t)},Bn.prototype.has=function(t){return this.__data__.has(t)},Bn.prototype.set=function(t,e){var n=this.__data__;if(n instanceof Dn){var a=n.__data__;if(!fn||a.length<199)return a.push([t,e]),this.size=++n.size,this;n=this.__data__=new Tn(a)}return n.set(t,e),this.size=n.size,this};var ta=xi(la),ea=xi(da,!0);function na(t,e){var n=!0;return ta(t,(function(t,a,i){return n=!!e(t,a,i)})),n}function aa(t,e,n){for(var a=-1,i=t.length;++a0&&n(s)?e>1?ra(s,e-1,n,a,i):me(i,s):a||(i[i.length]=s)}return i}var oa=wi(),sa=wi(!0);function la(t,e){return t&&oa(t,e,_s)}function da(t,e){return t&&sa(t,e,_s)}function pa(t,e){return pe(e,(function(e){return Mo(t[e])}))}function ca(t,e){for(var n=0,a=(e=si(e,t)).length;null!=t&&ne}function va(t,e){return null!=t&&Ct.call(t,e)}function ba(t,e){return null!=t&&e in vt(t)}function ha(t,e,n){for(var i=n?ue:ce,r=t[0].length,o=t.length,s=o,l=a(o),d=1/0,p=[];s--;){var c=t[s];s&&e&&(c=fe(c,Ie(e))),d=sn(c.length,d),l[s]=!n&&(e||r>=120&&c.length>=120)?new Ln(s&&c):void 0}c=t[0];var u=-1,f=l[0];t:for(;++u=s)return l;var d=n[a];return l*("desc"==d?-1:1)}}return t.index-e.index}(t,e,n)}))}function ja(t,e,n){for(var a=-1,i=e.length,r={};++a-1;)s!==t&&Yt.call(s,l,1),Yt.call(t,l,1);return t}function Ta(t,e){for(var n=t?e.length:0,a=n-1;n--;){var i=e[n];if(n==a||i!==r){var r=i;or(i)?Yt.call(t,i,1):Qa(t,i)}}return t}function La(t,e){return t+Qe(pn()*(e-t+1))}function Ba(t,e){var n="";if(!t||e<1||e>9007199254740991)return n;do{e%2&&(n+=t),(e=Qe(e/2))&&(t+=t)}while(e);return n}function Na(t,e){return _r(mr(t,e,Gs),t+"")}function Fa(t){return Fn($s(t))}function Ma(t,e){var n=$s(t);return kr(n,Yn(e,0,n.length))}function Ra(t,e,n,a){if(!Uo(t))return t;for(var i=-1,r=(e=si(e,t)).length,o=r-1,s=t;null!=s&&++ir?0:r+e),(n=n>r?r:n)<0&&(n+=r),r=e>n?0:n-e>>>0,e>>>=0;for(var o=a(r);++i>>1,o=t[r];null!==o&&!Jo(o)&&(n?o<=e:o=200){var d=e?null:Bi(t);if(d)return Ue(d);o=!1,i=Ee,l=new Ln}else l=e?[]:s;t:for(;++a=a?t:Ha(t,e,n)}var pi=Ye||function(t){return Wt.clearTimeout(t)};function ci(t,e){if(e)return t.slice();var n=t.length,a=Vt?Vt(n):new t.constructor(n);return t.copy(a),a}function ui(t){var e=new t.constructor(t.byteLength);return new Lt(e).set(new Lt(t)),e}function fi(t,e){var n=e?ui(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.length)}function mi(t,e){if(t!==e){var n=void 0!==t,a=null===t,i=t==t,r=Jo(t),o=void 0!==e,s=null===e,l=e==e,d=Jo(e);if(!s&&!d&&!r&&t>e||r&&o&&l&&!s&&!d||a&&o&&l||!n&&l||!i)return 1;if(!a&&!r&&!d&&t1?n[i-1]:void 0,o=i>2?n[2]:void 0;for(r=t.length>3&&"function"==typeof r?(i--,r):void 0,o&&sr(n[0],n[1],o)&&(r=i<3?void 0:r,i=1),e=vt(e);++a-1?i[r?e[o]:o]:void 0}}function Oi(t){return qi((function(e){var n=e.length,a=n,i=An.prototype.thru;for(t&&e.reverse();a--;){var o=e[a];if("function"!=typeof o)throw new gt(r);if(i&&!s&&"wrapper"==Ki(o))var s=new An([],!0)}for(a=s?a:n;++a1&&y.reverse(),c&&ds))return!1;var d=r.get(t),p=r.get(e);if(d&&p)return d==e&&p==t;var c=-1,u=!0,f=2&n?new Ln:void 0;for(r.set(t,e),r.set(e,t);++c-1&&t%1==0&&t1?"& ":"")+e[a],e=e.join(n>2?", ":" "),t.replace(J,"{\n/* [wrapped with "+e+"] */\n")}(a,function(t,e){return se(s,(function(n){var a="_."+n[0];e&n[1]&&!ce(t,a)&&t.push(a)})),t.sort()}(function(t){var e=t.match(X);return e?e[1].split(Q):[]}(a),n)))}function wr(t){var e=0,n=0;return function(){var a=ln(),i=16-(a-n);if(n=a,i>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}function kr(t,e){var n=-1,a=t.length,i=a-1;for(e=void 0===e?a:e;++n1?t[e-1]:void 0;return n="function"==typeof n?(t.pop(),n):void 0,Wr(t,n)}));function to(t){var e=Sn(t);return e.__chain__=!0,e}function eo(t,e){return e(t)}var no=qi((function(t){var e=t.length,n=e?t[0]:0,a=this.__wrapped__,i=function(e){return Kn(e,t)};return!(e>1||this.__actions__.length)&&a instanceof En&&or(n)?((a=a.slice(n,+n+(e?1:0))).__actions__.push({func:eo,args:[i],thisArg:void 0}),new An(a,this.__chain__).thru((function(t){return e&&!t.length&&t.push(void 0),t}))):this.thru(i)}));var ao=yi((function(t,e,n){Ct.call(t,n)?++t[n]:Wn(t,n,1)}));var io=Pi(Ar),ro=Pi(Er);function oo(t,e){return(jo(t)?se:ta)(t,Zi(e,3))}function so(t,e){return(jo(t)?le:ea)(t,Zi(e,3))}var lo=yi((function(t,e,n){Ct.call(t,n)?t[n].push(e):Wn(t,n,[e])}));var po=Na((function(t,e,n){var i=-1,r="function"==typeof e,o=To(t)?a(t.length):[];return ta(t,(function(t){o[++i]=r?re(e,t,n):ga(t,e,n)})),o})),co=yi((function(t,e,n){Wn(t,n,e)}));function uo(t,e){return(jo(t)?fe:Oa)(t,Zi(e,3))}var fo=yi((function(t,e,n){t[n?0:1].push(e)}),(function(){return[[],[]]}));var mo=Na((function(t,e){if(null==t)return[];var n=e.length;return n>1&&sr(t,e[0],e[1])?e=[]:n>2&&sr(e[0],e[1],e[2])&&(e=[e[0]]),Ea(t,ra(e,1),[])})),vo=Ze||function(){return Wt.Date.now()};function bo(t,e,n){return e=n?void 0:e,Fi(t,128,void 0,void 0,void 0,void 0,e=t&&null==e?t.length:e)}function ho(t,e){var n;if("function"!=typeof e)throw new gt(r);return t=as(t),function(){return--t>0&&(n=e.apply(this,arguments)),t<=1&&(e=void 0),n}}var go=Na((function(t,e,n){var a=1;if(n.length){var i=Ve(n,Yi(go));a|=32}return Fi(t,a,e,n,i)})),yo=Na((function(t,e,n){var a=3;if(n.length){var i=Ve(n,Yi(yo));a|=32}return Fi(e,a,t,n,i)}));function _o(t,e,n){var a,i,o,s,l,d,p=0,c=!1,u=!1,f=!0;if("function"!=typeof t)throw new gt(r);function m(e){var n=a,r=i;return a=i=void 0,p=e,s=t.apply(r,n)}function v(t){return p=t,l=yr(h,e),c?m(t):s}function b(t){var n=t-d;return void 0===d||n>=e||n<0||u&&t-p>=o}function h(){var t=vo();if(b(t))return g(t);l=yr(h,function(t){var n=e-(t-d);return u?sn(n,o-(t-p)):n}(t))}function g(t){return l=void 0,f&&a?m(t):(a=i=void 0,s)}function y(){var t=vo(),n=b(t);if(a=arguments,i=this,d=t,n){if(void 0===l)return v(d);if(u)return pi(l),l=yr(h,e),m(d)}return void 0===l&&(l=yr(h,e)),s}return e=rs(e)||0,Uo(n)&&(c=!!n.leading,o=(u="maxWait"in n)?on(rs(n.maxWait)||0,e):o,f="trailing"in n?!!n.trailing:f),y.cancel=function(){void 0!==l&&pi(l),p=0,a=d=i=l=void 0},y.flush=function(){return void 0===l?s:g(vo())},y}var xo=Na((function(t,e){return Xn(t,1,e)})),wo=Na((function(t,e,n){return Xn(t,rs(e)||0,n)}));function ko(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new gt(r);var n=function(){var a=arguments,i=e?e.apply(this,a):a[0],r=n.cache;if(r.has(i))return r.get(i);var o=t.apply(this,a);return n.cache=r.set(i,o)||r,o};return n.cache=new(ko.Cache||Tn),n}function Co(t){if("function"!=typeof t)throw new gt(r);return function(){var e=arguments;switch(e.length){case 0:return!t.call(this);case 1:return!t.call(this,e[0]);case 2:return!t.call(this,e[0],e[1]);case 3:return!t.call(this,e[0],e[1],e[2])}return!t.apply(this,e)}}ko.Cache=Tn;var zo=li((function(t,e){var n=(e=1==e.length&&jo(e[0])?fe(e[0],Ie(Zi())):fe(ra(e,1),Ie(Zi()))).length;return Na((function(a){for(var i=-1,r=sn(a.length,n);++i=e})),Eo=ya(function(){return arguments}())?ya:function(t){return qo(t)&&Ct.call(t,"callee")&&!Kt.call(t,"callee")},jo=a.isArray,Do=Qt?Ie(Qt):function(t){return qo(t)&&fa(t)==k};function To(t){return null!=t&&Vo(t.length)&&!Mo(t)}function Lo(t){return qo(t)&&To(t)}var Bo=en||rl,No=te?Ie(te):function(t){return qo(t)&&fa(t)==c};function Fo(t){if(!qo(t))return!1;var e=fa(t);return e==u||"[object DOMException]"==e||"string"==typeof t.message&&"string"==typeof t.name&&!Wo(t)}function Mo(t){if(!Uo(t))return!1;var e=fa(t);return e==f||e==m||"[object AsyncFunction]"==e||"[object Proxy]"==e}function Ro(t){return"number"==typeof t&&t==as(t)}function Vo(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991}function Uo(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function qo(t){return null!=t&&"object"==typeof t}var Ho=ee?Ie(ee):function(t){return qo(t)&&nr(t)==v};function Go(t){return"number"==typeof t||qo(t)&&fa(t)==b}function Wo(t){if(!qo(t)||fa(t)!=h)return!1;var e=Ht(t);if(null===e)return!0;var n=Ct.call(e,"constructor")&&e.constructor;return"function"==typeof n&&n instanceof n&&kt.call(n)==St}var Ko=ne?Ie(ne):function(t){return qo(t)&&fa(t)==g};var Yo=ae?Ie(ae):function(t){return qo(t)&&nr(t)==y};function Zo(t){return"string"==typeof t||!jo(t)&&qo(t)&&fa(t)==_}function Jo(t){return"symbol"==typeof t||qo(t)&&fa(t)==x}var Xo=ie?Ie(ie):function(t){return qo(t)&&Vo(t.length)&&!!Mt[fa(t)]};var Qo=Di(Pa),ts=Di((function(t,e){return t<=e}));function es(t){if(!t)return[];if(To(t))return Zo(t)?Ge(t):hi(t);if(Xt&&t[Xt])return function(t){for(var e,n=[];!(e=t.next()).done;)n.push(e.value);return n}(t[Xt]());var e=nr(t);return(e==v?Me:e==y?Ue:$s)(t)}function ns(t){return t?(t=rs(t))===1/0||t===-1/0?17976931348623157e292*(t<0?-1:1):t==t?t:0:0===t?t:0}function as(t){var e=ns(t),n=e%1;return e==e?n?e-n:e:0}function is(t){return t?Yn(as(t),0,4294967295):0}function rs(t){if("number"==typeof t)return t;if(Jo(t))return NaN;if(Uo(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=Uo(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(K,"");var n=rt.test(t);return n||st.test(t)?qt(t.slice(2),n?2:8):it.test(t)?NaN:+t}function os(t){return gi(t,xs(t))}function ss(t){return null==t?"":Ja(t)}var ls=_i((function(t,e){if(cr(e)||To(e))gi(e,_s(e),t);else for(var n in e)Ct.call(e,n)&&Un(t,n,e[n])})),ds=_i((function(t,e){gi(e,xs(e),t)})),ps=_i((function(t,e,n,a){gi(e,xs(e),t,a)})),cs=_i((function(t,e,n,a){gi(e,_s(e),t,a)})),us=qi(Kn);var fs=Na((function(t,e){t=vt(t);var n=-1,a=e.length,i=a>2?e[2]:void 0;for(i&&sr(e[0],e[1],i)&&(a=1);++n1),e})),gi(t,Gi(t),n),a&&(n=Zn(n,7,Vi));for(var i=e.length;i--;)Qa(n,e[i]);return n}));var zs=qi((function(t,e){return null==t?{}:function(t,e){return ja(t,e,(function(e,n){return bs(t,n)}))}(t,e)}));function Ps(t,e){if(null==t)return{};var n=fe(Gi(t),(function(t){return[t]}));return e=Zi(e),ja(t,n,(function(t,n){return e(t,n[0])}))}var Os=Ni(_s),Ss=Ni(xs);function $s(t){return null==t?[]:Ae(t,_s(t))}var Is=Ci((function(t,e,n){return e=e.toLowerCase(),t+(n?As(e):e)}));function As(t){return Fs(ss(t).toLowerCase())}function Es(t){return(t=ss(t))&&t.replace(dt,Le).replace(jt,"")}var js=Ci((function(t,e,n){return t+(n?"-":"")+e.toLowerCase()})),Ds=Ci((function(t,e,n){return t+(n?" ":"")+e.toLowerCase()})),Ts=ki("toLowerCase");var Ls=Ci((function(t,e,n){return t+(n?"_":"")+e.toLowerCase()}));var Bs=Ci((function(t,e,n){return t+(n?" ":"")+Fs(e)}));var Ns=Ci((function(t,e,n){return t+(n?" ":"")+e.toUpperCase()})),Fs=ki("toUpperCase");function Ms(t,e,n){return t=ss(t),void 0===(e=n?void 0:e)?function(t){return Bt.test(t)}(t)?function(t){return t.match(Tt)||[]}(t):function(t){return t.match(tt)||[]}(t):t.match(e)||[]}var Rs=Na((function(t,e){try{return re(t,void 0,e)}catch(t){return Fo(t)?t:new ut(t)}})),Vs=qi((function(t,e){return se(e,(function(e){e=zr(e),Wn(t,e,go(t[e],t))})),t}));function Us(t){return function(){return t}}var qs=Oi(),Hs=Oi(!0);function Gs(t){return t}function Ws(t){return ka("function"==typeof t?t:Zn(t,1))}var Ks=Na((function(t,e){return function(n){return ga(n,t,e)}})),Ys=Na((function(t,e){return function(n){return ga(t,n,e)}}));function Zs(t,e,n){var a=_s(e),i=pa(e,a);null!=n||Uo(e)&&(i.length||!a.length)||(n=e,e=t,t=this,i=pa(e,_s(e)));var r=!(Uo(n)&&"chain"in n&&!n.chain),o=Mo(t);return se(i,(function(n){var a=e[n];t[n]=a,o&&(t.prototype[n]=function(){var e=this.__chain__;if(r||e){var n=t(this.__wrapped__),i=n.__actions__=hi(this.__actions__);return i.push({func:a,args:arguments,thisArg:t}),n.__chain__=e,n}return a.apply(t,me([this.value()],arguments))})})),t}function Js(){}var Xs=Ai(fe),Qs=Ai(de),tl=Ai(he);function el(t){return lr(t)?ze(zr(t)):function(t){return function(e){return ca(e,t)}}(t)}var nl=ji(),al=ji(!0);function il(){return[]}function rl(){return!1}var ol=Ii((function(t,e){return t+e}),0),sl=Li("ceil"),ll=Ii((function(t,e){return t/e}),1),dl=Li("floor");var pl,cl=Ii((function(t,e){return t*e}),1),ul=Li("round"),fl=Ii((function(t,e){return t-e}),0);return Sn.after=function(t,e){if("function"!=typeof e)throw new gt(r);return t=as(t),function(){if(--t<1)return e.apply(this,arguments)}},Sn.ary=bo,Sn.assign=ls,Sn.assignIn=ds,Sn.assignInWith=ps,Sn.assignWith=cs,Sn.at=us,Sn.before=ho,Sn.bind=go,Sn.bindAll=Vs,Sn.bindKey=yo,Sn.castArray=function(){if(!arguments.length)return[];var t=arguments[0];return jo(t)?t:[t]},Sn.chain=to,Sn.chunk=function(t,e,n){e=(n?sr(t,e,n):void 0===e)?1:on(as(e),0);var i=null==t?0:t.length;if(!i||e<1)return[];for(var r=0,o=0,s=a(Xe(i/e));ri?0:i+n),(a=void 0===a||a>i?i:as(a))<0&&(a+=i),a=n>a?0:is(a);n>>0)?(t=ss(t))&&("string"==typeof e||null!=e&&!Ko(e))&&!(e=Ja(e))&&Fe(t)?di(Ge(t),0,n):t.split(e,n):[]},Sn.spread=function(t,e){if("function"!=typeof t)throw new gt(r);return e=null==e?0:on(as(e),0),Na((function(n){var a=n[e],i=di(n,0,e);return a&&me(i,a),re(t,this,i)}))},Sn.tail=function(t){var e=null==t?0:t.length;return e?Ha(t,1,e):[]},Sn.take=function(t,e,n){return t&&t.length?Ha(t,0,(e=n||void 0===e?1:as(e))<0?0:e):[]},Sn.takeRight=function(t,e,n){var a=null==t?0:t.length;return a?Ha(t,(e=a-(e=n||void 0===e?1:as(e)))<0?0:e,a):[]},Sn.takeRightWhile=function(t,e){return t&&t.length?ei(t,Zi(e,3),!1,!0):[]},Sn.takeWhile=function(t,e){return t&&t.length?ei(t,Zi(e,3)):[]},Sn.tap=function(t,e){return e(t),t},Sn.throttle=function(t,e,n){var a=!0,i=!0;if("function"!=typeof t)throw new gt(r);return Uo(n)&&(a="leading"in n?!!n.leading:a,i="trailing"in n?!!n.trailing:i),_o(t,e,{leading:a,maxWait:e,trailing:i})},Sn.thru=eo,Sn.toArray=es,Sn.toPairs=Os,Sn.toPairsIn=Ss,Sn.toPath=function(t){return jo(t)?fe(t,zr):Jo(t)?[t]:hi(Cr(ss(t)))},Sn.toPlainObject=os,Sn.transform=function(t,e,n){var a=jo(t),i=a||Bo(t)||Xo(t);if(e=Zi(e,4),null==n){var r=t&&t.constructor;n=i?a?new r:[]:Uo(t)&&Mo(r)?$n(Ht(t)):{}}return(i?se:la)(t,(function(t,a,i){return e(n,t,a,i)})),n},Sn.unary=function(t){return bo(t,1)},Sn.union=Ur,Sn.unionBy=qr,Sn.unionWith=Hr,Sn.uniq=function(t){return t&&t.length?Xa(t):[]},Sn.uniqBy=function(t,e){return t&&t.length?Xa(t,Zi(e,2)):[]},Sn.uniqWith=function(t,e){return e="function"==typeof e?e:void 0,t&&t.length?Xa(t,void 0,e):[]},Sn.unset=function(t,e){return null==t||Qa(t,e)},Sn.unzip=Gr,Sn.unzipWith=Wr,Sn.update=function(t,e,n){return null==t?t:ti(t,e,oi(n))},Sn.updateWith=function(t,e,n,a){return a="function"==typeof a?a:void 0,null==t?t:ti(t,e,oi(n),a)},Sn.values=$s,Sn.valuesIn=function(t){return null==t?[]:Ae(t,xs(t))},Sn.without=Kr,Sn.words=Ms,Sn.wrap=function(t,e){return Po(oi(e),t)},Sn.xor=Yr,Sn.xorBy=Zr,Sn.xorWith=Jr,Sn.zip=Xr,Sn.zipObject=function(t,e){return ii(t||[],e||[],Un)},Sn.zipObjectDeep=function(t,e){return ii(t||[],e||[],Ra)},Sn.zipWith=Qr,Sn.entries=Os,Sn.entriesIn=Ss,Sn.extend=ds,Sn.extendWith=ps,Zs(Sn,Sn),Sn.add=ol,Sn.attempt=Rs,Sn.camelCase=Is,Sn.capitalize=As,Sn.ceil=sl,Sn.clamp=function(t,e,n){return void 0===n&&(n=e,e=void 0),void 0!==n&&(n=(n=rs(n))==n?n:0),void 0!==e&&(e=(e=rs(e))==e?e:0),Yn(rs(t),e,n)},Sn.clone=function(t){return Zn(t,4)},Sn.cloneDeep=function(t){return Zn(t,5)},Sn.cloneDeepWith=function(t,e){return Zn(t,5,e="function"==typeof e?e:void 0)},Sn.cloneWith=function(t,e){return Zn(t,4,e="function"==typeof e?e:void 0)},Sn.conformsTo=function(t,e){return null==e||Jn(t,e,_s(e))},Sn.deburr=Es,Sn.defaultTo=function(t,e){return null==t||t!=t?e:t},Sn.divide=ll,Sn.endsWith=function(t,e,n){t=ss(t),e=Ja(e);var a=t.length,i=n=void 0===n?a:Yn(as(n),0,a);return(n-=e.length)>=0&&t.slice(n,i)==e},Sn.eq=$o,Sn.escape=function(t){return(t=ss(t))&&F.test(t)?t.replace(B,Be):t},Sn.escapeRegExp=function(t){return(t=ss(t))&&W.test(t)?t.replace(G,"\\$&"):t},Sn.every=function(t,e,n){var a=jo(t)?de:na;return n&&sr(t,e,n)&&(e=void 0),a(t,Zi(e,3))},Sn.find=io,Sn.findIndex=Ar,Sn.findKey=function(t,e){return ye(t,Zi(e,3),la)},Sn.findLast=ro,Sn.findLastIndex=Er,Sn.findLastKey=function(t,e){return ye(t,Zi(e,3),da)},Sn.floor=dl,Sn.forEach=oo,Sn.forEachRight=so,Sn.forIn=function(t,e){return null==t?t:oa(t,Zi(e,3),xs)},Sn.forInRight=function(t,e){return null==t?t:sa(t,Zi(e,3),xs)},Sn.forOwn=function(t,e){return t&&la(t,Zi(e,3))},Sn.forOwnRight=function(t,e){return t&&da(t,Zi(e,3))},Sn.get=vs,Sn.gt=Io,Sn.gte=Ao,Sn.has=function(t,e){return null!=t&&ar(t,e,va)},Sn.hasIn=bs,Sn.head=Dr,Sn.identity=Gs,Sn.includes=function(t,e,n,a){t=To(t)?t:$s(t),n=n&&!a?as(n):0;var i=t.length;return n<0&&(n=on(i+n,0)),Zo(t)?n<=i&&t.indexOf(e,n)>-1:!!i&&xe(t,e,n)>-1},Sn.indexOf=function(t,e,n){var a=null==t?0:t.length;if(!a)return-1;var i=null==n?0:as(n);return i<0&&(i=on(a+i,0)),xe(t,e,i)},Sn.inRange=function(t,e,n){return e=ns(e),void 0===n?(n=e,e=0):n=ns(n),function(t,e,n){return t>=sn(e,n)&&t=-9007199254740991&&t<=9007199254740991},Sn.isSet=Yo,Sn.isString=Zo,Sn.isSymbol=Jo,Sn.isTypedArray=Xo,Sn.isUndefined=function(t){return void 0===t},Sn.isWeakMap=function(t){return qo(t)&&nr(t)==w},Sn.isWeakSet=function(t){return qo(t)&&"[object WeakSet]"==fa(t)},Sn.join=function(t,e){return null==t?"":an.call(t,e)},Sn.kebabCase=js,Sn.last=Nr,Sn.lastIndexOf=function(t,e,n){var a=null==t?0:t.length;if(!a)return-1;var i=a;return void 0!==n&&(i=(i=as(n))<0?on(a+i,0):sn(i,a-1)),e==e?function(t,e,n){for(var a=n+1;a--;)if(t[a]===e)return a;return a}(t,e,i):_e(t,ke,i,!0)},Sn.lowerCase=Ds,Sn.lowerFirst=Ts,Sn.lt=Qo,Sn.lte=ts,Sn.max=function(t){return t&&t.length?aa(t,Gs,ma):void 0},Sn.maxBy=function(t,e){return t&&t.length?aa(t,Zi(e,2),ma):void 0},Sn.mean=function(t){return Ce(t,Gs)},Sn.meanBy=function(t,e){return Ce(t,Zi(e,2))},Sn.min=function(t){return t&&t.length?aa(t,Gs,Pa):void 0},Sn.minBy=function(t,e){return t&&t.length?aa(t,Zi(e,2),Pa):void 0},Sn.stubArray=il,Sn.stubFalse=rl,Sn.stubObject=function(){return{}},Sn.stubString=function(){return""},Sn.stubTrue=function(){return!0},Sn.multiply=cl,Sn.nth=function(t,e){return t&&t.length?Aa(t,as(e)):void 0},Sn.noConflict=function(){return Wt._===this&&(Wt._=$t),this},Sn.noop=Js,Sn.now=vo,Sn.pad=function(t,e,n){t=ss(t);var a=(e=as(e))?He(t):0;if(!e||a>=e)return t;var i=(e-a)/2;return Ei(Qe(i),n)+t+Ei(Xe(i),n)},Sn.padEnd=function(t,e,n){t=ss(t);var a=(e=as(e))?He(t):0;return e&&ae){var a=t;t=e,e=a}if(n||t%1||e%1){var i=pn();return sn(t+i*(e-t+Ut("1e-"+((i+"").length-1))),e)}return La(t,e)},Sn.reduce=function(t,e,n){var a=jo(t)?ve:Oe,i=arguments.length<3;return a(t,Zi(e,4),n,i,ta)},Sn.reduceRight=function(t,e,n){var a=jo(t)?be:Oe,i=arguments.length<3;return a(t,Zi(e,4),n,i,ea)},Sn.repeat=function(t,e,n){return e=(n?sr(t,e,n):void 0===e)?1:as(e),Ba(ss(t),e)},Sn.replace=function(){var t=arguments,e=ss(t[0]);return t.length<3?e:e.replace(t[1],t[2])},Sn.result=function(t,e,n){var a=-1,i=(e=si(e,t)).length;for(i||(i=1,t=void 0);++a9007199254740991)return[];var n=4294967295,a=sn(t,4294967295);t-=4294967295;for(var i=$e(a,e=Zi(e));++n=r)return t;var s=n-He(a);if(s<1)return a;var l=o?di(o,0,s).join(""):t.slice(0,s);if(void 0===i)return l+a;if(o&&(s+=l.length-s),Ko(i)){if(t.slice(s).search(i)){var d,p=l;for(i.global||(i=bt(i.source,ss(at.exec(i))+"g")),i.lastIndex=0;d=i.exec(p);)var c=d.index;l=l.slice(0,void 0===c?s:c)}}else if(t.indexOf(Ja(i),s)!=s){var u=l.lastIndexOf(i);u>-1&&(l=l.slice(0,u))}return l+a},Sn.unescape=function(t){return(t=ss(t))&&N.test(t)?t.replace(L,We):t},Sn.uniqueId=function(t){var e=++zt;return ss(t)+e},Sn.upperCase=Ns,Sn.upperFirst=Fs,Sn.each=oo,Sn.eachRight=so,Sn.first=Dr,Zs(Sn,(pl={},la(Sn,(function(t,e){Ct.call(Sn.prototype,e)||(pl[e]=t)})),pl),{chain:!1}),Sn.VERSION="4.17.19",se(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(t){Sn[t].placeholder=Sn})),se(["drop","take"],(function(t,e){En.prototype[t]=function(n){n=void 0===n?1:on(as(n),0);var a=this.__filtered__&&!e?new En(this):this.clone();return a.__filtered__?a.__takeCount__=sn(n,a.__takeCount__):a.__views__.push({size:sn(n,4294967295),type:t+(a.__dir__<0?"Right":"")}),a},En.prototype[t+"Right"]=function(e){return this.reverse()[t](e).reverse()}})),se(["filter","map","takeWhile"],(function(t,e){var n=e+1,a=1==n||3==n;En.prototype[t]=function(t){var e=this.clone();return e.__iteratees__.push({iteratee:Zi(t,3),type:n}),e.__filtered__=e.__filtered__||a,e}})),se(["head","last"],(function(t,e){var n="take"+(e?"Right":"");En.prototype[t]=function(){return this[n](1).value()[0]}})),se(["initial","tail"],(function(t,e){var n="drop"+(e?"":"Right");En.prototype[t]=function(){return this.__filtered__?new En(this):this[n](1)}})),En.prototype.compact=function(){return this.filter(Gs)},En.prototype.find=function(t){return this.filter(t).head()},En.prototype.findLast=function(t){return this.reverse().find(t)},En.prototype.invokeMap=Na((function(t,e){return"function"==typeof t?new En(this):this.map((function(n){return ga(n,t,e)}))})),En.prototype.reject=function(t){return this.filter(Co(Zi(t)))},En.prototype.slice=function(t,e){t=as(t);var n=this;return n.__filtered__&&(t>0||e<0)?new En(n):(t<0?n=n.takeRight(-t):t&&(n=n.drop(t)),void 0!==e&&(n=(e=as(e))<0?n.dropRight(-e):n.take(e-t)),n)},En.prototype.takeRightWhile=function(t){return this.reverse().takeWhile(t).reverse()},En.prototype.toArray=function(){return this.take(4294967295)},la(En.prototype,(function(t,e){var n=/^(?:filter|find|map|reject)|While$/.test(e),a=/^(?:head|last)$/.test(e),i=Sn[a?"take"+("last"==e?"Right":""):e],r=a||/^find/.test(e);i&&(Sn.prototype[e]=function(){var e=this.__wrapped__,o=a?[1]:arguments,s=e instanceof En,l=o[0],d=s||jo(e),p=function(t){var e=i.apply(Sn,me([t],o));return a&&c?e[0]:e};d&&n&&"function"==typeof l&&1!=l.length&&(s=d=!1);var c=this.__chain__,u=!!this.__actions__.length,f=r&&!c,m=s&&!u;if(!r&&d){e=m?e:new En(this);var v=t.apply(e,o);return v.__actions__.push({func:eo,args:[p],thisArg:void 0}),new An(v,c)}return f&&m?t.apply(this,o):(v=this.thru(p),f?a?v.value()[0]:v.value():v)})})),se(["pop","push","shift","sort","splice","unshift"],(function(t){var e=yt[t],n=/^(?:push|sort|unshift)$/.test(t)?"tap":"thru",a=/^(?:pop|shift)$/.test(t);Sn.prototype[t]=function(){var t=arguments;if(a&&!this.__chain__){var i=this.value();return e.apply(jo(i)?i:[],t)}return this[n]((function(n){return e.apply(jo(n)?n:[],t)}))}})),la(En.prototype,(function(t,e){var n=Sn[e];if(n){var a=n.name+"";Ct.call(yn,a)||(yn[a]=[]),yn[a].push({name:e,func:n})}})),yn[Si(void 0,2).name]=[{name:"wrapper",func:void 0}],En.prototype.clone=function(){var t=new En(this.__wrapped__);return t.__actions__=hi(this.__actions__),t.__dir__=this.__dir__,t.__filtered__=this.__filtered__,t.__iteratees__=hi(this.__iteratees__),t.__takeCount__=this.__takeCount__,t.__views__=hi(this.__views__),t},En.prototype.reverse=function(){if(this.__filtered__){var t=new En(this);t.__dir__=-1,t.__filtered__=!0}else(t=this.clone()).__dir__*=-1;return t},En.prototype.value=function(){var t=this.__wrapped__.value(),e=this.__dir__,n=jo(t),a=e<0,i=n?t.length:0,r=function(t,e,n){var a=-1,i=n.length;for(;++a=this.__values__.length;return{done:t,value:t?void 0:this.__values__[this.__index__++]}},Sn.prototype.plant=function(t){for(var e,n=this;n instanceof In;){var a=Or(n);a.__index__=0,a.__values__=void 0,e?i.__wrapped__=a:e=a;var i=a;n=n.__wrapped__}return i.__wrapped__=t,e},Sn.prototype.reverse=function(){var t=this.__wrapped__;if(t instanceof En){var e=t;return this.__actions__.length&&(e=new En(this)),(e=e.reverse()).__actions__.push({func:eo,args:[Vr],thisArg:void 0}),new An(e,this.__chain__)}return this.thru(Vr)},Sn.prototype.toJSON=Sn.prototype.valueOf=Sn.prototype.value=function(){return ni(this.__wrapped__,this.__actions__)},Sn.prototype.first=Sn.prototype.head,Xt&&(Sn.prototype[Xt]=function(){return this}),Sn}();Wt._=Ke,void 0===(i=function(){return Ke}.call(e,n,e,a))||(a.exports=i)}).call(this)}).call(this,n(11),n(173)(t))},function(t,e,n){t.exports=n(192)},function(t,e,n){"use strict";var a=n(159),i=Object.prototype.toString;function r(t){return"[object Array]"===i.call(t)}function o(t){return void 0===t}function s(t){return null!==t&&"object"==typeof t}function l(t){return"[object Function]"===i.call(t)}function d(t,e){if(null!=t)if("object"!=typeof t&&(t=[t]),r(t))for(var n=0,a=t.length;n-1;i--){var r=n[i],o=(r.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(o)>-1&&(a=r)}return h.head.insertBefore(e,a),t}}function Z(){for(var t=12,e="";t-- >0;)e+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return e}function J(t){return"".concat(t).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function X(t){return Object.keys(t||{}).reduce((function(e,n){return e+"".concat(n,": ").concat(t[n],";")}),"")}function Q(t){return t.size!==K.size||t.x!==K.x||t.y!==K.y||t.rotate!==K.rotate||t.flipX||t.flipY}function tt(t){var e=t.transform,n=t.containerWidth,a=t.iconWidth,i={transform:"translate(".concat(n/2," 256)")},r="translate(".concat(32*e.x,", ").concat(32*e.y,") "),o="scale(".concat(e.size/16*(e.flipX?-1:1),", ").concat(e.size/16*(e.flipY?-1:1),") "),s="rotate(".concat(e.rotate," 0 0)");return{outer:i,inner:{transform:"".concat(r," ").concat(o," ").concat(s)},path:{transform:"translate(".concat(a/2*-1," -256)")}}}var et={x:0,y:0,width:"100%",height:"100%"};function nt(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return t.attributes&&(t.attributes.fill||e)&&(t.attributes.fill="black"),t}function at(t){var e=t.icons,n=e.main,a=e.mask,i=t.prefix,r=t.iconName,o=t.transform,l=t.symbol,d=t.title,p=t.maskId,c=t.titleId,u=t.extra,f=t.watchable,m=void 0!==f&&f,v=a.found?a:n,b=v.width,h=v.height,g="fa-w-".concat(Math.ceil(b/h*16)),y=[P.replacementClass,r?"".concat(P.familyPrefix,"-").concat(r):"",g].filter((function(t){return-1===u.classes.indexOf(t)})).concat(u.classes).join(" "),_={children:[],attributes:s({},u.attributes,{"data-prefix":i,"data-icon":r,class:y,role:u.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(b," ").concat(h)})};m&&(_.attributes["data-fa-i2svg"]=""),d&&_.children.push({tag:"title",attributes:{id:_.attributes["aria-labelledby"]||"title-".concat(c||Z())},children:[d]});var x=s({},_,{prefix:i,iconName:r,main:n,mask:a,maskId:p,transform:o,symbol:l,styles:u.styles}),w=a.found&&n.found?function(t){var e,n=t.children,a=t.attributes,i=t.main,r=t.mask,o=t.maskId,l=t.transform,d=i.width,p=i.icon,c=r.width,u=r.icon,f=tt({transform:l,containerWidth:c,iconWidth:d}),m={tag:"rect",attributes:s({},et,{fill:"white"})},v=p.children?{children:p.children.map(nt)}:{},b={tag:"g",attributes:s({},f.inner),children:[nt(s({tag:p.tag,attributes:s({},p.attributes,f.path)},v))]},h={tag:"g",attributes:s({},f.outer),children:[b]},g="mask-".concat(o||Z()),y="clip-".concat(o||Z()),_={tag:"mask",attributes:s({},et,{id:g,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[m,h]},x={tag:"defs",children:[{tag:"clipPath",attributes:{id:y},children:(e=u,"g"===e.tag?e.children:[e])},_]};return n.push(x,{tag:"rect",attributes:s({fill:"currentColor","clip-path":"url(#".concat(y,")"),mask:"url(#".concat(g,")")},et)}),{children:n,attributes:a}}(x):function(t){var e=t.children,n=t.attributes,a=t.main,i=t.transform,r=X(t.styles);if(r.length>0&&(n.style=r),Q(i)){var o=tt({transform:i,containerWidth:a.width,iconWidth:a.width});e.push({tag:"g",attributes:s({},o.outer),children:[{tag:"g",attributes:s({},o.inner),children:[{tag:a.icon.tag,children:a.icon.children,attributes:s({},a.icon.attributes,o.path)}]}]})}else e.push(a.icon);return{children:e,attributes:n}}(x),k=w.children,C=w.attributes;return x.children=k,x.attributes=C,l?function(t){var e=t.prefix,n=t.iconName,a=t.children,i=t.attributes,r=t.symbol;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:s({},i,{id:!0===r?"".concat(e,"-").concat(P.familyPrefix,"-").concat(n):r}),children:a}]}]}(x):function(t){var e=t.children,n=t.main,a=t.mask,i=t.attributes,r=t.styles,o=t.transform;if(Q(o)&&n.found&&!a.found){var l={x:n.width/n.height/2,y:.5};i.style=X(s({},r,{"transform-origin":"".concat(l.x+o.x/16,"em ").concat(l.y+o.y/16,"em")}))}return[{tag:"svg",attributes:i,children:e}]}(x)}function it(t){var e=t.content,n=t.width,a=t.height,i=t.transform,r=t.title,o=t.extra,l=t.watchable,d=void 0!==l&&l,p=s({},o.attributes,r?{title:r}:{},{class:o.classes.join(" ")});d&&(p["data-fa-i2svg"]="");var c=s({},o.styles);Q(i)&&(c.transform=function(t){var e=t.transform,n=t.width,a=void 0===n?16:n,i=t.height,r=void 0===i?16:i,o=t.startCentered,s=void 0!==o&&o,l="";return l+=s&&_?"translate(".concat(e.x/W-a/2,"em, ").concat(e.y/W-r/2,"em) "):s?"translate(calc(-50% + ".concat(e.x/W,"em), calc(-50% + ").concat(e.y/W,"em)) "):"translate(".concat(e.x/W,"em, ").concat(e.y/W,"em) "),l+="scale(".concat(e.size/W*(e.flipX?-1:1),", ").concat(e.size/W*(e.flipY?-1:1),") "),l+="rotate(".concat(e.rotate,"deg) ")}({transform:i,startCentered:!0,width:n,height:a}),c["-webkit-transform"]=c.transform);var u=X(c);u.length>0&&(p.style=u);var f=[];return f.push({tag:"span",attributes:p,children:[e]}),r&&f.push({tag:"span",attributes:{class:"sr-only"},children:[r]}),f}var rt=function(){},ot=(P.measurePerformance&&g&&g.mark&&g.measure,function(t,e,n,a){var i,r,o,s=Object.keys(t),l=s.length,d=void 0!==a?function(t,e){return function(n,a,i,r){return t.call(e,n,a,i,r)}}(e,a):e;for(void 0===n?(i=1,o=t[s[0]]):(i=0,o=n);i2&&void 0!==arguments[2]?arguments[2]:{},a=n.skipHooks,i=void 0!==a&&a,r=Object.keys(e).reduce((function(t,n){var a=e[n];return!!a.icon?t[a.iconName]=a.icon:t[n]=a,t}),{});"function"!=typeof S.hooks.addPack||i?S.styles[t]=s({},S.styles[t]||{},r):S.hooks.addPack(t,r),"fas"===t&&st("fa",e)}var lt=S.styles,dt=S.shims,pt=function(){var t=function(t){return ot(lt,(function(e,n,a){return e[a]=ot(n,t,{}),e}),{})};t((function(t,e,n){return e[3]&&(t[e[3]]=n),t})),t((function(t,e,n){var a=e[2];return t[n]=n,a.forEach((function(e){t[e]=n})),t}));var e="far"in lt;ot(dt,(function(t,n){var a=n[0],i=n[1],r=n[2];return"far"!==i||e||(i="fas"),t[a]={prefix:i,iconName:r},t}),{})};pt();S.styles;function ct(t,e,n){if(t&&t[e]&&t[e][n])return{prefix:e,iconName:n,icon:t[e][n]}}function ut(t){var e=t.tag,n=t.attributes,a=void 0===n?{}:n,i=t.children,r=void 0===i?[]:i;return"string"==typeof t?J(t):"<".concat(e," ").concat(function(t){return Object.keys(t||{}).reduce((function(e,n){return e+"".concat(n,'="').concat(J(t[n]),'" ')}),"").trim()}(a),">").concat(r.map(ut).join(""),"")}var ft=function(t){var e={size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0};return t?t.toLowerCase().split(" ").reduce((function(t,e){var n=e.toLowerCase().split("-"),a=n[0],i=n.slice(1).join("-");if(a&&"h"===i)return t.flipX=!0,t;if(a&&"v"===i)return t.flipY=!0,t;if(i=parseFloat(i),isNaN(i))return t;switch(a){case"grow":t.size=t.size+i;break;case"shrink":t.size=t.size-i;break;case"left":t.x=t.x-i;break;case"right":t.x=t.x+i;break;case"up":t.y=t.y-i;break;case"down":t.y=t.y+i;break;case"rotate":t.rotate=t.rotate+i}return t}),e):e};function mt(t){this.name="MissingIcon",this.message=t||"Icon unavailable",this.stack=(new Error).stack}mt.prototype=Object.create(Error.prototype),mt.prototype.constructor=mt;var vt={fill:"currentColor"},bt={attributeType:"XML",repeatCount:"indefinite",dur:"2s"},ht={tag:"path",attributes:s({},vt,{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})},gt=s({},bt,{attributeName:"opacity"});s({},vt,{cx:"256",cy:"364",r:"28"}),s({},bt,{attributeName:"r",values:"28;14;28;28;14;28;"}),s({},gt,{values:"1;0;1;1;0;1;"}),s({},vt,{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),s({},gt,{values:"1;0;0;0;0;1;"}),s({},vt,{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),s({},gt,{values:"0;0;1;1;0;0;"}),S.styles;function yt(t){var e=t[0],n=t[1],a=l(t.slice(4),1)[0];return{found:!0,width:e,height:n,icon:Array.isArray(a)?{tag:"g",attributes:{class:"".concat(P.familyPrefix,"-").concat(k.GROUP)},children:[{tag:"path",attributes:{class:"".concat(P.familyPrefix,"-").concat(k.SECONDARY),fill:"currentColor",d:a[0]}},{tag:"path",attributes:{class:"".concat(P.familyPrefix,"-").concat(k.PRIMARY),fill:"currentColor",d:a[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:a}}}}S.styles;function _t(){var t="svg-inline--fa",e=P.familyPrefix,n=P.replacementClass,a='svg:not(:root).svg-inline--fa {\n overflow: visible;\n}\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.225em;\n}\n.svg-inline--fa.fa-w-1 {\n width: 0.0625em;\n}\n.svg-inline--fa.fa-w-2 {\n width: 0.125em;\n}\n.svg-inline--fa.fa-w-3 {\n width: 0.1875em;\n}\n.svg-inline--fa.fa-w-4 {\n width: 0.25em;\n}\n.svg-inline--fa.fa-w-5 {\n width: 0.3125em;\n}\n.svg-inline--fa.fa-w-6 {\n width: 0.375em;\n}\n.svg-inline--fa.fa-w-7 {\n width: 0.4375em;\n}\n.svg-inline--fa.fa-w-8 {\n width: 0.5em;\n}\n.svg-inline--fa.fa-w-9 {\n width: 0.5625em;\n}\n.svg-inline--fa.fa-w-10 {\n width: 0.625em;\n}\n.svg-inline--fa.fa-w-11 {\n width: 0.6875em;\n}\n.svg-inline--fa.fa-w-12 {\n width: 0.75em;\n}\n.svg-inline--fa.fa-w-13 {\n width: 0.8125em;\n}\n.svg-inline--fa.fa-w-14 {\n width: 0.875em;\n}\n.svg-inline--fa.fa-w-15 {\n width: 0.9375em;\n}\n.svg-inline--fa.fa-w-16 {\n width: 1em;\n}\n.svg-inline--fa.fa-w-17 {\n width: 1.0625em;\n}\n.svg-inline--fa.fa-w-18 {\n width: 1.125em;\n}\n.svg-inline--fa.fa-w-19 {\n width: 1.1875em;\n}\n.svg-inline--fa.fa-w-20 {\n width: 1.25em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-border {\n height: 1.5em;\n}\n.svg-inline--fa.fa-li {\n width: 2em;\n}\n.svg-inline--fa.fa-fw {\n width: 1.25em;\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: 0.25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-lg {\n font-size: 1.3333333333em;\n line-height: 0.75em;\n vertical-align: -0.0667em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit;\n}\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: 0.1em;\n padding: 0.2em 0.25em 0.15em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: 0.3em;\n}\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical,\n:root .fa-flip-both {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: #fff;\n}\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse {\n color: #fff;\n}';if("fa"!==e||n!==t){var i=new RegExp("\\.".concat("fa","\\-"),"g"),r=new RegExp("\\--".concat("fa","\\-"),"g"),o=new RegExp("\\.".concat(t),"g");a=a.replace(i,".".concat(e,"-")).replace(r,"--".concat(e,"-")).replace(o,".".concat(n))}return a}function xt(){P.autoAddCss&&!Pt&&(Y(_t()),Pt=!0)}function wt(t,e){return Object.defineProperty(t,"abstract",{get:e}),Object.defineProperty(t,"html",{get:function(){return t.abstract.map((function(t){return ut(t)}))}}),Object.defineProperty(t,"node",{get:function(){if(y){var e=h.createElement("div");return e.innerHTML=t.html,e.children}}}),t}function kt(t){var e=t.prefix,n=void 0===e?"fa":e,a=t.iconName;if(a)return ct(zt.definitions,n,a)||ct(S.styles,n,a)}var Ct,zt=new(function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.definitions={}}var e,n,a;return e=t,(n=[{key:"add",value:function(){for(var t=this,e=arguments.length,n=new Array(e),a=0;a1&&void 0!==arguments[1]?arguments[1]:{},n=e.transform,a=void 0===n?K:n,i=e.symbol,r=void 0!==i&&i,o=e.mask,l=void 0===o?null:o,d=e.maskId,p=void 0===d?null:d,c=e.title,u=void 0===c?null:c,f=e.titleId,m=void 0===f?null:f,v=e.classes,b=void 0===v?[]:v,h=e.attributes,g=void 0===h?{}:h,y=e.styles,_=void 0===y?{}:y;if(t){var x=t.prefix,w=t.iconName,k=t.icon;return wt(s({type:"icon"},t),(function(){return xt(),P.autoA11y&&(u?g["aria-labelledby"]="".concat(P.replacementClass,"-title-").concat(m||Z()):(g["aria-hidden"]="true",g.focusable="false")),at({icons:{main:yt(k),mask:l?yt(l.icon):{found:!1,width:null,height:null,icon:{}}},prefix:x,iconName:w,transform:s({},K,a),symbol:r,title:u,maskId:p,titleId:m,extra:{attributes:g,styles:_,classes:b}})}))}},function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=(t||{}).icon?t:kt(t||{}),a=e.mask;return a&&(a=(a||{}).icon?a:kt(a||{})),Ct(n,s({},e,{mask:a}))}),$t=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.transform,a=void 0===n?K:n,i=e.title,r=void 0===i?null:i,o=e.classes,l=void 0===o?[]:o,p=e.attributes,c=void 0===p?{}:p,u=e.styles,f=void 0===u?{}:u;return wt({type:"text",content:t},(function(){return xt(),it({content:t,transform:s({},K,a),title:r,extra:{attributes:c,styles:f,classes:["".concat(P.familyPrefix,"-layers-text")].concat(d(l))}})}))}}).call(this,n(11),n(168).setImmediate)},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){var a=n(196);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(199);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(201);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(203);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(205);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(207);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(209);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(211);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(213);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(215);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(217);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(219);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(221);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(223);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(225);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(227);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(229);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(231);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(233);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(235);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(237);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(239);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(241);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(243);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(245);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(247);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(249);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(251);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(253);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(255);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(257);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(259);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(261);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(263);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(265);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(267);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(269);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(271);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(273);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(275);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(277);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(279);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(281);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(283);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(285);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(287);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(289);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(291);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(293);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(295);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(297);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(299);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(301);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(303);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(305);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(307);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(309);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(311);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(313);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(315);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(317);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(319);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(321);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(323);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(325);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(327);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(329);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(331);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(333);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(335);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(337);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(339);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(341);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(343);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(345);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(347);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(349);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(351);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(353);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(355);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(357);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(359);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(361);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(363);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(365);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(367);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(369);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(371);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(373);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(375);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(377);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(379);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(381);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(383);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(385);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(387);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(389);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(391);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(393);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(395);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(397);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(399);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(401);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(403);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(405);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(407);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(409);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(411);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(413);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(415);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(417);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(419);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(421);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(423);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(425);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(427);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(429);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(431);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(433);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(435);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(437);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(439);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(441);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(443);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(445);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(447);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(449);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(451);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(453);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(455);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(457);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(459);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(461);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(463);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(465);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(467);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(469);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(471);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(473);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(475);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(477);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(479);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(481);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(483);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(485);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(487);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){var a=n(489);"string"==typeof a&&(a=[[t.i,a,""]]);var i={hmr:!0,transform:void 0,insertInto:void 0};n(3)(a,i);a.locals&&(t.exports=a.locals)},function(t,e,n){"use strict";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),a=0;a=200&&t<300}};l.headers={common:{Accept:"application/json, text/plain, */*"}},a.forEach(["delete","get","head"],(function(t){l.headers[t]={}})),a.forEach(["post","put","patch"],(function(t){l.headers[t]=a.merge(r)})),t.exports=l}).call(this,n(163))},function(t,e){var n,a,i=t.exports={};function r(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===r||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:r}catch(t){n=r}try{a="function"==typeof clearTimeout?clearTimeout:o}catch(t){a=o}}();var l,d=[],p=!1,c=-1;function u(){p&&l&&(p=!1,l.length?d=l.concat(d):c=-1,d.length&&f())}function f(){if(!p){var t=s(u);p=!0;for(var e=d.length;e;){for(l=d,d=[];++c1)for(var n=1;n=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(193),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(11))},function(t){t.exports=JSON.parse('{"actions":{"create_folder":"Create folder","delete":"Delete item","move":"Move item","preview":"Change preview","share":"Share item","upload":"Upload file"},"activation":{"stripe":{"button":"Set up your Stripe account","description":"To charge your users, please set up your Stripe account credentials.","title":"Your Stripe account is not set"}},"admin_menu":{"dashboard":"Dashboard","invoices":"Invoices","pages":"Pages","plans":"Plans","settings":"Settings","users":"Users"},"admin_page_dashboard":{"backer_button":"Become a Backer","license":"License","version":"Version","w_latest_users":{"title":"Latest Registrations"},"w_total_premium":{"link":"Show All Plans","title":"Total Premium Users"},"w_total_space":{"link":"Show All Users","title":"Total Space Used"},"w_total_users":{"link":"Show All Users","title":"Total Users"}},"admin_page_invoices":{"empty":{"description":"All customers invoices will be showed here.","title":"You don’t have any invoices yet"},"table":{"number":"Invoice Number","payed":"Payed","plan":"Plan","total":"Total","user":"User"}},"admin_page_plans":{"create_plan_button":"Create Plan","delete_plan_button":"Delete Plan","disclaimer_delete_plan":"You can delete this plan, but, pay attention! Your plan will be deleted, but users who are subscribed with this plan, will be still charged unless they cancel subscription.","disclaimer_edit_price":"Price change for your plan is not available due to Stripe service design. If you wish change your price plan, please, create new plan.","empty":{"button":"Create New Plan","description":"For create new plan, click on button below.","title":"You don’t have any plan yet"},"form":{"description":"Description (optional)","description_plac":"Plan description","name":"Name","name_delete_plac":"Type plan name","name_plac":"Plan name","price":"Price","price_plac":"Plan price","status":"Status","status_help":"Status of your plan availability on website.","storage":"Storage Capacity in GB","storage_helper":"You have to type only number e.g. value \'5\' means, user will have 5GB of storage capacity.","storage_plac":"Storage capacity","title_delete":"Delete Plan","title_details":"Plan Details","title_pricing":"Plan Pricing"},"subscribers":{"empty":"There is no any subscriber yet."},"table":{"name":"Plan Name","price":"Price","status":"Status","storage_capacity":"Storage Capacity","subscribers":"Subscribers"},"tabs":{"delete":"Delete Plan","settings":"Settings","subscribers":"Subscribers"}},"admin_page_user":{"change_capacity":"Change Capacity","create_user":{"avatar":"Avatar","group_details":"Account Details","group_settings":"Account Settings","label_conf_pass":"Confirm password","label_email":"Type E-mail","label_name":"Type full name","submit":"Create User"},"delete_user":"Delete User","invoices":{"empty":"User don\'t have any invoices yet."},"label_change_capacity":"Type storage capacity in GB","label_delete_user":"Type with Case Sensitive user name ‘{user}‘","label_person_info":"Personal Information","placeholder_delete_user":"Type here","save_role":"Save Role","select_role":"Select user role","send_password_link":"Send Password Reset Link","subscription":{"empty":"User don\'t have any subscription yet.","interval_mo":"Monthly"},"table":{"action":"Action","created_at":"Registered","name":"User","plan":"Subscription Plan","role":"Role","storage_capacity":"Storage Capacity","storage_used":"Storage Used"},"tabs":{"delete":"Delete User","detail":"Detail","invoices":"Invoices","password":"Password","storage":"Storage Usage","subscription":"Subscription"}},"admin_pages":{"form":{"content":"Content","content_plac":"Type your content here...","slug":"Slug","title":"Title","title_plac":"Title name","visibility":"Visibility","visibility_help":"Status of your page visibility on website."},"table":{"page":"Page","slug":"Slug","status":"Status"}},"admin_settings":{"appearance":{"description":"App Description","description_plac":"Type your app description","favicon":"App Favicon (optional)","logo":"App Logo (optional)","logo_horizontal":"App Logo Horizontal (optional)","section_appearance":"Appearance","section_general":"General Settings","title":"App Title","title_plac":"Type your app title"},"billings":{"address":"Billing Address","address_plac":"Type your billing address","city":"Billing City","city_plac":"Type your billing city","company_name":"Company Name","company_name_plac":"Type your company name","country":"Billing Country","country_plac":"Select your billing country","phone_number":"Billing Phone Number (optional)","phone_number_plac":"Type your billing phone number","postal_code":"Billing Postal Code","postal_code_plac":"Type your billing postal code","section_billing":"Billing Information","section_company":"Company Information","state":"Billing State","state_plac":"Type your billing state","vat":"VAT Number","vat_plac":"Type your VAT number"},"email":{"driver":"Mail Driver","driver_plac":"Type your mail driver","email_disclaimer":"This form is not fully pre-filled for security reasons. Your email settings is available in your .env file. For apply new Email settings, please confirm your options by button at the end of formular.","encryption":"Mail Encryption","encryption_plac":"Select your mail encryption","host":"Mail Host","host_plac":"Type your mail host","password":"Mail Password","password_plac":"Type your mail password","port":"Mail Port","port_plac":"Type your mail port","save_button":"Save Email Settings","section_email":"Email Setup","username":"Mail Username","username_plac":"Type your mail username"},"others":{"allow_registration":"Allow User Registration","allow_registration_help":"You can disable public registration for new users. You will still able to
create new users in administration panel.","contact_email":"Contact Email","contact_email_plac":"Type your contact email","default_storage":"Default Storage Space for User Accounts","default_storage_plac":"Set default storage space in GB","google_analytics":"Google Analytics Code (optional)","google_analytics_plac":"Paste your Google Analytics Code","section_others":"Others Settings","section_user":"Users and Storage","storage_limit":"Storage Limitation","storage_limit_help":"If this value is off, all users will have infinity storage capacity and you won\'t be
able to charge your users for storage plan."},"payments":{"allow_payments":"Allow Subscription Payments","button_submit":"Test and Save Stripe","button_testing":"Testing Stripe Connection","credentials_disclaimer":"Your Stripe credentials is not showed because these values are secret and must not be revealed by stranger. You can change your Stripe credentials in your .env file.","section_payments":"Stripe Payments","stripe_create_acc":"If you don’t have stripe account, please register here and get your Publishable Key, Secret Key and create your webhook.","stripe_create_webhook":"You have to create webhook endpoint in your Stripe Dashboard. You can find it in Dashboard -> Developers -> Webhooks -> Add Endpoint. In Endpoint URL please copy and paste url bellow. Make sure, this url is your public domain, not localhost. In events section, please click on receive all events. That\'s all.","stripe_currency":"Stripe Currency","stripe_currency_plac":"Select your Stripe currency","stripe_pub_key":"Publishable Key","stripe_pub_key_plac":"Paste your publishable key","stripe_sec_key":"Secret Key","stripe_sec_key_plac":"Paste your secret key","stripe_setup":"Stripe Setup","stripe_webhook_key_plac":"Paste your stripe webhook secret","webhook_url":"Stripe webhook URL"},"tabs":{"appearance":"Appearance","billings":"Billings","email":"Email","others":"Application","payments":"Payments"}},"alerts":{"error_confirm":"That’s horrible!","success_confirm":"Awesome!"},"context_menu":{"add_folder":"Add Folder","add_to_favourites":"Add to Favourites","create_folder":"Create Folder","delete":"Delete","detail":"Detail","download":"Download","empty_trash":"Empty Trash","log_out":"Log Out","move":"Move","profile_settings":"Profile Settings","remove_from_favourites":"Remove Favourite","rename":"Rename","restore":"Restore","share":"Share","share_edit":"Edit Sharing","upload":"Upload"},"cookie_disclaimer":{"button":"cookies policy","description":"By browsing this website you are agreeing to our {0}."},"datatable":{"paginate_info":"Showing 1 - {visible} from {total} records"},"empty_page":{"call_to_action":"Upload File","description":"Upload some files here easily via upload button","title":"There is Nothing"},"errors":{"capacity_digit":"The storage capacity must be lower than 10 digit number."},"file_detail":{"author":"Author","author_participant":"Public Participant","created_at":"Created at","shared":"Shared","size":"Size","where":"Where"},"folder":{"empty":"Empty","item_counts":"{count} Item | {count} Items"},"global":{"incomplete":"Incomplete","active":"Active","admin":"Admin","cancel":"Cancel","canceled":"Canceled","confirm_action":"Yes, I\'m sure","default":"Default","free":"Free","get_it":"Get It","menu":"Menu","monthly_ac":"Mo.","or":"or","premium":"Premium","saas":"Services","subscription":"Subscription","total":"Total","upgrade_plan":"Upgrade Plan"},"input_image":{"supported":"Supported formats are .png, .jpg, .jpeg.","title":"Upload Image"},"inputs":{"placeholder_search_files":"Search files or folders..."},"item_thumbnail":{"deleted_at":"Deleted {time}","original_location":"Original Location"},"locations":{"home":"Home","shared":"Shared","trash":"Trash"},"menu":{"admin":"Administration","files":"Files","invoices":"Invoices","latest":"Recent Uploads","logout":"Log Out","password":"Password","payment_cards":"Payment Cards","profile":"Profile Settings","settings":"Settings","shared":"Shared Files","storage":"Storage","subscription":"Subscription","trash":"Trash"},"messages":{"nothing_from_participants":"You don\'t have any uploads from other users.","nothing_to_preview":"There is nothing to preview.","nothing_was_found":"Nothing was found."},"notice":{"stripe_activation":"Your Stripe account is not set. To charging your users please {0}.","stripe_activation_button":"set up your Stripe account"},"page_contact_us":{"description":"Do you have any questions? Get in touch with us.","error_message":"Something went wrong, please try it again.","form":{"email":"Email","email_plac":"Type your email","message":"Message","message_plac":"Type your message here...","submit_button":"Send Message"},"success_message":"Your message was send successfully.","title":"Contact Us"},"page_create_password":{"button_update":"Update Password","label_confirm_pass":"Confirm password","label_email":"Email:","label_new_pass":"New password","subtitle":"Create your new password here:","title":"Only One Step to Log In"},"page_forgotten_password":{"button_get_link":"Get Link","pass_reseted_signin":"Sign In","pass_reseted_subtitle":"Your password was reset successfully.","pass_reseted_title":"Awesome!","pass_sennded_subtitle":"We have e-mailed your password reset link!","pass_sennded_title":"Thank you!","password_remember_button":"Log In.","password_remember_text":"Remember your password?","subtitle":"Get reset link with your email:","title":"Forgotten Password?"},"page_index":{"get_started_button":"Sign Up Now","menu":{"contact_us":"Contact Us","log_in":"Log In","pricing":"Pricing","sign_in":"Sign Up"},"sign_feature_1":"No credit card required","sign_feature_2":"{defaultSpace} Free storage space","sign_up_button":"Sign Up Now"},"page_login":{"button_next":"Next Step","placeholder_email":"Type your E-mail","registration_button":"Register account.","registration_text":"Don’t have an account?","subtitle":"Please type your email to log in:","title":"Welcome Back!"},"page_pricing_tables":{"description":"Choose plan witch perfect fit your needs. All plans is billed monthly automatically via your credit card.","storage_capacity":"Of Storage Capacity","vat_excluded":"Price displayed excludes VAT.","title":"Choose Your Plan"},"page_registration":{"agreement":"By clicking on \'Create Account\' button I agree to the {0} and {1}.","button_create_account":"Create Account","have_an_account":"Do you have an account?","label_confirm_pass":"Confirm password:","label_email":"Email:","label_name":"Full Name:","label_pass":"Create password:","placeholder_confirm_pass":"Confirm your new password","placeholder_email":"Type your E-mail","placeholder_name":"Type your full name","placeholder_pass":"New password","subtitle":"Please fill registration to create account:","title":"Create New Account"},"page_shared":{"download_file":"Download File","placeholder_pass":"Type password","submit":"Submit","subtitle":"Please type the password to get shared content:","title":"Your Share Link is Protected"},"page_shared_404":{"subtitle":"The content you are finding was probably deleted.","title":"Not Found :("},"page_sign_in":{"button_log_in":"Log In","password_reset_button":"Reset Password.","password_reset_text":"Forgotten your password?","placeholder_password":"Type your password","subtitle":"Confirm you by your password:","title":"Are You {name}?"},"page_upgrade_account":{"change_payment":{"change_payment":"change your default payment method","pay_by_new_card":"pay by new credit card","you_can":"Also you can"},"desription":"Choose plan witch perfect fit your needs. All plans is billed monthly automatically via your credit card.","errors":{"pay_by_another_card":"Please pay by another payment card"},"section_billing":"Billing Information","section_card":"Payment Card","section_summary":"Order Summary","summary":{"total_with_vat":"Total with VAT","vat":"VAT","period":"Billed monthly","submit_button":"Pay with credit card","submit_disclaimer":"By submit form, you agree to save the payment method and billing information in your {app} account."},"title":"Choose Payment Method"},"popup_create_folder":{"folder_default_name":"New Folder","title":"Please enter your new folder name"},"popup_delete_card":{"message":"This event is irreversible and your payment card will be delete forever","title":"Are you sure?"},"popup_deleted_plan":{"message":"Your plan was successfully deleted.","title":"Plan was deleted"},"popup_deleted_user":{"message":"Your user was deleted with all user data content.","title":"User was deleted"},"popup_deleted_user_aborted":{"message":"You can\'t delete this account while user have active subscription.","title":"User wasn\'t deleted"},"popup_error":{"message":"Something went wrong and we can\'t continue. Please contact us.","title":"Whooops, something went wrong!"},"popup_exceed_limit":{"message":"Please contact your administrator to change your limit.","title":"Whooops, you exceed storage limit :("},"popup_move_item":{"cancel":"Cancel","submit":"Move Item","title":"Move Item"},"popup_pass_changed":{"message":"So now, you have awesome new password.","title":"Your password was changed!"},"popup_passport_error":{"message":"Probably you didn\'t generated Passport Grant client or you didn\'t set up passport credentials in your .env file. Please follow install instructions.","title":"Invalid Passport Grand Client"},"popup_paylod_error":{"message":"Sorry, your file is too large and can\'t be uploaded","title":"File is too large"},"popup_rename":{"title":"Change your item name"},"popup_set_card":{"message":"Your card will be set as default and will be always charged for the next billings.","title":"Set as default card?"},"popup_share_create":{"title":"Share Your {item}"},"popup_share_edit":{"change_pass":"Change Password","confirm":"Confirm","save":"Save Changes","stop":"Stop Sharing","title":"Update sharing options"},"popup_signup_error":{"message":"Please check your database connection if everything works correctly.","title":"Server Error"},"popup_subscription_cancel":{"button":"I\'m done","message":"You\'ll continue to have access to the features you\'ve paid for until the end of your billing cycle.","title":"Subscription Was Canceled"},"popup_subscription_resumed":{"button":"That\'s awesome!","message":"Your subscription was re-activated, and they will be billed on the original billing cycle.","title":"Subscription Was Resumed"},"popup_trashed":{"message":"So now, you have clear and empty trash.","title":"Your trash was erased!"},"preview_type":{"grid":"Grid","list":"List"},"profile":{"change_pass":"Change Password","profile_info":"Profile Information","store_pass":"Store New Password"},"pronouns":{"of":"of"},"roles":{"admin":"Admin","user":"User"},"routes":{"create_new_password":"create-new-password"},"routes_title":{"appearance":"Appearance","billings":"Billings","dashboard":"Dashboard","email":"Email","invoices":"Invoices","others":"Others","page_edit":"Edit Page","pages":"Pages","payment_methods":"Payment Methods","payments":"Payments","plan":"Plan","plan_create":"Create Plan","plan_delete":"Plan Delete","plan_settings":"Plan Settings","pricing_plans":"Pricing Plans","profile":"My Profile","profile_settings":"Profile Settings","settings":"Settings","settings_mobile":"Settings","settings_password":"Change Password","settings_storage":"Storage","subscribers":"Subscribers","subscription":"Subscription","upgrade_billing":"Billing","upgrade_plan":"Upgrade Plan","user_create":"Create User","users_delete":"Delete User","users_detail":"Detail","users_list":"User Management","users_password":"Password","users_storage_usage":"Storage Usage","users_user":"User"},"rows":{"card":{"expiration":"Expiration Date","number":"Card Number","status":"Status"},"invoice":{"number":"Invoice Number","payed":"Payed","plan":"Plan","total":"Total"}},"shared":{"can_download":"Can download file","editor":"Can edit and upload files","empty_shared":"You haven\'t shared anything yet.","visitor":"Can only view and download"},"shared_form":{"button_done":"Awesome, I’m done!","button_generate":"Generate Link","label_password_protection":"Password Protected","label_permission":"Permission","label_shared_url":"Share url","placeholder_permission":"Select your permission"},"sidebar":{"favourites":"Favourites","favourites_empty":"Drag here your favourite folder.","folders_empty":"Create some new folder.","home":"Home","latest":"Recent Uploads","locations_title":"Base","my_shared":"My Shared Items","navigator_title":"Navigator","participant_uploads":"Participant Uploads","tools_title":"Tools"},"storage":{"audios":"Audios","documents":"Documents","images":"Images","others":"Others","sec_capacity":"Your disk Usage","sec_details":"Capacity Usage Details","total_capacity":"Your storage capacity is {capacity}","total_used":"Total used {used}","videos":"Videos"},"toaster":{"account_upgraded":"Your account was successfully upgraded.","card_deleted":"Your card was successfully deleted.","card_new_add":"Your card was successfully added","card_set":"Your card was successfully set as default.","changed_capacity":"You successfully changed user\'s storage size!","changed_user":"You successfully changed user\'s role!","created_user":"User was created successfully!","email_set":"Your email settings was updated successfully","plan_created":"Your plan was successfully created!","sended_password":"You successfully send user email for reset password!","stripe_set":"Your Stripe account was successfully set!"},"types":{"file":"File","folder":"Folder"},"upgrade_banner":{"button":"Upgrade","description":"You nearly reach your storage capacity.","title":"You reach your storage capacity. Please upgrade."},"incomplete_payment":{"description":"Your latest payment is incomplete. {0}","href":"Please confirm your payment."},"uploading":{"progress":"Uploading files {current}/{total}"},"user_add_card":{"default_description":"Your card will be charged for billing plans as first.","default_title":"Set as Default Payment Method"},"user_box_delete":{"description":"You can delete your user, but, pay attention! This event is irreversible and all user data include user files will be deleted.","title":"Delete User"},"user_box_password":{"description":"You can send password reset email via button bellow. User will be redirected to page where he can update password for his account.","title":"Change User Password"},"user_box_role":{"description":"You can change role for current user. Admin role can edit or create new users, change storage capacity and any other application settings.","title":"Change User Role"},"user_box_storage":{"description":"Change user storage capacity by input bellow. You have to type only number e.g. value \'5\' means, user will have 5GB of storage capacity.","title":"Change User Storage Capacity"},"user_invoices":{"empty":"You don\'t have any invoices yet.","title":"Invoices"},"user_password":{"title":"Change Your Password"},"user_payments":{"add_card":"Add Payment Card","card_field_title":"Credit Card","delete_card":"Delete card","empty":"You don\'t have any payment cards yet.","field_loading":"Loading card field...","set_as_default":"Set as default card","store_card":"Store Payment Card","title":"Payment Methods"},"user_settings":{"address":"Address","address_plac":"Type your billing address","city":"City","city_plac":"Type your billing city","country":"Country","country_plac":"Select your billing country","name":"Name","name_plac":"Type your billing name","phone_number":"Phone Number","phone_number_plac":"Type your billing phone number","postal_code":"Postal Code","postal_code_plac":"Type your billing postal code","state":"State","state_plac":"Type your billing state","title_account":"Account Information","title_billing":"Billing Information"},"user_subscription":{"billed":"Billed","cancel_plan":"Cancel Plan","canceled_at":"Canceled At","created_at":"Created At","empty":"You don\'t have any subscription yet.","ends_at":"Ends At","plan":"Plan","renews_at":"Renews At","resume_plan":"Resume Plan","status":"Status","title":"Subscription Plan"},"validation_errors":{"incorrect_password":"Sorry, you passed incorrect password :(","wrong_image":"You may have uploaded the wrong file, try again!"}}')},function(t,e,n){"use strict";(function(t){n.d(e,"a",(function(){return h}));var a=n(10),i="undefined"!=typeof window?window:void 0!==t?t:"undefined"!=typeof self?self:{};var r=function(t,e){return t(e={exports:{}},e.exports),e.exports}((function(t){!function(e){var n=function(t,e,a){if(!l(e)||p(e)||c(e)||u(e)||s(e))return e;var i,r=0,o=0;if(d(e))for(i=[],o=e.length;r=0||Object.prototype.hasOwnProperty.call(t,a)&&(n[a]=t[a]);return n};function p(t){return t.split(";").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,e){var n=e.indexOf(":"),a=r.camelize(e.slice(0,n)),i=e.slice(n+1).trim();return t[a]=i,t}),{})}function c(t){return t.split(/\s+/).reduce((function(t,e){return t[e]=!0,t}),{})}function u(){for(var t=arguments.length,e=Array(t),n=0;n2&&void 0!==arguments[2]?arguments[2]:{},a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},i=(e.children||[]).map(f.bind(null,t)),r=Object.keys(e.attributes||{}).reduce((function(t,n){var a=e.attributes[n];switch(n){case"class":t.class=c(a);break;case"style":t.style=p(a);break;default:t.attrs[n]=a}return t}),{class:{},style:{},attrs:{}}),o=a.class,s=void 0===o?{}:o,m=a.style,v=void 0===m?{}:m,b=a.attrs,h=void 0===b?{}:b,g=d(a,["class","style","attrs"]);return"string"==typeof e?e:t(e.tag,l({class:u(r.class,s),style:l({},r.style,v),attrs:l({},r.attrs,h)},g,{props:n}),i)}var m=!1;try{m=!0}catch(t){}function v(t,e){return Array.isArray(e)&&e.length>0||!Array.isArray(e)&&e?s({},t,e):{}}function b(t){return null===t?null:"object"===(void 0===t?"undefined":o(t))&&t.prefix&&t.iconName?t:Array.isArray(t)&&2===t.length?{prefix:t[0],iconName:t[1]}:"string"==typeof t?{prefix:"fas",iconName:t}:void 0}var h={name:"FontAwesomeIcon",functional:!0,props:{border:{type:Boolean,default:!1},fixedWidth:{type:Boolean,default:!1},flip:{type:String,default:null,validator:function(t){return["horizontal","vertical","both"].indexOf(t)>-1}},icon:{type:[Object,Array,String],required:!0},mask:{type:[Object,Array,String],default:null},listItem:{type:Boolean,default:!1},pull:{type:String,default:null,validator:function(t){return["right","left"].indexOf(t)>-1}},pulse:{type:Boolean,default:!1},rotation:{type:[String,Number],default:null,validator:function(t){return[90,180,270].indexOf(parseInt(t,10))>-1}},swapOpacity:{type:Boolean,default:!1},size:{type:String,default:null,validator:function(t){return["lg","xs","sm","1x","2x","3x","4x","5x","6x","7x","8x","9x","10x"].indexOf(t)>-1}},spin:{type:Boolean,default:!1},transform:{type:[String,Object],default:null},symbol:{type:[Boolean,String],default:!1},title:{type:String,default:null},inverse:{type:Boolean,default:!1}},render:function(t,e){var n=e.props,i=n.icon,r=n.mask,o=n.symbol,d=n.title,p=b(i),c=v("classes",function(t){var e,n=(e={"fa-spin":t.spin,"fa-pulse":t.pulse,"fa-fw":t.fixedWidth,"fa-border":t.border,"fa-li":t.listItem,"fa-inverse":t.inverse,"fa-flip-horizontal":"horizontal"===t.flip||"both"===t.flip,"fa-flip-vertical":"vertical"===t.flip||"both"===t.flip},s(e,"fa-"+t.size,null!==t.size),s(e,"fa-rotate-"+t.rotation,null!==t.rotation),s(e,"fa-pull-"+t.pull,null!==t.pull),s(e,"fa-swap-opacity",t.swapOpacity),e);return Object.keys(n).map((function(t){return n[t]?t:null})).filter((function(t){return t}))}(n)),u=v("transform","string"==typeof n.transform?a.d.transform(n.transform):n.transform),h=v("mask",b(r)),g=Object(a.b)(p,l({},c,u,h,{symbol:o,title:d}));if(!g)return function(){var t;!m&&console&&"function"==typeof console.error&&(t=console).error.apply(t,arguments)}("Could not find one or more icon(s)",p,h);var y=g.abstract;return f.bind(null,t)(y[0],{},e.data)}};Boolean,Boolean}).call(this,n(11))},function(t,e,n){n(490),t.exports=n(491)},function(t,e,n){window._=n(7),window.axios=n(1),window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest"},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e,n){"use strict";var a=n(9),i=n(159),r=n(175),o=n(166);function s(t){var e=new r(t),n=i(r.prototype.request,e);return a.extend(n,r.prototype,e),a.extend(n,e),n}var l=s(n(162));l.Axios=r,l.create=function(t){return s(o(l.defaults,t))},l.Cancel=n(167),l.CancelToken=n(188),l.isCancel=n(161),l.all=function(t){return Promise.all(t)},l.spread=n(189),t.exports=l,t.exports.default=l},function(t,e,n){"use strict";var a=n(9),i=n(160),r=n(176),o=n(177),s=n(166);function l(t){this.defaults=t,this.interceptors={request:new r,response:new r}}l.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=s(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=[o,void 0],n=Promise.resolve(t);for(this.interceptors.request.forEach((function(t){e.unshift(t.fulfilled,t.rejected)})),this.interceptors.response.forEach((function(t){e.push(t.fulfilled,t.rejected)}));e.length;)n=n.then(e.shift(),e.shift());return n},l.prototype.getUri=function(t){return t=s(this.defaults,t),i(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},a.forEach(["delete","get","head","options"],(function(t){l.prototype[t]=function(e,n){return this.request(a.merge(n||{},{method:t,url:e}))}})),a.forEach(["post","put","patch"],(function(t){l.prototype[t]=function(e,n,i){return this.request(a.merge(i||{},{method:t,url:e,data:n}))}})),t.exports=l},function(t,e,n){"use strict";var a=n(9);function i(){this.handlers=[]}i.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},i.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},i.prototype.forEach=function(t){a.forEach(this.handlers,(function(e){null!==e&&t(e)}))},t.exports=i},function(t,e,n){"use strict";var a=n(9),i=n(178),r=n(161),o=n(162);function s(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return s(t),t.headers=t.headers||{},t.data=i(t.data,t.headers,t.transformRequest),t.headers=a.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),a.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),(t.adapter||o.adapter)(t).then((function(e){return s(t),e.data=i(e.data,e.headers,t.transformResponse),e}),(function(e){return r(e)||(s(t),e&&e.response&&(e.response.data=i(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},function(t,e,n){"use strict";var a=n(9);t.exports=function(t,e,n){return a.forEach(n,(function(n){t=n(t,e)})),t}},function(t,e,n){"use strict";var a=n(9);t.exports=function(t,e){a.forEach(t,(function(n,a){a!==e&&a.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[a])}))}},function(t,e,n){"use strict";var a=n(165);t.exports=function(t,e,n){var i=n.config.validateStatus;!i||i(n.status)?t(n):e(a("Request failed with status code "+n.status,n.config,null,n.request,n))}},function(t,e,n){"use strict";t.exports=function(t,e,n,a,i){return t.config=e,n&&(t.code=n),t.request=a,t.response=i,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},t}},function(t,e,n){"use strict";var a=n(183),i=n(184);t.exports=function(t,e){return t&&!a(e)?i(t,e):e}},function(t,e,n){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e,n){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e,n){"use strict";var a=n(9),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,r,o={};return t?(a.forEach(t.split("\n"),(function(t){if(r=t.indexOf(":"),e=a.trim(t.substr(0,r)).toLowerCase(),n=a.trim(t.substr(r+1)),e){if(o[e]&&i.indexOf(e)>=0)return;o[e]="set-cookie"===e?(o[e]?o[e]:[]).concat([n]):o[e]?o[e]+", "+n:n}})),o):o}},function(t,e,n){"use strict";var a=n(9);t.exports=a.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function i(t){var a=t;return e&&(n.setAttribute("href",a),a=n.href),n.setAttribute("href",a),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return t=i(window.location.href),function(e){var n=a.isString(e)?i(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return!0}},function(t,e,n){"use strict";var a=n(9);t.exports=a.isStandardBrowserEnv()?{write:function(t,e,n,i,r,o){var s=[];s.push(t+"="+encodeURIComponent(e)),a.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),a.isString(i)&&s.push("path="+i),a.isString(r)&&s.push("domain="+r),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";var a=n(167);function i(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var n=this;t((function(t){n.reason||(n.reason=new a(t),e(n.reason))}))}i.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},i.source=function(){var t;return{token:new i((function(e){t=e})),cancel:t}},t.exports=i},function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},function(t){t.exports=JSON.parse("{}")},function(t){t.exports=JSON.parse("{}")},function(t,e,n){"use strict";(function(e,n){var a=Object.freeze({});function i(t){return null==t}function r(t){return null!=t}function o(t){return!0===t}function s(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function l(t){return null!==t&&"object"==typeof t}var d=Object.prototype.toString;function p(t){return"[object Object]"===d.call(t)}function c(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function u(t){return r(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function f(t){return null==t?"":Array.isArray(t)||p(t)&&t.toString===d?JSON.stringify(t,null,2):String(t)}function m(t){var e=parseFloat(t);return isNaN(e)?t:e}function v(t,e){for(var n=Object.create(null),a=t.split(","),i=0;i-1)return t.splice(n,1)}}var y=Object.prototype.hasOwnProperty;function _(t,e){return y.call(t,e)}function x(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var w=/-(\w)/g,k=x((function(t){return t.replace(w,(function(t,e){return e?e.toUpperCase():""}))})),C=x((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),z=/\B([A-Z])/g,P=x((function(t){return t.replace(z,"-$1").toLowerCase()})),O=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var a=arguments.length;return a?a>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function S(t,e){e=e||0;for(var n=t.length-e,a=new Array(n);n--;)a[n]=t[n+e];return a}function $(t,e){for(var n in e)t[n]=e[n];return t}function I(t){for(var e={},n=0;n0,X=Y&&Y.indexOf("edge/")>0,Q=(Y&&Y.indexOf("android"),Y&&/iphone|ipad|ipod|ios/.test(Y)||"ios"===K),tt=(Y&&/chrome\/\d+/.test(Y),Y&&/phantomjs/.test(Y),Y&&Y.match(/firefox\/(\d+)/)),et={}.watch,nt=!1;if(G)try{var at={};Object.defineProperty(at,"passive",{get:function(){nt=!0}}),window.addEventListener("test-passive",null,at)}catch(a){}var it=function(){return void 0===U&&(U=!G&&!W&&void 0!==e&&e.process&&"server"===e.process.env.VUE_ENV),U},rt=G&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ot(t){return"function"==typeof t&&/native code/.test(t.toString())}var st,lt="undefined"!=typeof Symbol&&ot(Symbol)&&"undefined"!=typeof Reflect&&ot(Reflect.ownKeys);st="undefined"!=typeof Set&&ot(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var dt=A,pt=0,ct=function(){this.id=pt++,this.subs=[]};ct.prototype.addSub=function(t){this.subs.push(t)},ct.prototype.removeSub=function(t){g(this.subs,t)},ct.prototype.depend=function(){ct.target&&ct.target.addDep(this)},ct.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;e-1)if(r&&!_(i,"default"))o=!1;else if(""===o||o===P(t)){var l=Rt(String,i.type);(l<0||s0&&(pe((l=t(l,(n||"")+"_"+a))[0])&&pe(p)&&(c[d]=gt(p.text+l[0].text),l.shift()),c.push.apply(c,l)):s(l)?pe(p)?c[d]=gt(p.text+l):""!==l&&c.push(gt(l)):pe(l)&&pe(p)?c[d]=gt(p.text+l.text):(o(e._isVList)&&r(l.tag)&&i(l.key)&&r(n)&&(l.key="__vlist"+n+"_"+a+"__"),c.push(l)));return c}(t):void 0}function pe(t){return r(t)&&r(t.text)&&!1===t.isComment}function ce(t,e){if(t){for(var n=Object.create(null),a=lt?Reflect.ownKeys(t):Object.keys(t),i=0;i0,o=t?!!t.$stable:!r,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(o&&n&&n!==a&&s===n.$key&&!r&&!n.$hasNormal)return n;for(var l in i={},t)t[l]&&"$"!==l[0]&&(i[l]=ve(e,l,t[l]))}else i={};for(var d in e)d in i||(i[d]=be(e,d));return t&&Object.isExtensible(t)&&(t._normalized=i),V(i,"$stable",o),V(i,"$key",s),V(i,"$hasNormal",r),i}function ve(t,e,n){var a=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:de(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:a,enumerable:!0,configurable:!0}),a}function be(t,e){return function(){return t[e]}}function he(t,e){var n,a,i,o,s;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),a=0,i=t.length;adocument.createEvent("Event").timeStamp&&(ln=function(){return dn.now()})}function pn(){var t,e;for(sn=ln(),rn=!0,tn.sort((function(t,e){return t.id-e.id})),on=0;onon&&tn[n].id>t.id;)n--;tn.splice(n+1,0,t)}else tn.push(t);an||(an=!0,ee(pn))}}(this)},un.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||l(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Vt(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},un.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},un.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},un.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var fn={enumerable:!0,configurable:!0,get:A,set:A};function mn(t,e,n){fn.get=function(){return this[e][n]},fn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,fn)}var vn={lazy:!0};function bn(t,e,n){var a=!it();"function"==typeof n?(fn.get=a?hn(e):gn(n),fn.set=A):(fn.get=n.get?a&&!1!==n.cache?hn(e):gn(n.get):A,fn.set=n.set||A),Object.defineProperty(t,e,fn)}function hn(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),ct.target&&e.depend(),e.value}}function gn(t){return function(){return t.call(this,this)}}function yn(t,e,n,a){return p(n)&&(a=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,a)}var _n=0;function xn(t){var e=t.options;if(t.super){var n=xn(t.super);if(n!==t.superOptions){t.superOptions=n;var a=function(t){var e,n=t.options,a=t.sealedOptions;for(var i in n)n[i]!==a[i]&&(e||(e={}),e[i]=n[i]);return e}(t);a&&$(t.extendOptions,a),(e=t.options=Lt(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function wn(t){this._init(t)}function kn(t){return t&&(t.Ctor.options.name||t.tag)}function Cn(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:(n=t,"[object RegExp]"===d.call(n)&&t.test(e));var n}function zn(t,e){var n=t.cache,a=t.keys,i=t._vnode;for(var r in n){var o=n[r];if(o){var s=kn(o.componentOptions);s&&!e(s)&&Pn(n,r,a,i)}}}function Pn(t,e,n,a){var i=t[e];!i||a&&i.tag===a.tag||i.componentInstance.$destroy(),t[e]=null,g(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=_n++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),a=e._parentVnode;n.parent=e.parent,n._parentVnode=a;var i=a.componentOptions;n.propsData=i.propsData,n._parentListeners=i.listeners,n._renderChildren=i.children,n._componentTag=i.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Lt(xn(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Ke(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,i=n&&n.context;t.$slots=ue(e._renderChildren,i),t.$scopedSlots=a,t._c=function(e,n,a,i){return Fe(t,e,n,a,i,!1)},t.$createElement=function(e,n,a,i){return Fe(t,e,n,a,i,!0)};var r=n&&n.data;Ot(t,"$attrs",r&&r.attrs||a,null,!0),Ot(t,"$listeners",e._parentListeners||a,null,!0)}(e),Qe(e,"beforeCreate"),function(t){var e=ce(t.$options.inject,t);e&&(Ct(!1),Object.keys(e).forEach((function(n){Ot(t,n,e[n])})),Ct(!0))}(e),function(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},a=t._props={},i=t.$options._propKeys=[];t.$parent&&Ct(!1);var r=function(r){i.push(r);var o=Nt(r,e,n,t);Ot(a,r,o),r in t||mn(t,"_props",r)};for(var o in e)r(o);Ct(!0)}(t,e.props),e.methods&&function(t,e){for(var n in t.$options.props,e)t[n]="function"!=typeof e[n]?A:O(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;p(e=t._data="function"==typeof e?function(t,e){ft();try{return t.call(e,e)}catch(t){return Vt(t,e,"data()"),{}}finally{mt()}}(e,t):e||{})||(e={});for(var n,a=Object.keys(e),i=t.$options.props,r=(t.$options.methods,a.length);r--;){var o=a[r];i&&_(i,o)||(void 0,36!==(n=(o+"").charCodeAt(0))&&95!==n&&mn(t,"_data",o))}Pt(e,!0)}(t):Pt(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),a=it();for(var i in e){var r=e[i],o="function"==typeof r?r:r.get;a||(n[i]=new un(t,o||A,A,vn)),i in t||bn(t,i,r)}}(t,e.computed),e.watch&&e.watch!==et&&function(t,e){for(var n in e){var a=e[n];if(Array.isArray(a))for(var i=0;i1?S(e):e;for(var n=S(arguments,1),a='event handler for "'+t+'"',i=0,r=e.length;iparseInt(this.max)&&Pn(o,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return M}};Object.defineProperty(t,"config",e),t.util={warn:dt,extend:$,mergeOptions:Lt,defineReactive:Ot},t.set=St,t.delete=$t,t.nextTick=ee,t.observable=function(t){return Pt(t),t},t.options=Object.create(null),N.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,$(t.options.components,Sn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=S(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Lt(this.options,t),this}}(t),function(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,a=n.cid,i=t._Ctor||(t._Ctor={});if(i[a])return i[a];var r=t.name||n.options.name,o=function(t){this._init(t)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=e++,o.options=Lt(n.options,t),o.super=n,o.options.props&&function(t){var e=t.options.props;for(var n in e)mn(t.prototype,"_props",n)}(o),o.options.computed&&function(t){var e=t.options.computed;for(var n in e)bn(t.prototype,n,e[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,N.forEach((function(t){o[t]=n[t]})),r&&(o.options.components[r]=o),o.superOptions=n.options,o.extendOptions=t,o.sealedOptions=$({},o.options),i[a]=o,o}}(t),function(t){N.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&p(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(wn),Object.defineProperty(wn.prototype,"$isServer",{get:it}),Object.defineProperty(wn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(wn,"FunctionalRenderContext",{value:Ee}),wn.version="2.6.11";var $n=v("style,class"),In=v("input,textarea,option,select,progress"),An=function(t,e,n){return"value"===n&&In(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},En=v("contenteditable,draggable,spellcheck"),jn=v("events,caret,typing,plaintext-only"),Dn=v("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Tn="http://www.w3.org/1999/xlink",Ln=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Bn=function(t){return Ln(t)?t.slice(6,t.length):""},Nn=function(t){return null==t||!1===t};function Fn(t,e){return{staticClass:Mn(t.staticClass,e.staticClass),class:r(t.class)?[t.class,e.class]:e.class}}function Mn(t,e){return t?e?t+" "+e:t:e||""}function Rn(t){return Array.isArray(t)?function(t){for(var e,n="",a=0,i=t.length;a-1?ua(t,e,n):Dn(e)?Nn(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):En(e)?t.setAttribute(e,function(t,e){return Nn(e)||"false"===e?"false":"contenteditable"===t&&jn(e)?e:"true"}(e,n)):Ln(e)?Nn(n)?t.removeAttributeNS(Tn,Bn(e)):t.setAttributeNS(Tn,e,n):ua(t,e,n)}function ua(t,e,n){if(Nn(n))t.removeAttribute(e);else{if(Z&&!J&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var a=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",a)};t.addEventListener("input",a),t.__ieph=!0}t.setAttribute(e,n)}}var fa={create:pa,update:pa};function ma(t,e){var n=e.elm,a=e.data,o=t.data;if(!(i(a.staticClass)&&i(a.class)&&(i(o)||i(o.staticClass)&&i(o.class)))){var s=function(t){for(var e=t.data,n=t,a=t;r(a.componentInstance);)(a=a.componentInstance._vnode)&&a.data&&(e=Fn(a.data,e));for(;r(n=n.parent);)n&&n.data&&(e=Fn(e,n.data));return function(t,e){return r(t)||r(e)?Mn(t,Rn(e)):""}(e.staticClass,e.class)}(e),l=n._transitionClasses;r(l)&&(s=Mn(s,Rn(l))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var va,ba,ha,ga,ya,_a,xa={create:ma,update:ma},wa=/[\w).+\-_$\]]/;function ka(t){var e,n,a,i,r,o=!1,s=!1,l=!1,d=!1,p=0,c=0,u=0,f=0;for(a=0;a=0&&" "===(v=t.charAt(m));m--);v&&wa.test(v)||(d=!0)}}else void 0===i?(f=a+1,i=t.slice(0,a).trim()):b();function b(){(r||(r=[])).push(t.slice(f,a).trim()),f=a+1}if(void 0===i?i=t.slice(0,a).trim():0!==f&&b(),r)for(a=0;a-1?{exp:t.slice(0,ga),key:'"'+t.slice(ga+1)+'"'}:{exp:t,key:null};for(ba=t,ga=ya=_a=0;!Ma();)Ra(ha=Fa())?Ua(ha):91===ha&&Va(ha);return{exp:t.slice(0,ya),key:t.slice(ya+1,_a)}}(t);return null===n.key?t+"="+e:"$set("+n.exp+", "+n.key+", "+e+")"}function Fa(){return ba.charCodeAt(++ga)}function Ma(){return ga>=va}function Ra(t){return 34===t||39===t}function Va(t){var e=1;for(ya=ga;!Ma();)if(Ra(t=Fa()))Ua(t);else if(91===t&&e++,93===t&&e--,0===e){_a=ga;break}}function Ua(t){for(var e=t;!Ma()&&(t=Fa())!==e;);}var qa,Ha="__r";function Ga(t,e,n){var a=qa;return function i(){null!==e.apply(null,arguments)&&Ya(t,i,n,a)}}var Wa=Wt&&!(tt&&Number(tt[1])<=53);function Ka(t,e,n,a){if(Wa){var i=sn,r=e;e=r._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=i||t.timeStamp<=0||t.target.ownerDocument!==document)return r.apply(this,arguments)}}qa.addEventListener(t,e,nt?{capture:n,passive:a}:n)}function Ya(t,e,n,a){(a||qa).removeEventListener(t,e._wrapper||e,n)}function Za(t,e){if(!i(t.data.on)||!i(e.data.on)){var n=e.data.on||{},a=t.data.on||{};qa=e.elm,function(t){if(r(t.__r)){var e=Z?"change":"input";t[e]=[].concat(t.__r,t[e]||[]),delete t.__r}r(t.__c)&&(t.change=[].concat(t.__c,t.change||[]),delete t.__c)}(n),oe(n,a,Ka,Ya,Ga,e.context),qa=void 0}}var Ja,Xa={create:Za,update:Za};function Qa(t,e){if(!i(t.data.domProps)||!i(e.data.domProps)){var n,a,o=e.elm,s=t.data.domProps||{},l=e.data.domProps||{};for(n in r(l.__ob__)&&(l=e.data.domProps=$({},l)),s)n in l||(o[n]="");for(n in l){if(a=l[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),a===s[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n&&"PROGRESS"!==o.tagName){o._value=a;var d=i(a)?"":String(a);ti(o,d)&&(o.value=d)}else if("innerHTML"===n&&qn(o.tagName)&&i(o.innerHTML)){(Ja=Ja||document.createElement("div")).innerHTML=""+a+"";for(var p=Ja.firstChild;o.firstChild;)o.removeChild(o.firstChild);for(;p.firstChild;)o.appendChild(p.firstChild)}else if(a!==s[n])try{o[n]=a}catch(t){}}}}function ti(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,a=t._vModifiers;if(r(a)){if(a.number)return m(n)!==m(e);if(a.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var ei={create:Qa,update:Qa},ni=x((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var a=t.split(n);a.length>1&&(e[a[0].trim()]=a[1].trim())}})),e}));function ai(t){var e=ii(t.style);return t.staticStyle?$(t.staticStyle,e):e}function ii(t){return Array.isArray(t)?I(t):"string"==typeof t?ni(t):t}var ri,oi=/^--/,si=/\s*!important$/,li=function(t,e,n){if(oi.test(e))t.style.setProperty(e,n);else if(si.test(n))t.style.setProperty(P(e),n.replace(si,""),"important");else{var a=pi(e);if(Array.isArray(n))for(var i=0,r=n.length;i-1?e.split(fi).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function vi(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(fi).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",a=" "+e+" ";n.indexOf(a)>=0;)n=n.replace(a," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function bi(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&$(e,hi(t.name||"v")),$(e,t),e}return"string"==typeof t?hi(t):void 0}}var hi=x((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),gi=G&&!J,yi="transition",_i="animation",xi="transition",wi="transitionend",ki="animation",Ci="animationend";gi&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(xi="WebkitTransition",wi="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(ki="WebkitAnimation",Ci="webkitAnimationEnd"));var zi=G?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Pi(t){zi((function(){zi(t)}))}function Oi(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),mi(t,e))}function Si(t,e){t._transitionClasses&&g(t._transitionClasses,e),vi(t,e)}function $i(t,e,n){var a=Ai(t,e),i=a.type,r=a.timeout,o=a.propCount;if(!i)return n();var s=i===yi?wi:Ci,l=0,d=function(){t.removeEventListener(s,p),n()},p=function(e){e.target===t&&++l>=o&&d()};setTimeout((function(){l0&&(n=yi,p=o,c=r.length):e===_i?d>0&&(n=_i,p=d,c=l.length):c=(n=(p=Math.max(o,d))>0?o>d?yi:_i:null)?n===yi?r.length:l.length:0,{type:n,timeout:p,propCount:c,hasTransform:n===yi&&Ii.test(a[xi+"Property"])}}function Ei(t,e){for(;t.length1}function Ni(t,e){!0!==e.data.show&&Di(e)}var Fi=function(t){var e,n,a={},l=t.modules,d=t.nodeOps;for(e=0;em?y(t,i(n[h+1])?null:n[h+1].elm,n,f,h,a):f>h&&x(e,u,m)}(u,v,h,n,p):r(h)?(r(t.text)&&d.setTextContent(u,""),y(u,null,h,0,h.length-1,n)):r(v)?x(v,0,v.length-1):r(t.text)&&d.setTextContent(u,""):t.text!==e.text&&d.setTextContent(u,e.text),r(m)&&r(f=m.hook)&&r(f=f.postpatch)&&f(t,e)}}}function z(t,e,n){if(o(n)&&r(t.parent))t.parent.data.pendingInsert=e;else for(var a=0;a-1,o.selected!==r&&(o.selected=r);else if(D(qi(o),a))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function Ui(t,e){return e.every((function(e){return!D(e,t)}))}function qi(t){return"_value"in t?t._value:t.value}function Hi(t){t.target.composing=!0}function Gi(t){t.target.composing&&(t.target.composing=!1,Wi(t.target,"input"))}function Wi(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Ki(t){return!t.componentInstance||t.data&&t.data.transition?t:Ki(t.componentInstance._vnode)}var Yi={model:Mi,show:{bind:function(t,e,n){var a=e.value,i=(n=Ki(n)).data&&n.data.transition,r=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;a&&i?(n.data.show=!0,Di(n,(function(){t.style.display=r}))):t.style.display=a?r:"none"},update:function(t,e,n){var a=e.value;!a!=!e.oldValue&&((n=Ki(n)).data&&n.data.transition?(n.data.show=!0,a?Di(n,(function(){t.style.display=t.__vOriginalDisplay})):Ti(n,(function(){t.style.display="none"}))):t.style.display=a?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,a,i){i||(t.style.display=t.__vOriginalDisplay)}}},Zi={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Ji(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ji(qe(e.children)):t}function Xi(t){var e={},n=t.$options;for(var a in n.propsData)e[a]=t[a];var i=n._parentListeners;for(var r in i)e[k(r)]=i[r];return e}function Qi(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var tr=function(t){return t.tag||Ue(t)},er=function(t){return"show"===t.name},nr={name:"transition",props:Zi,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(tr)).length){var a=this.mode,i=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return i;var r=Ji(i);if(!r)return i;if(this._leaving)return Qi(t,i);var o="__transition-"+this._uid+"-";r.key=null==r.key?r.isComment?o+"comment":o+r.tag:s(r.key)?0===String(r.key).indexOf(o)?r.key:o+r.key:r.key;var l=(r.data||(r.data={})).transition=Xi(this),d=this._vnode,p=Ji(d);if(r.data.directives&&r.data.directives.some(er)&&(r.data.show=!0),p&&p.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(r,p)&&!Ue(p)&&(!p.componentInstance||!p.componentInstance._vnode.isComment)){var c=p.data.transition=$({},l);if("out-in"===a)return this._leaving=!0,se(c,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),Qi(t,i);if("in-out"===a){if(Ue(r))return d;var u,f=function(){u()};se(l,"afterEnter",f),se(l,"enterCancelled",f),se(c,"delayLeave",(function(t){u=t}))}}return i}}},ar=$({tag:String,moveClass:String},Zi);function ir(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function rr(t){t.data.newPos=t.elm.getBoundingClientRect()}function or(t){var e=t.data.pos,n=t.data.newPos,a=e.left-n.left,i=e.top-n.top;if(a||i){t.data.moved=!0;var r=t.elm.style;r.transform=r.WebkitTransform="translate("+a+"px,"+i+"px)",r.transitionDuration="0s"}}delete ar.mode;var sr={Transition:nr,TransitionGroup:{props:ar,beforeMount:function(){var t=this,e=this._update;this._update=function(n,a){var i=Ze(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,i(),e.call(t,n,a)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),a=this.prevChildren=this.children,i=this.$slots.default||[],r=this.children=[],o=Xi(this),s=0;s-1?Wn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Wn[t]=/HTMLUnknownElement/.test(e.toString())},$(wn.options.directives,Yi),$(wn.options.components,sr),wn.prototype.__patch__=G?Fi:A,wn.prototype.$mount=function(t,e){return function(t,e,n){var a;return t.$el=e,t.$options.render||(t.$options.render=ht),Qe(t,"beforeMount"),a=function(){t._update(t._render(),n)},new un(t,a,A,{before:function(){t._isMounted&&!t._isDestroyed&&Qe(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Qe(t,"mounted")),t}(this,t=t&&G?Yn(t):void 0,e)},G&&setTimeout((function(){M.devtools&&rt&&rt.emit("init",wn)}),0);var lr,dr=/\{\{((?:.|\r?\n)+?)\}\}/g,pr=/[-.*+?^${}()|[\]\/\\]/g,cr=x((function(t){var e=t[0].replace(pr,"\\$&"),n=t[1].replace(pr,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")})),ur={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=Da(t,"class");n&&(t.staticClass=JSON.stringify(n));var a=ja(t,"class",!1);a&&(t.classBinding=a)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:"+t.staticClass+","),t.classBinding&&(e+="class:"+t.classBinding+","),e}},fr={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=Da(t,"style");n&&(t.staticStyle=JSON.stringify(ni(n)));var a=ja(t,"style",!1);a&&(t.styleBinding=a)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:"+t.staticStyle+","),t.styleBinding&&(e+="style:("+t.styleBinding+"),"),e}},mr=v("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),vr=v("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),br=v("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),hr=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,gr=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,yr="[a-zA-Z_][\\-\\.0-9_a-zA-Z"+R.source+"]*",_r="((?:"+yr+"\\:)?"+yr+")",xr=new RegExp("^<"+_r),wr=/^\s*(\/?)>/,kr=new RegExp("^<\\/"+_r+"[^>]*>"),Cr=/^]+>/i,zr=/^",""":'"',"&":"&"," ":"\n"," ":"\t","'":"'"},Ir=/&(?:lt|gt|quot|amp|#39);/g,Ar=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,Er=v("pre,textarea",!0),jr=function(t,e){return t&&Er(t)&&"\n"===e[0]};function Dr(t,e){var n=e?Ar:Ir;return t.replace(n,(function(t){return $r[t]}))}var Tr,Lr,Br,Nr,Fr,Mr,Rr,Vr,Ur=/^@|^v-on:/,qr=/^v-|^@|^:|^#/,Hr=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,Gr=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Wr=/^\(|\)$/g,Kr=/^\[.*\]$/,Yr=/:(.*)$/,Zr=/^:|^\.|^v-bind:/,Jr=/\.[^.\]]+(?=[^\]]*$)/g,Xr=/^v-slot(:|$)|^#/,Qr=/[\r\n]/,to=/\s+/g,eo=x((function(t){return(lr=lr||document.createElement("div")).innerHTML=t,lr.textContent})),no="_empty_";function ao(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:po(e),rawAttrsMap:{},parent:n,children:[]}}function io(t,e){var n,a;(a=ja(n=t,"key"))&&(n.key=a),t.plain=!t.key&&!t.scopedSlots&&!t.attrsList.length,function(t){var e=ja(t,"ref");e&&(t.ref=e,t.refInFor=function(t){for(var e=t;e;){if(void 0!==e.for)return!0;e=e.parent}return!1}(t))}(t),function(t){var e;"template"===t.tag?(e=Da(t,"scope"),t.slotScope=e||Da(t,"slot-scope")):(e=Da(t,"slot-scope"))&&(t.slotScope=e);var n=ja(t,"slot");if(n&&(t.slotTarget='""'===n?'"default"':n,t.slotTargetDynamic=!(!t.attrsMap[":slot"]&&!t.attrsMap["v-bind:slot"]),"template"===t.tag||t.slotScope||Sa(t,"slot",n,function(t,e){return t.rawAttrsMap[":"+e]||t.rawAttrsMap["v-bind:"+e]||t.rawAttrsMap[e]}(t,"slot"))),"template"===t.tag){var a=Ta(t,Xr);if(a){var i=so(a),r=i.name,o=i.dynamic;t.slotTarget=r,t.slotTargetDynamic=o,t.slotScope=a.value||no}}else{var s=Ta(t,Xr);if(s){var l=t.scopedSlots||(t.scopedSlots={}),d=so(s),p=d.name,c=d.dynamic,u=l[p]=ao("template",[],t);u.slotTarget=p,u.slotTargetDynamic=c,u.children=t.children.filter((function(t){if(!t.slotScope)return t.parent=u,!0})),u.slotScope=s.value||no,t.children=[],t.plain=!1}}}(t),function(t){"slot"===t.tag&&(t.slotName=ja(t,"name"))}(t),function(t){var e;(e=ja(t,"is"))&&(t.component=e),null!=Da(t,"inline-template")&&(t.inlineTemplate=!0)}(t);for(var i=0;i-1"+("true"===r?":("+e+")":":_q("+e+","+r+")")),Ea(t,"change","var $$a="+e+",$$el=$event.target,$$c=$$el.checked?("+r+"):("+o+");if(Array.isArray($$a)){var $$v="+(a?"_n("+i+")":i)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+Na(e,"$$a.concat([$$v])")+")}else{$$i>-1&&("+Na(e,"$$a.slice(0,$$i).concat($$a.slice($$i+1))")+")}}else{"+Na(e,"$$c")+"}",null,!0)}(t,a,i);else if("input"===r&&"radio"===o)!function(t,e,n){var a=n&&n.number,i=ja(t,"value")||"null";Oa(t,"checked","_q("+e+","+(i=a?"_n("+i+")":i)+")"),Ea(t,"change",Na(e,i),null,!0)}(t,a,i);else if("input"===r||"textarea"===r)!function(t,e,n){var a=t.attrsMap.type,i=n||{},r=i.lazy,o=i.number,s=i.trim,l=!r&&"range"!==a,d=r?"change":"range"===a?Ha:"input",p="$event.target.value";s&&(p="$event.target.value.trim()"),o&&(p="_n("+p+")");var c=Na(e,p);l&&(c="if($event.target.composing)return;"+c),Oa(t,"value","("+e+")"),Ea(t,d,c,null,!0),(s||o)&&Ea(t,"blur","$forceUpdate()")}(t,a,i);else if(!M.isReservedTag(r))return Ba(t,a,i),!1;return!0},text:function(t,e){e.value&&Oa(t,"textContent","_s("+e.value+")",e)},html:function(t,e){e.value&&Oa(t,"innerHTML","_s("+e.value+")",e)}},isPreTag:function(t){return"pre"===t},isUnaryTag:mr,mustUseProp:An,canBeLeftOpenTag:vr,isReservedTag:Hn,getTagNamespace:Gn,staticKeys:function(t){return t.reduce((function(t,e){return t.concat(e.staticKeys||[])}),[]).join(",")}(bo)},go=x((function(t){return v("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(t?","+t:""))}));var yo=/^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/,_o=/\([^)]*?\);*$/,xo=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,wo={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},ko={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},Co=function(t){return"if("+t+")return null;"},zo={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:Co("$event.target !== $event.currentTarget"),ctrl:Co("!$event.ctrlKey"),shift:Co("!$event.shiftKey"),alt:Co("!$event.altKey"),meta:Co("!$event.metaKey"),left:Co("'button' in $event && $event.button !== 0"),middle:Co("'button' in $event && $event.button !== 1"),right:Co("'button' in $event && $event.button !== 2")};function Po(t,e){var n=e?"nativeOn:":"on:",a="",i="";for(var r in t){var o=Oo(t[r]);t[r]&&t[r].dynamic?i+=r+","+o+",":a+='"'+r+'":'+o+","}return a="{"+a.slice(0,-1)+"}",i?n+"_d("+a+",["+i.slice(0,-1)+"])":n+a}function Oo(t){if(!t)return"function(){}";if(Array.isArray(t))return"["+t.map((function(t){return Oo(t)})).join(",")+"]";var e=xo.test(t.value),n=yo.test(t.value),a=xo.test(t.value.replace(_o,""));if(t.modifiers){var i="",r="",o=[];for(var s in t.modifiers)if(zo[s])r+=zo[s],wo[s]&&o.push(s);else if("exact"===s){var l=t.modifiers;r+=Co(["ctrl","shift","alt","meta"].filter((function(t){return!l[t]})).map((function(t){return"$event."+t+"Key"})).join("||"))}else o.push(s);return o.length&&(i+=function(t){return"if(!$event.type.indexOf('key')&&"+t.map(So).join("&&")+")return null;"}(o)),r&&(i+=r),"function($event){"+i+(e?"return "+t.value+"($event)":n?"return ("+t.value+")($event)":a?"return "+t.value:t.value)+"}"}return e||n?t.value:"function($event){"+(a?"return "+t.value:t.value)+"}"}function So(t){var e=parseInt(t,10);if(e)return"$event.keyCode!=="+e;var n=wo[t],a=ko[t];return"_k($event.keyCode,"+JSON.stringify(t)+","+JSON.stringify(n)+",$event.key,"+JSON.stringify(a)+")"}var $o={on:function(t,e){t.wrapListeners=function(t){return"_g("+t+","+e.value+")"}},bind:function(t,e){t.wrapData=function(n){return"_b("+n+",'"+t.tag+"',"+e.value+","+(e.modifiers&&e.modifiers.prop?"true":"false")+(e.modifiers&&e.modifiers.sync?",true":"")+")"}},cloak:A},Io=function(t){this.options=t,this.warn=t.warn||za,this.transforms=Pa(t.modules,"transformCode"),this.dataGenFns=Pa(t.modules,"genData"),this.directives=$($({},$o),t.directives);var e=t.isReservedTag||E;this.maybeComponent=function(t){return!!t.component||!e(t.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function Ao(t,e){var n=new Io(e);return{render:"with(this){return "+(t?Eo(t,n):'_c("div")')+"}",staticRenderFns:n.staticRenderFns}}function Eo(t,e){if(t.parent&&(t.pre=t.pre||t.parent.pre),t.staticRoot&&!t.staticProcessed)return jo(t,e);if(t.once&&!t.onceProcessed)return Do(t,e);if(t.for&&!t.forProcessed)return Lo(t,e);if(t.if&&!t.ifProcessed)return To(t,e);if("template"!==t.tag||t.slotTarget||e.pre){if("slot"===t.tag)return function(t,e){var n=t.slotName||'"default"',a=Mo(t,e),i="_t("+n+(a?","+a:""),r=t.attrs||t.dynamicAttrs?Uo((t.attrs||[]).concat(t.dynamicAttrs||[]).map((function(t){return{name:k(t.name),value:t.value,dynamic:t.dynamic}}))):null,o=t.attrsMap["v-bind"];return!r&&!o||a||(i+=",null"),r&&(i+=","+r),o&&(i+=(r?"":",null")+","+o),i+")"}(t,e);var n;if(t.component)n=function(t,e,n){var a=e.inlineTemplate?null:Mo(e,n,!0);return"_c("+t+","+Bo(e,n)+(a?","+a:"")+")"}(t.component,t,e);else{var a;(!t.plain||t.pre&&e.maybeComponent(t))&&(a=Bo(t,e));var i=t.inlineTemplate?null:Mo(t,e,!0);n="_c('"+t.tag+"'"+(a?","+a:"")+(i?","+i:"")+")"}for(var r=0;r>>0}(o):"")+")"}(t,t.scopedSlots,e)+","),t.model&&(n+="model:{value:"+t.model.value+",callback:"+t.model.callback+",expression:"+t.model.expression+"},"),t.inlineTemplate){var r=function(t,e){var n=t.children[0];if(n&&1===n.type){var a=Ao(n,e.options);return"inlineTemplate:{render:function(){"+a.render+"},staticRenderFns:["+a.staticRenderFns.map((function(t){return"function(){"+t+"}"})).join(",")+"]}"}}(t,e);r&&(n+=r+",")}return n=n.replace(/,$/,"")+"}",t.dynamicAttrs&&(n="_b("+n+',"'+t.tag+'",'+Uo(t.dynamicAttrs)+")"),t.wrapData&&(n=t.wrapData(n)),t.wrapListeners&&(n=t.wrapListeners(n)),n}function No(t){return 1===t.type&&("slot"===t.tag||t.children.some(No))}function Fo(t,e){var n=t.attrsMap["slot-scope"];if(t.if&&!t.ifProcessed&&!n)return To(t,e,Fo,"null");if(t.for&&!t.forProcessed)return Lo(t,e,Fo);var a=t.slotScope===no?"":String(t.slotScope),i="function("+a+"){return "+("template"===t.tag?t.if&&n?"("+t.if+")?"+(Mo(t,e)||"undefined")+":undefined":Mo(t,e)||"undefined":Eo(t,e))+"}",r=a?"":",proxy:true";return"{key:"+(t.slotTarget||'"default"')+",fn:"+i+r+"}"}function Mo(t,e,n,a,i){var r=t.children;if(r.length){var o=r[0];if(1===r.length&&o.for&&"template"!==o.tag&&"slot"!==o.tag){var s=n?e.maybeComponent(o)?",1":",0":"";return""+(a||Eo)(o,e)+s}var l=n?function(t,e){for(var n=0,a=0;a]*>)","i")),u=t.replace(c,(function(t,n,a){return d=a.length,Or(p)||"noscript"===p||(n=n.replace(//g,"$1").replace(//g,"$1")),jr(p,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""}));l+=t.length-u.length,t=u,P(p,l-d,l)}else{var f=t.indexOf("<");if(0===f){if(zr.test(t)){var m=t.indexOf("--\x3e");if(m>=0){e.shouldKeepComment&&e.comment(t.substring(4,m),l,l+m+3),k(m+3);continue}}if(Pr.test(t)){var v=t.indexOf("]>");if(v>=0){k(v+2);continue}}var b=t.match(Cr);if(b){k(b[0].length);continue}var h=t.match(kr);if(h){var g=l;k(h[0].length),P(h[1],g,l);continue}var y=C();if(y){z(y),jr(y.tagName,t)&&k(1);continue}}var _=void 0,x=void 0,w=void 0;if(f>=0){for(x=t.slice(f);!(kr.test(x)||xr.test(x)||zr.test(x)||Pr.test(x)||(w=x.indexOf("<",1))<0);)f+=w,x=t.slice(f);_=t.substring(0,f)}f<0&&(_=t),_&&k(_.length),e.chars&&_&&e.chars(_,l-_.length,l)}if(t===n){e.chars&&e.chars(t);break}}function k(e){l+=e,t=t.substring(e)}function C(){var e=t.match(xr);if(e){var n,a,i={tagName:e[1],attrs:[],start:l};for(k(e[0].length);!(n=t.match(wr))&&(a=t.match(gr)||t.match(hr));)a.start=l,k(a[0].length),a.end=l,i.attrs.push(a);if(n)return i.unarySlash=n[1],k(n[0].length),i.end=l,i}}function z(t){var n=t.tagName,l=t.unarySlash;r&&("p"===a&&br(n)&&P(a),s(n)&&a===n&&P(n));for(var d=o(n)||!!l,p=t.attrs.length,c=new Array(p),u=0;u=0&&i[o].lowerCasedTag!==s;o--);else o=0;if(o>=0){for(var d=i.length-1;d>=o;d--)e.end&&e.end(i[d].tag,n,r);i.length=o,a=o&&i[o-1].tag}else"br"===s?e.start&&e.start(t,[],!0,n,r):"p"===s&&(e.start&&e.start(t,[],!1,n,r),e.end&&e.end(t,n,r))}P()}(t,{warn:Tr,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,outputSourceRange:e.outputSourceRange,start:function(t,r,o,p,c){var u=a&&a.ns||Vr(t);Z&&"svg"===u&&(r=function(t){for(var e=[],n=0;nl&&(s.push(r=t.slice(l,i)),o.push(JSON.stringify(r)));var d=ka(a[1].trim());o.push("_s("+d+")"),s.push({"@binding":d}),l=i+a[0].length}return l':'
',Ko.innerHTML.indexOf(" ")>0}var Xo=!!G&&Jo(!1),Qo=!!G&&Jo(!0),ts=x((function(t){var e=Yn(t);return e&&e.innerHTML})),es=wn.prototype.$mount;wn.prototype.$mount=function(t,e){if((t=t&&Yn(t))===document.body||t===document.documentElement)return this;var n=this.$options;if(!n.render){var a=n.template;if(a)if("string"==typeof a)"#"===a.charAt(0)&&(a=ts(a));else{if(!a.nodeType)return this;a=a.innerHTML}else t&&(a=function(t){if(t.outerHTML)return t.outerHTML;var e=document.createElement("div");return e.appendChild(t.cloneNode(!0)),e.innerHTML}(t));if(a){var i=Zo(a,{outputSourceRange:!1,shouldDecodeNewlines:Xo,shouldDecodeNewlinesForHref:Qo,delimiters:n.delimiters,comments:n.comments},this),r=i.render,o=i.staticRenderFns;n.render=r,n.staticRenderFns=o}}return es.call(this,t,e)},wn.compile=Zo,t.exports=wn}).call(this,n(11),n(168).setImmediate)},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var a,i,r,o,s,l=1,d={},p=!1,c=t.document,u=Object.getPrototypeOf&&Object.getPrototypeOf(t);u=u&&u.setTimeout?u:t,"[object process]"==={}.toString.call(t.process)?a=function(t){e.nextTick((function(){m(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((r=new MessageChannel).port1.onmessage=function(t){m(t.data)},a=function(t){r.port2.postMessage(t)}):c&&"onreadystatechange"in c.createElement("script")?(i=c.documentElement,a=function(t){var e=c.createElement("script");e.onreadystatechange=function(){m(t),e.onreadystatechange=null,i.removeChild(e),e=null},i.appendChild(e)}):a=function(t){setTimeout(m,0,t)}:(o="setImmediate$"+Math.random()+"$",s=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(o)&&m(+e.data.slice(o.length))},t.addEventListener?t.addEventListener("message",s,!1):t.attachEvent("onmessage",s),a=function(e){t.postMessage(o+e,"*")}),u.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n=0;--i){var r=this.tryEntries[i],o=r.completion;if("root"===r.tryLoc)return a("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--a){var i=this.tryEntries[a];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),x(n),d}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var a=n.completion;if("throw"===a.type){var i=a.arg;x(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,n){return this.delegate={iterator:k(t),resultName:e,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},t}(t.exports);try{regeneratorRuntime=a}catch(t){Function("r","regeneratorRuntime = r")(a)}},function(t,e,n){"use strict";var a=n(12);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,"#auth[data-v-31af8372] {\n height: 100%;\n width: 100%;\n display: table;\n}\n",""])},function(t,e){t.exports=function(t){var e="undefined"!=typeof window&&window.location;if(!e)throw new Error("fixUrls requires window.location");if(!t||"string"!=typeof t)return t;var n=e.protocol+"//"+e.host,a=n+e.pathname.replace(/\/[^\/]*$/,"/");return t.replace(/url\s*\(((?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)\)/gi,(function(t,e){var i,r=e.trim().replace(/^"(.*)"$/,(function(t,e){return e})).replace(/^'(.*)'$/,(function(t,e){return e}));return/^(#|data:|http:\/\/|https:\/\/|file:\/\/\/|\s*$)/i.test(r)?t:(i=0===r.indexOf("//")?r:0===r.indexOf("/")?n+r:a+r.replace(/^\.\//,""),"url("+JSON.stringify(i)+")")}))}},function(t,e,n){"use strict";var a=n(13);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".button[data-v-59e2dfc0] {\n cursor: pointer;\n border-radius: 8px;\n text-decoration: none;\n padding: 12px 32px;\n display: inline-block;\n margin-left: 15px;\n margin-right: 15px;\n white-space: nowrap;\n transition: 150ms all ease;\n background: transparent;\n}\n.button .text-label[data-v-59e2dfc0] {\n transition: 150ms all ease;\n font-size: 1.0625em;\n font-weight: 800;\n line-height: 0;\n}\n.button .icon[data-v-59e2dfc0] {\n margin-left: 12px;\n font-size: 1em;\n}\n.button.solid[data-v-59e2dfc0] {\n background: #00BC7E;\n border: 2px solid #00BC7E;\n}\n.button.solid .text-label[data-v-59e2dfc0] {\n color: white;\n}\n.button.outline[data-v-59e2dfc0] {\n border: 2px solid #1B2539;\n}\n.button.outline .text-label[data-v-59e2dfc0] {\n color: #1B2539;\n}\n.button.outline .icon path[data-v-59e2dfc0] {\n fill: #00BC7E;\n}\n.button.outline[data-v-59e2dfc0]:hover {\n border-color: #00BC7E;\n}\n.button.outline:hover .text-label[data-v-59e2dfc0] {\n color: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.button.outline[data-v-59e2dfc0] {\n background: #111314;\n border-color: #bec6cf;\n}\n.button.outline .text-label[data-v-59e2dfc0] {\n color: #bec6cf;\n}\n}\n.sync-alt[data-v-59e2dfc0] {\n -webkit-animation: spin-data-v-59e2dfc0 1s linear infinite;\n animation: spin-data-v-59e2dfc0 1s linear infinite;\n}\n@-webkit-keyframes spin-data-v-59e2dfc0 {\n0% {\n transform: rotate(0);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spin-data-v-59e2dfc0 {\n0% {\n transform: rotate(0);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(14);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form.inline-form[data-v-ca63de42] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-ca63de42] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-ca63de42] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-ca63de42] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-ca63de42] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-ca63de42]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-ca63de42] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1B2539;\n text-align: right;\n}\n.form.block-form .button[data-v-ca63de42] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-ca63de42] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-ca63de42] {\n width: 100%;\n}\ntextarea[data-v-ca63de42],\ninput[type="password"][data-v-ca63de42],\ninput[type="text"][data-v-ca63de42],\ninput[type="email"][data-v-ca63de42] {\n background: #f4f5f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-ca63de42],\ninput[type="password"].is-error[data-v-ca63de42],\ninput[type="text"].is-error[data-v-ca63de42],\ninput[type="email"].is-error[data-v-ca63de42] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-ca63de42]::-webkit-input-placeholder, input[type="password"][data-v-ca63de42]::-webkit-input-placeholder, input[type="text"][data-v-ca63de42]::-webkit-input-placeholder, input[type="email"][data-v-ca63de42]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-ca63de42]::-moz-placeholder, input[type="password"][data-v-ca63de42]::-moz-placeholder, input[type="text"][data-v-ca63de42]::-moz-placeholder, input[type="email"][data-v-ca63de42]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-ca63de42]:-ms-input-placeholder, input[type="password"][data-v-ca63de42]:-ms-input-placeholder, input[type="text"][data-v-ca63de42]:-ms-input-placeholder, input[type="email"][data-v-ca63de42]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-ca63de42]::-ms-input-placeholder, input[type="password"][data-v-ca63de42]::-ms-input-placeholder, input[type="text"][data-v-ca63de42]::-ms-input-placeholder, input[type="email"][data-v-ca63de42]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-ca63de42]::placeholder,\ninput[type="password"][data-v-ca63de42]::placeholder,\ninput[type="text"][data-v-ca63de42]::placeholder,\ninput[type="email"][data-v-ca63de42]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-ca63de42]:focus,\ninput[type="password"][data-v-ca63de42]:focus,\ninput[type="text"][data-v-ca63de42]:focus,\ninput[type="email"][data-v-ca63de42]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-ca63de42],\ninput[type="password"][disabled][data-v-ca63de42],\ninput[type="text"][disabled][data-v-ca63de42],\ninput[type="email"][disabled][data-v-ca63de42] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-ca63de42] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-ca63de42], .additional-link a[data-v-ca63de42] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-ca63de42]:hover, .additional-link a[data-v-ca63de42]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-ca63de42] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-ca63de42], .form textarea[data-v-ca63de42] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-ca63de42] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-ca63de42] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-ca63de42] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-ca63de42] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-ca63de42] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-ca63de42] {\n padding: 14px 32px;\n}\ntextarea[data-v-ca63de42],\n input[type="password"][data-v-ca63de42],\n input[type="text"][data-v-ca63de42],\n input[type="email"][data-v-ca63de42] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-ca63de42] {\n color: #bec6cf;\n}\ntextarea[data-v-ca63de42],\n input[type="password"][data-v-ca63de42],\n input[type="text"][data-v-ca63de42],\n input[type="email"][data-v-ca63de42] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-ca63de42]::-webkit-input-placeholder, input[type="password"][data-v-ca63de42]::-webkit-input-placeholder, input[type="text"][data-v-ca63de42]::-webkit-input-placeholder, input[type="email"][data-v-ca63de42]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-ca63de42]::-moz-placeholder, input[type="password"][data-v-ca63de42]::-moz-placeholder, input[type="text"][data-v-ca63de42]::-moz-placeholder, input[type="email"][data-v-ca63de42]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-ca63de42]:-ms-input-placeholder, input[type="password"][data-v-ca63de42]:-ms-input-placeholder, input[type="text"][data-v-ca63de42]:-ms-input-placeholder, input[type="email"][data-v-ca63de42]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-ca63de42]::-ms-input-placeholder, input[type="password"][data-v-ca63de42]::-ms-input-placeholder, input[type="text"][data-v-ca63de42]::-ms-input-placeholder, input[type="email"][data-v-ca63de42]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-ca63de42]::placeholder,\n input[type="password"][data-v-ca63de42]::placeholder,\n input[type="text"][data-v-ca63de42]::placeholder,\n input[type="email"][data-v-ca63de42]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-ca63de42],\n input[type="password"][disabled][data-v-ca63de42],\n input[type="text"][disabled][data-v-ca63de42],\n input[type="email"][disabled][data-v-ca63de42] {\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-ca63de42] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-ca63de42] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-ca63de42] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-ca63de42] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-ca63de42] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-ca63de42] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-ca63de42] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-ca63de42] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-ca63de42] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-ca63de42] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-ca63de42] {\n width: 100%;\n}\n.auth-form h1[data-v-ca63de42] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-ca63de42] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-ca63de42] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-ca63de42] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-ca63de42] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-ca63de42] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-ca63de42], .auth-form h2[data-v-ca63de42], .auth-form .additional-link[data-v-ca63de42] {\n color: #bec6cf;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(15);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form.inline-form[data-v-4201ff73] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-4201ff73] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4201ff73] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-4201ff73] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-4201ff73] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-4201ff73]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-4201ff73] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1B2539;\n text-align: right;\n}\n.form.block-form .button[data-v-4201ff73] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-4201ff73] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-4201ff73] {\n width: 100%;\n}\ntextarea[data-v-4201ff73],\ninput[type="password"][data-v-4201ff73],\ninput[type="text"][data-v-4201ff73],\ninput[type="email"][data-v-4201ff73] {\n background: #f4f5f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-4201ff73],\ninput[type="password"].is-error[data-v-4201ff73],\ninput[type="text"].is-error[data-v-4201ff73],\ninput[type="email"].is-error[data-v-4201ff73] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-4201ff73]::-webkit-input-placeholder, input[type="password"][data-v-4201ff73]::-webkit-input-placeholder, input[type="text"][data-v-4201ff73]::-webkit-input-placeholder, input[type="email"][data-v-4201ff73]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4201ff73]::-moz-placeholder, input[type="password"][data-v-4201ff73]::-moz-placeholder, input[type="text"][data-v-4201ff73]::-moz-placeholder, input[type="email"][data-v-4201ff73]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4201ff73]:-ms-input-placeholder, input[type="password"][data-v-4201ff73]:-ms-input-placeholder, input[type="text"][data-v-4201ff73]:-ms-input-placeholder, input[type="email"][data-v-4201ff73]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4201ff73]::-ms-input-placeholder, input[type="password"][data-v-4201ff73]::-ms-input-placeholder, input[type="text"][data-v-4201ff73]::-ms-input-placeholder, input[type="email"][data-v-4201ff73]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4201ff73]::placeholder,\ninput[type="password"][data-v-4201ff73]::placeholder,\ninput[type="text"][data-v-4201ff73]::placeholder,\ninput[type="email"][data-v-4201ff73]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4201ff73]:focus,\ninput[type="password"][data-v-4201ff73]:focus,\ninput[type="text"][data-v-4201ff73]:focus,\ninput[type="email"][data-v-4201ff73]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-4201ff73],\ninput[type="password"][disabled][data-v-4201ff73],\ninput[type="text"][disabled][data-v-4201ff73],\ninput[type="email"][disabled][data-v-4201ff73] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-4201ff73] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-4201ff73], .additional-link a[data-v-4201ff73] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-4201ff73]:hover, .additional-link a[data-v-4201ff73]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-4201ff73] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-4201ff73], .form textarea[data-v-4201ff73] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-4201ff73] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-4201ff73] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-4201ff73] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-4201ff73] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4201ff73] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-4201ff73] {\n padding: 14px 32px;\n}\ntextarea[data-v-4201ff73],\n input[type="password"][data-v-4201ff73],\n input[type="text"][data-v-4201ff73],\n input[type="email"][data-v-4201ff73] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-4201ff73] {\n color: #bec6cf;\n}\ntextarea[data-v-4201ff73],\n input[type="password"][data-v-4201ff73],\n input[type="text"][data-v-4201ff73],\n input[type="email"][data-v-4201ff73] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-4201ff73]::-webkit-input-placeholder, input[type="password"][data-v-4201ff73]::-webkit-input-placeholder, input[type="text"][data-v-4201ff73]::-webkit-input-placeholder, input[type="email"][data-v-4201ff73]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4201ff73]::-moz-placeholder, input[type="password"][data-v-4201ff73]::-moz-placeholder, input[type="text"][data-v-4201ff73]::-moz-placeholder, input[type="email"][data-v-4201ff73]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4201ff73]:-ms-input-placeholder, input[type="password"][data-v-4201ff73]:-ms-input-placeholder, input[type="text"][data-v-4201ff73]:-ms-input-placeholder, input[type="email"][data-v-4201ff73]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4201ff73]::-ms-input-placeholder, input[type="password"][data-v-4201ff73]::-ms-input-placeholder, input[type="text"][data-v-4201ff73]::-ms-input-placeholder, input[type="email"][data-v-4201ff73]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4201ff73]::placeholder,\n input[type="password"][data-v-4201ff73]::placeholder,\n input[type="text"][data-v-4201ff73]::placeholder,\n input[type="email"][data-v-4201ff73]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-4201ff73],\n input[type="password"][disabled][data-v-4201ff73],\n input[type="text"][disabled][data-v-4201ff73],\n input[type="email"][disabled][data-v-4201ff73] {\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-4201ff73] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-4201ff73] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-4201ff73] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-4201ff73] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-4201ff73] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-4201ff73] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-4201ff73] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-4201ff73] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-4201ff73] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-4201ff73] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-4201ff73] {\n width: 100%;\n}\n.auth-form h1[data-v-4201ff73] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-4201ff73] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-4201ff73] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-4201ff73] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-4201ff73] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-4201ff73] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-4201ff73], .auth-form h2[data-v-4201ff73], .auth-form .additional-link[data-v-4201ff73] {\n color: #bec6cf;\n}\n}\n.legal-agreement[data-v-4201ff73] {\n font-size: 1em;\n padding: 55px 0 0;\n max-width: 400px;\n font-weight: 700;\n line-height: 1.6;\n margin: 0 auto;\n}\n.legal-agreement a[data-v-4201ff73] {\n color: #00BC7E;\n}\n',""])},function(t,e,n){"use strict";var a=n(16);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".button[data-v-3a42fd9f] {\n height: 42px;\n width: 42px;\n border-radius: 8px;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n text-align: center;\n cursor: pointer;\n white-space: nowrap;\n outline: none;\n border: none;\n}\n.button[data-v-3a42fd9f]:hover {\n background: #f4f5f6;\n}\n.button:hover path[data-v-3a42fd9f], .button:hover line[data-v-3a42fd9f], .button:hover polyline[data-v-3a42fd9f], .button:hover rect[data-v-3a42fd9f], .button:hover circle[data-v-3a42fd9f] {\n transition: 150ms all ease;\n stroke: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.button[data-v-3a42fd9f] {\n background: transparent;\n}\n.button[data-v-3a42fd9f]:hover {\n background: #1e2024;\n}\n.button path[data-v-3a42fd9f], .button line[data-v-3a42fd9f], .button polyline[data-v-3a42fd9f], .button rect[data-v-3a42fd9f], .button circle[data-v-3a42fd9f] {\n stroke: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(17);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".progress-bar[data-v-9f98bf3e] {\n width: 100%;\n height: 5px;\n background: #f4f5f6;\n margin-top: 5px;\n border-radius: 10px;\n}\n.progress-bar span[data-v-9f98bf3e] {\n background: #00BC7E;\n display: block;\n height: 100%;\n border-radius: 10px;\n max-width: 100%;\n}\n@media (prefers-color-scheme: dark) {\n.progress-bar[data-v-9f98bf3e] {\n background: #1e2024;\n}\n}\n@media only screen and (min-width: 680px) and (prefers-color-scheme: dark) {\n.progress-bar[data-v-9f98bf3e] {\n background: #1e2024;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(18);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".info-panel-enter-active[data-v-14418e9a],\n.info-panel-leave-active[data-v-14418e9a] {\n transition: all 0.3s ease;\n}\n.info-panel-enter[data-v-14418e9a],\n.info-panel-leave-to[data-v-14418e9a] {\n opacity: 0;\n transform: translateY(-100%);\n}\n.upload-progress[data-v-14418e9a] {\n width: 100%;\n padding-bottom: 10px;\n position: relative;\n z-index: 1;\n}\n.upload-progress .progress-title[data-v-14418e9a] {\n font-weight: 700;\n text-align: center;\n}\n.upload-progress .progress-title span[data-v-14418e9a] {\n font-size: 0.875em;\n}\n@media (prefers-color-scheme: dark) {\n.progress-bar[data-v-14418e9a] {\n background: #1e2024;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(19);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".button[data-v-354943e0] {\n height: 42px;\n width: 42px;\n border-radius: 8px;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n text-align: center;\n cursor: pointer;\n white-space: nowrap;\n outline: none;\n border: none;\n transition: 150ms all ease;\n background: transparent;\n}\n.button[data-v-354943e0]:hover {\n background: #f4f5f6;\n}\n.button:hover path[data-v-354943e0], .button:hover line[data-v-354943e0], .button:hover polyline[data-v-354943e0], .button:hover rect[data-v-354943e0], .button:hover circle[data-v-354943e0] {\n transition: 150ms all ease;\n stroke: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.button[data-v-354943e0] {\n background: transparent;\n}\n.button[data-v-354943e0]:hover {\n background: #1e2024;\n}\n.button path[data-v-354943e0], .button line[data-v-354943e0], .button polyline[data-v-354943e0], .button rect[data-v-354943e0], .button circle[data-v-354943e0] {\n stroke: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(20);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".search-bar[data-v-01d307b9] {\n position: relative;\n}\n.search-bar input[data-v-01d307b9] {\n background: transparent;\n border-radius: 8px;\n outline: 0;\n padding: 9px 20px 9px 43px;\n font-weight: 400;\n font-size: 1em;\n min-width: 175px;\n transition: 0.15s all ease;\n border: 1px solid white;\n -webkit-appearance: none;\n}\n.search-bar input[data-v-01d307b9]::-webkit-input-placeholder {\n color: #1B2539;\n font-size: 0.875em;\n font-weight: 500;\n}\n.search-bar input[data-v-01d307b9]::-moz-placeholder {\n color: #1B2539;\n font-size: 0.875em;\n font-weight: 500;\n}\n.search-bar input[data-v-01d307b9]:-ms-input-placeholder {\n color: #1B2539;\n font-size: 0.875em;\n font-weight: 500;\n}\n.search-bar input[data-v-01d307b9]::-ms-input-placeholder {\n color: #1B2539;\n font-size: 0.875em;\n font-weight: 500;\n}\n.search-bar input[data-v-01d307b9]::placeholder {\n color: #1B2539;\n font-size: 0.875em;\n font-weight: 500;\n}\n.search-bar input[data-v-01d307b9]:focus {\n border: 1px solid #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\n.search-bar input:focus + .icon path[data-v-01d307b9] {\n fill: #00BC7E;\n}\n.search-bar .icon[data-v-01d307b9] {\n position: absolute;\n top: 0;\n left: 0;\n padding: 11px 15px;\n}\n.search-bar .icon .pointer[data-v-01d307b9] {\n cursor: pointer;\n}\n@media only screen and (max-width: 1024px) {\n.search-bar input[data-v-01d307b9] {\n max-width: 190px;\n padding-right: 0;\n}\n}\n@media only screen and (max-width: 690px) {\n.search-bar input[data-v-01d307b9] {\n min-width: initial;\n width: 100%;\n max-width: initial;\n padding: 9px 20px 9px 30px;\n}\n.search-bar input[data-v-01d307b9]:focus {\n border: 1px solid transparent;\n box-shadow: none;\n}\n.search-bar .icon[data-v-01d307b9] {\n padding: 11px 15px 11px 0;\n}\n}\n@media (prefers-color-scheme: dark) {\n.search-bar input[data-v-01d307b9] {\n border-color: transparent;\n color: #bec6cf;\n}\n.search-bar input[data-v-01d307b9]::-webkit-input-placeholder {\n color: #7d858c;\n}\n.search-bar input[data-v-01d307b9]::-moz-placeholder {\n color: #7d858c;\n}\n.search-bar input[data-v-01d307b9]:-ms-input-placeholder {\n color: #7d858c;\n}\n.search-bar input[data-v-01d307b9]::-ms-input-placeholder {\n color: #7d858c;\n}\n.search-bar input[data-v-01d307b9]::placeholder {\n color: #7d858c;\n}\n.search-bar .icon svg path[data-v-01d307b9] {\n fill: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(21);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".toolbar-wrapper[data-v-f58fc246] {\n padding-top: 10px;\n padding-bottom: 10px;\n display: flex;\n position: relative;\n z-index: 2;\n}\n.toolbar-wrapper > div[data-v-f58fc246] {\n flex-grow: 1;\n align-self: center;\n white-space: nowrap;\n}\n.directory-name[data-v-f58fc246] {\n vertical-align: middle;\n font-size: 1.0625em;\n color: #1B2539;\n font-weight: 700;\n max-width: 220px;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n}\n.icon-back[data-v-f58fc246] {\n vertical-align: middle;\n cursor: pointer;\n margin-right: 6px;\n opacity: 0.15;\n pointer-events: none;\n transition: 150ms all ease;\n}\n.icon-back.is-active[data-v-f58fc246] {\n opacity: 1;\n pointer-events: initial;\n}\n.toolbar-go-back[data-v-f58fc246] {\n cursor: pointer;\n}\n.toolbar-go-back .folder-options[data-v-f58fc246] {\n vertical-align: middle;\n margin-left: 6px;\n padding: 1px 4px;\n line-height: 0;\n border-radius: 3px;\n transition: 150ms all ease;\n}\n.toolbar-go-back .folder-options svg circle[data-v-f58fc246] {\n transition: 150ms all ease;\n}\n.toolbar-go-back .folder-options[data-v-f58fc246]:hover {\n background: #f4f5f6;\n}\n.toolbar-go-back .folder-options:hover svg circle[data-v-f58fc246] {\n stroke: #00BC7E;\n}\n.toolbar-go-back .folder-options .icon-more[data-v-f58fc246] {\n vertical-align: middle;\n}\n.toolbar-go-back .back-directory-title[data-v-f58fc246] {\n font-size: 0.9375em;\n line-height: 1;\n font-weight: 700;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n vertical-align: middle;\n color: #1B2539;\n}\n.toolbar-position[data-v-f58fc246] {\n text-align: center;\n}\n.toolbar-position span[data-v-f58fc246] {\n font-size: 1.0625em;\n font-weight: 600;\n}\n.toolbar-tools[data-v-f58fc246] {\n text-align: right;\n}\n.toolbar-tools .toolbar-button-wrapper[data-v-f58fc246] {\n margin-left: 28px;\n display: inline-block;\n vertical-align: middle;\n}\n.toolbar-tools .toolbar-button-wrapper[data-v-f58fc246]:first-child {\n margin-left: 0 !important;\n}\n.toolbar-tools .button[data-v-f58fc246] {\n margin-left: 5px;\n}\n.toolbar-tools .button.active[data-v-f58fc246] svg line, .toolbar-tools .button.active[data-v-f58fc246] svg circle {\n stroke: #00BC7E;\n}\n.toolbar-tools .button.is-inactive[data-v-f58fc246] {\n opacity: 0.25;\n pointer-events: none;\n}\n.toolbar-tools .button[data-v-f58fc246]:first-child {\n margin-left: 0;\n}\n@media only screen and (max-width: 1024px) {\n.toolbar-go-back .back-directory-title[data-v-f58fc246] {\n max-width: 120px;\n}\n.toolbar-tools .button[data-v-f58fc246] {\n margin-left: 0;\n height: 40px;\n width: 40px;\n}\n.toolbar-tools .toolbar-button-wrapper[data-v-f58fc246] {\n margin-left: 25px;\n}\n}\n@media only screen and (max-width: 960px) {\n#desktop-toolbar[data-v-f58fc246] {\n display: none;\n}\n}\n@media (prefers-color-scheme: dark) {\n.toolbar .directory-name[data-v-f58fc246] {\n color: #bec6cf;\n}\n.toolbar-go-back .back-directory-title[data-v-f58fc246] {\n color: #bec6cf;\n}\n.toolbar-go-back .folder-options[data-v-f58fc246]:hover {\n background: #1e2024;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(22);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".show-actions[data-v-1fb37cfa] {\n cursor: pointer;\n padding: 4px 26px;\n}\n.show-actions .icon-action[data-v-1fb37cfa] {\n font-size: 0.75em;\n}\n.show-actions path[data-v-1fb37cfa] {\n fill: #00BC7E;\n}\n.file-wrapper[data-v-1fb37cfa] {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n position: relative;\n text-align: center;\n display: inline-block;\n vertical-align: text-top;\n width: 100%;\n}\n.file-wrapper .item-name[data-v-1fb37cfa] {\n display: block;\n padding-left: 10px;\n padding-right: 10px;\n line-height: 20px;\n}\n.file-wrapper .item-name .item-size[data-v-1fb37cfa],\n.file-wrapper .item-name .item-length[data-v-1fb37cfa] {\n font-size: 0.6875em;\n font-weight: 400;\n color: rgba(27, 37, 57, 0.7);\n display: inline-block;\n}\n.file-wrapper .item-name .item-info[data-v-1fb37cfa] {\n display: block;\n line-height: 1;\n}\n.file-wrapper .item-name .item-shared[data-v-1fb37cfa] {\n display: inline-block;\n}\n.file-wrapper .item-name .item-shared .label[data-v-1fb37cfa] {\n font-size: 0.75em;\n font-weight: 400;\n color: #00BC7E;\n}\n.file-wrapper .item-name .item-shared .shared-icon[data-v-1fb37cfa] {\n vertical-align: middle;\n}\n.file-wrapper .item-name .item-shared .shared-icon path[data-v-1fb37cfa], .file-wrapper .item-name .item-shared .shared-icon circle[data-v-1fb37cfa], .file-wrapper .item-name .item-shared .shared-icon line[data-v-1fb37cfa] {\n stroke: #00BC7E;\n}\n.file-wrapper .item-name .name[data-v-1fb37cfa] {\n color: #1B2539;\n font-size: 0.875em;\n font-weight: 700;\n max-height: 40px;\n overflow: hidden;\n text-overflow: ellipsis;\n word-break: break-all;\n}\n.file-wrapper .item-name .name[contenteditable][data-v-1fb37cfa] {\n -webkit-user-select: text;\n -moz-user-select: text;\n -ms-user-select: text;\n user-select: text;\n}\n.file-wrapper .item-name .name[contenteditable='true'][data-v-1fb37cfa]:hover {\n text-decoration: underline;\n}\n.file-wrapper .item-name .name.actived[data-v-1fb37cfa] {\n max-height: initial;\n}\n.file-wrapper.selected .file-item[data-v-1fb37cfa] {\n background: #f4f5f6;\n}\n.file-wrapper .file-item[data-v-1fb37cfa] {\n border: 2px dashed transparent;\n width: 165px;\n margin: 0 auto;\n cursor: pointer;\n position: relative;\n padding: 15px 0;\n}\n.file-wrapper .file-item.is-dragenter[data-v-1fb37cfa] {\n border: 2px dashed #00BC7E;\n border-radius: 8px;\n}\n.file-wrapper .file-item[data-v-1fb37cfa]:hover, .file-wrapper .file-item.is-clicked[data-v-1fb37cfa] {\n border-radius: 8px;\n background: #f4f5f6;\n}\n.file-wrapper .file-item:hover .item-name .name[data-v-1fb37cfa], .file-wrapper .file-item.is-clicked .item-name .name[data-v-1fb37cfa] {\n color: #00BC7E;\n}\n.file-wrapper .icon-item[data-v-1fb37cfa] {\n text-align: center;\n position: relative;\n height: 110px;\n margin-bottom: 20px;\n display: flex;\n align-items: center;\n}\n.file-wrapper .icon-item .file-link[data-v-1fb37cfa] {\n display: block;\n}\n.file-wrapper .icon-item .file-icon[data-v-1fb37cfa] {\n font-size: 6.25em;\n margin: 0 auto;\n}\n.file-wrapper .icon-item .file-icon path[data-v-1fb37cfa] {\n fill: #fafafc;\n stroke: #dfe0e8;\n stroke-width: 1;\n}\n.file-wrapper .icon-item .file-icon-text[data-v-1fb37cfa] {\n margin: 5px auto 0;\n position: absolute;\n text-align: center;\n left: 0;\n right: 0;\n color: #00BC7E;\n font-size: 0.75em;\n font-weight: 600;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n max-width: 65px;\n max-height: 20px;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.file-wrapper .icon-item .image[data-v-1fb37cfa] {\n max-width: 95%;\n -o-object-fit: cover;\n object-fit: cover;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n height: 110px;\n border-radius: 5px;\n margin: 0 auto;\n pointer-events: none;\n}\n.file-wrapper .icon-item .folder-icon[data-v-1fb37cfa] {\n align-items: flex-end;\n font-size: 5em;\n margin: 0 auto;\n}\n.file-wrapper .icon-item .folder-icon path[data-v-1fb37cfa] {\n fill: #00BC7E;\n}\n.file-wrapper .icon-item .folder-icon.is-deleted path[data-v-1fb37cfa] {\n fill: #EBEBEB;\n}\n@media only screen and (max-width: 960px) {\n.file-wrapper .icon-item[data-v-1fb37cfa] {\n margin-bottom: 15px;\n}\n}\n@media only screen and (max-width: 690px) {\n.file-wrapper .file-item[data-v-1fb37cfa] {\n width: 120px;\n}\n.file-wrapper .icon-item[data-v-1fb37cfa] {\n margin-bottom: 10px;\n height: 90px;\n}\n.file-wrapper .icon-item .file-icon[data-v-1fb37cfa] {\n font-size: 4.6875em;\n}\n.file-wrapper .icon-item .file-icon-text[data-v-1fb37cfa] {\n font-size: 0.75em;\n}\n.file-wrapper .icon-item .folder-icon[data-v-1fb37cfa] {\n font-size: 4.6875em;\n margin-top: 0;\n margin-bottom: 0;\n}\n.file-wrapper .icon-item .image[data-v-1fb37cfa] {\n width: 90px;\n height: 90px;\n}\n.file-wrapper .item-name .name[data-v-1fb37cfa] {\n font-size: 0.8125em;\n line-height: .9;\n max-height: 30px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.file-wrapper .icon-item .file-icon path[data-v-1fb37cfa] {\n fill: #1e2024;\n stroke: #2F3C54;\n}\n.file-wrapper .icon-item .folder-icon.is-deleted path[data-v-1fb37cfa] {\n fill: #2a2c32;\n}\n.file-wrapper .file-item[data-v-1fb37cfa]:hover, .file-wrapper .file-item.is-clicked[data-v-1fb37cfa] {\n background: #1e2024;\n}\n.file-wrapper .file-item:hover .file-icon path[data-v-1fb37cfa], .file-wrapper .file-item.is-clicked .file-icon path[data-v-1fb37cfa] {\n fill: #111314;\n}\n.file-wrapper .item-name .name[data-v-1fb37cfa] {\n color: #bec6cf;\n}\n.file-wrapper .item-name .item-size[data-v-1fb37cfa],\n .file-wrapper .item-name .item-length[data-v-1fb37cfa] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(23);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".mobile-toolbar[data-v-d0931b78] {\n background: white;\n text-align: center;\n display: none;\n padding: 10px 0;\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 6;\n}\n.mobile-toolbar > div[data-v-d0931b78] {\n width: 100%;\n flex-grow: 1;\n align-self: center;\n white-space: nowrap;\n}\n.mobile-toolbar .go-back-button[data-v-d0931b78] {\n text-align: left;\n flex: 1;\n}\n.mobile-toolbar .go-back-button .icon-back[data-v-d0931b78] {\n vertical-align: middle;\n cursor: pointer;\n opacity: 0;\n visibility: hidden;\n margin-top: -2px;\n}\n.mobile-toolbar .go-back-button .icon-back.is-visible[data-v-d0931b78] {\n opacity: 1;\n visibility: visible;\n}\n.mobile-toolbar .directory-name[data-v-d0931b78] {\n line-height: 1;\n text-align: center;\n width: 100%;\n vertical-align: middle;\n font-size: 1em;\n color: #1B2539;\n font-weight: 700;\n max-width: 220px;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n}\n.mobile-toolbar .more-actions-button[data-v-d0931b78] {\n flex: 1;\n text-align: right;\n position: relative;\n}\n.mobile-toolbar .more-actions-button .tap-area[data-v-d0931b78] {\n display: inline-block;\n padding: 10px;\n position: absolute;\n right: -10px;\n top: -20px;\n}\n.mobile-toolbar .more-actions-button .tap-area path[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area line[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area polyline[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area rect[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area circle[data-v-d0931b78] {\n stroke: #1B2539;\n}\n@media only screen and (max-width: 960px) {\n.mobile-toolbar[data-v-d0931b78] {\n display: flex;\n}\n}\n@media (prefers-color-scheme: dark) {\n.mobile-toolbar[data-v-d0931b78] {\n background: #111314;\n}\n.mobile-toolbar .directory-name[data-v-d0931b78] {\n color: #bec6cf;\n}\n.mobile-toolbar .more-actions-button .tap-area path[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area line[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area polyline[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area rect[data-v-d0931b78], .mobile-toolbar .more-actions-button .tap-area circle[data-v-d0931b78] {\n stroke: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(24);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".mobile-action-button[data-v-160992a2] {\n background: #f4f5f6;\n margin-right: 15px;\n border-radius: 8px;\n padding: 7px 10px;\n cursor: pointer;\n border: none;\n}\n.mobile-action-button .flex[data-v-160992a2] {\n display: flex;\n align-items: center;\n}\n.mobile-action-button .icon[data-v-160992a2] {\n vertical-align: middle;\n margin-right: 10px;\n font-size: 0.875em;\n}\n.mobile-action-button .label[data-v-160992a2] {\n vertical-align: middle;\n font-size: 0.875em;\n font-weight: 700;\n color: #1B2539;\n}\n@media (prefers-color-scheme: dark) {\n.mobile-action-button[data-v-160992a2] {\n background: #1e2024;\n}\n.mobile-action-button path[data-v-160992a2], .mobile-action-button line[data-v-160992a2], .mobile-action-button polyline[data-v-160992a2], .mobile-action-button rect[data-v-160992a2], .mobile-action-button circle[data-v-160992a2] {\n stroke: #00BC7E;\n}\n.mobile-action-button .label[data-v-160992a2] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(25);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".mobile-action-button[data-v-8b0e9378] {\n background: #f4f5f6;\n margin-right: 15px;\n border-radius: 8px;\n padding: 7px 10px;\n cursor: pointer;\n border: none;\n transition: 150ms all ease;\n}\n.mobile-action-button .flex[data-v-8b0e9378] {\n display: flex;\n align-items: center;\n}\n.mobile-action-button .icon[data-v-8b0e9378] {\n margin-right: 10px;\n font-size: 0.875em;\n}\n.mobile-action-button .icon path[data-v-8b0e9378], .mobile-action-button .icon line[data-v-8b0e9378], .mobile-action-button .icon polyline[data-v-8b0e9378], .mobile-action-button .icon rect[data-v-8b0e9378], .mobile-action-button .icon circle[data-v-8b0e9378] {\n transition: 150ms all ease;\n}\n.mobile-action-button .label[data-v-8b0e9378] {\n transition: 150ms all ease;\n font-size: 0.875em;\n font-weight: 700;\n color: #1B2539;\n}\n.mobile-action-button[data-v-8b0e9378]:active {\n transform: scale(0.95);\n}\n.mobile-action-button[data-v-8b0e9378]:hover {\n background: rgba(0, 188, 126, 0.1);\n}\n.mobile-action-button:hover .icon path[data-v-8b0e9378], .mobile-action-button:hover .icon line[data-v-8b0e9378], .mobile-action-button:hover .icon polyline[data-v-8b0e9378], .mobile-action-button:hover .icon rect[data-v-8b0e9378], .mobile-action-button:hover .icon circle[data-v-8b0e9378] {\n stroke: #00BC7E;\n}\n.mobile-action-button:hover .label[data-v-8b0e9378] {\n color: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.mobile-action-button[data-v-8b0e9378] {\n background: #1e2024;\n}\n.mobile-action-button path[data-v-8b0e9378], .mobile-action-button line[data-v-8b0e9378], .mobile-action-button polyline[data-v-8b0e9378], .mobile-action-button rect[data-v-8b0e9378], .mobile-action-button circle[data-v-8b0e9378] {\n stroke: #00BC7E;\n}\n.mobile-action-button .label[data-v-8b0e9378] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(26);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,"#mobile-actions-wrapper[data-v-7aca7cb5] {\n display: none;\n background: white;\n position: -webkit-sticky;\n position: sticky;\n top: 35px;\n z-index: 3;\n}\n.mobile-actions[data-v-7aca7cb5] {\n padding-top: 10px;\n padding-bottom: 10px;\n white-space: nowrap;\n overflow-x: auto;\n}\n@media only screen and (max-width: 960px) {\n#mobile-actions-wrapper[data-v-7aca7cb5] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n#mobile-actions-wrapper[data-v-7aca7cb5] {\n background: #111314;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(27);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".preview[data-v-3ad9d4c3] {\n width: 100%;\n display: block;\n margin-bottom: 7px;\n}\n.preview img[data-v-3ad9d4c3] {\n border-radius: 4px;\n overflow: hidden;\n width: 100%;\n -o-object-fit: cover;\n object-fit: cover;\n}\n.preview audio[data-v-3ad9d4c3] {\n width: 100%;\n}\n.preview audio[data-v-3ad9d4c3]::-webkit-media-controls-panel {\n background-color: #f4f5f6;\n}\n.preview audio[data-v-3ad9d4c3]::-webkit-media-controls-play-button {\n color: #00BC7E;\n}\n.preview video[data-v-3ad9d4c3] {\n width: 100%;\n height: auto;\n border-radius: 3px;\n}\n",""])},function(t,e,n){"use strict";var a=n(28);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form-wrapper[data-v-26cd2e26] {\n padding: 0 20px;\n}\n.input-wrapper[data-v-26cd2e26] {\n margin-bottom: 20px;\n}\n.input-wrapper[data-v-26cd2e26]:last-child {\n margin-bottom: 0;\n}\n.input-wrapper input[data-v-26cd2e26] {\n width: 100%;\n color: #1B2539;\n}\n.input-wrapper input.is-error[data-v-26cd2e26] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\n.inline-wrapper[data-v-26cd2e26] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.inline-wrapper.icon-append .input-text[data-v-26cd2e26] {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.inline-wrapper.icon-append .icon[data-v-26cd2e26] {\n background: black;\n padding: 15px 18px;\n border-top-right-radius: 8px;\n border-bottom-right-radius: 8px;\n text-align: center;\n line-height: 0;\n}\n.inline-wrapper.icon-append .icon path[data-v-26cd2e26], .inline-wrapper.icon-append .icon polyline[data-v-26cd2e26] {\n stroke: white;\n}\n.input-label[data-v-26cd2e26] {\n font-size: 0.75em;\n color: #1B2539;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n@media (prefers-color-scheme: dark) {\n.inline-wrapper.icon-append .icon[data-v-26cd2e26] {\n background: rgba(0, 188, 126, 0.1);\n}\n.inline-wrapper.icon-append .icon path[data-v-26cd2e26], .inline-wrapper.icon-append .icon polyline[data-v-26cd2e26] {\n stroke: #00BC7E;\n}\n.input-label[data-v-26cd2e26] {\n color: #bec6cf;\n}\n}\n.form[data-v-26cd2e26] {\n max-width: 700px;\n}\n.form.inline-form[data-v-26cd2e26] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-26cd2e26] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-26cd2e26] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-26cd2e26] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-26cd2e26] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-26cd2e26] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-26cd2e26] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-26cd2e26]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-26cd2e26] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-26cd2e26] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-26cd2e26] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-26cd2e26] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-26cd2e26] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-26cd2e26] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-26cd2e26] {\n margin-left: 20px;\n}\n.error-message[data-v-26cd2e26] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-26cd2e26] {\n width: 100%;\n}\ntextarea[data-v-26cd2e26],\ninput[type="password"][data-v-26cd2e26],\ninput[type="text"][data-v-26cd2e26],\ninput[type="number"][data-v-26cd2e26],\ninput[type="email"][data-v-26cd2e26] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-26cd2e26],\ninput[type="password"].is-error[data-v-26cd2e26],\ninput[type="text"].is-error[data-v-26cd2e26],\ninput[type="number"].is-error[data-v-26cd2e26],\ninput[type="email"].is-error[data-v-26cd2e26] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-26cd2e26]::-webkit-input-placeholder, input[type="password"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="text"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="number"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="email"][data-v-26cd2e26]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-26cd2e26]::-moz-placeholder, input[type="password"][data-v-26cd2e26]::-moz-placeholder, input[type="text"][data-v-26cd2e26]::-moz-placeholder, input[type="number"][data-v-26cd2e26]::-moz-placeholder, input[type="email"][data-v-26cd2e26]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-26cd2e26]:-ms-input-placeholder, input[type="password"][data-v-26cd2e26]:-ms-input-placeholder, input[type="text"][data-v-26cd2e26]:-ms-input-placeholder, input[type="number"][data-v-26cd2e26]:-ms-input-placeholder, input[type="email"][data-v-26cd2e26]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-26cd2e26]::-ms-input-placeholder, input[type="password"][data-v-26cd2e26]::-ms-input-placeholder, input[type="text"][data-v-26cd2e26]::-ms-input-placeholder, input[type="number"][data-v-26cd2e26]::-ms-input-placeholder, input[type="email"][data-v-26cd2e26]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-26cd2e26]::placeholder,\ninput[type="password"][data-v-26cd2e26]::placeholder,\ninput[type="text"][data-v-26cd2e26]::placeholder,\ninput[type="number"][data-v-26cd2e26]::placeholder,\ninput[type="email"][data-v-26cd2e26]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-26cd2e26]:focus,\ninput[type="password"][data-v-26cd2e26]:focus,\ninput[type="text"][data-v-26cd2e26]:focus,\ninput[type="number"][data-v-26cd2e26]:focus,\ninput[type="email"][data-v-26cd2e26]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-26cd2e26],\ninput[type="password"][disabled][data-v-26cd2e26],\ninput[type="text"][disabled][data-v-26cd2e26],\ninput[type="number"][disabled][data-v-26cd2e26],\ninput[type="email"][disabled][data-v-26cd2e26] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-26cd2e26] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-26cd2e26], .additional-link a[data-v-26cd2e26] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-26cd2e26]:hover, .additional-link a[data-v-26cd2e26]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-26cd2e26] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-26cd2e26] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-26cd2e26], .form textarea[data-v-26cd2e26] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-26cd2e26] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-26cd2e26] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-26cd2e26] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-26cd2e26] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-26cd2e26] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-26cd2e26] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-26cd2e26] {\n display: block;\n}\n.single-line-form .submit-button[data-v-26cd2e26] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-26cd2e26],\n input[type="password"][data-v-26cd2e26],\n input[type="number"][data-v-26cd2e26],\n input[type="text"][data-v-26cd2e26],\n input[type="email"][data-v-26cd2e26] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-26cd2e26] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-26cd2e26] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-26cd2e26] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-26cd2e26] {\n color: #bec6cf;\n}\ntextarea[data-v-26cd2e26],\n input[type="password"][data-v-26cd2e26],\n input[type="text"][data-v-26cd2e26],\n input[type="number"][data-v-26cd2e26],\n input[type="email"][data-v-26cd2e26] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-26cd2e26]::-webkit-input-placeholder, input[type="password"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="text"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="number"][data-v-26cd2e26]::-webkit-input-placeholder, input[type="email"][data-v-26cd2e26]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-26cd2e26]::-moz-placeholder, input[type="password"][data-v-26cd2e26]::-moz-placeholder, input[type="text"][data-v-26cd2e26]::-moz-placeholder, input[type="number"][data-v-26cd2e26]::-moz-placeholder, input[type="email"][data-v-26cd2e26]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-26cd2e26]:-ms-input-placeholder, input[type="password"][data-v-26cd2e26]:-ms-input-placeholder, input[type="text"][data-v-26cd2e26]:-ms-input-placeholder, input[type="number"][data-v-26cd2e26]:-ms-input-placeholder, input[type="email"][data-v-26cd2e26]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-26cd2e26]::-ms-input-placeholder, input[type="password"][data-v-26cd2e26]::-ms-input-placeholder, input[type="text"][data-v-26cd2e26]::-ms-input-placeholder, input[type="number"][data-v-26cd2e26]::-ms-input-placeholder, input[type="email"][data-v-26cd2e26]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-26cd2e26]::placeholder,\n input[type="password"][data-v-26cd2e26]::placeholder,\n input[type="text"][data-v-26cd2e26]::placeholder,\n input[type="number"][data-v-26cd2e26]::placeholder,\n input[type="email"][data-v-26cd2e26]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-26cd2e26],\n input[type="password"][disabled][data-v-26cd2e26],\n input[type="text"][disabled][data-v-26cd2e26],\n input[type="number"][disabled][data-v-26cd2e26],\n input[type="email"][disabled][data-v-26cd2e26] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.copy-input.small.icon-append .icon[data-v-26cd2e26] {\n padding: 10px;\n}\n.copy-input.small input[data-v-26cd2e26] {\n padding: 6px 10px;\n font-size: 0.8125em;\n}\n.copy-input .icon[data-v-26cd2e26] {\n cursor: pointer;\n}\n.copy-input input[data-v-26cd2e26] {\n text-overflow: ellipsis;\n}\n.copy-input input[data-v-26cd2e26]:disabled {\n color: #1B2539;\n cursor: pointer;\n}\n@media (prefers-color-scheme: dark) {\n.copy-input input[data-v-26cd2e26] {\n color: #bec6cf;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(29);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".list-info-item[data-v-2a52a312] {\n display: block;\n padding-bottom: 20px;\n}\n.list-info-item .action-button[data-v-2a52a312] {\n cursor: pointer;\n}\n.list-info-item .action-button .edit-icon[data-v-2a52a312] {\n display: inline-block;\n margin-left: 3px;\n}\n.list-info-item b[data-v-2a52a312] {\n display: block;\n font-size: 0.8125em;\n color: #00BC7E;\n margin-bottom: 2px;\n}\n.list-info-item span[data-v-2a52a312] {\n display: inline-block;\n font-size: 0.875em;\n font-weight: bold;\n color: #1B2539;\n}\n@media (prefers-color-scheme: dark) {\n.list-info-item span[data-v-2a52a312] {\n color: #bec6cf;\n}\n.list-info-item .action-button .icon[data-v-2a52a312] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(30);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,"",""])},function(t,e,n){"use strict";var a=n(31);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".file-info-content[data-v-3eb6e95d] {\n padding-bottom: 20px;\n}\n.file-headline[data-v-3eb6e95d] {\n margin-bottom: 20px;\n border-radius: 8px;\n}\n.file-headline .flex[data-v-3eb6e95d] {\n display: flex;\n align-items: flex-start;\n}\n.file-headline .icon-preview[data-v-3eb6e95d] {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n text-align: center;\n cursor: pointer;\n white-space: nowrap;\n outline: none;\n border: none;\n}\n.file-headline .file-info[data-v-3eb6e95d] {\n padding-left: 10px;\n width: 100%;\n word-break: break-all;\n}\n.file-headline .file-info .name[data-v-3eb6e95d] {\n font-size: 0.875em;\n font-weight: 700;\n line-height: 1.4;\n display: block;\n color: #1B2539;\n}\n.file-headline .file-info .mimetype[data-v-3eb6e95d] {\n font-size: 0.75em;\n font-weight: 600;\n color: #00BC7E;\n display: block;\n}\n.sharelink[data-v-3eb6e95d] {\n display: flex;\n width: 100%;\n align-items: center;\n margin-top: 10px;\n}\n.sharelink .lock-icon[data-v-3eb6e95d] {\n display: inline-block;\n width: 15px;\n margin-right: 9px;\n cursor: pointer;\n}\n.sharelink .copy-sharelink[data-v-3eb6e95d] {\n width: 100%;\n}\n@media (prefers-color-scheme: dark) {\n.file-headline .file-info .name[data-v-3eb6e95d] {\n color: #bec6cf;\n}\n.sharelink .lock-icon:hover path[data-v-3eb6e95d], .sharelink .lock-icon:hover rect[data-v-3eb6e95d] {\n stroke: #00BC7E;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(32);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".file-wrapper[data-v-0e147eab] {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n position: relative;\n}\n.file-wrapper[data-v-0e147eab]:hover {\n border-color: transparent;\n}\n.file-wrapper .actions[data-v-0e147eab] {\n text-align: right;\n width: 50px;\n}\n.file-wrapper .actions .show-actions[data-v-0e147eab] {\n cursor: pointer;\n padding: 12px 6px 12px;\n}\n.file-wrapper .actions .show-actions .icon-action[data-v-0e147eab] {\n font-size: 0.875em;\n}\n.file-wrapper .actions .show-actions .icon-action path[data-v-0e147eab] {\n fill: #00BC7E;\n}\n.file-wrapper .item-name[data-v-0e147eab] {\n display: block;\n width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.file-wrapper .item-name .item-info[data-v-0e147eab] {\n display: block;\n line-height: 1;\n}\n.file-wrapper .item-name .item-shared[data-v-0e147eab] {\n display: inline-block;\n}\n.file-wrapper .item-name .item-shared .label[data-v-0e147eab] {\n font-size: 0.75em;\n font-weight: 400;\n color: #00BC7E;\n}\n.file-wrapper .item-name .item-shared .shared-icon[data-v-0e147eab] {\n vertical-align: middle;\n}\n.file-wrapper .item-name .item-shared .shared-icon path[data-v-0e147eab], .file-wrapper .item-name .item-shared .shared-icon circle[data-v-0e147eab], .file-wrapper .item-name .item-shared .shared-icon line[data-v-0e147eab] {\n stroke: #00BC7E;\n}\n.file-wrapper .item-name .item-size[data-v-0e147eab],\n.file-wrapper .item-name .item-length[data-v-0e147eab] {\n font-size: 0.6875em;\n font-weight: 400;\n color: rgba(27, 37, 57, 0.7);\n}\n.file-wrapper .item-name .name[data-v-0e147eab] {\n white-space: nowrap;\n}\n.file-wrapper .item-name .name[contenteditable][data-v-0e147eab] {\n -webkit-user-select: text;\n -moz-user-select: text;\n -ms-user-select: text;\n user-select: text;\n}\n.file-wrapper .item-name .name[contenteditable='true'][data-v-0e147eab]:hover {\n text-decoration: underline;\n}\n.file-wrapper .item-name .name[data-v-0e147eab] {\n color: #1B2539;\n font-size: 0.875em;\n font-weight: 700;\n max-height: 40px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.file-wrapper .item-name .name.actived[data-v-0e147eab] {\n max-height: initial;\n}\n.file-wrapper.selected .file-item[data-v-0e147eab] {\n background: #f4f5f6;\n}\n.file-wrapper .icon-item[data-v-0e147eab] {\n text-align: center;\n position: relative;\n flex: 0 0 50px;\n line-height: 0;\n margin-right: 20px;\n}\n.file-wrapper .icon-item .folder-icon[data-v-0e147eab] {\n font-size: 3.25em;\n}\n.file-wrapper .icon-item .folder-icon path[data-v-0e147eab] {\n fill: #00BC7E;\n}\n.file-wrapper .icon-item .folder-icon.is-deleted path[data-v-0e147eab] {\n fill: #EBEBEB;\n}\n.file-wrapper .icon-item .file-icon[data-v-0e147eab] {\n font-size: 2.8125em;\n}\n.file-wrapper .icon-item .file-icon path[data-v-0e147eab] {\n fill: #fafafc;\n stroke: #dfe0e8;\n stroke-width: 1;\n}\n.file-wrapper .icon-item .file-icon-text[data-v-0e147eab] {\n line-height: 1;\n top: 40%;\n font-size: 0.6875em;\n margin: 0 auto;\n position: absolute;\n text-align: center;\n left: 0;\n right: 0;\n color: #00BC7E;\n font-weight: 600;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n max-width: 50px;\n max-height: 20px;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.file-wrapper .icon-item .image[data-v-0e147eab] {\n -o-object-fit: cover;\n object-fit: cover;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n max-width: 100%;\n border-radius: 5px;\n width: 50px;\n height: 50px;\n pointer-events: none;\n}\n.file-wrapper .file-item[data-v-0e147eab] {\n border: 2px dashed transparent;\n width: 100%;\n display: flex;\n align-items: center;\n padding: 7px;\n}\n.file-wrapper .file-item.is-dragenter[data-v-0e147eab] {\n border: 2px dashed #00BC7E;\n border-radius: 8px;\n}\n.file-wrapper .file-item[data-v-0e147eab]:hover, .file-wrapper .file-item.is-clicked[data-v-0e147eab] {\n border-radius: 8px;\n background: #f4f5f6;\n}\n.file-wrapper .file-item:hover .item-name .name[data-v-0e147eab], .file-wrapper .file-item.is-clicked .item-name .name[data-v-0e147eab] {\n color: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.file-wrapper .icon-item .file-icon path[data-v-0e147eab] {\n fill: #1e2024;\n stroke: #2F3C54;\n}\n.file-wrapper .icon-item .folder-icon.is-deleted path[data-v-0e147eab] {\n fill: #2a2c32;\n}\n.file-wrapper .file-item[data-v-0e147eab]:hover, .file-wrapper .file-item.is-clicked[data-v-0e147eab] {\n background: #1e2024;\n}\n.file-wrapper .file-item:hover .file-icon path[data-v-0e147eab], .file-wrapper .file-item.is-clicked .file-icon path[data-v-0e147eab] {\n fill: #111314;\n}\n.file-wrapper .item-name .name[data-v-0e147eab] {\n color: #bec6cf;\n}\n.file-wrapper .item-name .item-size[data-v-0e147eab],\n .file-wrapper .item-name .item-length[data-v-0e147eab] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(33);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".empty-message[data-v-f1b82072] {\n text-align: center;\n display: flex;\n align-items: center;\n height: 100%;\n}\n.empty-message .message[data-v-f1b82072] {\n margin: 0 auto;\n}\n.empty-message .message p[data-v-f1b82072] {\n margin-top: 10px;\n max-width: 130px;\n font-size: 0.8125em;\n font-weight: 500;\n color: rgba(27, 37, 57, 0.7);\n}\n.empty-message .message .icon path[data-v-f1b82072], .empty-message .message .icon line[data-v-f1b82072], .empty-message .message .icon polyline[data-v-f1b82072], .empty-message .message .icon rect[data-v-f1b82072], .empty-message .message .icon circle[data-v-f1b82072] {\n stroke: #1B2539;\n}\n@media (prefers-color-scheme: dark) {\n.empty-message .message .icon path[data-v-f1b82072], .empty-message .message .icon line[data-v-f1b82072], .empty-message .message .icon polyline[data-v-f1b82072], .empty-message .message .icon rect[data-v-f1b82072], .empty-message .message .icon circle[data-v-f1b82072] {\n stroke: #7d858c;\n}\n.empty-message .message p[data-v-f1b82072] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(34);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".button-base[data-v-00125c42] {\n font-size: 0.9375em;\n font-weight: 700;\n cursor: pointer;\n transition: 0.15s all ease;\n border-radius: 8px;\n border: 0;\n padding: 10px 28px;\n display: inline-block;\n}\n.button-base[data-v-00125c42]:active {\n transform: scale(0.95);\n}\n.button-base.theme[data-v-00125c42] {\n color: #00BC7E;\n background: rgba(0, 188, 126, 0.1);\n}\n.button-base.secondary[data-v-00125c42] {\n color: #1B2539;\n background: #f4f5f6;\n}\n",""])},function(t,e,n){"use strict";var a=n(35);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,"#loading-bar-spinner.spinner[data-v-6cfbc808] {\n left: 50%;\n margin-left: -20px;\n top: 50%;\n margin-top: -20px;\n position: absolute;\n z-index: 19 !important;\n -webkit-animation: loading-bar-spinner-data-v-6cfbc808 400ms linear infinite;\n animation: loading-bar-spinner-data-v-6cfbc808 400ms linear infinite;\n}\n#loading-bar-spinner.spinner .spinner-icon[data-v-6cfbc808] {\n width: 40px;\n height: 40px;\n border: solid 4px transparent;\n border-top-color: #00BC7E !important;\n border-left-color: #00BC7E !important;\n border-radius: 50%;\n}\n@-webkit-keyframes loading-bar-spinner-data-v-6cfbc808 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes loading-bar-spinner-data-v-6cfbc808 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(36);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".empty-page[data-v-bb5aa772] {\n position: absolute;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n margin-top: 85px;\n display: flex;\n align-items: center;\n}\n.empty-page .empty-state[data-v-bb5aa772] {\n margin: 0 auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.text-content[data-v-bb5aa772] {\n text-align: center;\n margin: 30px 0;\n}\n.text-content .title[data-v-bb5aa772] {\n font-size: 1.25em;\n color: #1B2539;\n font-weight: 700;\n margin: 0;\n}\n.text-content .description[data-v-bb5aa772] {\n font-size: 0.8125em;\n color: rgba(27, 37, 57, 0.7);\n margin-bottom: 20px;\n display: block;\n}\n@media (prefers-color-scheme: dark) {\n.text-content .title[data-v-bb5aa772] {\n color: #bec6cf;\n}\n.text-content .description[data-v-bb5aa772] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(37);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".button-upload[data-v-7ceb5f93] {\n display: block;\n text-align: center;\n margin: 20px 0;\n}\n.mobile-search[data-v-7ceb5f93] {\n display: none;\n margin-bottom: 10px;\n margin-top: 10px;\n}\n.file-content[data-v-7ceb5f93] {\n display: flex;\n}\n.file-content.is-dragging[data-v-7ceb5f93] {\n transform: scale(0.99);\n}\n.files-container[data-v-7ceb5f93] {\n overflow-x: hidden;\n overflow-y: auto;\n flex: 0 0 100%;\n transition: 150ms all ease;\n position: relative;\n}\n.files-container.is-fileinfo-visible[data-v-7ceb5f93] {\n flex: 0 1 100%;\n}\n.files-container .file-list.grid[data-v-7ceb5f93] {\n display: grid;\n grid-template-columns: repeat(auto-fill, 180px);\n justify-content: space-evenly;\n}\n.file-info-container[data-v-7ceb5f93] {\n flex: 0 0 300px;\n padding-left: 20px;\n overflow: auto;\n}\n.file-move[data-v-7ceb5f93] {\n transition: transform 0.6s;\n}\n.file-enter-active[data-v-7ceb5f93] {\n transition: all 300ms ease;\n}\n.file-leave-active[data-v-7ceb5f93] {\n transition: all 0ms;\n}\n.file-enter[data-v-7ceb5f93], .file-leave-to[data-v-7ceb5f93] {\n opacity: 0;\n transform: translateX(-20px);\n}\n@media only screen and (min-width: 960px) {\n.file-content[data-v-7ceb5f93] {\n position: absolute;\n top: 72px;\n left: 15px;\n right: 15px;\n bottom: 0;\n transition: 0.3s all ease;\n overflow-y: auto;\n overflow-x: hidden;\n}\n.file-content.is-offset[data-v-7ceb5f93] {\n margin-top: 50px;\n}\n}\n@media only screen and (max-width: 960px) {\n.file-info-container[data-v-7ceb5f93] {\n display: none;\n}\n.mobile-search[data-v-7ceb5f93] {\n display: block;\n}\n}\n@media only screen and (max-width: 690px) {\n.files-container[data-v-7ceb5f93] {\n padding-left: 15px;\n padding-right: 15px;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n position: fixed;\n overflow-y: auto;\n}\n.files-container .file-list.grid[data-v-7ceb5f93] {\n grid-template-columns: repeat(auto-fill, 120px);\n}\n.file-content[data-v-7ceb5f93] {\n position: absolute;\n top: 0;\n left: 0px;\n right: 0px;\n bottom: 0;\n transition: 0.3s all ease;\n}\n.file-content.is-offset[data-v-7ceb5f93] {\n margin-top: 50px;\n}\n.mobile-search[data-v-7ceb5f93] {\n margin-bottom: 0;\n}\n.file-info-container[data-v-7ceb5f93] {\n display: none;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(38);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".menu-option[data-v-0d8a1c0c] {\n display: flex;\n align-items: center;\n}\n.menu-option .icon[data-v-0d8a1c0c] {\n margin-right: 20px;\n line-height: 0;\n}\n.menu-option .text-label[data-v-0d8a1c0c] {\n font-size: 1em;\n}\n.contextmenu[data-v-0d8a1c0c] {\n min-width: 250px;\n position: absolute;\n z-index: 99;\n box-shadow: 0 7px 25px 1px rgba(0, 0, 0, 0.12);\n background: white;\n border-radius: 8px;\n overflow: hidden;\n}\n.contextmenu.showed[data-v-0d8a1c0c] {\n display: block;\n}\n.menu-options[data-v-0d8a1c0c] {\n list-style: none;\n width: 100%;\n margin: 0;\n padding: 0;\n}\n.menu-options .menu-option-group[data-v-0d8a1c0c] {\n padding: 5px 0;\n border-bottom: 1px solid #F8F8F8;\n}\n.menu-options .menu-option-group[data-v-0d8a1c0c]:first-child {\n padding-top: 0;\n}\n.menu-options .menu-option-group[data-v-0d8a1c0c]:last-child {\n padding-bottom: 0;\n border-bottom: none;\n}\n.menu-options .menu-option[data-v-0d8a1c0c] {\n white-space: nowrap;\n font-weight: 700;\n font-size: 0.875em;\n padding: 15px 20px;\n cursor: pointer;\n width: 100%;\n color: #1B2539;\n}\n.menu-options .menu-option[data-v-0d8a1c0c]:hover {\n background: #f4f5f6;\n}\n.menu-options .menu-option:hover .text-label[data-v-0d8a1c0c] {\n color: #00BC7E;\n}\n.menu-options .menu-option:hover path[data-v-0d8a1c0c], .menu-options .menu-option:hover line[data-v-0d8a1c0c], .menu-options .menu-option:hover polyline[data-v-0d8a1c0c], .menu-options .menu-option:hover rect[data-v-0d8a1c0c], .menu-options .menu-option:hover circle[data-v-0d8a1c0c], .menu-options .menu-option:hover polygon[data-v-0d8a1c0c] {\n stroke: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.contextmenu[data-v-0d8a1c0c] {\n background: #1e2024;\n}\n.contextmenu .menu-options .menu-option-group[data-v-0d8a1c0c] {\n border-color: rgba(255, 255, 255, 0.02);\n}\n.contextmenu .menu-options .menu-option[data-v-0d8a1c0c] {\n color: #bec6cf;\n}\n.contextmenu .menu-options .menu-option[data-v-0d8a1c0c]:hover {\n background: rgba(0, 188, 126, 0.1);\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(39);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".button-base[data-v-2a05a1b7] {\n font-size: 0.9375em;\n font-weight: 700;\n cursor: pointer;\n transition: 0.15s all ease;\n border-radius: 8px;\n border: 0;\n padding: 10px 28px;\n white-space: nowrap;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.button-base .icon[data-v-2a05a1b7] {\n line-height: 1;\n margin-right: 10px;\n}\n.button-base[data-v-2a05a1b7]:active {\n transform: scale(0.95);\n}\n.button-base.theme[data-v-2a05a1b7] {\n background: rgba(0, 188, 126, 0.1);\n}\n.button-base.theme .content[data-v-2a05a1b7] {\n color: #00BC7E;\n}\n.button-base.theme polyline[data-v-2a05a1b7], .button-base.theme path[data-v-2a05a1b7] {\n stroke: #00BC7E;\n}\n.button-base.theme-solid[data-v-2a05a1b7] {\n background: #00BC7E;\n}\n.button-base.theme-solid .content[data-v-2a05a1b7] {\n color: white;\n}\n.button-base.theme-solid polyline[data-v-2a05a1b7], .button-base.theme-solid path[data-v-2a05a1b7] {\n stroke: white;\n}\n.button-base.danger[data-v-2a05a1b7] {\n background: rgba(253, 57, 122, 0.1);\n}\n.button-base.danger .content[data-v-2a05a1b7] {\n color: #fd397a;\n}\n.button-base.danger polyline[data-v-2a05a1b7], .button-base.danger path[data-v-2a05a1b7] {\n stroke: #fd397a;\n}\n.button-base.danger-solid[data-v-2a05a1b7] {\n background: #fd397a;\n}\n.button-base.danger-solid .content[data-v-2a05a1b7] {\n color: white;\n}\n.button-base.danger-solid polyline[data-v-2a05a1b7], .button-base.danger-solid path[data-v-2a05a1b7] {\n stroke: white;\n}\n.button-base.secondary[data-v-2a05a1b7] {\n background: #f4f5f6;\n}\n.button-base.secondary .content[data-v-2a05a1b7] {\n color: #1B2539;\n}\n.button-base.secondary polyline[data-v-2a05a1b7], .button-base.secondary path[data-v-2a05a1b7] {\n stroke: #1B2539;\n}\n.sync-alt[data-v-2a05a1b7] {\n -webkit-animation: spin-data-v-2a05a1b7 1s linear infinite;\n animation: spin-data-v-2a05a1b7 1s linear infinite;\n}\n@-webkit-keyframes spin-data-v-2a05a1b7 {\n0% {\n transform: rotate(0);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spin-data-v-2a05a1b7 {\n0% {\n transform: rotate(0);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.button-base.secondary[data-v-2a05a1b7] {\n background: #1e2024;\n}\n.button-base.secondary .content[data-v-2a05a1b7] {\n color: #bec6cf;\n}\n.button-base.secondary polyline[data-v-2a05a1b7], .button-base.secondary path[data-v-2a05a1b7] {\n stroke: #00BC7E;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(40);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".file-item[data-v-54bd57f6] {\n display: flex;\n align-items: center;\n padding: 0 20px;\n}\n.file-item .item-name[data-v-54bd57f6] {\n display: block;\n margin-left: 10px;\n width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.file-item .item-name .item-size[data-v-54bd57f6],\n.file-item .item-name .item-length[data-v-54bd57f6],\n.file-item .item-name .subtitle[data-v-54bd57f6] {\n font-size: 0.75em;\n font-weight: 400;\n color: rgba(27, 37, 57, 0.7);\n display: block;\n}\n.file-item .item-name .name[data-v-54bd57f6] {\n white-space: nowrap;\n color: #1B2539;\n font-size: 0.875em;\n font-weight: 700;\n max-height: 40px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.file-item .icon-item[data-v-54bd57f6] {\n position: relative;\n min-width: 52px;\n text-align: center;\n line-height: 0;\n}\n.file-item .icon-item .file-icon[data-v-54bd57f6] {\n font-size: 2.1875em;\n}\n.file-item .icon-item .file-icon path[data-v-54bd57f6] {\n fill: #fafafc;\n stroke: #dfe0e8;\n stroke-width: 1;\n}\n.file-item .icon-item .folder-icon[data-v-54bd57f6] {\n font-size: 2.25em;\n}\n.file-item .icon-item .folder-icon path[data-v-54bd57f6] {\n fill: #00BC7E;\n}\n.file-item .icon-item .file-icon-text[data-v-54bd57f6] {\n line-height: 1;\n top: 40%;\n font-size: 0.5em;\n margin: 0 auto;\n position: absolute;\n text-align: center;\n left: 0;\n right: 0;\n color: #00BC7E;\n font-weight: 600;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n max-width: 20px;\n max-height: 20px;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.file-item .icon-item .image[data-v-54bd57f6] {\n -o-object-fit: cover;\n object-fit: cover;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n max-width: 100%;\n border-radius: 5px;\n width: 52px;\n height: 52px;\n}\n@media only screen and (max-width: 690px) {\n.file-item[data-v-54bd57f6] {\n padding: 0 15px;\n margin-bottom: 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.file-item .icon-item .file-icon path[data-v-54bd57f6] {\n fill: #1e2024;\n stroke: #2F3C54;\n}\n.file-item .item-name .name[data-v-54bd57f6] {\n color: #bec6cf;\n}\n.file-item .item-name .item-size[data-v-54bd57f6],\n .file-item .item-name .item-length[data-v-54bd57f6],\n .file-item .item-name .subtitle[data-v-54bd57f6] {\n color: #7d858c;\n}\n}\n@media (max-width: 690px) and (prefers-color-scheme: dark) {\n.file-item .icon-item .file-icon path[data-v-54bd57f6] {\n fill: #1e2024;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(41);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".menu-option[data-v-26463e5b] {\n display: flex;\n align-items: center;\n}\n.menu-option .icon[data-v-26463e5b] {\n margin-right: 20px;\n line-height: 0;\n}\n.menu-option .text-label[data-v-26463e5b] {\n font-size: 1em;\n}\n.vignette[data-v-26463e5b] {\n background: rgba(0, 0, 0, 0.35);\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 9;\n cursor: pointer;\n opacity: 1;\n}\n.options[data-v-26463e5b] {\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 99;\n overflow: hidden;\n background: white;\n border-top-left-radius: 12px;\n border-top-right-radius: 12px;\n}\n.options.showed[data-v-26463e5b] {\n display: block;\n}\n.options .item-thumbnail[data-v-26463e5b] {\n padding: 20px 20px 10px;\n margin-bottom: 0px;\n}\n.options .menu-options[data-v-26463e5b] {\n margin-top: 10px;\n list-style: none;\n width: 100%;\n}\n.options .menu-options .menu-option-group[data-v-26463e5b] {\n padding: 5px 0;\n border-bottom: 1px solid #F8F8F8;\n}\n.options .menu-options .menu-option-group[data-v-26463e5b]:first-child {\n padding-top: 0;\n}\n.options .menu-options .menu-option-group[data-v-26463e5b]:last-child {\n padding-bottom: 0;\n border-bottom: none;\n}\n.options .menu-options .menu-option[data-v-26463e5b] {\n font-weight: 700;\n letter-spacing: 0.15px;\n font-size: 0.875em;\n cursor: pointer;\n width: 100%;\n padding: 17px 20px;\n text-align: center;\n}\n.options .menu-options .menu-option[data-v-26463e5b]:last-child {\n border: none;\n}\n@media (prefers-color-scheme: dark) {\n.vignette[data-v-26463e5b] {\n background: rgba(22, 23, 27, 0.7);\n}\n.options[data-v-26463e5b] {\n background: #111314;\n}\n.options .menu-options[data-v-26463e5b] {\n background: #111314;\n}\n.options .menu-options .menu-option-group[data-v-26463e5b] {\n border-color: rgba(255, 255, 255, 0.02);\n}\n.options .menu-options .menu-option[data-v-26463e5b] {\n color: #bec6cf;\n}\n}\n.context-menu-enter-active[data-v-26463e5b],\n.fade-enter-active[data-v-26463e5b] {\n transition: all 200ms;\n}\n.context-menu-leave-active[data-v-26463e5b],\n.fade-leave-active[data-v-26463e5b] {\n transition: all 200ms;\n}\n.fade-enter[data-v-26463e5b],\n.fade-leave-to[data-v-26463e5b] {\n opacity: 0;\n}\n.context-menu-enter[data-v-26463e5b],\n.context-menu-leave-to[data-v-26463e5b] {\n opacity: 0;\n transform: translateY(100%);\n}\n.context-menu-leave-active[data-v-26463e5b] {\n position: absolute;\n}\n",""])},function(t,e,n){"use strict";var a=n(42);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".popup[data-v-e11512a0] {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 20;\n overflow-y: auto;\n display: grid;\n padding: 40px;\n height: 100%;\n}\n.popup-wrapper[data-v-e11512a0] {\n box-shadow: 0 15px 50px 10px rgba(26, 38, 74, 0.12);\n border-radius: 8px;\n background: white;\n margin: auto;\n width: 480px;\n z-index: 12;\n}\n.medium .popup-enter-active[data-v-e11512a0], .large .popup-enter-active[data-v-e11512a0] {\n -webkit-animation: popup-in-data-v-e11512a0 0.35s 0.15s ease both;\n animation: popup-in-data-v-e11512a0 0.35s 0.15s ease both;\n}\n.medium .popup-leave-active[data-v-e11512a0], .large .popup-leave-active[data-v-e11512a0] {\n animation: popup-in-data-v-e11512a0 0.15s ease reverse;\n}\n@-webkit-keyframes popup-in-data-v-e11512a0 {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n@keyframes popup-in-data-v-e11512a0 {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n@-webkit-keyframes popup-slide-in-data-v-e11512a0 {\n0% {\n transform: translateY(100%);\n}\n100% {\n transform: translateY(0);\n}\n}\n@keyframes popup-slide-in-data-v-e11512a0 {\n0% {\n transform: translateY(100%);\n}\n100% {\n transform: translateY(0);\n}\n}\n@media only screen and (max-width: 690px) {\n.popup[data-v-e11512a0] {\n overflow: hidden;\n}\n.popup-wrapper[data-v-e11512a0] {\n position: absolute;\n top: 0;\n bottom: 0;\n right: 0;\n left: 0;\n transform: translateY(0) scale(1);\n box-shadow: none;\n width: 100%;\n border-radius: 0px;\n}\n.popup-enter-active[data-v-e11512a0] {\n -webkit-animation: popup-slide-in-data-v-e11512a0 0.35s 0.15s ease both;\n animation: popup-slide-in-data-v-e11512a0 0.35s 0.15s ease both;\n}\n.popup-leave-active[data-v-e11512a0] {\n animation: popup-slide-in-data-v-e11512a0 0.15s ease reverse;\n}\n}\n@media (prefers-color-scheme: dark) {\n.popup-wrapper[data-v-e11512a0] {\n background: #111314;\n box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);\n}\n}\n@media (prefers-color-scheme: dark) and (max-width: 690px) {\n.popup-wrapper[data-v-e11512a0] {\n background: #111314;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(43);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".actions[data-v-538210f4] {\n padding: 20px;\n margin: 0 -10px;\n display: flex;\n}\n.actions .popup-button[data-v-538210f4] {\n width: 100%;\n margin: 0 10px;\n}\n@media only screen and (max-width: 690px) {\n.actions[data-v-538210f4] {\n padding: 15px;\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(44);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".popup-content.height-limited[data-v-8af91a52] {\n height: 400px;\n overflow-y: auto;\n}\n@media only screen and (max-width: 690px) {\n.popup-content[data-v-8af91a52] {\n top: 57px;\n bottom: 72px;\n position: absolute;\n left: 0;\n right: 0;\n height: initial;\n}\n}\n@-webkit-keyframes popup-in-data-v-8af91a52 {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n@keyframes popup-in-data-v-8af91a52 {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n@-webkit-keyframes popup-slide-in-data-v-8af91a52 {\n0% {\n transform: translateY(100%);\n}\n100% {\n transform: translateY(0);\n}\n}\n@keyframes popup-slide-in-data-v-8af91a52 {\n0% {\n transform: translateY(100%);\n}\n100% {\n transform: translateY(0);\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(45);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".popup-header[data-v-b5007bee] {\n padding: 20px;\n display: flex;\n align-items: center;\n}\n.popup-header .icon[data-v-b5007bee] {\n margin-right: 10px;\n line-height: 0;\n}\n.popup-header .icon path[data-v-b5007bee], .popup-header .icon line[data-v-b5007bee], .popup-header .icon polyline[data-v-b5007bee], .popup-header .icon rect[data-v-b5007bee], .popup-header .icon circle[data-v-b5007bee] {\n stroke: #00BC7E;\n}\n.popup-header .title[data-v-b5007bee] {\n font-size: 1.0625em;\n font-weight: 700;\n color: #1B2539;\n}\n.popup-header .message[data-v-b5007bee] {\n font-size: 1em;\n color: #8b8f9a;\n margin-top: 5px;\n}\n.popup-header .label[data-v-b5007bee] {\n display: flex;\n justify-content: space-between;\n width: 100%;\n align-items: center;\n}\n.popup-header .label .close-icon[data-v-b5007bee] {\n padding: 1px 4px;\n border-radius: 6px;\n cursor: pointer;\n}\n.popup-header .label .close-icon[data-v-b5007bee]:hover {\n background: #f4f5f6;\n}\n.popup-header .label .close-icon:hover line[data-v-b5007bee] {\n stroke: #00BC7E;\n}\n@media only screen and (max-width: 690px) {\n.popup-header[data-v-b5007bee] {\n padding: 15px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.popup-header .label .close-icon[data-v-b5007bee] {\n cursor: pointer;\n}\n.popup-header .label .close-icon[data-v-b5007bee]:hover {\n background: #1e2024;\n}\n.popup-header .title[data-v-b5007bee] {\n color: #bec6cf;\n}\n.popup-header .message[data-v-b5007bee] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(46);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".is-inactive[data-v-1ac3a6c0] {\n opacity: 0.5;\n pointer-events: none;\n}\n.folder-item[data-v-1ac3a6c0] {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n display: block;\n padding: 8px 23px;\n transition: 150ms all ease;\n cursor: pointer;\n position: relative;\n white-space: nowrap;\n}\n.folder-item .icon[data-v-1ac3a6c0] {\n line-height: 0;\n width: 15px;\n margin-right: 9px;\n vertical-align: middle;\n margin-top: -1px;\n}\n.folder-item .icon path[data-v-1ac3a6c0], .folder-item .icon line[data-v-1ac3a6c0], .folder-item .icon polyline[data-v-1ac3a6c0], .folder-item .icon rect[data-v-1ac3a6c0], .folder-item .icon circle[data-v-1ac3a6c0] {\n transition: 150ms all ease;\n}\n.folder-item .icon-arrow[data-v-1ac3a6c0] {\n transition: 300ms all ease;\n margin-right: 4px;\n vertical-align: middle;\n opacity: 0;\n}\n.folder-item .icon-arrow.is-visible[data-v-1ac3a6c0] {\n opacity: 1;\n}\n.folder-item .icon-arrow.is-opened[data-v-1ac3a6c0] {\n transform: rotate(90deg);\n}\n.folder-item .label[data-v-1ac3a6c0] {\n transition: 150ms all ease;\n font-size: 0.8125em;\n font-weight: 700;\n vertical-align: middle;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n color: #1B2539;\n}\n.folder-item:hover .icon path[data-v-1ac3a6c0], .folder-item:hover .icon line[data-v-1ac3a6c0], .folder-item:hover .icon polyline[data-v-1ac3a6c0], .folder-item:hover .icon rect[data-v-1ac3a6c0], .folder-item:hover .icon circle[data-v-1ac3a6c0], .folder-item.is-selected .icon path[data-v-1ac3a6c0], .folder-item.is-selected .icon line[data-v-1ac3a6c0], .folder-item.is-selected .icon polyline[data-v-1ac3a6c0], .folder-item.is-selected .icon rect[data-v-1ac3a6c0], .folder-item.is-selected .icon circle[data-v-1ac3a6c0] {\n stroke: #00BC7E;\n}\n.folder-item:hover .label[data-v-1ac3a6c0], .folder-item.is-selected .label[data-v-1ac3a6c0] {\n color: #00BC7E;\n}\n@media (prefers-color-scheme: dark) {\n.folder-item .label[data-v-1ac3a6c0] {\n color: #bec6cf;\n}\n.folder-item[data-v-1ac3a6c0]:hover {\n background: rgba(0, 188, 126, 0.1);\n}\n.folder-item.is-selected[data-v-1ac3a6c0] {\n background: rgba(0, 188, 126, 0.1);\n}\n.is-selected[data-v-1ac3a6c0] {\n background: rgba(0, 188, 126, 0.1);\n}\n}\n@media (prefers-color-scheme: dark) and (max-width: 690px) {\n.folder-item[data-v-1ac3a6c0]:hover, .folder-item.is-selected[data-v-1ac3a6c0] {\n background: rgba(0, 188, 126, 0.1);\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(47);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".item-thumbnail[data-v-f211e16c] {\n margin-bottom: 20px;\n}\n",""])},function(t,e,n){"use strict";var a=n(48);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".vignette[data-v-0b5a9bb3] {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n bottom: 0;\n z-index: 19;\n background: rgba(9, 8, 12, 0.35);\n}\n@media (prefers-color-scheme: dark) {\n.vignette[data-v-0b5a9bb3] {\n background: rgba(22, 23, 27, 0.7);\n}\n}\n.vignette-enter-active[data-v-0b5a9bb3] {\n -webkit-animation: vignette-in-data-v-0b5a9bb3 0.35s ease;\n animation: vignette-in-data-v-0b5a9bb3 0.35s ease;\n}\n.vignette-leave-active[data-v-0b5a9bb3] {\n animation: vignette-in-data-v-0b5a9bb3 0.15s ease reverse;\n}\n@-webkit-keyframes vignette-in-data-v-0b5a9bb3 {\n0% {\n opacity: 0;\n}\n100% {\n opacity: 1;\n}\n}\n@keyframes vignette-in-data-v-0b5a9bb3 {\n0% {\n opacity: 0;\n}\n100% {\n opacity: 1;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(49);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".popup[data-v-ce9e66c6] {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 20;\n overflow: auto;\n height: 100%;\n}\n.popup-wrapper[data-v-ce9e66c6] {\n z-index: 12;\n position: absolute;\n left: 0;\n right: 0;\n max-width: 480px;\n top: 50%;\n transform: translateY(-50%) scale(1);\n margin: 0 auto;\n padding: 20px;\n box-shadow: 0 15px 50px 10px rgba(26, 38, 74, 0.12);\n border-radius: 8px;\n text-align: center;\n background: white;\n}\n.popup-image[data-v-ce9e66c6] {\n margin-bottom: 30px;\n}\n.popup-image .emoji[data-v-ce9e66c6] {\n font-size: 3.5em;\n line-height: 1;\n}\n.popup-content .title[data-v-ce9e66c6] {\n font-size: 1.375em;\n text-transform: uppercase;\n font-weight: 800;\n color: #1B2539;\n}\n.popup-content .message[data-v-ce9e66c6] {\n font-size: 1em;\n color: #333;\n margin-top: 5px;\n}\n.popup-actions[data-v-ce9e66c6] {\n margin-top: 30px;\n}\n.popup-actions .action-confirm[data-v-ce9e66c6] {\n width: 100%;\n}\n@media only screen and (max-width: 690px) {\n.popup-wrapper[data-v-ce9e66c6] {\n padding: 40px 20px 20px;\n left: 15px;\n right: 15px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.popup-wrapper[data-v-ce9e66c6] {\n background: #111314;\n}\n.popup-content .title[data-v-ce9e66c6] {\n color: #bec6cf;\n}\n.popup-content .message[data-v-ce9e66c6] {\n color: #7d858c;\n}\n}\n.popup-enter-active[data-v-ce9e66c6] {\n -webkit-animation: popup-in-data-v-ce9e66c6 0.35s 0.15s ease both;\n animation: popup-in-data-v-ce9e66c6 0.35s 0.15s ease both;\n}\n.popup-leave-active[data-v-ce9e66c6] {\n animation: popup-in-data-v-ce9e66c6 0.15s ease reverse;\n}\n@-webkit-keyframes popup-in-data-v-ce9e66c6 {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n@keyframes popup-in-data-v-ce9e66c6 {\n0% {\n opacity: 0;\n transform: scale(0.7);\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(50);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form.inline-form[data-v-4ef40bb8] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-4ef40bb8] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4ef40bb8] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-4ef40bb8] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-4ef40bb8] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-4ef40bb8]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-4ef40bb8] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1B2539;\n text-align: right;\n}\n.form.block-form .button[data-v-4ef40bb8] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-4ef40bb8] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-4ef40bb8] {\n width: 100%;\n}\ntextarea[data-v-4ef40bb8],\ninput[type="password"][data-v-4ef40bb8],\ninput[type="text"][data-v-4ef40bb8],\ninput[type="email"][data-v-4ef40bb8] {\n background: #f4f5f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-4ef40bb8],\ninput[type="password"].is-error[data-v-4ef40bb8],\ninput[type="text"].is-error[data-v-4ef40bb8],\ninput[type="email"].is-error[data-v-4ef40bb8] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-4ef40bb8]::-webkit-input-placeholder, input[type="password"][data-v-4ef40bb8]::-webkit-input-placeholder, input[type="text"][data-v-4ef40bb8]::-webkit-input-placeholder, input[type="email"][data-v-4ef40bb8]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4ef40bb8]::-moz-placeholder, input[type="password"][data-v-4ef40bb8]::-moz-placeholder, input[type="text"][data-v-4ef40bb8]::-moz-placeholder, input[type="email"][data-v-4ef40bb8]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4ef40bb8]:-ms-input-placeholder, input[type="password"][data-v-4ef40bb8]:-ms-input-placeholder, input[type="text"][data-v-4ef40bb8]:-ms-input-placeholder, input[type="email"][data-v-4ef40bb8]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4ef40bb8]::-ms-input-placeholder, input[type="password"][data-v-4ef40bb8]::-ms-input-placeholder, input[type="text"][data-v-4ef40bb8]::-ms-input-placeholder, input[type="email"][data-v-4ef40bb8]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4ef40bb8]::placeholder,\ninput[type="password"][data-v-4ef40bb8]::placeholder,\ninput[type="text"][data-v-4ef40bb8]::placeholder,\ninput[type="email"][data-v-4ef40bb8]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-4ef40bb8]:focus,\ninput[type="password"][data-v-4ef40bb8]:focus,\ninput[type="text"][data-v-4ef40bb8]:focus,\ninput[type="email"][data-v-4ef40bb8]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-4ef40bb8],\ninput[type="password"][disabled][data-v-4ef40bb8],\ninput[type="text"][disabled][data-v-4ef40bb8],\ninput[type="email"][disabled][data-v-4ef40bb8] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-4ef40bb8] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-4ef40bb8], .additional-link a[data-v-4ef40bb8] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-4ef40bb8]:hover, .additional-link a[data-v-4ef40bb8]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-4ef40bb8] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-4ef40bb8], .form textarea[data-v-4ef40bb8] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-4ef40bb8] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-4ef40bb8] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-4ef40bb8] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-4ef40bb8] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4ef40bb8] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-4ef40bb8] {\n padding: 14px 32px;\n}\ntextarea[data-v-4ef40bb8],\n input[type="password"][data-v-4ef40bb8],\n input[type="text"][data-v-4ef40bb8],\n input[type="email"][data-v-4ef40bb8] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-4ef40bb8] {\n color: #bec6cf;\n}\ntextarea[data-v-4ef40bb8],\n input[type="password"][data-v-4ef40bb8],\n input[type="text"][data-v-4ef40bb8],\n input[type="email"][data-v-4ef40bb8] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-4ef40bb8]::-webkit-input-placeholder, input[type="password"][data-v-4ef40bb8]::-webkit-input-placeholder, input[type="text"][data-v-4ef40bb8]::-webkit-input-placeholder, input[type="email"][data-v-4ef40bb8]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4ef40bb8]::-moz-placeholder, input[type="password"][data-v-4ef40bb8]::-moz-placeholder, input[type="text"][data-v-4ef40bb8]::-moz-placeholder, input[type="email"][data-v-4ef40bb8]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4ef40bb8]:-ms-input-placeholder, input[type="password"][data-v-4ef40bb8]:-ms-input-placeholder, input[type="text"][data-v-4ef40bb8]:-ms-input-placeholder, input[type="email"][data-v-4ef40bb8]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4ef40bb8]::-ms-input-placeholder, input[type="password"][data-v-4ef40bb8]::-ms-input-placeholder, input[type="text"][data-v-4ef40bb8]::-ms-input-placeholder, input[type="email"][data-v-4ef40bb8]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4ef40bb8]::placeholder,\n input[type="password"][data-v-4ef40bb8]::placeholder,\n input[type="text"][data-v-4ef40bb8]::placeholder,\n input[type="email"][data-v-4ef40bb8]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-4ef40bb8],\n input[type="password"][disabled][data-v-4ef40bb8],\n input[type="text"][disabled][data-v-4ef40bb8],\n input[type="email"][disabled][data-v-4ef40bb8] {\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-4ef40bb8] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-4ef40bb8] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-4ef40bb8] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-4ef40bb8] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-4ef40bb8] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-4ef40bb8] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-4ef40bb8] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-4ef40bb8] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-4ef40bb8] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-4ef40bb8] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-4ef40bb8] {\n width: 100%;\n}\n.auth-form h1[data-v-4ef40bb8] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-4ef40bb8] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-4ef40bb8] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-4ef40bb8] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-4ef40bb8] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-4ef40bb8] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-4ef40bb8], .auth-form h2[data-v-4ef40bb8], .auth-form .additional-link[data-v-4ef40bb8] {\n color: #bec6cf;\n}\n}\n#shared[data-v-4ef40bb8] {\n height: 100%;\n}\n#password-view[data-v-4ef40bb8] {\n display: grid;\n height: inherit;\n}\n#password-view .center[data-v-4ef40bb8] {\n margin: auto;\n}\n#single-file[data-v-4ef40bb8] {\n position: absolute;\n bottom: 0;\n right: 0;\n left: 0;\n top: 0;\n display: grid;\n height: 100%;\n}\n#single-file .single-file-wrapper[data-v-4ef40bb8] {\n margin: auto;\n text-align: center;\n}\n#single-file .single-file-wrapper .download-button[data-v-4ef40bb8] {\n margin-top: 15px;\n}\n#single-file[data-v-4ef40bb8] .file-wrapper .file-item {\n width: 290px;\n}\n#single-file[data-v-4ef40bb8] .file-wrapper .file-item:hover, #single-file[data-v-4ef40bb8] .file-wrapper .file-item.is-clicked {\n background: transparent;\n}\n#single-file[data-v-4ef40bb8] .file-wrapper .file-item .item-shared {\n display: none;\n}\n',""])},function(t,e,n){"use strict";var a=n(51);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".auth-logo-text[data-v-5bac3e7c] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-5bac3e7c] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-5bac3e7c] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-5bac3e7c] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-5bac3e7c] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-5bac3e7c] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-5bac3e7c] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-5bac3e7c] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-5bac3e7c] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-5bac3e7c] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-5bac3e7c] {\n width: 100%;\n}\n.auth-form h1[data-v-5bac3e7c] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-5bac3e7c] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-5bac3e7c] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-5bac3e7c] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-5bac3e7c] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-5bac3e7c] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-5bac3e7c], .auth-form h2[data-v-5bac3e7c], .auth-form .additional-link[data-v-5bac3e7c] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(52);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form.inline-form[data-v-9d67ec58] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-9d67ec58] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-9d67ec58] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-9d67ec58] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-9d67ec58] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-9d67ec58]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-9d67ec58] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1B2539;\n text-align: right;\n}\n.form.block-form .button[data-v-9d67ec58] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-9d67ec58] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-9d67ec58] {\n width: 100%;\n}\ntextarea[data-v-9d67ec58],\ninput[type="password"][data-v-9d67ec58],\ninput[type="text"][data-v-9d67ec58],\ninput[type="email"][data-v-9d67ec58] {\n background: #f4f5f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-9d67ec58],\ninput[type="password"].is-error[data-v-9d67ec58],\ninput[type="text"].is-error[data-v-9d67ec58],\ninput[type="email"].is-error[data-v-9d67ec58] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-9d67ec58]::-webkit-input-placeholder, input[type="password"][data-v-9d67ec58]::-webkit-input-placeholder, input[type="text"][data-v-9d67ec58]::-webkit-input-placeholder, input[type="email"][data-v-9d67ec58]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-9d67ec58]::-moz-placeholder, input[type="password"][data-v-9d67ec58]::-moz-placeholder, input[type="text"][data-v-9d67ec58]::-moz-placeholder, input[type="email"][data-v-9d67ec58]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-9d67ec58]:-ms-input-placeholder, input[type="password"][data-v-9d67ec58]:-ms-input-placeholder, input[type="text"][data-v-9d67ec58]:-ms-input-placeholder, input[type="email"][data-v-9d67ec58]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-9d67ec58]::-ms-input-placeholder, input[type="password"][data-v-9d67ec58]::-ms-input-placeholder, input[type="text"][data-v-9d67ec58]::-ms-input-placeholder, input[type="email"][data-v-9d67ec58]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-9d67ec58]::placeholder,\ninput[type="password"][data-v-9d67ec58]::placeholder,\ninput[type="text"][data-v-9d67ec58]::placeholder,\ninput[type="email"][data-v-9d67ec58]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-9d67ec58]:focus,\ninput[type="password"][data-v-9d67ec58]:focus,\ninput[type="text"][data-v-9d67ec58]:focus,\ninput[type="email"][data-v-9d67ec58]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-9d67ec58],\ninput[type="password"][disabled][data-v-9d67ec58],\ninput[type="text"][disabled][data-v-9d67ec58],\ninput[type="email"][disabled][data-v-9d67ec58] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-9d67ec58] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-9d67ec58], .additional-link a[data-v-9d67ec58] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-9d67ec58]:hover, .additional-link a[data-v-9d67ec58]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-9d67ec58] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-9d67ec58], .form textarea[data-v-9d67ec58] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-9d67ec58] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-9d67ec58] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-9d67ec58] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-9d67ec58] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-9d67ec58] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-9d67ec58] {\n padding: 14px 32px;\n}\ntextarea[data-v-9d67ec58],\n input[type="password"][data-v-9d67ec58],\n input[type="text"][data-v-9d67ec58],\n input[type="email"][data-v-9d67ec58] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-9d67ec58] {\n color: #bec6cf;\n}\ntextarea[data-v-9d67ec58],\n input[type="password"][data-v-9d67ec58],\n input[type="text"][data-v-9d67ec58],\n input[type="email"][data-v-9d67ec58] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-9d67ec58]::-webkit-input-placeholder, input[type="password"][data-v-9d67ec58]::-webkit-input-placeholder, input[type="text"][data-v-9d67ec58]::-webkit-input-placeholder, input[type="email"][data-v-9d67ec58]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-9d67ec58]::-moz-placeholder, input[type="password"][data-v-9d67ec58]::-moz-placeholder, input[type="text"][data-v-9d67ec58]::-moz-placeholder, input[type="email"][data-v-9d67ec58]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-9d67ec58]:-ms-input-placeholder, input[type="password"][data-v-9d67ec58]:-ms-input-placeholder, input[type="text"][data-v-9d67ec58]:-ms-input-placeholder, input[type="email"][data-v-9d67ec58]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-9d67ec58]::-ms-input-placeholder, input[type="password"][data-v-9d67ec58]::-ms-input-placeholder, input[type="text"][data-v-9d67ec58]::-ms-input-placeholder, input[type="email"][data-v-9d67ec58]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-9d67ec58]::placeholder,\n input[type="password"][data-v-9d67ec58]::placeholder,\n input[type="text"][data-v-9d67ec58]::placeholder,\n input[type="email"][data-v-9d67ec58]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-9d67ec58],\n input[type="password"][disabled][data-v-9d67ec58],\n input[type="text"][disabled][data-v-9d67ec58],\n input[type="email"][disabled][data-v-9d67ec58] {\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-9d67ec58] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-9d67ec58] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-9d67ec58] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-9d67ec58] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-9d67ec58] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-9d67ec58] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-9d67ec58] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-9d67ec58] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-9d67ec58] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-9d67ec58] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-9d67ec58] {\n width: 100%;\n}\n.auth-form h1[data-v-9d67ec58] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-9d67ec58] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-9d67ec58] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-9d67ec58] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-9d67ec58] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-9d67ec58] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-9d67ec58], .auth-form h2[data-v-9d67ec58], .auth-form .additional-link[data-v-9d67ec58] {\n color: #bec6cf;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(53);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form.inline-form[data-v-355167b9] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-355167b9] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-355167b9] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-355167b9] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-355167b9] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-355167b9]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-355167b9] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1B2539;\n text-align: right;\n}\n.form.block-form .button[data-v-355167b9] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-355167b9] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-355167b9] {\n width: 100%;\n}\ntextarea[data-v-355167b9],\ninput[type="password"][data-v-355167b9],\ninput[type="text"][data-v-355167b9],\ninput[type="email"][data-v-355167b9] {\n background: #f4f5f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-355167b9],\ninput[type="password"].is-error[data-v-355167b9],\ninput[type="text"].is-error[data-v-355167b9],\ninput[type="email"].is-error[data-v-355167b9] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-355167b9]::-webkit-input-placeholder, input[type="password"][data-v-355167b9]::-webkit-input-placeholder, input[type="text"][data-v-355167b9]::-webkit-input-placeholder, input[type="email"][data-v-355167b9]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-355167b9]::-moz-placeholder, input[type="password"][data-v-355167b9]::-moz-placeholder, input[type="text"][data-v-355167b9]::-moz-placeholder, input[type="email"][data-v-355167b9]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-355167b9]:-ms-input-placeholder, input[type="password"][data-v-355167b9]:-ms-input-placeholder, input[type="text"][data-v-355167b9]:-ms-input-placeholder, input[type="email"][data-v-355167b9]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-355167b9]::-ms-input-placeholder, input[type="password"][data-v-355167b9]::-ms-input-placeholder, input[type="text"][data-v-355167b9]::-ms-input-placeholder, input[type="email"][data-v-355167b9]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-355167b9]::placeholder,\ninput[type="password"][data-v-355167b9]::placeholder,\ninput[type="text"][data-v-355167b9]::placeholder,\ninput[type="email"][data-v-355167b9]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-355167b9]:focus,\ninput[type="password"][data-v-355167b9]:focus,\ninput[type="text"][data-v-355167b9]:focus,\ninput[type="email"][data-v-355167b9]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-355167b9],\ninput[type="password"][disabled][data-v-355167b9],\ninput[type="text"][disabled][data-v-355167b9],\ninput[type="email"][disabled][data-v-355167b9] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-355167b9] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-355167b9], .additional-link a[data-v-355167b9] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-355167b9]:hover, .additional-link a[data-v-355167b9]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-355167b9] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-355167b9], .form textarea[data-v-355167b9] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-355167b9] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-355167b9] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-355167b9] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-355167b9] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-355167b9] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-355167b9] {\n padding: 14px 32px;\n}\ntextarea[data-v-355167b9],\n input[type="password"][data-v-355167b9],\n input[type="text"][data-v-355167b9],\n input[type="email"][data-v-355167b9] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-355167b9] {\n color: #bec6cf;\n}\ntextarea[data-v-355167b9],\n input[type="password"][data-v-355167b9],\n input[type="text"][data-v-355167b9],\n input[type="email"][data-v-355167b9] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-355167b9]::-webkit-input-placeholder, input[type="password"][data-v-355167b9]::-webkit-input-placeholder, input[type="text"][data-v-355167b9]::-webkit-input-placeholder, input[type="email"][data-v-355167b9]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-355167b9]::-moz-placeholder, input[type="password"][data-v-355167b9]::-moz-placeholder, input[type="text"][data-v-355167b9]::-moz-placeholder, input[type="email"][data-v-355167b9]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-355167b9]:-ms-input-placeholder, input[type="password"][data-v-355167b9]:-ms-input-placeholder, input[type="text"][data-v-355167b9]:-ms-input-placeholder, input[type="email"][data-v-355167b9]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-355167b9]::-ms-input-placeholder, input[type="password"][data-v-355167b9]::-ms-input-placeholder, input[type="text"][data-v-355167b9]::-ms-input-placeholder, input[type="email"][data-v-355167b9]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-355167b9]::placeholder,\n input[type="password"][data-v-355167b9]::placeholder,\n input[type="text"][data-v-355167b9]::placeholder,\n input[type="email"][data-v-355167b9]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-355167b9],\n input[type="password"][disabled][data-v-355167b9],\n input[type="text"][disabled][data-v-355167b9],\n input[type="email"][disabled][data-v-355167b9] {\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-355167b9] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-355167b9] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-355167b9] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-355167b9] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-355167b9] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-355167b9] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-355167b9] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-355167b9] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-355167b9] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-355167b9] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-355167b9] {\n width: 100%;\n}\n.auth-form h1[data-v-355167b9] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-355167b9] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-355167b9] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-355167b9] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-355167b9] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-355167b9] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-355167b9], .auth-form h2[data-v-355167b9], .auth-form .additional-link[data-v-355167b9] {\n color: #bec6cf;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(54);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".content-sidebar[data-v-5101d4ac] {\n background: rgba(244, 245, 246, 0.6);\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n padding-top: 25px;\n overflow-y: auto;\n flex: 0 0 225px;\n}\n@media only screen and (max-width: 1024px) {\n.content-sidebar[data-v-5101d4ac] {\n flex: 0 0 205px;\n}\n}\n@media only screen and (max-width: 690px) {\n.content-sidebar[data-v-5101d4ac] {\n display: none;\n}\n}\n@media (prefers-color-scheme: dark) {\n.content-sidebar[data-v-5101d4ac] {\n background: rgba(30, 32, 36, 0.2);\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(55);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".text-label[data-v-4c36e0a9] {\n padding-left: 25px;\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n@media only screen and (max-width: 1024px) {\n.text-label[data-v-4c36e0a9] {\n padding-left: 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.text-label[data-v-4c36e0a9] {\n color: #00BC7E;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(56);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".content-group[data-v-da1bd2b8] {\n margin-bottom: 30px;\n}\n",""])},function(t,e,n){"use strict";var a=n(57);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".dropzone[data-v-fa58d4b2] {\n position: relative;\n line-height: 0;\n}\n.dropzone input[type='file'][data-v-fa58d4b2] {\n opacity: 0;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 2;\n width: 100%;\n cursor: pointer;\n}\n.dropzone .image-preview[data-v-fa58d4b2] {\n width: 62px;\n height: 62px;\n -o-object-fit: cover;\n object-fit: cover;\n border-radius: 8px;\n z-index: 1;\n position: relative;\n}\n.dropzone .blurred[data-v-fa58d4b2] {\n position: absolute;\n left: 0;\n top: 2px;\n z-index: 0;\n -webkit-filter: blur(8px);\n filter: blur(8px);\n opacity: 0.5;\n}\n",""])},function(t,e,n){"use strict";var a=n(58);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".mobile-header[data-v-4230e5d0] {\n padding: 10px 0;\n text-align: center;\n background: white;\n position: -webkit-sticky;\n position: sticky;\n display: none;\n z-index: 6;\n top: 0;\n}\n.mobile-header > div[data-v-4230e5d0] {\n flex-grow: 1;\n align-self: center;\n white-space: nowrap;\n}\n.mobile-header .go-back[data-v-4230e5d0] {\n text-align: left;\n}\n.mobile-header .location-name[data-v-4230e5d0] {\n line-height: 1;\n text-align: center;\n width: 100%;\n vertical-align: middle;\n font-size: 0.9375em;\n color: #1B2539;\n font-weight: 700;\n max-width: 220px;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n}\n.mobile-header .mobile-menu[data-v-4230e5d0] {\n text-align: right;\n}\n.mobile-header .icon[data-v-4230e5d0] {\n vertical-align: middle;\n margin-top: -4px;\n}\n@media only screen and (max-width: 690px) {\n.mobile-header[data-v-4230e5d0] {\n display: flex;\n margin-bottom: 15px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.mobile-header[data-v-4230e5d0] {\n background: #111314;\n}\n.mobile-header .location-name[data-v-4230e5d0] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(59);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".info-box[data-v-bf43be5e] {\n padding: 20px;\n border-radius: 8px;\n margin-bottom: 32px;\n background: #f4f5f6;\n text-align: left;\n}\n.info-box.error[data-v-bf43be5e] {\n background: rgba(253, 57, 122, 0.1);\n}\n.info-box.error p[data-v-bf43be5e], .info-box.error a[data-v-bf43be5e] {\n color: #fd397a;\n}\n.info-box.error a[data-v-bf43be5e] {\n text-decoration: underline;\n}\n.info-box p[data-v-bf43be5e] {\n font-size: 0.9375em;\n line-height: 1.6;\n word-break: break-word;\n font-weight: 600;\n}\n.info-box p[data-v-bf43be5e] a {\n color: #00BC7E;\n}\n.info-box b[data-v-bf43be5e] {\n font-weight: 700;\n color: #00BC7E;\n}\n.info-box a[data-v-bf43be5e] {\n color: #00BC7E;\n font-weight: 700;\n font-size: 0.9375em;\n line-height: 1.6;\n}\n.info-box ul[data-v-bf43be5e] {\n margin-top: 15px;\n display: block;\n}\n.info-box ul li[data-v-bf43be5e] {\n display: block;\n}\n.info-box ul li a[data-v-bf43be5e] {\n display: block;\n}\n@media only screen and (max-width: 690px) {\n.info-box[data-v-bf43be5e] {\n padding: 15px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.info-box[data-v-bf43be5e] {\n background: #1e2024;\n}\n.info-box p[data-v-bf43be5e] {\n color: #bec6cf;\n}\n.info-box ul li[data-v-bf43be5e] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(60);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".page-header[data-v-aafe7e24] {\n display: flex;\n align-items: center;\n background: white;\n z-index: 9;\n width: 100%;\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n padding-top: 20px;\n padding-bottom: 20px;\n}\n.page-header .title[data-v-aafe7e24] {\n font-size: 1.125em;\n font-weight: 700;\n color: #1B2539;\n}\n.page-header .go-back[data-v-aafe7e24] {\n margin-right: 10px;\n cursor: pointer;\n}\n.page-header .go-back svg[data-v-aafe7e24] {\n vertical-align: middle;\n margin-top: -4px;\n}\n@media only screen and (max-width: 960px) {\n.page-header .title[data-v-aafe7e24] {\n font-size: 1.125em;\n}\n}\n@media only screen and (max-width: 690px) {\n.page-header[data-v-aafe7e24] {\n display: none;\n}\n}\n@media (prefers-color-scheme: dark) {\n.page-header[data-v-aafe7e24] {\n background: #111314;\n}\n.page-header .title[data-v-aafe7e24] {\n color: #bec6cf;\n}\n.page-header .icon path[data-v-aafe7e24] {\n fill: #00BC7E;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(61);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".color-label[data-v-ffcb2882] {\n text-transform: capitalize;\n font-size: 0.75em;\n display: inline-block;\n border-radius: 6px;\n font-weight: 700;\n padding: 4px 6px;\n}\n.color-label.purple[data-v-ffcb2882] {\n color: #9D66FE;\n background: rgba(157, 102, 254, 0.1);\n}\n.color-label.yellow[data-v-ffcb2882] {\n color: #FFBD2D;\n background: rgba(255, 189, 45, 0.1);\n}\n.color-label.green[data-v-ffcb2882] {\n color: #00BC7E;\n background: rgba(0, 188, 126, 0.1);\n}\n.color-label.red[data-v-ffcb2882] {\n color: #fd397a;\n background: rgba(253, 57, 122, 0.1);\n}\n",""])},function(t,e,n){"use strict";var a=n(62);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".page-detail-headline[data-v-37fc8bdc] {\n display: flex;\n justify-content: space-between;\n margin-bottom: 50px;\n margin-top: 30px;\n}\n.user-thumbnail[data-v-37fc8bdc] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.user-thumbnail .avatar[data-v-37fc8bdc] {\n margin-right: 20px;\n}\n.user-thumbnail .avatar img[data-v-37fc8bdc] {\n line-height: 0;\n width: 62px;\n height: 62px;\n border-radius: 12px;\n z-index: 1;\n position: relative;\n}\n.user-thumbnail .info .name[data-v-37fc8bdc] {\n display: block;\n font-size: 1.0625em;\n line-height: 1;\n}\n.user-thumbnail .info .email[data-v-37fc8bdc] {\n color: rgba(27, 37, 57, 0.7);\n font-size: 0.875em;\n}\n.message-box[data-v-37fc8bdc] {\n margin-top: -15px;\n}\n@media (prefers-color-scheme: dark) {\n.user-thumbnail .info .name[data-v-37fc8bdc] {\n color: #bec6cf;\n}\n.user-thumbnail .info .email[data-v-37fc8bdc] {\n color: #7d858c;\n}\n}\n@media only screen and (max-width: 690px) {\n.page-detail-headline[data-v-37fc8bdc] {\n display: block;\n margin-bottom: 30px;\n margin-top: 10px;\n}\n.page-detail-headline .headline-actions[data-v-37fc8bdc] {\n margin-top: 20px;\n}\n.page-detail-headline .headline-actions .upgrade-button[data-v-37fc8bdc] {\n width: 100%;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(63);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".form-label[data-v-c1157a8e] {\n display: flex;\n align-items: center;\n margin-bottom: 30px;\n}\n.form-label .icon[data-v-c1157a8e] {\n margin-right: 10px;\n}\n.form-label .icon path[data-v-c1157a8e] {\n stroke: #00BC7E;\n}\n.form-label .label[data-v-c1157a8e] {\n font-size: 1.125em;\n font-weight: 700;\n}\n@media (prefers-color-scheme: dark) {\n.form-label .label[data-v-c1157a8e] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(64);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".page-tab-group[data-v-1bb470e4] {\n margin-bottom: 65px;\n}\n",""])},function(t,e,n){"use strict";var a=n(65);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,"",""])},function(t,e,n){"use strict";var a=n(66);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".detail-storage-item[data-v-56af1b6e] {\n margin-bottom: 35px;\n}\n.detail-storage-item.disk .icon path[data-v-56af1b6e], .detail-storage-item.disk .icon line[data-v-56af1b6e], .detail-storage-item.disk .icon polyline[data-v-56af1b6e], .detail-storage-item.disk .icon rect[data-v-56af1b6e], .detail-storage-item.disk .icon circle[data-v-56af1b6e], .detail-storage-item.disk .icon polygon[data-v-56af1b6e] {\n stroke: #1B2539;\n}\n.detail-storage-item.disk .storage-progress[data-v-56af1b6e] span {\n background: #1B2539;\n}\n.detail-storage-item.images .icon path[data-v-56af1b6e], .detail-storage-item.images .icon line[data-v-56af1b6e], .detail-storage-item.images .icon polyline[data-v-56af1b6e], .detail-storage-item.images .icon rect[data-v-56af1b6e], .detail-storage-item.images .icon circle[data-v-56af1b6e], .detail-storage-item.images .icon polygon[data-v-56af1b6e] {\n stroke: #9D66FE;\n}\n.detail-storage-item.images .storage-progress[data-v-56af1b6e] span {\n background: #9D66FE;\n}\n.detail-storage-item.videos .icon path[data-v-56af1b6e], .detail-storage-item.videos .icon line[data-v-56af1b6e], .detail-storage-item.videos .icon polyline[data-v-56af1b6e], .detail-storage-item.videos .icon rect[data-v-56af1b6e], .detail-storage-item.videos .icon circle[data-v-56af1b6e], .detail-storage-item.videos .icon polygon[data-v-56af1b6e] {\n stroke: #FFBD2D;\n}\n.detail-storage-item.videos .storage-progress[data-v-56af1b6e] span {\n background: #FFBD2D;\n}\n.detail-storage-item.audios .icon path[data-v-56af1b6e], .detail-storage-item.audios .icon line[data-v-56af1b6e], .detail-storage-item.audios .icon polyline[data-v-56af1b6e], .detail-storage-item.audios .icon rect[data-v-56af1b6e], .detail-storage-item.audios .icon circle[data-v-56af1b6e], .detail-storage-item.audios .icon polygon[data-v-56af1b6e] {\n stroke: #FE66A1;\n}\n.detail-storage-item.audios .storage-progress[data-v-56af1b6e] span {\n background: #FE66A1;\n}\n.detail-storage-item.documents .icon path[data-v-56af1b6e], .detail-storage-item.documents .icon line[data-v-56af1b6e], .detail-storage-item.documents .icon polyline[data-v-56af1b6e], .detail-storage-item.documents .icon rect[data-v-56af1b6e], .detail-storage-item.documents .icon circle[data-v-56af1b6e], .detail-storage-item.documents .icon polygon[data-v-56af1b6e] {\n stroke: #FE6057;\n}\n.detail-storage-item.documents .storage-progress[data-v-56af1b6e] span {\n background: #FE6057;\n}\n.detail-storage-item.others .icon path[data-v-56af1b6e], .detail-storage-item.others .icon line[data-v-56af1b6e], .detail-storage-item.others .icon polyline[data-v-56af1b6e], .detail-storage-item.others .icon rect[data-v-56af1b6e], .detail-storage-item.others .icon circle[data-v-56af1b6e], .detail-storage-item.others .icon polygon[data-v-56af1b6e] {\n stroke: #1B2539;\n}\n.detail-storage-item.others .storage-progress[data-v-56af1b6e] span {\n background: #1B2539;\n}\n.header-storage-item[data-v-56af1b6e] {\n display: flex;\n align-items: flex-start;\n margin-bottom: 10px;\n}\n.header-storage-item .icon[data-v-56af1b6e] {\n width: 35px;\n}\n.header-storage-item .type[data-v-56af1b6e] {\n font-size: 0.9375em;\n color: #1B2539;\n}\n.header-storage-item .total-size[data-v-56af1b6e] {\n font-size: 0.625em;\n display: block;\n color: rgba(27, 37, 57, 0.7);\n}\n@media (prefers-color-scheme: dark) {\n.header-storage-item .type[data-v-56af1b6e] {\n color: #bec6cf;\n}\n.header-storage-item .total-size[data-v-56af1b6e] {\n color: #7d858c;\n}\n.detail-storage-item.others .icon path[data-v-56af1b6e], .detail-storage-item.others .icon line[data-v-56af1b6e], .detail-storage-item.others .icon polyline[data-v-56af1b6e], .detail-storage-item.others .icon rect[data-v-56af1b6e], .detail-storage-item.others .icon circle[data-v-56af1b6e], .detail-storage-item.others .icon polygon[data-v-56af1b6e], .detail-storage-item.disk .icon path[data-v-56af1b6e], .detail-storage-item.disk .icon line[data-v-56af1b6e], .detail-storage-item.disk .icon polyline[data-v-56af1b6e], .detail-storage-item.disk .icon rect[data-v-56af1b6e], .detail-storage-item.disk .icon circle[data-v-56af1b6e], .detail-storage-item.disk .icon polygon[data-v-56af1b6e] {\n stroke: #41454e;\n}\n.detail-storage-item.others .storage-progress[data-v-56af1b6e] span, .detail-storage-item.disk .storage-progress[data-v-56af1b6e] span {\n background: #41454e;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(67);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".text-label[data-v-69d97df2] {\n font-size: 0.75em;\n color: #AFAFAF;\n font-weight: 700;\n display: block;\n margin-bottom: 20px;\n}\n@media (prefers-color-scheme: dark) {\n.text-label[data-v-69d97df2] {\n color: #00BC7E;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(68);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,"#single-page[data-v-20411c08] {\n overflow: hidden;\n width: 100%;\n height: 100%;\n position: relative;\n}\n#single-page .content-page[data-v-20411c08] {\n overflow-y: auto;\n height: 100%;\n padding-bottom: 100px;\n max-width: 700px;\n width: 100%;\n margin: 0 auto;\n}\n@media only screen and (max-width: 960px) {\n#single-page .content-page[data-v-20411c08] {\n padding-left: 15px;\n padding-right: 15px;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(69);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".select[data-v-d50fee16] {\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n width: 100%;\n}\n.input-options[data-v-d50fee16] {\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);\n background: white;\n border-radius: 8px;\n position: absolute;\n overflow: hidden;\n top: 65px;\n left: 0;\n right: 0;\n z-index: 9;\n max-height: 295px;\n overflow-y: auto;\n}\n.input-options .option-item[data-v-d50fee16] {\n padding: 13px 20px;\n display: block;\n cursor: pointer;\n}\n.input-options .option-item[data-v-d50fee16]:hover {\n color: #00BC7E;\n background: #f4f5f6;\n}\n.input-options .option-item[data-v-d50fee16]:last-child {\n border-bottom: none;\n}\n.input-area[data-v-d50fee16] {\n border: 1px solid transparent;\n justify-content: space-between;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n transition: 150ms all ease;\n align-items: center;\n border-radius: 8px;\n padding: 13px 20px;\n display: flex;\n outline: 0;\n width: 100%;\n cursor: pointer;\n}\n.input-area .chevron[data-v-d50fee16] {\n transition: 150ms all ease;\n}\n.input-area.is-active[data-v-d50fee16] {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\n.input-area.is-active .chevron[data-v-d50fee16] {\n transform: rotate(180deg);\n}\n.input-area.is-error[data-v-d50fee16] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\n.option-icon[data-v-d50fee16] {\n width: 20px;\n display: inline-block;\n font-size: 0.625em;\n}\n.option-icon svg[data-v-d50fee16] {\n margin-top: -4px;\n vertical-align: middle;\n}\n.option-value[data-v-d50fee16] {\n font-size: 0.875em;\n font-weight: 700;\n width: 100%;\n vertical-align: middle;\n}\n.option-value.placehoder[data-v-d50fee16] {\n color: rgba(27, 37, 57, 0.5);\n}\n.slide-in-enter-active[data-v-d50fee16] {\n transition: all 150ms ease;\n}\n.slide-in-enter[data-v-d50fee16] {\n opacity: 0;\n transform: translateY(-50px);\n}\n@media (prefers-color-scheme: dark) {\n.input-area[data-v-d50fee16] {\n background: #1e2024;\n border-color: #1e2024;\n}\n.input-area .option-icon path[data-v-d50fee16] {\n fill: #00BC7E;\n}\n.input-options[data-v-d50fee16] {\n background: #1e2024;\n}\n.input-options .option-item[data-v-d50fee16] {\n border-bottom: none;\n}\n.input-options .option-item[data-v-d50fee16]:hover {\n background: rgba(0, 188, 126, 0.1);\n}\n.input-options .option-item:hover .option-value[data-v-d50fee16] {\n color: #00BC7E;\n}\n.input-options .option-item:hover .option-icon path[data-v-d50fee16], .input-options .option-item:hover .option-icon circle[data-v-d50fee16] {\n stroke: #00BC7E;\n}\n.input-options .option-item[data-v-d50fee16]:last-child {\n border-bottom: none;\n}\n.option-value.placehoder[data-v-d50fee16] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(70);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".theme-label[data-v-4c650264] {\n font-size: 0.875em;\n color: #00BC7E;\n font-weight: 600;\n display: block;\n margin-bottom: 20px;\n}\n",""])},function(t,e,n){"use strict";var a=n(71);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-19e38a6f] {\n max-width: 700px;\n}\n.form.inline-form[data-v-19e38a6f] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-19e38a6f] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-19e38a6f] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-19e38a6f] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-19e38a6f] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-19e38a6f] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-19e38a6f] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-19e38a6f]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-19e38a6f] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-19e38a6f] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-19e38a6f] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-19e38a6f] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-19e38a6f] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-19e38a6f] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-19e38a6f] {\n margin-left: 20px;\n}\n.error-message[data-v-19e38a6f] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-19e38a6f] {\n width: 100%;\n}\ntextarea[data-v-19e38a6f],\ninput[type="password"][data-v-19e38a6f],\ninput[type="text"][data-v-19e38a6f],\ninput[type="number"][data-v-19e38a6f],\ninput[type="email"][data-v-19e38a6f] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-19e38a6f],\ninput[type="password"].is-error[data-v-19e38a6f],\ninput[type="text"].is-error[data-v-19e38a6f],\ninput[type="number"].is-error[data-v-19e38a6f],\ninput[type="email"].is-error[data-v-19e38a6f] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-19e38a6f]::-webkit-input-placeholder, input[type="password"][data-v-19e38a6f]::-webkit-input-placeholder, input[type="text"][data-v-19e38a6f]::-webkit-input-placeholder, input[type="number"][data-v-19e38a6f]::-webkit-input-placeholder, input[type="email"][data-v-19e38a6f]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-19e38a6f]::-moz-placeholder, input[type="password"][data-v-19e38a6f]::-moz-placeholder, input[type="text"][data-v-19e38a6f]::-moz-placeholder, input[type="number"][data-v-19e38a6f]::-moz-placeholder, input[type="email"][data-v-19e38a6f]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-19e38a6f]:-ms-input-placeholder, input[type="password"][data-v-19e38a6f]:-ms-input-placeholder, input[type="text"][data-v-19e38a6f]:-ms-input-placeholder, input[type="number"][data-v-19e38a6f]:-ms-input-placeholder, input[type="email"][data-v-19e38a6f]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-19e38a6f]::-ms-input-placeholder, input[type="password"][data-v-19e38a6f]::-ms-input-placeholder, input[type="text"][data-v-19e38a6f]::-ms-input-placeholder, input[type="number"][data-v-19e38a6f]::-ms-input-placeholder, input[type="email"][data-v-19e38a6f]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-19e38a6f]::placeholder,\ninput[type="password"][data-v-19e38a6f]::placeholder,\ninput[type="text"][data-v-19e38a6f]::placeholder,\ninput[type="number"][data-v-19e38a6f]::placeholder,\ninput[type="email"][data-v-19e38a6f]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-19e38a6f]:focus,\ninput[type="password"][data-v-19e38a6f]:focus,\ninput[type="text"][data-v-19e38a6f]:focus,\ninput[type="number"][data-v-19e38a6f]:focus,\ninput[type="email"][data-v-19e38a6f]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-19e38a6f],\ninput[type="password"][disabled][data-v-19e38a6f],\ninput[type="text"][disabled][data-v-19e38a6f],\ninput[type="number"][disabled][data-v-19e38a6f],\ninput[type="email"][disabled][data-v-19e38a6f] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-19e38a6f] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-19e38a6f], .additional-link a[data-v-19e38a6f] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-19e38a6f]:hover, .additional-link a[data-v-19e38a6f]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-19e38a6f] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-19e38a6f] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-19e38a6f], .form textarea[data-v-19e38a6f] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-19e38a6f] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-19e38a6f] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-19e38a6f] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-19e38a6f] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-19e38a6f] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-19e38a6f] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-19e38a6f] {\n display: block;\n}\n.single-line-form .submit-button[data-v-19e38a6f] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-19e38a6f],\n input[type="password"][data-v-19e38a6f],\n input[type="number"][data-v-19e38a6f],\n input[type="text"][data-v-19e38a6f],\n input[type="email"][data-v-19e38a6f] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-19e38a6f] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-19e38a6f] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-19e38a6f] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-19e38a6f] {\n color: #bec6cf;\n}\ntextarea[data-v-19e38a6f],\n input[type="password"][data-v-19e38a6f],\n input[type="text"][data-v-19e38a6f],\n input[type="number"][data-v-19e38a6f],\n input[type="email"][data-v-19e38a6f] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-19e38a6f]::-webkit-input-placeholder, input[type="password"][data-v-19e38a6f]::-webkit-input-placeholder, input[type="text"][data-v-19e38a6f]::-webkit-input-placeholder, input[type="number"][data-v-19e38a6f]::-webkit-input-placeholder, input[type="email"][data-v-19e38a6f]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-19e38a6f]::-moz-placeholder, input[type="password"][data-v-19e38a6f]::-moz-placeholder, input[type="text"][data-v-19e38a6f]::-moz-placeholder, input[type="number"][data-v-19e38a6f]::-moz-placeholder, input[type="email"][data-v-19e38a6f]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-19e38a6f]:-ms-input-placeholder, input[type="password"][data-v-19e38a6f]:-ms-input-placeholder, input[type="text"][data-v-19e38a6f]:-ms-input-placeholder, input[type="number"][data-v-19e38a6f]:-ms-input-placeholder, input[type="email"][data-v-19e38a6f]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-19e38a6f]::-ms-input-placeholder, input[type="password"][data-v-19e38a6f]::-ms-input-placeholder, input[type="text"][data-v-19e38a6f]::-ms-input-placeholder, input[type="number"][data-v-19e38a6f]::-ms-input-placeholder, input[type="email"][data-v-19e38a6f]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-19e38a6f]::placeholder,\n input[type="password"][data-v-19e38a6f]::placeholder,\n input[type="text"][data-v-19e38a6f]::placeholder,\n input[type="number"][data-v-19e38a6f]::placeholder,\n input[type="email"][data-v-19e38a6f]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-19e38a6f],\n input[type="password"][disabled][data-v-19e38a6f],\n input[type="text"][disabled][data-v-19e38a6f],\n input[type="number"][disabled][data-v-19e38a6f],\n input[type="email"][disabled][data-v-19e38a6f] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-19e38a6f] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(72);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".table-row[data-v-15a1e318] {\n border-radius: 8px;\n}\n.table-row[data-v-15a1e318]:hover {\n background: #f4f5f6;\n}\n.table-row .table-cell[data-v-15a1e318] {\n padding-top: 15px;\n padding-bottom: 15px;\n}\n.table-row .table-cell[data-v-15a1e318]:first-child {\n padding-left: 15px;\n}\n.table-row .table-cell[data-v-15a1e318]:last-child {\n padding-right: 15px;\n text-align: right;\n}\n.table-row .table-cell span[data-v-15a1e318] {\n font-size: 1em;\n font-weight: bold;\n}\n",""])},function(t,e,n){"use strict";var a=n(73);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".datatable[data-v-601fddd5] {\n height: 100%;\n}\n.table-row[data-v-601fddd5] {\n transition: 0.3s all ease;\n}\n.table-row-enter[data-v-601fddd5],\n.table-row-leave-to[data-v-601fddd5] {\n opacity: 0;\n transform: translateY(-100%);\n}\n.table-row-leave-active[data-v-601fddd5] {\n position: absolute;\n}\n.table[data-v-601fddd5] {\n width: 100%;\n border-collapse: collapse;\n overflow-x: auto;\n}\n.table tr[data-v-601fddd5] {\n width: 100%;\n}\n.table tr td[data-v-601fddd5]:first-child, .table tr th[data-v-601fddd5]:first-child {\n padding-left: 15px;\n}\n.table tr td[data-v-601fddd5]:last-child, .table tr th[data-v-601fddd5]:last-child {\n padding-right: 15px;\n text-align: right;\n}\n.table .table-header[data-v-601fddd5] {\n margin-bottom: 10px;\n}\n.table .table-header tr td[data-v-601fddd5], .table .table-header tr th[data-v-601fddd5] {\n padding: 12px;\n text-align: left;\n}\n.table .table-header tr td span[data-v-601fddd5], .table .table-header tr th span[data-v-601fddd5] {\n color: #00BC7E;\n font-weight: 700;\n font-size: 0.75em;\n white-space: nowrap;\n}\n.table .table-header tr td.sortable[data-v-601fddd5], .table .table-header tr th.sortable[data-v-601fddd5] {\n cursor: pointer;\n}\n.table .table-header tr td[data-v-601fddd5]:last-child, .table .table-header tr th[data-v-601fddd5]:last-child {\n text-align: right;\n}\n.table .table-header .filter-arrow[data-v-601fddd5] {\n vertical-align: middle;\n margin-left: 8px;\n transition: 0.3s all ease;\n}\n.table .table-header .filter-arrow path[data-v-601fddd5] {\n fill: rgba(27, 37, 57, 0.7);\n}\n.table .table-header .filter-arrow.arrow-down[data-v-601fddd5] {\n transform: rotate(180deg);\n}\n.table .table-header span[data-v-601fddd5] {\n font-size: 13px;\n color: rgba(27, 37, 57, 0.7);\n font-weight: bold;\n}\n.table .table-body tr[data-v-601fddd5] {\n border-radius: 8px;\n}\n.table .table-body tr[data-v-601fddd5]:hover {\n background: #f4f5f6;\n}\n.table .table-body tr td[data-v-601fddd5], .table .table-body tr th[data-v-601fddd5] {\n padding: 12px;\n}\n.table .table-body tr td:last-child button[data-v-601fddd5], .table .table-body tr th:last-child button[data-v-601fddd5] {\n margin-right: 0;\n}\n.table .table-body span[data-v-601fddd5], .table .table-body a.page-link[data-v-601fddd5] {\n font-size: 0.9375em;\n font-weight: 700;\n padding: 10px 35px 10px 0;\n display: block;\n white-space: nowrap;\n}\n.pagination .page-item[data-v-601fddd5] {\n padding: 3px;\n display: inline-block;\n}\n.pagination .page-link[data-v-601fddd5] {\n width: 30px;\n height: 30px;\n display: block;\n color: #1B2539;\n border-radius: 6px;\n text-align: center;\n line-height: 2.4;\n font-weight: bold;\n font-size: 13px;\n cursor: pointer;\n transition: 0.15s all ease;\n}\n.pagination .page-link .icon[data-v-601fddd5] {\n vertical-align: middle;\n margin-top: -2px;\n}\n.pagination .page-link[data-v-601fddd5]:hover:not(.disabled) {\n background: #f4f5f6;\n color: #1B2539;\n}\n.pagination .page-link.active[data-v-601fddd5] {\n color: #1B2539;\n background: #f4f5f6;\n}\n.pagination .page-link.disabled[data-v-601fddd5] {\n background: transparent;\n cursor: default;\n}\n.pagination .page-link.disabled svg path[data-v-601fddd5] {\n fill: rgba(27, 37, 57, 0.7);\n}\n.paginator-wrapper[data-v-601fddd5] {\n margin-top: 30px;\n margin-bottom: 40px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n.paginator-wrapper .paginator-info[data-v-601fddd5] {\n font-size: 13px;\n color: rgba(27, 37, 57, 0.7);\n}\n.user-preview[data-v-601fddd5] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.user-preview img[data-v-601fddd5] {\n width: 45px;\n margin-right: 22px;\n}\n@media only screen and (max-width: 690px) {\n.paginator-wrapper[data-v-601fddd5] {\n display: block;\n text-align: center;\n}\n.paginator-wrapper .paginator-info[data-v-601fddd5] {\n margin-top: 10px;\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.table .table-header tr td span[data-v-601fddd5], .table .table-header tr th span[data-v-601fddd5] {\n color: #00BC7E;\n}\n.table .table-body tr[data-v-601fddd5]:hover, .table .table-body th[data-v-601fddd5]:hover {\n background: #1e2024;\n}\n.paginator-wrapper .paginator-info[data-v-601fddd5] {\n color: #7d858c;\n}\n.pagination .page-link[data-v-601fddd5] {\n color: #7d858c;\n}\n.pagination .page-link svg polyline[data-v-601fddd5] {\n stroke: #bec6cf;\n}\n.pagination .page-link[data-v-601fddd5]:hover:not(.disabled) {\n color: #00BC7E;\n background: rgba(0, 188, 126, 0.1);\n}\n.pagination .page-link.active[data-v-601fddd5] {\n color: #00BC7E;\n background: rgba(0, 188, 126, 0.1);\n}\n.pagination .page-link.disabled[data-v-601fddd5] {\n background: transparent;\n cursor: default;\n}\n.pagination .page-link.disabled svg polyline[data-v-601fddd5] {\n stroke: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(74);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-478a7944] {\n max-width: 700px;\n}\n.form.inline-form[data-v-478a7944] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-478a7944] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-478a7944] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-478a7944] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-478a7944] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-478a7944] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-478a7944] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-478a7944]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-478a7944] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-478a7944] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-478a7944] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-478a7944] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-478a7944] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-478a7944] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-478a7944] {\n margin-left: 20px;\n}\n.error-message[data-v-478a7944] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-478a7944] {\n width: 100%;\n}\ntextarea[data-v-478a7944],\ninput[type="password"][data-v-478a7944],\ninput[type="text"][data-v-478a7944],\ninput[type="number"][data-v-478a7944],\ninput[type="email"][data-v-478a7944] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-478a7944],\ninput[type="password"].is-error[data-v-478a7944],\ninput[type="text"].is-error[data-v-478a7944],\ninput[type="number"].is-error[data-v-478a7944],\ninput[type="email"].is-error[data-v-478a7944] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-478a7944]::-webkit-input-placeholder, input[type="password"][data-v-478a7944]::-webkit-input-placeholder, input[type="text"][data-v-478a7944]::-webkit-input-placeholder, input[type="number"][data-v-478a7944]::-webkit-input-placeholder, input[type="email"][data-v-478a7944]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-478a7944]::-moz-placeholder, input[type="password"][data-v-478a7944]::-moz-placeholder, input[type="text"][data-v-478a7944]::-moz-placeholder, input[type="number"][data-v-478a7944]::-moz-placeholder, input[type="email"][data-v-478a7944]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-478a7944]:-ms-input-placeholder, input[type="password"][data-v-478a7944]:-ms-input-placeholder, input[type="text"][data-v-478a7944]:-ms-input-placeholder, input[type="number"][data-v-478a7944]:-ms-input-placeholder, input[type="email"][data-v-478a7944]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-478a7944]::-ms-input-placeholder, input[type="password"][data-v-478a7944]::-ms-input-placeholder, input[type="text"][data-v-478a7944]::-ms-input-placeholder, input[type="number"][data-v-478a7944]::-ms-input-placeholder, input[type="email"][data-v-478a7944]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-478a7944]::placeholder,\ninput[type="password"][data-v-478a7944]::placeholder,\ninput[type="text"][data-v-478a7944]::placeholder,\ninput[type="number"][data-v-478a7944]::placeholder,\ninput[type="email"][data-v-478a7944]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-478a7944]:focus,\ninput[type="password"][data-v-478a7944]:focus,\ninput[type="text"][data-v-478a7944]:focus,\ninput[type="number"][data-v-478a7944]:focus,\ninput[type="email"][data-v-478a7944]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-478a7944],\ninput[type="password"][disabled][data-v-478a7944],\ninput[type="text"][disabled][data-v-478a7944],\ninput[type="number"][disabled][data-v-478a7944],\ninput[type="email"][disabled][data-v-478a7944] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-478a7944] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-478a7944], .additional-link a[data-v-478a7944] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-478a7944]:hover, .additional-link a[data-v-478a7944]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-478a7944] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-478a7944] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-478a7944], .form textarea[data-v-478a7944] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-478a7944] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-478a7944] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-478a7944] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-478a7944] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-478a7944] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-478a7944] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-478a7944] {\n display: block;\n}\n.single-line-form .submit-button[data-v-478a7944] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-478a7944],\n input[type="password"][data-v-478a7944],\n input[type="number"][data-v-478a7944],\n input[type="text"][data-v-478a7944],\n input[type="email"][data-v-478a7944] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-478a7944] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-478a7944] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-478a7944] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-478a7944] {\n color: #bec6cf;\n}\ntextarea[data-v-478a7944],\n input[type="password"][data-v-478a7944],\n input[type="text"][data-v-478a7944],\n input[type="number"][data-v-478a7944],\n input[type="email"][data-v-478a7944] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-478a7944]::-webkit-input-placeholder, input[type="password"][data-v-478a7944]::-webkit-input-placeholder, input[type="text"][data-v-478a7944]::-webkit-input-placeholder, input[type="number"][data-v-478a7944]::-webkit-input-placeholder, input[type="email"][data-v-478a7944]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-478a7944]::-moz-placeholder, input[type="password"][data-v-478a7944]::-moz-placeholder, input[type="text"][data-v-478a7944]::-moz-placeholder, input[type="number"][data-v-478a7944]::-moz-placeholder, input[type="email"][data-v-478a7944]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-478a7944]:-ms-input-placeholder, input[type="password"][data-v-478a7944]:-ms-input-placeholder, input[type="text"][data-v-478a7944]:-ms-input-placeholder, input[type="number"][data-v-478a7944]:-ms-input-placeholder, input[type="email"][data-v-478a7944]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-478a7944]::-ms-input-placeholder, input[type="password"][data-v-478a7944]::-ms-input-placeholder, input[type="text"][data-v-478a7944]::-ms-input-placeholder, input[type="number"][data-v-478a7944]::-ms-input-placeholder, input[type="email"][data-v-478a7944]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-478a7944]::placeholder,\n input[type="password"][data-v-478a7944]::placeholder,\n input[type="text"][data-v-478a7944]::placeholder,\n input[type="number"][data-v-478a7944]::placeholder,\n input[type="email"][data-v-478a7944]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-478a7944],\n input[type="password"][disabled][data-v-478a7944],\n input[type="text"][disabled][data-v-478a7944],\n input[type="number"][disabled][data-v-478a7944],\n input[type="email"][disabled][data-v-478a7944] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-478a7944] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(75);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-45c71fba] {\n max-width: 700px;\n}\n.form.inline-form[data-v-45c71fba] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-45c71fba] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-45c71fba] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-45c71fba] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-45c71fba] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-45c71fba] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-45c71fba] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-45c71fba]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-45c71fba] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-45c71fba] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-45c71fba] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-45c71fba] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-45c71fba] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-45c71fba] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-45c71fba] {\n margin-left: 20px;\n}\n.error-message[data-v-45c71fba] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-45c71fba] {\n width: 100%;\n}\ntextarea[data-v-45c71fba],\ninput[type="password"][data-v-45c71fba],\ninput[type="text"][data-v-45c71fba],\ninput[type="number"][data-v-45c71fba],\ninput[type="email"][data-v-45c71fba] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-45c71fba],\ninput[type="password"].is-error[data-v-45c71fba],\ninput[type="text"].is-error[data-v-45c71fba],\ninput[type="number"].is-error[data-v-45c71fba],\ninput[type="email"].is-error[data-v-45c71fba] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-45c71fba]::-webkit-input-placeholder, input[type="password"][data-v-45c71fba]::-webkit-input-placeholder, input[type="text"][data-v-45c71fba]::-webkit-input-placeholder, input[type="number"][data-v-45c71fba]::-webkit-input-placeholder, input[type="email"][data-v-45c71fba]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-45c71fba]::-moz-placeholder, input[type="password"][data-v-45c71fba]::-moz-placeholder, input[type="text"][data-v-45c71fba]::-moz-placeholder, input[type="number"][data-v-45c71fba]::-moz-placeholder, input[type="email"][data-v-45c71fba]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-45c71fba]:-ms-input-placeholder, input[type="password"][data-v-45c71fba]:-ms-input-placeholder, input[type="text"][data-v-45c71fba]:-ms-input-placeholder, input[type="number"][data-v-45c71fba]:-ms-input-placeholder, input[type="email"][data-v-45c71fba]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-45c71fba]::-ms-input-placeholder, input[type="password"][data-v-45c71fba]::-ms-input-placeholder, input[type="text"][data-v-45c71fba]::-ms-input-placeholder, input[type="number"][data-v-45c71fba]::-ms-input-placeholder, input[type="email"][data-v-45c71fba]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-45c71fba]::placeholder,\ninput[type="password"][data-v-45c71fba]::placeholder,\ninput[type="text"][data-v-45c71fba]::placeholder,\ninput[type="number"][data-v-45c71fba]::placeholder,\ninput[type="email"][data-v-45c71fba]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-45c71fba]:focus,\ninput[type="password"][data-v-45c71fba]:focus,\ninput[type="text"][data-v-45c71fba]:focus,\ninput[type="number"][data-v-45c71fba]:focus,\ninput[type="email"][data-v-45c71fba]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-45c71fba],\ninput[type="password"][disabled][data-v-45c71fba],\ninput[type="text"][disabled][data-v-45c71fba],\ninput[type="number"][disabled][data-v-45c71fba],\ninput[type="email"][disabled][data-v-45c71fba] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-45c71fba] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-45c71fba], .additional-link a[data-v-45c71fba] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-45c71fba]:hover, .additional-link a[data-v-45c71fba]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-45c71fba] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-45c71fba] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-45c71fba], .form textarea[data-v-45c71fba] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-45c71fba] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-45c71fba] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-45c71fba] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-45c71fba] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-45c71fba] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-45c71fba] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-45c71fba] {\n display: block;\n}\n.single-line-form .submit-button[data-v-45c71fba] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-45c71fba],\n input[type="password"][data-v-45c71fba],\n input[type="number"][data-v-45c71fba],\n input[type="text"][data-v-45c71fba],\n input[type="email"][data-v-45c71fba] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-45c71fba] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-45c71fba] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-45c71fba] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-45c71fba] {\n color: #bec6cf;\n}\ntextarea[data-v-45c71fba],\n input[type="password"][data-v-45c71fba],\n input[type="text"][data-v-45c71fba],\n input[type="number"][data-v-45c71fba],\n input[type="email"][data-v-45c71fba] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-45c71fba]::-webkit-input-placeholder, input[type="password"][data-v-45c71fba]::-webkit-input-placeholder, input[type="text"][data-v-45c71fba]::-webkit-input-placeholder, input[type="number"][data-v-45c71fba]::-webkit-input-placeholder, input[type="email"][data-v-45c71fba]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-45c71fba]::-moz-placeholder, input[type="password"][data-v-45c71fba]::-moz-placeholder, input[type="text"][data-v-45c71fba]::-moz-placeholder, input[type="number"][data-v-45c71fba]::-moz-placeholder, input[type="email"][data-v-45c71fba]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-45c71fba]:-ms-input-placeholder, input[type="password"][data-v-45c71fba]:-ms-input-placeholder, input[type="text"][data-v-45c71fba]:-ms-input-placeholder, input[type="number"][data-v-45c71fba]:-ms-input-placeholder, input[type="email"][data-v-45c71fba]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-45c71fba]::-ms-input-placeholder, input[type="password"][data-v-45c71fba]::-ms-input-placeholder, input[type="text"][data-v-45c71fba]::-ms-input-placeholder, input[type="number"][data-v-45c71fba]::-ms-input-placeholder, input[type="email"][data-v-45c71fba]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-45c71fba]::placeholder,\n input[type="password"][data-v-45c71fba]::placeholder,\n input[type="text"][data-v-45c71fba]::placeholder,\n input[type="number"][data-v-45c71fba]::placeholder,\n input[type="email"][data-v-45c71fba]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-45c71fba],\n input[type="password"][disabled][data-v-45c71fba],\n input[type="text"][disabled][data-v-45c71fba],\n input[type="number"][disabled][data-v-45c71fba],\n input[type="email"][disabled][data-v-45c71fba] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-45c71fba] {\n max-width: 100%;\n}\n@media only screen and (max-width: 960px) {\n.form .button-base[data-v-45c71fba] {\n width: 100%;\n margin-top: 0;\n text-align: center;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(76);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".plan-action[data-v-3e5693e3] {\n margin-top: 10px;\n}\n.list-info[data-v-3e5693e3] {\n display: flex;\n flex-wrap: wrap;\n}\n.list-info .list-item[data-v-3e5693e3] {\n flex: 0 0 50%;\n}\n",""])},function(t,e,n){"use strict";var a=n(77);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-5fce6c68] {\n max-width: 700px;\n}\n.form.inline-form[data-v-5fce6c68] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-5fce6c68] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-5fce6c68] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-5fce6c68] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-5fce6c68] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-5fce6c68] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-5fce6c68] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-5fce6c68]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-5fce6c68] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-5fce6c68] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-5fce6c68] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-5fce6c68] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-5fce6c68] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-5fce6c68] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-5fce6c68] {\n margin-left: 20px;\n}\n.error-message[data-v-5fce6c68] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-5fce6c68] {\n width: 100%;\n}\ntextarea[data-v-5fce6c68],\ninput[type="password"][data-v-5fce6c68],\ninput[type="text"][data-v-5fce6c68],\ninput[type="number"][data-v-5fce6c68],\ninput[type="email"][data-v-5fce6c68] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-5fce6c68],\ninput[type="password"].is-error[data-v-5fce6c68],\ninput[type="text"].is-error[data-v-5fce6c68],\ninput[type="number"].is-error[data-v-5fce6c68],\ninput[type="email"].is-error[data-v-5fce6c68] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-5fce6c68]::-webkit-input-placeholder, input[type="password"][data-v-5fce6c68]::-webkit-input-placeholder, input[type="text"][data-v-5fce6c68]::-webkit-input-placeholder, input[type="number"][data-v-5fce6c68]::-webkit-input-placeholder, input[type="email"][data-v-5fce6c68]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5fce6c68]::-moz-placeholder, input[type="password"][data-v-5fce6c68]::-moz-placeholder, input[type="text"][data-v-5fce6c68]::-moz-placeholder, input[type="number"][data-v-5fce6c68]::-moz-placeholder, input[type="email"][data-v-5fce6c68]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5fce6c68]:-ms-input-placeholder, input[type="password"][data-v-5fce6c68]:-ms-input-placeholder, input[type="text"][data-v-5fce6c68]:-ms-input-placeholder, input[type="number"][data-v-5fce6c68]:-ms-input-placeholder, input[type="email"][data-v-5fce6c68]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5fce6c68]::-ms-input-placeholder, input[type="password"][data-v-5fce6c68]::-ms-input-placeholder, input[type="text"][data-v-5fce6c68]::-ms-input-placeholder, input[type="number"][data-v-5fce6c68]::-ms-input-placeholder, input[type="email"][data-v-5fce6c68]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5fce6c68]::placeholder,\ninput[type="password"][data-v-5fce6c68]::placeholder,\ninput[type="text"][data-v-5fce6c68]::placeholder,\ninput[type="number"][data-v-5fce6c68]::placeholder,\ninput[type="email"][data-v-5fce6c68]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5fce6c68]:focus,\ninput[type="password"][data-v-5fce6c68]:focus,\ninput[type="text"][data-v-5fce6c68]:focus,\ninput[type="number"][data-v-5fce6c68]:focus,\ninput[type="email"][data-v-5fce6c68]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-5fce6c68],\ninput[type="password"][disabled][data-v-5fce6c68],\ninput[type="text"][disabled][data-v-5fce6c68],\ninput[type="number"][disabled][data-v-5fce6c68],\ninput[type="email"][disabled][data-v-5fce6c68] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-5fce6c68] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-5fce6c68], .additional-link a[data-v-5fce6c68] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-5fce6c68]:hover, .additional-link a[data-v-5fce6c68]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-5fce6c68] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-5fce6c68] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-5fce6c68], .form textarea[data-v-5fce6c68] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-5fce6c68] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-5fce6c68] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-5fce6c68] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-5fce6c68] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-5fce6c68] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-5fce6c68] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-5fce6c68] {\n display: block;\n}\n.single-line-form .submit-button[data-v-5fce6c68] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-5fce6c68],\n input[type="password"][data-v-5fce6c68],\n input[type="number"][data-v-5fce6c68],\n input[type="text"][data-v-5fce6c68],\n input[type="email"][data-v-5fce6c68] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-5fce6c68] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-5fce6c68] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-5fce6c68] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-5fce6c68] {\n color: #bec6cf;\n}\ntextarea[data-v-5fce6c68],\n input[type="password"][data-v-5fce6c68],\n input[type="text"][data-v-5fce6c68],\n input[type="number"][data-v-5fce6c68],\n input[type="email"][data-v-5fce6c68] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-5fce6c68]::-webkit-input-placeholder, input[type="password"][data-v-5fce6c68]::-webkit-input-placeholder, input[type="text"][data-v-5fce6c68]::-webkit-input-placeholder, input[type="number"][data-v-5fce6c68]::-webkit-input-placeholder, input[type="email"][data-v-5fce6c68]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5fce6c68]::-moz-placeholder, input[type="password"][data-v-5fce6c68]::-moz-placeholder, input[type="text"][data-v-5fce6c68]::-moz-placeholder, input[type="number"][data-v-5fce6c68]::-moz-placeholder, input[type="email"][data-v-5fce6c68]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5fce6c68]:-ms-input-placeholder, input[type="password"][data-v-5fce6c68]:-ms-input-placeholder, input[type="text"][data-v-5fce6c68]:-ms-input-placeholder, input[type="number"][data-v-5fce6c68]:-ms-input-placeholder, input[type="email"][data-v-5fce6c68]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5fce6c68]::-ms-input-placeholder, input[type="password"][data-v-5fce6c68]::-ms-input-placeholder, input[type="text"][data-v-5fce6c68]::-ms-input-placeholder, input[type="number"][data-v-5fce6c68]::-ms-input-placeholder, input[type="email"][data-v-5fce6c68]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5fce6c68]::placeholder,\n input[type="password"][data-v-5fce6c68]::placeholder,\n input[type="text"][data-v-5fce6c68]::placeholder,\n input[type="number"][data-v-5fce6c68]::placeholder,\n input[type="email"][data-v-5fce6c68]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-5fce6c68],\n input[type="password"][disabled][data-v-5fce6c68],\n input[type="text"][disabled][data-v-5fce6c68],\n input[type="number"][disabled][data-v-5fce6c68],\n input[type="email"][disabled][data-v-5fce6c68] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.is-deleting[data-v-5fce6c68] {\n opacity: 0.35;\n}\n.credit-card[data-v-5fce6c68] {\n display: flex;\n align-items: center;\n}\n.credit-card .credit-card-numbers[data-v-5fce6c68] {\n margin-right: 10px;\n}\n.credit-card .credit-card-icon[data-v-5fce6c68] {\n max-height: 20px;\n margin-right: 8px;\n}\n.page-actions[data-v-5fce6c68] {\n margin-top: 45px;\n margin-bottom: 10px;\n}\n',""])},function(t,e,n){"use strict";var a=n(78);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".input-wrapper[data-v-3922b662] {\n display: flex;\n width: 100%;\n}\n.input-wrapper .input-label[data-v-3922b662] {\n color: #1B2539;\n}\n.input-wrapper .switch-content[data-v-3922b662] {\n width: 100%;\n}\n.input-wrapper .switch-content[data-v-3922b662]:last-child {\n width: 80px;\n}\n.switch[data-v-3922b662] {\n width: 50px;\n height: 28px;\n border-radius: 50px;\n display: block;\n background: #f1f1f5;\n position: relative;\n transition: 0.3s all ease;\n}\n.switch .switch-button[data-v-3922b662] {\n transition: 0.3s all ease;\n width: 22px;\n height: 22px;\n border-radius: 50px;\n display: block;\n background: white;\n position: absolute;\n top: 3px;\n left: 3px;\n box-shadow: 0 2px 4px rgba(37, 38, 94, 0.1);\n cursor: pointer;\n}\n.switch.active[data-v-3922b662] {\n background: #00BC7E;\n}\n.switch.active .switch-button[data-v-3922b662] {\n left: 25px;\n}\n@media (prefers-color-scheme: dark) {\n.switch[data-v-3922b662] {\n background: #1e2024;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(79);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-4d66f24b] {\n max-width: 700px;\n}\n.form.inline-form[data-v-4d66f24b] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-4d66f24b] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4d66f24b] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-4d66f24b] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-4d66f24b] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-4d66f24b] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-4d66f24b] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-4d66f24b]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-4d66f24b] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-4d66f24b] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-4d66f24b] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-4d66f24b] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-4d66f24b] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-4d66f24b] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-4d66f24b] {\n margin-left: 20px;\n}\n.error-message[data-v-4d66f24b] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-4d66f24b] {\n width: 100%;\n}\ntextarea[data-v-4d66f24b],\ninput[type="password"][data-v-4d66f24b],\ninput[type="text"][data-v-4d66f24b],\ninput[type="number"][data-v-4d66f24b],\ninput[type="email"][data-v-4d66f24b] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-4d66f24b],\ninput[type="password"].is-error[data-v-4d66f24b],\ninput[type="text"].is-error[data-v-4d66f24b],\ninput[type="number"].is-error[data-v-4d66f24b],\ninput[type="email"].is-error[data-v-4d66f24b] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-4d66f24b]::-webkit-input-placeholder, input[type="password"][data-v-4d66f24b]::-webkit-input-placeholder, input[type="text"][data-v-4d66f24b]::-webkit-input-placeholder, input[type="number"][data-v-4d66f24b]::-webkit-input-placeholder, input[type="email"][data-v-4d66f24b]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4d66f24b]::-moz-placeholder, input[type="password"][data-v-4d66f24b]::-moz-placeholder, input[type="text"][data-v-4d66f24b]::-moz-placeholder, input[type="number"][data-v-4d66f24b]::-moz-placeholder, input[type="email"][data-v-4d66f24b]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4d66f24b]:-ms-input-placeholder, input[type="password"][data-v-4d66f24b]:-ms-input-placeholder, input[type="text"][data-v-4d66f24b]:-ms-input-placeholder, input[type="number"][data-v-4d66f24b]:-ms-input-placeholder, input[type="email"][data-v-4d66f24b]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4d66f24b]::-ms-input-placeholder, input[type="password"][data-v-4d66f24b]::-ms-input-placeholder, input[type="text"][data-v-4d66f24b]::-ms-input-placeholder, input[type="number"][data-v-4d66f24b]::-ms-input-placeholder, input[type="email"][data-v-4d66f24b]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4d66f24b]::placeholder,\ninput[type="password"][data-v-4d66f24b]::placeholder,\ninput[type="text"][data-v-4d66f24b]::placeholder,\ninput[type="number"][data-v-4d66f24b]::placeholder,\ninput[type="email"][data-v-4d66f24b]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4d66f24b]:focus,\ninput[type="password"][data-v-4d66f24b]:focus,\ninput[type="text"][data-v-4d66f24b]:focus,\ninput[type="number"][data-v-4d66f24b]:focus,\ninput[type="email"][data-v-4d66f24b]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-4d66f24b],\ninput[type="password"][disabled][data-v-4d66f24b],\ninput[type="text"][disabled][data-v-4d66f24b],\ninput[type="number"][disabled][data-v-4d66f24b],\ninput[type="email"][disabled][data-v-4d66f24b] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-4d66f24b] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-4d66f24b], .additional-link a[data-v-4d66f24b] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-4d66f24b]:hover, .additional-link a[data-v-4d66f24b]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-4d66f24b] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-4d66f24b] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-4d66f24b], .form textarea[data-v-4d66f24b] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-4d66f24b] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-4d66f24b] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-4d66f24b] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-4d66f24b] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4d66f24b] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-4d66f24b] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-4d66f24b] {\n display: block;\n}\n.single-line-form .submit-button[data-v-4d66f24b] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-4d66f24b],\n input[type="password"][data-v-4d66f24b],\n input[type="number"][data-v-4d66f24b],\n input[type="text"][data-v-4d66f24b],\n input[type="email"][data-v-4d66f24b] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-4d66f24b] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-4d66f24b] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-4d66f24b] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-4d66f24b] {\n color: #bec6cf;\n}\ntextarea[data-v-4d66f24b],\n input[type="password"][data-v-4d66f24b],\n input[type="text"][data-v-4d66f24b],\n input[type="number"][data-v-4d66f24b],\n input[type="email"][data-v-4d66f24b] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-4d66f24b]::-webkit-input-placeholder, input[type="password"][data-v-4d66f24b]::-webkit-input-placeholder, input[type="text"][data-v-4d66f24b]::-webkit-input-placeholder, input[type="number"][data-v-4d66f24b]::-webkit-input-placeholder, input[type="email"][data-v-4d66f24b]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4d66f24b]::-moz-placeholder, input[type="password"][data-v-4d66f24b]::-moz-placeholder, input[type="text"][data-v-4d66f24b]::-moz-placeholder, input[type="number"][data-v-4d66f24b]::-moz-placeholder, input[type="email"][data-v-4d66f24b]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4d66f24b]:-ms-input-placeholder, input[type="password"][data-v-4d66f24b]:-ms-input-placeholder, input[type="text"][data-v-4d66f24b]:-ms-input-placeholder, input[type="number"][data-v-4d66f24b]:-ms-input-placeholder, input[type="email"][data-v-4d66f24b]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4d66f24b]::-ms-input-placeholder, input[type="password"][data-v-4d66f24b]::-ms-input-placeholder, input[type="text"][data-v-4d66f24b]::-ms-input-placeholder, input[type="number"][data-v-4d66f24b]::-ms-input-placeholder, input[type="email"][data-v-4d66f24b]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4d66f24b]::placeholder,\n input[type="password"][data-v-4d66f24b]::placeholder,\n input[type="text"][data-v-4d66f24b]::placeholder,\n input[type="number"][data-v-4d66f24b]::placeholder,\n input[type="email"][data-v-4d66f24b]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-4d66f24b],\n input[type="password"][disabled][data-v-4d66f24b],\n input[type="text"][disabled][data-v-4d66f24b],\n input[type="number"][disabled][data-v-4d66f24b],\n input[type="email"][disabled][data-v-4d66f24b] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.register-card[data-v-4d66f24b] {\n margin-bottom: 25px;\n}\n.stripe-card[data-v-4d66f24b] {\n box-sizing: border-box;\n padding: 13px 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n background-color: white;\n box-shadow: 0 1px 3px 0 #e6ebf1;\n transition: box-shadow 150ms ease;\n}\n.stripe-card[data-v-4d66f24b]:not(.StripeElement) {\n background: #f4f5f6;\n padding: 14px 20px;\n}\n.stripe-card:not(.StripeElement) .loading[data-v-4d66f24b] {\n font-size: 0.875em;\n font-weight: 700;\n}\n.stripe-card.is-error[data-v-4d66f24b] {\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n border: 2px solid #fd397a;\n border-radius: 4px;\n}\n.stripe-card.StripeElement--focus[data-v-4d66f24b] {\n box-shadow: 0 1px 3px 0 #cfd7df;\n}\n.stripe-card.StripeElement--invalid[data-v-4d66f24b] {\n border-color: #fa755a;\n}\n.stripe-card.StripeElement--webkit-autofill[data-v-4d66f24b] {\n background-color: #fefde5 !important;\n}\n.stripe-card iframe .InputContainer .InputElement[data-v-4d66f24b] {\n color: white;\n}\n.card-error-message[data-v-4d66f24b] {\n padding-top: 10px;\n}\n.card-error-message span[data-v-4d66f24b], .card-error-message a[data-v-4d66f24b] {\n font-size: 0.875em;\n font-weight: 600;\n color: #fd397a;\n}\n.card-error-message .link[data-v-4d66f24b], .card-error-message a[data-v-4d66f24b] {\n text-decoration: underline;\n cursor: pointer;\n}\n.card-error-message .link[data-v-4d66f24b]:hover, .card-error-message a[data-v-4d66f24b]:hover {\n text-decoration: none;\n}\n',""])},function(t,e,n){"use strict";var a=n(80);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,"#files-view {\n font-family: 'Nunito', sans-serif;\n font-size: 16px;\n width: 100%;\n height: 100%;\n position: relative;\n min-width: 320px;\n overflow-x: hidden;\n padding-left: 15px;\n padding-right: 15px;\n overflow-y: hidden;\n}\n@media only screen and (max-width: 690px) {\n#files-view {\n padding-left: 0;\n padding-right: 0;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(81);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".upgrade-banner[data-v-086836f8] {\n background: rgba(253, 57, 122, 0.1);\n padding: 10px;\n border-radius: 6px;\n margin: 0 16px;\n}\n.header-title[data-v-086836f8] {\n margin-bottom: 12px;\n display: flex;\n align-items: center;\n}\n.header-title .icon[data-v-086836f8] {\n margin-right: 10px;\n}\n.header-title .icon line[data-v-086836f8], .header-title .icon path[data-v-086836f8] {\n stroke: #fd397a;\n}\n.header-title .title[data-v-086836f8] {\n font-size: 0.8125em;\n font-weight: 800;\n color: #fd397a;\n}\n.content[data-v-086836f8] {\n margin-bottom: 12px;\n}\n.content p[data-v-086836f8] {\n font-size: 0.75em;\n color: #fd397a;\n font-weight: 700;\n}\n.button[data-v-086836f8] {\n background: #fd397a;\n border-radius: 50px;\n padding: 6px 0;\n width: 100%;\n color: white;\n text-align: center;\n font-size: 0.75em;\n font-weight: 700;\n display: block;\n box-shadow: 0 4px 10px rgba(253, 57, 122, 0.35);\n}\n",""])},function(t,e,n){"use strict";var a=n(82);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".folder-item[data-v-4284144a] {\n display: block;\n padding: 8px 0;\n transition: 150ms all ease;\n cursor: pointer;\n position: relative;\n white-space: nowrap;\n width: 100%;\n}\n.folder-item .icon[data-v-4284144a] {\n line-height: 0;\n width: 15px;\n margin-right: 9px;\n vertical-align: middle;\n margin-top: -1px;\n}\n.folder-item .icon path[data-v-4284144a], .folder-item .icon line[data-v-4284144a], .folder-item .icon polyline[data-v-4284144a], .folder-item .icon rect[data-v-4284144a], .folder-item .icon circle[data-v-4284144a] {\n transition: 150ms all ease;\n}\n.folder-item .icon-arrow[data-v-4284144a] {\n transition: 300ms all ease;\n margin-right: 4px;\n vertical-align: middle;\n opacity: 0;\n}\n.folder-item .icon-arrow.is-visible[data-v-4284144a] {\n opacity: 1;\n}\n.folder-item .icon-arrow.is-opened[data-v-4284144a] {\n transform: rotate(90deg);\n}\n.folder-item .label[data-v-4284144a] {\n transition: 150ms all ease;\n font-size: 0.8125em;\n font-weight: 700;\n vertical-align: middle;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n color: #1B2539;\n max-width: 130px;\n}\n.folder-item:hover .icon path[data-v-4284144a], .folder-item:hover .icon line[data-v-4284144a], .folder-item:hover .icon polyline[data-v-4284144a], .folder-item:hover .icon rect[data-v-4284144a], .folder-item:hover .icon circle[data-v-4284144a], .folder-item.is-selected .icon path[data-v-4284144a], .folder-item.is-selected .icon line[data-v-4284144a], .folder-item.is-selected .icon polyline[data-v-4284144a], .folder-item.is-selected .icon rect[data-v-4284144a], .folder-item.is-selected .icon circle[data-v-4284144a] {\n stroke: #00BC7E;\n}\n.folder-item:hover .label[data-v-4284144a], .folder-item.is-selected .label[data-v-4284144a] {\n color: #00BC7E;\n}\n@media only screen and (max-width: 1024px) {\n.folder-item[data-v-4284144a] {\n padding: 8px 0;\n}\n}\n@media (prefers-color-scheme: dark) {\n.folder-item .label[data-v-4284144a] {\n color: #bec6cf;\n}\n.folder-item[data-v-4284144a]:hover {\n background: rgba(0, 188, 126, 0.1);\n}\n.folder-item.is-selected[data-v-4284144a] {\n background: rgba(0, 188, 126, 0.1);\n}\n.is-selected[data-v-4284144a] {\n background: rgba(0, 188, 126, 0.1);\n}\n}\n@media (prefers-color-scheme: dark) and (max-width: 690px) {\n.folder-item[data-v-4284144a]:hover, .folder-item.is-selected[data-v-4284144a] {\n background: rgba(0, 188, 126, 0.1);\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(83);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".empty-note.navigator[data-v-09665f59] {\n padding: 5px 25px 10px;\n}\n.empty-note.favourites[data-v-09665f59] {\n padding: 5px 23px 10px;\n}\n.navigator[data-v-09665f59] {\n width: 100%;\n overflow-x: auto;\n}\n@media only screen and (max-width: 1024px) {\n.empty-note.navigator[data-v-09665f59] {\n padding: 5px 20px 10px;\n}\n.empty-note.favourites[data-v-09665f59] {\n padding: 5px 18px 10px;\n}\n}\n.folder-item-move[data-v-09665f59] {\n transition: transform 300s ease;\n}\n.folder-item-enter-active[data-v-09665f59] {\n transition: all 300ms ease;\n}\n.folder-item-leave-active[data-v-09665f59] {\n transition: all 300ms;\n}\n.folder-item-enter[data-v-09665f59], .folder-item-leave-to[data-v-09665f59] {\n opacity: 0;\n transform: translateX(30px);\n}\n.folder-item-leave-active[data-v-09665f59] {\n position: absolute;\n}\n",""])},function(t,e,n){"use strict";var a=n(84);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".plan[data-v-8b2ebeb2] {\n text-align: center;\n flex: 0 0 33%;\n padding: 0 25px;\n margin-bottom: 45px;\n}\n.plan .plan-wrapper[data-v-8b2ebeb2] {\n box-shadow: 0 7px 20px 5px rgba(26, 36, 55, 0.03);\n padding: 25px;\n border-radius: 8px;\n transition: 0.3s all ease;\n}\n.plan .plan-wrapper[data-v-8b2ebeb2]:hover {\n transform: translateY(-20px) scale(1.05);\n box-shadow: 0 15px 25px 5px rgba(26, 36, 55, 0.08);\n}\n.plan .plan-header .icon path[data-v-8b2ebeb2], .plan .plan-header .icon line[data-v-8b2ebeb2], .plan .plan-header .icon polyline[data-v-8b2ebeb2], .plan .plan-header .icon rect[data-v-8b2ebeb2], .plan .plan-header .icon circle[data-v-8b2ebeb2] {\n color: #00BC7E;\n}\n.plan .plan-header .title[data-v-8b2ebeb2] {\n font-size: 1.375em;\n font-weight: 800;\n}\n.plan .plan-header .description[data-v-8b2ebeb2] {\n font-size: 0.875em;\n font-weight: 600;\n}\n.plan .plan-features[data-v-8b2ebeb2] {\n margin: 65px 0;\n}\n.plan .plan-features .storage-size[data-v-8b2ebeb2] {\n font-size: 3em;\n font-weight: 900;\n line-height: 1.1;\n}\n.plan .plan-features .storage-description[data-v-8b2ebeb2] {\n display: block;\n font-size: 0.9375em;\n font-weight: 800;\n}\n.plan .plan-footer .sign-in-button[data-v-8b2ebeb2] {\n width: 100%;\n text-align: center;\n}\n.plan .plan-footer .price[data-v-8b2ebeb2] {\n color: #00BC7E;\n font-size: 1.125em;\n display: block;\n margin-bottom: 20px;\n}\n.plan .plan-footer .price .vat-disclaimer[data-v-8b2ebeb2] {\n font-size: 0.6875em;\n color: #1B2539;\n display: block;\n font-weight: 300;\n opacity: 0.45;\n margin-top: 5px;\n}\n.plans-wrapper[data-v-8b2ebeb2] {\n display: flex;\n flex-wrap: wrap;\n margin: 0 -25px;\n justify-content: center;\n}\n@media only screen and (max-width: 960px) {\n.plans-wrapper[data-v-8b2ebeb2] {\n display: block;\n margin: 0;\n}\n}\n@media (prefers-color-scheme: dark) {\n.plan .plan-wrapper[data-v-8b2ebeb2] {\n background: #1e2024;\n}\n.plan .plan-header .title[data-v-8b2ebeb2] {\n color: #bec6cf;\n}\n.plan .plan-header .description[data-v-8b2ebeb2] {\n color: #7d858c;\n}\n.plan .plan-features .storage-size[data-v-8b2ebeb2] {\n color: #bec6cf;\n}\n.plan .plan-features .storage-description[data-v-8b2ebeb2] {\n color: #bec6cf;\n}\n.plan .plan-footer .sign-in-button[data-v-8b2ebeb2] {\n background: rgba(0, 188, 126, 0.1);\n}\n.plan .plan-footer .sign-in-button[data-v-8b2ebeb2] .content {\n color: #00BC7E;\n}\n.plan .plan-footer .price .vat-disclaimer[data-v-8b2ebeb2] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(85);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-67317b10] {\n max-width: 700px;\n}\n.form.inline-form[data-v-67317b10] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-67317b10] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-67317b10] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-67317b10] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-67317b10] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-67317b10] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-67317b10] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-67317b10]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-67317b10] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-67317b10] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-67317b10] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-67317b10] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-67317b10] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-67317b10] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-67317b10] {\n margin-left: 20px;\n}\n.error-message[data-v-67317b10] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-67317b10] {\n width: 100%;\n}\ntextarea[data-v-67317b10],\ninput[type="password"][data-v-67317b10],\ninput[type="text"][data-v-67317b10],\ninput[type="number"][data-v-67317b10],\ninput[type="email"][data-v-67317b10] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-67317b10],\ninput[type="password"].is-error[data-v-67317b10],\ninput[type="text"].is-error[data-v-67317b10],\ninput[type="number"].is-error[data-v-67317b10],\ninput[type="email"].is-error[data-v-67317b10] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-67317b10]::-webkit-input-placeholder, input[type="password"][data-v-67317b10]::-webkit-input-placeholder, input[type="text"][data-v-67317b10]::-webkit-input-placeholder, input[type="number"][data-v-67317b10]::-webkit-input-placeholder, input[type="email"][data-v-67317b10]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-67317b10]::-moz-placeholder, input[type="password"][data-v-67317b10]::-moz-placeholder, input[type="text"][data-v-67317b10]::-moz-placeholder, input[type="number"][data-v-67317b10]::-moz-placeholder, input[type="email"][data-v-67317b10]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-67317b10]:-ms-input-placeholder, input[type="password"][data-v-67317b10]:-ms-input-placeholder, input[type="text"][data-v-67317b10]:-ms-input-placeholder, input[type="number"][data-v-67317b10]:-ms-input-placeholder, input[type="email"][data-v-67317b10]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-67317b10]::-ms-input-placeholder, input[type="password"][data-v-67317b10]::-ms-input-placeholder, input[type="text"][data-v-67317b10]::-ms-input-placeholder, input[type="number"][data-v-67317b10]::-ms-input-placeholder, input[type="email"][data-v-67317b10]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-67317b10]::placeholder,\ninput[type="password"][data-v-67317b10]::placeholder,\ninput[type="text"][data-v-67317b10]::placeholder,\ninput[type="number"][data-v-67317b10]::placeholder,\ninput[type="email"][data-v-67317b10]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-67317b10]:focus,\ninput[type="password"][data-v-67317b10]:focus,\ninput[type="text"][data-v-67317b10]:focus,\ninput[type="number"][data-v-67317b10]:focus,\ninput[type="email"][data-v-67317b10]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-67317b10],\ninput[type="password"][disabled][data-v-67317b10],\ninput[type="text"][disabled][data-v-67317b10],\ninput[type="number"][disabled][data-v-67317b10],\ninput[type="email"][disabled][data-v-67317b10] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-67317b10] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-67317b10], .additional-link a[data-v-67317b10] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-67317b10]:hover, .additional-link a[data-v-67317b10]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-67317b10] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-67317b10] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-67317b10], .form textarea[data-v-67317b10] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-67317b10] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-67317b10] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-67317b10] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-67317b10] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-67317b10] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-67317b10] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-67317b10] {\n display: block;\n}\n.single-line-form .submit-button[data-v-67317b10] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-67317b10],\n input[type="password"][data-v-67317b10],\n input[type="number"][data-v-67317b10],\n input[type="text"][data-v-67317b10],\n input[type="email"][data-v-67317b10] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-67317b10] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-67317b10] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-67317b10] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-67317b10] {\n color: #bec6cf;\n}\ntextarea[data-v-67317b10],\n input[type="password"][data-v-67317b10],\n input[type="text"][data-v-67317b10],\n input[type="number"][data-v-67317b10],\n input[type="email"][data-v-67317b10] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-67317b10]::-webkit-input-placeholder, input[type="password"][data-v-67317b10]::-webkit-input-placeholder, input[type="text"][data-v-67317b10]::-webkit-input-placeholder, input[type="number"][data-v-67317b10]::-webkit-input-placeholder, input[type="email"][data-v-67317b10]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-67317b10]::-moz-placeholder, input[type="password"][data-v-67317b10]::-moz-placeholder, input[type="text"][data-v-67317b10]::-moz-placeholder, input[type="number"][data-v-67317b10]::-moz-placeholder, input[type="email"][data-v-67317b10]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-67317b10]:-ms-input-placeholder, input[type="password"][data-v-67317b10]:-ms-input-placeholder, input[type="text"][data-v-67317b10]:-ms-input-placeholder, input[type="number"][data-v-67317b10]:-ms-input-placeholder, input[type="email"][data-v-67317b10]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-67317b10]::-ms-input-placeholder, input[type="password"][data-v-67317b10]::-ms-input-placeholder, input[type="text"][data-v-67317b10]::-ms-input-placeholder, input[type="number"][data-v-67317b10]::-ms-input-placeholder, input[type="email"][data-v-67317b10]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-67317b10]::placeholder,\n input[type="password"][data-v-67317b10]::placeholder,\n input[type="text"][data-v-67317b10]::placeholder,\n input[type="number"][data-v-67317b10]::placeholder,\n input[type="email"][data-v-67317b10]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-67317b10],\n input[type="password"][disabled][data-v-67317b10],\n input[type="text"][disabled][data-v-67317b10],\n input[type="number"][disabled][data-v-67317b10],\n input[type="email"][disabled][data-v-67317b10] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.plan-title[data-v-67317b10] {\n text-align: center;\n max-width: 600px;\n margin: 0 auto 80px;\n}\n.plan-title path[data-v-67317b10], .plan-title line[data-v-67317b10], .plan-title polyline[data-v-67317b10], .plan-title rect[data-v-67317b10], .plan-title circle[data-v-67317b10] {\n color: #00BC7E;\n}\n.plan-title h1[data-v-67317b10] {\n font-size: 2.375em;\n font-weight: 800;\n margin-bottom: 5px;\n}\n.plan-title h2[data-v-67317b10] {\n font-size: 1.25em;\n font-weight: 500;\n}\n@media (prefers-color-scheme: dark) {\n.plan-title h1[data-v-67317b10] {\n color: #bec6cf;\n}\n.plan-title h2[data-v-67317b10] {\n color: #7d858c;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(86);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-05cec4db] {\n max-width: 700px;\n}\n.form.inline-form[data-v-05cec4db] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-05cec4db] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-05cec4db] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-05cec4db] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-05cec4db] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-05cec4db] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-05cec4db] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-05cec4db]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-05cec4db] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-05cec4db] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-05cec4db] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-05cec4db] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-05cec4db] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-05cec4db] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-05cec4db] {\n margin-left: 20px;\n}\n.error-message[data-v-05cec4db] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-05cec4db] {\n width: 100%;\n}\ntextarea[data-v-05cec4db],\ninput[type="password"][data-v-05cec4db],\ninput[type="text"][data-v-05cec4db],\ninput[type="number"][data-v-05cec4db],\ninput[type="email"][data-v-05cec4db] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-05cec4db],\ninput[type="password"].is-error[data-v-05cec4db],\ninput[type="text"].is-error[data-v-05cec4db],\ninput[type="number"].is-error[data-v-05cec4db],\ninput[type="email"].is-error[data-v-05cec4db] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-05cec4db]::-webkit-input-placeholder, input[type="password"][data-v-05cec4db]::-webkit-input-placeholder, input[type="text"][data-v-05cec4db]::-webkit-input-placeholder, input[type="number"][data-v-05cec4db]::-webkit-input-placeholder, input[type="email"][data-v-05cec4db]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-05cec4db]::-moz-placeholder, input[type="password"][data-v-05cec4db]::-moz-placeholder, input[type="text"][data-v-05cec4db]::-moz-placeholder, input[type="number"][data-v-05cec4db]::-moz-placeholder, input[type="email"][data-v-05cec4db]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-05cec4db]:-ms-input-placeholder, input[type="password"][data-v-05cec4db]:-ms-input-placeholder, input[type="text"][data-v-05cec4db]:-ms-input-placeholder, input[type="number"][data-v-05cec4db]:-ms-input-placeholder, input[type="email"][data-v-05cec4db]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-05cec4db]::-ms-input-placeholder, input[type="password"][data-v-05cec4db]::-ms-input-placeholder, input[type="text"][data-v-05cec4db]::-ms-input-placeholder, input[type="number"][data-v-05cec4db]::-ms-input-placeholder, input[type="email"][data-v-05cec4db]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-05cec4db]::placeholder,\ninput[type="password"][data-v-05cec4db]::placeholder,\ninput[type="text"][data-v-05cec4db]::placeholder,\ninput[type="number"][data-v-05cec4db]::placeholder,\ninput[type="email"][data-v-05cec4db]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-05cec4db]:focus,\ninput[type="password"][data-v-05cec4db]:focus,\ninput[type="text"][data-v-05cec4db]:focus,\ninput[type="number"][data-v-05cec4db]:focus,\ninput[type="email"][data-v-05cec4db]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-05cec4db],\ninput[type="password"][disabled][data-v-05cec4db],\ninput[type="text"][disabled][data-v-05cec4db],\ninput[type="number"][disabled][data-v-05cec4db],\ninput[type="email"][disabled][data-v-05cec4db] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-05cec4db] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-05cec4db], .additional-link a[data-v-05cec4db] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-05cec4db]:hover, .additional-link a[data-v-05cec4db]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-05cec4db] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-05cec4db] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-05cec4db], .form textarea[data-v-05cec4db] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-05cec4db] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-05cec4db] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-05cec4db] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-05cec4db] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-05cec4db] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-05cec4db] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-05cec4db] {\n display: block;\n}\n.single-line-form .submit-button[data-v-05cec4db] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-05cec4db],\n input[type="password"][data-v-05cec4db],\n input[type="number"][data-v-05cec4db],\n input[type="text"][data-v-05cec4db],\n input[type="email"][data-v-05cec4db] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-05cec4db] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-05cec4db] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-05cec4db] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-05cec4db] {\n color: #bec6cf;\n}\ntextarea[data-v-05cec4db],\n input[type="password"][data-v-05cec4db],\n input[type="text"][data-v-05cec4db],\n input[type="number"][data-v-05cec4db],\n input[type="email"][data-v-05cec4db] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-05cec4db]::-webkit-input-placeholder, input[type="password"][data-v-05cec4db]::-webkit-input-placeholder, input[type="text"][data-v-05cec4db]::-webkit-input-placeholder, input[type="number"][data-v-05cec4db]::-webkit-input-placeholder, input[type="email"][data-v-05cec4db]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-05cec4db]::-moz-placeholder, input[type="password"][data-v-05cec4db]::-moz-placeholder, input[type="text"][data-v-05cec4db]::-moz-placeholder, input[type="number"][data-v-05cec4db]::-moz-placeholder, input[type="email"][data-v-05cec4db]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-05cec4db]:-ms-input-placeholder, input[type="password"][data-v-05cec4db]:-ms-input-placeholder, input[type="text"][data-v-05cec4db]:-ms-input-placeholder, input[type="number"][data-v-05cec4db]:-ms-input-placeholder, input[type="email"][data-v-05cec4db]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-05cec4db]::-ms-input-placeholder, input[type="password"][data-v-05cec4db]::-ms-input-placeholder, input[type="text"][data-v-05cec4db]::-ms-input-placeholder, input[type="number"][data-v-05cec4db]::-ms-input-placeholder, input[type="email"][data-v-05cec4db]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-05cec4db]::placeholder,\n input[type="password"][data-v-05cec4db]::placeholder,\n input[type="text"][data-v-05cec4db]::placeholder,\n input[type="number"][data-v-05cec4db]::placeholder,\n input[type="email"][data-v-05cec4db]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-05cec4db],\n input[type="password"][disabled][data-v-05cec4db],\n input[type="text"][disabled][data-v-05cec4db],\n input[type="number"][disabled][data-v-05cec4db],\n input[type="email"][disabled][data-v-05cec4db] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.change-payment[data-v-05cec4db] {\n padding-top: 10px;\n}\n.change-payment span[data-v-05cec4db] {\n font-weight: 600;\n}\n.change-payment a[data-v-05cec4db] {\n cursor: pointer;\n font-weight: 700;\n}\n.change-payment a[data-v-05cec4db]:hover {\n text-decoration: underline;\n}\n.change-payment span[data-v-05cec4db], .change-payment a[data-v-05cec4db] {\n color: rgba(27, 37, 57, 0.7);\n font-size: 0.875em;\n}\n.card-error-message[data-v-05cec4db] {\n padding-top: 10px;\n}\n.card-error-message span[data-v-05cec4db], .card-error-message a[data-v-05cec4db] {\n font-size: 0.875em;\n font-weight: 600;\n color: #fd397a;\n}\n.card-error-message .link[data-v-05cec4db], .card-error-message a[data-v-05cec4db] {\n text-decoration: underline;\n cursor: pointer;\n}\n.card-error-message .link[data-v-05cec4db]:hover, .card-error-message a[data-v-05cec4db]:hover {\n text-decoration: none;\n}\n.registered-cards[data-v-05cec4db] {\n margin-bottom: 50px;\n}\n.register-card[data-v-05cec4db] {\n margin-bottom: 55px;\n}\n.credit-card[data-v-05cec4db] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 15px;\n background: #f4f5f6;\n border-radius: 8px;\n margin-top: 20px;\n}\n.credit-card.is-error[data-v-05cec4db] {\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n border: 2px solid #fd397a;\n border-radius: 4px;\n}\n.credit-card span[data-v-05cec4db] {\n font-weight: 700;\n}\n.credit-card .card-number[data-v-05cec4db] {\n display: flex;\n}\n.credit-card .credit-card-numbers[data-v-05cec4db] {\n vertical-align: middle;\n margin-right: 10px;\n}\n.credit-card .credit-card-icon[data-v-05cec4db] {\n vertical-align: middle;\n max-height: 20px;\n margin-right: 8px;\n}\n.stripe-card[data-v-05cec4db] {\n box-sizing: border-box;\n padding: 13px 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n background-color: white;\n box-shadow: 0 1px 3px 0 #e6ebf1;\n transition: box-shadow 150ms ease;\n}\n.stripe-card.is-error[data-v-05cec4db] {\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n border: 2px solid #fd397a;\n border-radius: 4px;\n}\n.stripe-card.StripeElement--focus[data-v-05cec4db] {\n box-shadow: 0 1px 3px 0 #cfd7df;\n}\n.stripe-card.StripeElement--invalid[data-v-05cec4db] {\n border-color: #fa755a;\n}\n.stripe-card.StripeElement--webkit-autofill[data-v-05cec4db] {\n background-color: #fefde5 !important;\n}\n.stripe-card iframe .InputContainer .InputElement[data-v-05cec4db] {\n color: white;\n}\n.summary-list[data-v-05cec4db] {\n box-shadow: 0 7px 20px 5px rgba(26, 36, 55, 0.06);\n border-radius: 8px;\n position: -webkit-sticky;\n position: sticky;\n padding: 25px;\n top: 30px;\n}\n.summary-list.is-error[data-v-05cec4db] {\n border: 2px solid #fd397a;\n box-shadow: 0 7px 20px 5px rgba(253, 57, 122, 0.06);\n}\n.summary-list .error-message[data-v-05cec4db] {\n font-weight: 600;\n}\n.summary-list .next-submit[data-v-05cec4db] {\n width: 100%;\n margin-top: 20px;\n}\n.summary-list .disclaimer[data-v-05cec4db] {\n font-size: 0.75em;\n line-height: 1.6;\n display: block;\n margin-top: 12px;\n}\n.summary-list .row[data-v-05cec4db] {\n display: flex;\n justify-content: space-between;\n padding: 15px 0;\n}\n.summary-list .row[data-v-05cec4db]:first-child {\n padding-top: 0;\n}\n.summary-list .row[data-v-05cec4db]:last-of-type {\n border-top: 1px solid #F8F8F8;\n padding-bottom: 0;\n}\n.summary-list .row:last-of-type b[data-v-05cec4db] {\n font-weight: 800;\n}\n.summary-list .cell b[data-v-05cec4db] {\n display: block;\n font-size: 1.125em;\n}\n.summary-list .cell small[data-v-05cec4db] {\n color: rgba(27, 37, 57, 0.7);\n font-size: 0.75em;\n}\n.order[data-v-05cec4db] {\n display: flex;\n margin-bottom: 30px;\n}\n.order .steps[data-v-05cec4db] {\n flex: 0 0 65%;\n padding-right: 30px;\n}\n.order .steps .form[data-v-05cec4db] {\n max-width: 100%;\n}\n.order .summary[data-v-05cec4db] {\n flex: 0 0 34%;\n}\n.plan-title[data-v-05cec4db] {\n text-align: center;\n max-width: 600px;\n margin: 0 auto 80px;\n}\n.plan-title path[data-v-05cec4db], .plan-title line[data-v-05cec4db], .plan-title polyline[data-v-05cec4db], .plan-title rect[data-v-05cec4db], .plan-title circle[data-v-05cec4db] {\n color: #00BC7E;\n}\n.plan-title h1[data-v-05cec4db] {\n font-size: 2.375em;\n font-weight: 800;\n margin-bottom: 5px;\n}\n.plan-title h2[data-v-05cec4db] {\n font-size: 1.25em;\n font-weight: 500;\n}\n@media (prefers-color-scheme: dark) {\n.plan-title h1[data-v-05cec4db] {\n color: #bec6cf;\n}\n.plan-title h2[data-v-05cec4db] {\n color: #7d858c;\n}\n.credit-card[data-v-05cec4db] {\n background: #1e2024;\n}\n.credit-card span[data-v-05cec4db], .credit-card .credit-card-numbers[data-v-05cec4db] {\n color: #bec6cf;\n}\n.change-payment span[data-v-05cec4db] {\n color: #7d858c;\n}\n.change-payment a[data-v-05cec4db] {\n color: #00BC7E;\n}\n.summary-list[data-v-05cec4db] {\n background: #1e2024;\n}\n.summary-list .disclaimer[data-v-05cec4db] {\n color: #7d858c;\n}\n.summary-list .row[data-v-05cec4db]:last-of-type {\n border-top: 1px solid rgba(255, 255, 255, 0.02);\n}\n.summary-list .row:last-of-type b[data-v-05cec4db] {\n color: #bec6cf;\n}\n.summary-list .cell b[data-v-05cec4db] {\n color: #bec6cf;\n}\n.summary-list .cell small[data-v-05cec4db] {\n color: #7d858c;\n}\n.stripe-card[data-v-05cec4db] {\n border: 1px solid transparent;\n box-shadow: none;\n}\n.stripe-card.StripeElement--webkit-autofill[data-v-05cec4db] {\n background-color: #1e2024 !important;\n}\n.stripe-card.StripeElement--focus[data-v-05cec4db] {\n box-shadow: none;\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\n}\n@media only screen and (max-width: 960px) {\n.order[data-v-05cec4db] {\n display: block;\n}\n.order .steps[data-v-05cec4db] {\n margin-bottom: 70px;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(87);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".link-item[data-v-732ad081] {\n display: flex;\n text-decoration: none;\n padding: 17px 0;\n width: 100%;\n}\n.link-item.power .menu-icon path[data-v-732ad081], .link-item.power .menu-icon line[data-v-732ad081], .link-item.power .menu-icon polyline[data-v-732ad081], .link-item.power .menu-icon rect[data-v-732ad081], .link-item.power .menu-icon circle[data-v-732ad081], .link-item.power .menu-icon ellipse[data-v-732ad081] {\n stroke: #FE6057;\n}\n.link-item.power .menu-link[data-v-732ad081] {\n color: #FE6057;\n}\n.link-item .menu-icon[data-v-732ad081] {\n display: block;\n margin-right: 20px;\n}\n.link-item .menu-icon svg[data-v-732ad081] {\n margin-top: -1px;\n vertical-align: middle;\n}\n.link-item .menu-icon path[data-v-732ad081], .link-item .menu-icon line[data-v-732ad081], .link-item .menu-icon polyline[data-v-732ad081], .link-item .menu-icon rect[data-v-732ad081], .link-item .menu-icon circle[data-v-732ad081], .link-item .menu-icon ellipse[data-v-732ad081] {\n stroke: #1B2539;\n}\n.link-item .menu-link[data-v-732ad081] {\n width: 100%;\n display: flex;\n justify-content: space-between;\n align-items: center;\n color: #1B2539;\n}\n.link-item .menu-link span[data-v-732ad081] {\n font-size: 0.875em;\n}\n@media (prefers-color-scheme: dark) {\n.link-item .menu-icon path[data-v-732ad081], .link-item .menu-icon line[data-v-732ad081], .link-item .menu-icon polyline[data-v-732ad081], .link-item .menu-icon rect[data-v-732ad081], .link-item .menu-icon circle[data-v-732ad081], .link-item .menu-icon ellipse[data-v-732ad081] {\n stroke: #bec6cf;\n}\n.link-item .menu-link[data-v-732ad081] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(88);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".mobile-navigation[data-v-ca3ed3b6] {\n width: 100%;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 99;\n}\n.mobile-navigation .mobile-menu-label[data-v-ca3ed3b6] {\n margin-top: 30px;\n margin-bottom: 5px;\n font-size: 0.6875em;\n color: rgba(27, 37, 57, 0.7);\n display: block;\n}\n.mobile-navigation .mobile-menu-label[data-v-ca3ed3b6]:first-child {\n margin-top: 0;\n}\n@media (prefers-color-scheme: dark) {\n.mobile-navigation .mobile-menu-label[data-v-ca3ed3b6] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(89);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".mobile-navigation[data-v-e2f621f6] {\n width: 100%;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 99;\n}\n.mobile-navigation .mobile-menu-label[data-v-e2f621f6] {\n margin-top: 30px;\n margin-bottom: 5px;\n font-size: 0.6875em;\n color: rgba(27, 37, 57, 0.7);\n display: block;\n}\n.mobile-navigation .mobile-menu-label[data-v-e2f621f6]:first-child {\n margin-top: 0;\n}\n@media (prefers-color-scheme: dark) {\n.mobile-navigation .mobile-menu-label[data-v-e2f621f6] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(90);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".user-headline[data-v-f66ada38] {\n margin-bottom: 38px;\n}\n",""])},function(t,e,n){"use strict";var a=n(91);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".cell-image-thumbnail[data-v-9a875e3a] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.cell-image-thumbnail .image[data-v-9a875e3a] {\n margin-right: 20px;\n line-height: 0;\n position: relative;\n}\n.cell-image-thumbnail .image img[data-v-9a875e3a] {\n line-height: 0;\n width: 48px;\n height: 48px;\n border-radius: 8px;\n z-index: 1;\n position: relative;\n}\n.cell-image-thumbnail .image img.blurred[data-v-9a875e3a] {\n position: absolute;\n left: 0;\n top: 2px;\n z-index: 0;\n -webkit-filter: blur(8px);\n filter: blur(8px);\n opacity: 0.5;\n}\n.cell-image-thumbnail .image.small img[data-v-9a875e3a] {\n width: 32px;\n height: 32px;\n}\n.cell-image-thumbnail .info .name[data-v-9a875e3a], .cell-image-thumbnail .info .description[data-v-9a875e3a] {\n max-width: 150px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n display: block;\n}\n.cell-image-thumbnail .info .name[data-v-9a875e3a] {\n font-size: 0.9375em;\n line-height: 1;\n color: #1B2539;\n}\n.cell-image-thumbnail .info .description[data-v-9a875e3a] {\n color: rgba(27, 37, 57, 0.7);\n font-size: 0.75em;\n}\n@media (prefers-color-scheme: dark) {\n.cell-image-thumbnail .image img.blurred[data-v-9a875e3a] {\n display: none;\n}\n.cell-image-thumbnail .info .name[data-v-9a875e3a] {\n color: #bec6cf;\n}\n.cell-image-thumbnail .info .description[data-v-9a875e3a] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(92);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".empty-page-content[data-v-2d45c340] {\n width: 100%;\n height: 100%;\n display: flex;\n align-items: center;\n text-align: center;\n}\n.empty-page-content .content[data-v-2d45c340] {\n margin: 0 auto;\n max-width: 360px;\n}\n.empty-page-content .content[data-v-2d45c340] .button-base {\n margin: 0 auto;\n}\n.empty-page-content .icon path[data-v-2d45c340], .empty-page-content .icon polyline[data-v-2d45c340], .empty-page-content .icon line[data-v-2d45c340], .empty-page-content .icon circle[data-v-2d45c340] {\n stroke: #00BC7E;\n}\n.empty-page-content .header[data-v-2d45c340] {\n margin-top: 15px;\n margin-bottom: 25px;\n}\n.empty-page-content .title[data-v-2d45c340] {\n font-size: 1.4375em;\n font-weight: 700;\n padding-bottom: 5px;\n}\n.empty-page-content .description[data-v-2d45c340] {\n font-size: 1em;\n font-weight: 500;\n}\n",""])},function(t,e,n){"use strict";var a=n(93);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".user-thumbnail[data-v-827f9224] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.user-thumbnail .avatar[data-v-827f9224] {\n margin-right: 20px;\n line-height: 0;\n}\n.user-thumbnail .avatar img[data-v-827f9224] {\n line-height: 0;\n width: 48px;\n height: 48px;\n border-radius: 8px;\n}\n.user-thumbnail .info .name[data-v-827f9224] {\n max-width: 150px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n display: block;\n}\n.user-thumbnail .info .name[data-v-827f9224] {\n font-size: 0.9375em;\n line-height: 1;\n}\n.table-tools[data-v-827f9224] {\n background: white;\n display: flex;\n justify-content: space-between;\n padding: 15px 0 10px;\n position: -webkit-sticky;\n position: sticky;\n top: 40px;\n z-index: 9;\n}\n.table .cell-item[data-v-827f9224] {\n font-size: 0.9375em;\n white-space: nowrap;\n}\n.table .name[data-v-827f9224] {\n font-weight: 700;\n cursor: pointer;\n}\n@media only screen and (max-width: 690px) {\n.table-tools[data-v-827f9224] {\n padding: 0 0 5px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.table-tools[data-v-827f9224] {\n background: #111314;\n}\n.action-icons .icon[data-v-827f9224] {\n cursor: pointer;\n}\n.action-icons .icon circle[data-v-827f9224], .action-icons .icon path[data-v-827f9224], .action-icons .icon line[data-v-827f9224], .action-icons .icon polyline[data-v-827f9224] {\n stroke: #bec6cf;\n}\n.user-thumbnail .info .email[data-v-827f9224] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(94);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".widget-content[data-v-0c299a3c] {\n padding: 20px;\n border-radius: 8px;\n box-shadow: 0 3px 15px 2px rgba(26, 36, 55, 0.05);\n background: white;\n}\n.headline[data-v-0c299a3c] {\n display: flex;\n}\n.headline .icon[data-v-0c299a3c] {\n margin-right: 10px;\n}\n.headline .icon path[data-v-0c299a3c], .headline .icon circle[data-v-0c299a3c], .headline .icon line[data-v-0c299a3c], .headline .icon polygon[data-v-0c299a3c] {\n stroke: #00BC7E;\n}\n@media only screen and (max-width: 1190px) {\n.headline .title[data-v-0c299a3c] {\n font-size: 0.875em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.widget-content[data-v-0c299a3c] {\n background: #1e2024;\n}\n.headline .title[data-v-0c299a3c] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(95);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,"",""])},function(t,e,n){"use strict";var a=n(96);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".widget-value[data-v-26c186ae] {\n margin-top: 10px;\n margin-bottom: 30px;\n}\n.widget-value span[data-v-26c186ae] {\n font-size: 2.375em;\n font-weight: 800;\n}\n.footer-link[data-v-26c186ae] {\n display: flex;\n align-items: center;\n}\n.footer-link polyline[data-v-26c186ae] {\n stroke: #00BC7E;\n}\n.footer-link .content[data-v-26c186ae] {\n font-size: 0.75em;\n font-weight: 700;\n margin-right: 5px;\n}\n@media only screen and (max-width: 1190px) {\n.widget-value span[data-v-26c186ae] {\n font-size: 1.875em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.widget-value span[data-v-26c186ae] {\n color: #bec6cf;\n}\n.footer-link .content[data-v-26c186ae] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(97);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".dashboard-notice[data-v-55ec1203] {\n margin-bottom: 20px;\n}\n.widgets-total[data-v-55ec1203] {\n display: grid;\n margin: 0 -20px 20px;\n}\n.widgets-total.widgets-coll-2[data-v-55ec1203] {\n grid-template-columns: repeat(auto-fill, 50%);\n}\n.widgets-total.widgets-coll-3[data-v-55ec1203] {\n grid-template-columns: repeat(auto-fill, 33%);\n}\n.widgets-total .widget[data-v-55ec1203] {\n width: 100%;\n padding: 20px;\n}\n.dashboard-headline[data-v-55ec1203] {\n display: flex;\n justify-content: space-between;\n margin-top: 20px;\n margin-bottom: 20px;\n}\n.became-backer[data-v-55ec1203] {\n background: rgba(255, 189, 45, 0.1);\n display: inline-block;\n padding: 5px 10px;\n border-radius: 6px;\n margin-left: 40px;\n cursor: pointer;\n}\n.became-backer .icon[data-v-55ec1203], .became-backer .content[data-v-55ec1203] {\n display: inline-block;\n vertical-align: middle;\n}\n.became-backer .icon[data-v-55ec1203] {\n margin-right: 10px;\n line-height: 0;\n}\n.became-backer .icon rect[data-v-55ec1203], .became-backer .icon line[data-v-55ec1203] {\n stroke: #FFBD2D;\n}\n.became-backer .content[data-v-55ec1203] {\n color: #FFBD2D;\n font-weight: 700;\n font-size: 0.875em;\n}\n.metadata .meta[data-v-55ec1203] {\n display: inline-block;\n margin-left: 20px;\n}\n.metadata .meta-title[data-v-55ec1203] {\n font-size: 0.875em;\n font-weight: 700;\n}\n.logo .dark-mode[data-v-55ec1203] {\n display: none;\n}\n@media only screen and (max-width: 1190px) {\n.widgets-total[data-v-55ec1203] {\n margin: 0 -10px 10px;\n}\n.widgets-total .widget[data-v-55ec1203] {\n padding: 10px;\n}\n}\n@media only screen and (max-width: 1024px) {\n.widgets-total.widgets-coll-2[data-v-55ec1203], .widgets-total.widgets-coll-3[data-v-55ec1203] {\n grid-template-columns: repeat(auto-fill, 50%);\n}\n}\n@media only screen and (max-width: 960px) {\n.widgets-total.widgets-coll-2[data-v-55ec1203], .widgets-total.widgets-coll-3[data-v-55ec1203] {\n grid-template-columns: repeat(auto-fill, 100%);\n}\n.became-backer[data-v-55ec1203] {\n display: none;\n}\n.dashboard-headline[data-v-55ec1203] {\n display: block;\n text-align: left;\n}\n.dashboard-headline .metadata .meta[data-v-55ec1203]:first-child {\n margin-left: 0;\n}\n.dashboard-headline .logo[data-v-55ec1203] {\n margin-bottom: 10px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.logo .dark-mode[data-v-55ec1203] {\n display: block;\n}\n.logo .light-mode[data-v-55ec1203] {\n display: none;\n}\n.metadata .meta-title[data-v-55ec1203] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(98);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,"",""])},function(t,e,n){"use strict";var a=n(99);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".table-tools[data-v-aab3f91e] {\n background: white;\n display: flex;\n justify-content: space-between;\n padding: 15px 0 10px;\n position: -webkit-sticky;\n position: sticky;\n top: 40px;\n z-index: 9;\n}\n.table .cell-item[data-v-aab3f91e] {\n font-size: 0.9375em;\n white-space: nowrap;\n}\n.table .name[data-v-aab3f91e] {\n font-weight: 700;\n cursor: pointer;\n}\n@media only screen and (max-width: 690px) {\n.table-tools[data-v-aab3f91e] {\n padding: 0 0 5px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.table-tools[data-v-aab3f91e] {\n background: #111314;\n}\n.action-icons .icon[data-v-aab3f91e] {\n cursor: pointer;\n}\n.action-icons .icon circle[data-v-aab3f91e], .action-icons .icon path[data-v-aab3f91e], .action-icons .icon line[data-v-aab3f91e], .action-icons .icon polyline[data-v-aab3f91e] {\n stroke: #bec6cf;\n}\n.user-thumbnail .info .email[data-v-aab3f91e] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(100);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-392a47b2] {\n max-width: 700px;\n}\n.form.inline-form[data-v-392a47b2] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-392a47b2] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-392a47b2] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-392a47b2] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-392a47b2] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-392a47b2] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-392a47b2] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-392a47b2]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-392a47b2] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-392a47b2] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-392a47b2] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-392a47b2] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-392a47b2] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-392a47b2] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-392a47b2] {\n margin-left: 20px;\n}\n.error-message[data-v-392a47b2] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-392a47b2] {\n width: 100%;\n}\ntextarea[data-v-392a47b2],\ninput[type="password"][data-v-392a47b2],\ninput[type="text"][data-v-392a47b2],\ninput[type="number"][data-v-392a47b2],\ninput[type="email"][data-v-392a47b2] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-392a47b2],\ninput[type="password"].is-error[data-v-392a47b2],\ninput[type="text"].is-error[data-v-392a47b2],\ninput[type="number"].is-error[data-v-392a47b2],\ninput[type="email"].is-error[data-v-392a47b2] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-392a47b2]::-webkit-input-placeholder, input[type="password"][data-v-392a47b2]::-webkit-input-placeholder, input[type="text"][data-v-392a47b2]::-webkit-input-placeholder, input[type="number"][data-v-392a47b2]::-webkit-input-placeholder, input[type="email"][data-v-392a47b2]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-392a47b2]::-moz-placeholder, input[type="password"][data-v-392a47b2]::-moz-placeholder, input[type="text"][data-v-392a47b2]::-moz-placeholder, input[type="number"][data-v-392a47b2]::-moz-placeholder, input[type="email"][data-v-392a47b2]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-392a47b2]:-ms-input-placeholder, input[type="password"][data-v-392a47b2]:-ms-input-placeholder, input[type="text"][data-v-392a47b2]:-ms-input-placeholder, input[type="number"][data-v-392a47b2]:-ms-input-placeholder, input[type="email"][data-v-392a47b2]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-392a47b2]::-ms-input-placeholder, input[type="password"][data-v-392a47b2]::-ms-input-placeholder, input[type="text"][data-v-392a47b2]::-ms-input-placeholder, input[type="number"][data-v-392a47b2]::-ms-input-placeholder, input[type="email"][data-v-392a47b2]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-392a47b2]::placeholder,\ninput[type="password"][data-v-392a47b2]::placeholder,\ninput[type="text"][data-v-392a47b2]::placeholder,\ninput[type="number"][data-v-392a47b2]::placeholder,\ninput[type="email"][data-v-392a47b2]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-392a47b2]:focus,\ninput[type="password"][data-v-392a47b2]:focus,\ninput[type="text"][data-v-392a47b2]:focus,\ninput[type="number"][data-v-392a47b2]:focus,\ninput[type="email"][data-v-392a47b2]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-392a47b2],\ninput[type="password"][disabled][data-v-392a47b2],\ninput[type="text"][disabled][data-v-392a47b2],\ninput[type="number"][disabled][data-v-392a47b2],\ninput[type="email"][disabled][data-v-392a47b2] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-392a47b2] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-392a47b2], .additional-link a[data-v-392a47b2] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-392a47b2]:hover, .additional-link a[data-v-392a47b2]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-392a47b2] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-392a47b2] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-392a47b2], .form textarea[data-v-392a47b2] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-392a47b2] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-392a47b2] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-392a47b2] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-392a47b2] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-392a47b2] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-392a47b2] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-392a47b2] {\n display: block;\n}\n.single-line-form .submit-button[data-v-392a47b2] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-392a47b2],\n input[type="password"][data-v-392a47b2],\n input[type="number"][data-v-392a47b2],\n input[type="text"][data-v-392a47b2],\n input[type="email"][data-v-392a47b2] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-392a47b2] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-392a47b2] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-392a47b2] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-392a47b2] {\n color: #bec6cf;\n}\ntextarea[data-v-392a47b2],\n input[type="password"][data-v-392a47b2],\n input[type="text"][data-v-392a47b2],\n input[type="number"][data-v-392a47b2],\n input[type="email"][data-v-392a47b2] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-392a47b2]::-webkit-input-placeholder, input[type="password"][data-v-392a47b2]::-webkit-input-placeholder, input[type="text"][data-v-392a47b2]::-webkit-input-placeholder, input[type="number"][data-v-392a47b2]::-webkit-input-placeholder, input[type="email"][data-v-392a47b2]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-392a47b2]::-moz-placeholder, input[type="password"][data-v-392a47b2]::-moz-placeholder, input[type="text"][data-v-392a47b2]::-moz-placeholder, input[type="number"][data-v-392a47b2]::-moz-placeholder, input[type="email"][data-v-392a47b2]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-392a47b2]:-ms-input-placeholder, input[type="password"][data-v-392a47b2]:-ms-input-placeholder, input[type="text"][data-v-392a47b2]:-ms-input-placeholder, input[type="number"][data-v-392a47b2]:-ms-input-placeholder, input[type="email"][data-v-392a47b2]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-392a47b2]::-ms-input-placeholder, input[type="password"][data-v-392a47b2]::-ms-input-placeholder, input[type="text"][data-v-392a47b2]::-ms-input-placeholder, input[type="number"][data-v-392a47b2]::-ms-input-placeholder, input[type="email"][data-v-392a47b2]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-392a47b2]::placeholder,\n input[type="password"][data-v-392a47b2]::placeholder,\n input[type="text"][data-v-392a47b2]::placeholder,\n input[type="number"][data-v-392a47b2]::placeholder,\n input[type="email"][data-v-392a47b2]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-392a47b2],\n input[type="password"][disabled][data-v-392a47b2],\n input[type="text"][disabled][data-v-392a47b2],\n input[type="number"][disabled][data-v-392a47b2],\n input[type="email"][disabled][data-v-392a47b2] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(101);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".dropzone[data-v-24846626] {\n border: 1px dashed #a1abc2;\n border-radius: 8px;\n position: relative;\n text-align: center;\n display: flex;\n align-items: center;\n min-height: 175px;\n}\n.dropzone.is-error[data-v-24846626] {\n border: 2px dashed rgba(253, 57, 122, 0.3);\n}\n.dropzone.is-error .dropzone-title[data-v-24846626] {\n color: #fd397a;\n}\n.dropzone.is-error .icon-upload rect[data-v-24846626], .dropzone.is-error .icon-upload circle[data-v-24846626], .dropzone.is-error .icon-upload polyline[data-v-24846626] {\n stroke: #fd397a;\n}\n.dropzone input[type='file'][data-v-24846626] {\n opacity: 0;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 1;\n width: 100%;\n cursor: pointer;\n}\n.dropzone .image-preview[data-v-24846626] {\n position: absolute;\n width: 100%;\n height: 100%;\n -o-object-fit: contain;\n object-fit: contain;\n left: 0;\n padding: 25px;\n display: block;\n}\n.dropzone .image-preview.fit-image[data-v-24846626] {\n -o-object-fit: cover;\n object-fit: cover;\n border-radius: 12px;\n overflow: hidden;\n}\n.dropzone .dropzone-message[data-v-24846626] {\n padding: 50px 0;\n width: 100%;\n}\n.dropzone .dropzone-message .icon-upload rect[data-v-24846626], .dropzone .dropzone-message .icon-upload circle[data-v-24846626], .dropzone .dropzone-message .icon-upload polyline[data-v-24846626] {\n stroke: #00BC7E;\n}\n.dropzone .dropzone-message .dropzone-title[data-v-24846626] {\n font-size: 1em;\n font-weight: 700;\n display: block;\n}\n.dropzone .dropzone-message .dropzone-description[data-v-24846626] {\n color: rgba(27, 37, 57, 0.7);\n font-size: 0.75em;\n}\n@media (prefers-color-scheme: dark) {\n.dropzone[data-v-24846626] {\n border-color: rgba(255, 255, 255, 0.2);\n}\n.dropzone .dropzone-message .icon-upload path[data-v-24846626], .dropzone .dropzone-message .icon-upload polyline[data-v-24846626], .dropzone .dropzone-message .icon-upload line[data-v-24846626] {\n stroke: #00BC7E;\n}\n.dropzone .dropzone-message .dropzone-description[data-v-24846626] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(102);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".setup-box[data-v-664a78dc] {\n padding: 20px;\n border-radius: 8px;\n margin-bottom: 30px;\n}\n.setup-box .title[data-v-664a78dc] {\n font-size: 1.3125em;\n margin-bottom: 5px;\n display: block;\n font-weight: 700;\n}\n.setup-box .description[data-v-664a78dc] {\n font-size: 0.9375em;\n line-height: 1.5;\n margin-bottom: 20px;\n}\n.setup-box.base[data-v-664a78dc] {\n background: #f4f5f6;\n}\n.setup-box.danger[data-v-664a78dc] {\n background: #f4f5f6;\n}\n.setup-box.danger .title[data-v-664a78dc] {\n color: #fd397a;\n}\n.setup-box[data-v-664a78dc] input[type='text'], .setup-box[data-v-664a78dc] input[type='number'],\n.setup-box[data-v-664a78dc] input .input-area {\n background: white;\n}\n.setup-box[data-v-664a78dc] .input-area {\n background: white;\n}\n.setup-box[data-v-664a78dc] .form {\n margin-top: 20px;\n}\n.setup-box[data-v-664a78dc] .form.block-form {\n max-width: 450px;\n}\n.setup-box[data-v-664a78dc] .form.block-form .single-line-form {\n display: flex;\n}\n.setup-box[data-v-664a78dc] .form.block-form .single-line-form .submit-button {\n margin-left: 20px;\n}\n@media only screen and (max-width: 960px) {\n.setup-box[data-v-664a78dc] .form.block-form {\n max-width: 100%;\n}\n.setup-box[data-v-664a78dc] .form input {\n min-width: initial;\n}\n}\n@media only screen and (max-width: 690px) {\n.setup-box[data-v-664a78dc] {\n padding: 15px;\n}\n.setup-box .title[data-v-664a78dc] {\n font-size: 1.0625em;\n margin-bottom: 10px;\n}\n.setup-box .description[data-v-664a78dc] {\n font-size: 0.875em;\n}\n.setup-box[data-v-664a78dc] .form.block-form .single-line-form {\n display: block;\n}\n.setup-box[data-v-664a78dc] .form.block-form .single-line-form .submit-button {\n margin-left: 0;\n margin-top: 10px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.setup-box.base[data-v-664a78dc] {\n background: #1e2024;\n}\n.setup-box.danger[data-v-664a78dc] {\n background: #1e2024;\n}\n.setup-box[data-v-664a78dc] input[type='text'], .setup-box[data-v-664a78dc] input[type='number'],\n .setup-box[data-v-664a78dc] input .input-area {\n background: #111314;\n}\n.setup-box[data-v-664a78dc] .input-area {\n background: #111314;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(103);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-7e367779] {\n max-width: 700px;\n}\n.form.inline-form[data-v-7e367779] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-7e367779] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-7e367779] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-7e367779] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-7e367779] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-7e367779] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-7e367779] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-7e367779]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-7e367779] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-7e367779] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-7e367779] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-7e367779] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-7e367779] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-7e367779] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-7e367779] {\n margin-left: 20px;\n}\n.error-message[data-v-7e367779] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-7e367779] {\n width: 100%;\n}\ntextarea[data-v-7e367779],\ninput[type="password"][data-v-7e367779],\ninput[type="text"][data-v-7e367779],\ninput[type="number"][data-v-7e367779],\ninput[type="email"][data-v-7e367779] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-7e367779],\ninput[type="password"].is-error[data-v-7e367779],\ninput[type="text"].is-error[data-v-7e367779],\ninput[type="number"].is-error[data-v-7e367779],\ninput[type="email"].is-error[data-v-7e367779] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-7e367779]::-webkit-input-placeholder, input[type="password"][data-v-7e367779]::-webkit-input-placeholder, input[type="text"][data-v-7e367779]::-webkit-input-placeholder, input[type="number"][data-v-7e367779]::-webkit-input-placeholder, input[type="email"][data-v-7e367779]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-7e367779]::-moz-placeholder, input[type="password"][data-v-7e367779]::-moz-placeholder, input[type="text"][data-v-7e367779]::-moz-placeholder, input[type="number"][data-v-7e367779]::-moz-placeholder, input[type="email"][data-v-7e367779]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-7e367779]:-ms-input-placeholder, input[type="password"][data-v-7e367779]:-ms-input-placeholder, input[type="text"][data-v-7e367779]:-ms-input-placeholder, input[type="number"][data-v-7e367779]:-ms-input-placeholder, input[type="email"][data-v-7e367779]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-7e367779]::-ms-input-placeholder, input[type="password"][data-v-7e367779]::-ms-input-placeholder, input[type="text"][data-v-7e367779]::-ms-input-placeholder, input[type="number"][data-v-7e367779]::-ms-input-placeholder, input[type="email"][data-v-7e367779]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-7e367779]::placeholder,\ninput[type="password"][data-v-7e367779]::placeholder,\ninput[type="text"][data-v-7e367779]::placeholder,\ninput[type="number"][data-v-7e367779]::placeholder,\ninput[type="email"][data-v-7e367779]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-7e367779]:focus,\ninput[type="password"][data-v-7e367779]:focus,\ninput[type="text"][data-v-7e367779]:focus,\ninput[type="number"][data-v-7e367779]:focus,\ninput[type="email"][data-v-7e367779]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-7e367779],\ninput[type="password"][disabled][data-v-7e367779],\ninput[type="text"][disabled][data-v-7e367779],\ninput[type="number"][disabled][data-v-7e367779],\ninput[type="email"][disabled][data-v-7e367779] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-7e367779] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-7e367779], .additional-link a[data-v-7e367779] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-7e367779]:hover, .additional-link a[data-v-7e367779]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-7e367779] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-7e367779] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-7e367779], .form textarea[data-v-7e367779] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-7e367779] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-7e367779] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-7e367779] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-7e367779] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-7e367779] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-7e367779] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-7e367779] {\n display: block;\n}\n.single-line-form .submit-button[data-v-7e367779] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-7e367779],\n input[type="password"][data-v-7e367779],\n input[type="number"][data-v-7e367779],\n input[type="text"][data-v-7e367779],\n input[type="email"][data-v-7e367779] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-7e367779] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-7e367779] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-7e367779] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-7e367779] {\n color: #bec6cf;\n}\ntextarea[data-v-7e367779],\n input[type="password"][data-v-7e367779],\n input[type="text"][data-v-7e367779],\n input[type="number"][data-v-7e367779],\n input[type="email"][data-v-7e367779] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-7e367779]::-webkit-input-placeholder, input[type="password"][data-v-7e367779]::-webkit-input-placeholder, input[type="text"][data-v-7e367779]::-webkit-input-placeholder, input[type="number"][data-v-7e367779]::-webkit-input-placeholder, input[type="email"][data-v-7e367779]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-7e367779]::-moz-placeholder, input[type="password"][data-v-7e367779]::-moz-placeholder, input[type="text"][data-v-7e367779]::-moz-placeholder, input[type="number"][data-v-7e367779]::-moz-placeholder, input[type="email"][data-v-7e367779]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-7e367779]:-ms-input-placeholder, input[type="password"][data-v-7e367779]:-ms-input-placeholder, input[type="text"][data-v-7e367779]:-ms-input-placeholder, input[type="number"][data-v-7e367779]:-ms-input-placeholder, input[type="email"][data-v-7e367779]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-7e367779]::-ms-input-placeholder, input[type="password"][data-v-7e367779]::-ms-input-placeholder, input[type="text"][data-v-7e367779]::-ms-input-placeholder, input[type="number"][data-v-7e367779]::-ms-input-placeholder, input[type="email"][data-v-7e367779]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-7e367779]::placeholder,\n input[type="password"][data-v-7e367779]::placeholder,\n input[type="text"][data-v-7e367779]::placeholder,\n input[type="number"][data-v-7e367779]::placeholder,\n input[type="email"][data-v-7e367779]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-7e367779],\n input[type="password"][disabled][data-v-7e367779],\n input[type="text"][disabled][data-v-7e367779],\n input[type="number"][disabled][data-v-7e367779],\n input[type="email"][disabled][data-v-7e367779] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-7e367779] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(104);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-0374226a] {\n max-width: 700px;\n}\n.form.inline-form[data-v-0374226a] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-0374226a] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-0374226a] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-0374226a] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-0374226a] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-0374226a] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-0374226a] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-0374226a]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-0374226a] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-0374226a] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-0374226a] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-0374226a] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-0374226a] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-0374226a] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-0374226a] {\n margin-left: 20px;\n}\n.error-message[data-v-0374226a] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-0374226a] {\n width: 100%;\n}\ntextarea[data-v-0374226a],\ninput[type="password"][data-v-0374226a],\ninput[type="text"][data-v-0374226a],\ninput[type="number"][data-v-0374226a],\ninput[type="email"][data-v-0374226a] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-0374226a],\ninput[type="password"].is-error[data-v-0374226a],\ninput[type="text"].is-error[data-v-0374226a],\ninput[type="number"].is-error[data-v-0374226a],\ninput[type="email"].is-error[data-v-0374226a] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-0374226a]::-webkit-input-placeholder, input[type="password"][data-v-0374226a]::-webkit-input-placeholder, input[type="text"][data-v-0374226a]::-webkit-input-placeholder, input[type="number"][data-v-0374226a]::-webkit-input-placeholder, input[type="email"][data-v-0374226a]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0374226a]::-moz-placeholder, input[type="password"][data-v-0374226a]::-moz-placeholder, input[type="text"][data-v-0374226a]::-moz-placeholder, input[type="number"][data-v-0374226a]::-moz-placeholder, input[type="email"][data-v-0374226a]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0374226a]:-ms-input-placeholder, input[type="password"][data-v-0374226a]:-ms-input-placeholder, input[type="text"][data-v-0374226a]:-ms-input-placeholder, input[type="number"][data-v-0374226a]:-ms-input-placeholder, input[type="email"][data-v-0374226a]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0374226a]::-ms-input-placeholder, input[type="password"][data-v-0374226a]::-ms-input-placeholder, input[type="text"][data-v-0374226a]::-ms-input-placeholder, input[type="number"][data-v-0374226a]::-ms-input-placeholder, input[type="email"][data-v-0374226a]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0374226a]::placeholder,\ninput[type="password"][data-v-0374226a]::placeholder,\ninput[type="text"][data-v-0374226a]::placeholder,\ninput[type="number"][data-v-0374226a]::placeholder,\ninput[type="email"][data-v-0374226a]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0374226a]:focus,\ninput[type="password"][data-v-0374226a]:focus,\ninput[type="text"][data-v-0374226a]:focus,\ninput[type="number"][data-v-0374226a]:focus,\ninput[type="email"][data-v-0374226a]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-0374226a],\ninput[type="password"][disabled][data-v-0374226a],\ninput[type="text"][disabled][data-v-0374226a],\ninput[type="number"][disabled][data-v-0374226a],\ninput[type="email"][disabled][data-v-0374226a] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-0374226a] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-0374226a], .additional-link a[data-v-0374226a] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-0374226a]:hover, .additional-link a[data-v-0374226a]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-0374226a] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-0374226a] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-0374226a], .form textarea[data-v-0374226a] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-0374226a] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-0374226a] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-0374226a] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-0374226a] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-0374226a] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-0374226a] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-0374226a] {\n display: block;\n}\n.single-line-form .submit-button[data-v-0374226a] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-0374226a],\n input[type="password"][data-v-0374226a],\n input[type="number"][data-v-0374226a],\n input[type="text"][data-v-0374226a],\n input[type="email"][data-v-0374226a] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-0374226a] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-0374226a] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-0374226a] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-0374226a] {\n color: #bec6cf;\n}\ntextarea[data-v-0374226a],\n input[type="password"][data-v-0374226a],\n input[type="text"][data-v-0374226a],\n input[type="number"][data-v-0374226a],\n input[type="email"][data-v-0374226a] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-0374226a]::-webkit-input-placeholder, input[type="password"][data-v-0374226a]::-webkit-input-placeholder, input[type="text"][data-v-0374226a]::-webkit-input-placeholder, input[type="number"][data-v-0374226a]::-webkit-input-placeholder, input[type="email"][data-v-0374226a]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0374226a]::-moz-placeholder, input[type="password"][data-v-0374226a]::-moz-placeholder, input[type="text"][data-v-0374226a]::-moz-placeholder, input[type="number"][data-v-0374226a]::-moz-placeholder, input[type="email"][data-v-0374226a]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0374226a]:-ms-input-placeholder, input[type="password"][data-v-0374226a]:-ms-input-placeholder, input[type="text"][data-v-0374226a]:-ms-input-placeholder, input[type="number"][data-v-0374226a]:-ms-input-placeholder, input[type="email"][data-v-0374226a]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0374226a]::-ms-input-placeholder, input[type="password"][data-v-0374226a]::-ms-input-placeholder, input[type="text"][data-v-0374226a]::-ms-input-placeholder, input[type="number"][data-v-0374226a]::-ms-input-placeholder, input[type="email"][data-v-0374226a]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0374226a]::placeholder,\n input[type="password"][data-v-0374226a]::placeholder,\n input[type="text"][data-v-0374226a]::placeholder,\n input[type="number"][data-v-0374226a]::placeholder,\n input[type="email"][data-v-0374226a]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-0374226a],\n input[type="password"][disabled][data-v-0374226a],\n input[type="text"][disabled][data-v-0374226a],\n input[type="number"][disabled][data-v-0374226a],\n input[type="email"][disabled][data-v-0374226a] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-0374226a] {\n max-width: 100%;\n}\n.page-image[data-v-0374226a] {\n width: 100%;\n margin: 0 auto;\n display: block;\n border-radius: 8px;\n border: 1px solid #ececec;\n}\n',""])},function(t,e,n){"use strict";var a=n(105);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-059ef42e] {\n max-width: 700px;\n}\n.form.inline-form[data-v-059ef42e] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-059ef42e] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-059ef42e] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-059ef42e] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-059ef42e] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-059ef42e] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-059ef42e] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-059ef42e]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-059ef42e] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-059ef42e] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-059ef42e] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-059ef42e] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-059ef42e] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-059ef42e] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-059ef42e] {\n margin-left: 20px;\n}\n.error-message[data-v-059ef42e] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-059ef42e] {\n width: 100%;\n}\ntextarea[data-v-059ef42e],\ninput[type="password"][data-v-059ef42e],\ninput[type="text"][data-v-059ef42e],\ninput[type="number"][data-v-059ef42e],\ninput[type="email"][data-v-059ef42e] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-059ef42e],\ninput[type="password"].is-error[data-v-059ef42e],\ninput[type="text"].is-error[data-v-059ef42e],\ninput[type="number"].is-error[data-v-059ef42e],\ninput[type="email"].is-error[data-v-059ef42e] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-059ef42e]::-webkit-input-placeholder, input[type="password"][data-v-059ef42e]::-webkit-input-placeholder, input[type="text"][data-v-059ef42e]::-webkit-input-placeholder, input[type="number"][data-v-059ef42e]::-webkit-input-placeholder, input[type="email"][data-v-059ef42e]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-059ef42e]::-moz-placeholder, input[type="password"][data-v-059ef42e]::-moz-placeholder, input[type="text"][data-v-059ef42e]::-moz-placeholder, input[type="number"][data-v-059ef42e]::-moz-placeholder, input[type="email"][data-v-059ef42e]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-059ef42e]:-ms-input-placeholder, input[type="password"][data-v-059ef42e]:-ms-input-placeholder, input[type="text"][data-v-059ef42e]:-ms-input-placeholder, input[type="number"][data-v-059ef42e]:-ms-input-placeholder, input[type="email"][data-v-059ef42e]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-059ef42e]::-ms-input-placeholder, input[type="password"][data-v-059ef42e]::-ms-input-placeholder, input[type="text"][data-v-059ef42e]::-ms-input-placeholder, input[type="number"][data-v-059ef42e]::-ms-input-placeholder, input[type="email"][data-v-059ef42e]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-059ef42e]::placeholder,\ninput[type="password"][data-v-059ef42e]::placeholder,\ninput[type="text"][data-v-059ef42e]::placeholder,\ninput[type="number"][data-v-059ef42e]::placeholder,\ninput[type="email"][data-v-059ef42e]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-059ef42e]:focus,\ninput[type="password"][data-v-059ef42e]:focus,\ninput[type="text"][data-v-059ef42e]:focus,\ninput[type="number"][data-v-059ef42e]:focus,\ninput[type="email"][data-v-059ef42e]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-059ef42e],\ninput[type="password"][disabled][data-v-059ef42e],\ninput[type="text"][disabled][data-v-059ef42e],\ninput[type="number"][disabled][data-v-059ef42e],\ninput[type="email"][disabled][data-v-059ef42e] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-059ef42e] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-059ef42e], .additional-link a[data-v-059ef42e] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-059ef42e]:hover, .additional-link a[data-v-059ef42e]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-059ef42e] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-059ef42e] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-059ef42e], .form textarea[data-v-059ef42e] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-059ef42e] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-059ef42e] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-059ef42e] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-059ef42e] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-059ef42e] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-059ef42e] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-059ef42e] {\n display: block;\n}\n.single-line-form .submit-button[data-v-059ef42e] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-059ef42e],\n input[type="password"][data-v-059ef42e],\n input[type="number"][data-v-059ef42e],\n input[type="text"][data-v-059ef42e],\n input[type="email"][data-v-059ef42e] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-059ef42e] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-059ef42e] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-059ef42e] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-059ef42e] {\n color: #bec6cf;\n}\ntextarea[data-v-059ef42e],\n input[type="password"][data-v-059ef42e],\n input[type="text"][data-v-059ef42e],\n input[type="number"][data-v-059ef42e],\n input[type="email"][data-v-059ef42e] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-059ef42e]::-webkit-input-placeholder, input[type="password"][data-v-059ef42e]::-webkit-input-placeholder, input[type="text"][data-v-059ef42e]::-webkit-input-placeholder, input[type="number"][data-v-059ef42e]::-webkit-input-placeholder, input[type="email"][data-v-059ef42e]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-059ef42e]::-moz-placeholder, input[type="password"][data-v-059ef42e]::-moz-placeholder, input[type="text"][data-v-059ef42e]::-moz-placeholder, input[type="number"][data-v-059ef42e]::-moz-placeholder, input[type="email"][data-v-059ef42e]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-059ef42e]:-ms-input-placeholder, input[type="password"][data-v-059ef42e]:-ms-input-placeholder, input[type="text"][data-v-059ef42e]:-ms-input-placeholder, input[type="number"][data-v-059ef42e]:-ms-input-placeholder, input[type="email"][data-v-059ef42e]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-059ef42e]::-ms-input-placeholder, input[type="password"][data-v-059ef42e]::-ms-input-placeholder, input[type="text"][data-v-059ef42e]::-ms-input-placeholder, input[type="number"][data-v-059ef42e]::-ms-input-placeholder, input[type="email"][data-v-059ef42e]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-059ef42e]::placeholder,\n input[type="password"][data-v-059ef42e]::placeholder,\n input[type="text"][data-v-059ef42e]::placeholder,\n input[type="number"][data-v-059ef42e]::placeholder,\n input[type="email"][data-v-059ef42e]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-059ef42e],\n input[type="password"][disabled][data-v-059ef42e],\n input[type="text"][disabled][data-v-059ef42e],\n input[type="number"][disabled][data-v-059ef42e],\n input[type="email"][disabled][data-v-059ef42e] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-059ef42e] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(106);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-4f681c92] {\n max-width: 700px;\n}\n.form.inline-form[data-v-4f681c92] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-4f681c92] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4f681c92] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-4f681c92] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-4f681c92] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-4f681c92] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-4f681c92] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-4f681c92]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-4f681c92] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-4f681c92] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-4f681c92] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-4f681c92] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-4f681c92] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-4f681c92] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-4f681c92] {\n margin-left: 20px;\n}\n.error-message[data-v-4f681c92] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-4f681c92] {\n width: 100%;\n}\ntextarea[data-v-4f681c92],\ninput[type="password"][data-v-4f681c92],\ninput[type="text"][data-v-4f681c92],\ninput[type="number"][data-v-4f681c92],\ninput[type="email"][data-v-4f681c92] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-4f681c92],\ninput[type="password"].is-error[data-v-4f681c92],\ninput[type="text"].is-error[data-v-4f681c92],\ninput[type="number"].is-error[data-v-4f681c92],\ninput[type="email"].is-error[data-v-4f681c92] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-4f681c92]::-webkit-input-placeholder, input[type="password"][data-v-4f681c92]::-webkit-input-placeholder, input[type="text"][data-v-4f681c92]::-webkit-input-placeholder, input[type="number"][data-v-4f681c92]::-webkit-input-placeholder, input[type="email"][data-v-4f681c92]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4f681c92]::-moz-placeholder, input[type="password"][data-v-4f681c92]::-moz-placeholder, input[type="text"][data-v-4f681c92]::-moz-placeholder, input[type="number"][data-v-4f681c92]::-moz-placeholder, input[type="email"][data-v-4f681c92]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4f681c92]:-ms-input-placeholder, input[type="password"][data-v-4f681c92]:-ms-input-placeholder, input[type="text"][data-v-4f681c92]:-ms-input-placeholder, input[type="number"][data-v-4f681c92]:-ms-input-placeholder, input[type="email"][data-v-4f681c92]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4f681c92]::-ms-input-placeholder, input[type="password"][data-v-4f681c92]::-ms-input-placeholder, input[type="text"][data-v-4f681c92]::-ms-input-placeholder, input[type="number"][data-v-4f681c92]::-ms-input-placeholder, input[type="email"][data-v-4f681c92]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4f681c92]::placeholder,\ninput[type="password"][data-v-4f681c92]::placeholder,\ninput[type="text"][data-v-4f681c92]::placeholder,\ninput[type="number"][data-v-4f681c92]::placeholder,\ninput[type="email"][data-v-4f681c92]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-4f681c92]:focus,\ninput[type="password"][data-v-4f681c92]:focus,\ninput[type="text"][data-v-4f681c92]:focus,\ninput[type="number"][data-v-4f681c92]:focus,\ninput[type="email"][data-v-4f681c92]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-4f681c92],\ninput[type="password"][disabled][data-v-4f681c92],\ninput[type="text"][disabled][data-v-4f681c92],\ninput[type="number"][disabled][data-v-4f681c92],\ninput[type="email"][disabled][data-v-4f681c92] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-4f681c92] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-4f681c92], .additional-link a[data-v-4f681c92] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-4f681c92]:hover, .additional-link a[data-v-4f681c92]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-4f681c92] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-4f681c92] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-4f681c92], .form textarea[data-v-4f681c92] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-4f681c92] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-4f681c92] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-4f681c92] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-4f681c92] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-4f681c92] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-4f681c92] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-4f681c92] {\n display: block;\n}\n.single-line-form .submit-button[data-v-4f681c92] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-4f681c92],\n input[type="password"][data-v-4f681c92],\n input[type="number"][data-v-4f681c92],\n input[type="text"][data-v-4f681c92],\n input[type="email"][data-v-4f681c92] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-4f681c92] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-4f681c92] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-4f681c92] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-4f681c92] {\n color: #bec6cf;\n}\ntextarea[data-v-4f681c92],\n input[type="password"][data-v-4f681c92],\n input[type="text"][data-v-4f681c92],\n input[type="number"][data-v-4f681c92],\n input[type="email"][data-v-4f681c92] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-4f681c92]::-webkit-input-placeholder, input[type="password"][data-v-4f681c92]::-webkit-input-placeholder, input[type="text"][data-v-4f681c92]::-webkit-input-placeholder, input[type="number"][data-v-4f681c92]::-webkit-input-placeholder, input[type="email"][data-v-4f681c92]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4f681c92]::-moz-placeholder, input[type="password"][data-v-4f681c92]::-moz-placeholder, input[type="text"][data-v-4f681c92]::-moz-placeholder, input[type="number"][data-v-4f681c92]::-moz-placeholder, input[type="email"][data-v-4f681c92]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4f681c92]:-ms-input-placeholder, input[type="password"][data-v-4f681c92]:-ms-input-placeholder, input[type="text"][data-v-4f681c92]:-ms-input-placeholder, input[type="number"][data-v-4f681c92]:-ms-input-placeholder, input[type="email"][data-v-4f681c92]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4f681c92]::-ms-input-placeholder, input[type="password"][data-v-4f681c92]::-ms-input-placeholder, input[type="text"][data-v-4f681c92]::-ms-input-placeholder, input[type="number"][data-v-4f681c92]::-ms-input-placeholder, input[type="email"][data-v-4f681c92]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-4f681c92]::placeholder,\n input[type="password"][data-v-4f681c92]::placeholder,\n input[type="text"][data-v-4f681c92]::placeholder,\n input[type="number"][data-v-4f681c92]::placeholder,\n input[type="email"][data-v-4f681c92]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-4f681c92],\n input[type="password"][disabled][data-v-4f681c92],\n input[type="text"][disabled][data-v-4f681c92],\n input[type="number"][disabled][data-v-4f681c92],\n input[type="email"][disabled][data-v-4f681c92] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-4f681c92] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(107);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-67b9a966] {\n max-width: 700px;\n}\n.form.inline-form[data-v-67b9a966] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-67b9a966] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-67b9a966] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-67b9a966] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-67b9a966] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-67b9a966] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-67b9a966] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-67b9a966]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-67b9a966] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-67b9a966] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-67b9a966] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-67b9a966] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-67b9a966] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-67b9a966] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-67b9a966] {\n margin-left: 20px;\n}\n.error-message[data-v-67b9a966] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-67b9a966] {\n width: 100%;\n}\ntextarea[data-v-67b9a966],\ninput[type="password"][data-v-67b9a966],\ninput[type="text"][data-v-67b9a966],\ninput[type="number"][data-v-67b9a966],\ninput[type="email"][data-v-67b9a966] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-67b9a966],\ninput[type="password"].is-error[data-v-67b9a966],\ninput[type="text"].is-error[data-v-67b9a966],\ninput[type="number"].is-error[data-v-67b9a966],\ninput[type="email"].is-error[data-v-67b9a966] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-67b9a966]::-webkit-input-placeholder, input[type="password"][data-v-67b9a966]::-webkit-input-placeholder, input[type="text"][data-v-67b9a966]::-webkit-input-placeholder, input[type="number"][data-v-67b9a966]::-webkit-input-placeholder, input[type="email"][data-v-67b9a966]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-67b9a966]::-moz-placeholder, input[type="password"][data-v-67b9a966]::-moz-placeholder, input[type="text"][data-v-67b9a966]::-moz-placeholder, input[type="number"][data-v-67b9a966]::-moz-placeholder, input[type="email"][data-v-67b9a966]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-67b9a966]:-ms-input-placeholder, input[type="password"][data-v-67b9a966]:-ms-input-placeholder, input[type="text"][data-v-67b9a966]:-ms-input-placeholder, input[type="number"][data-v-67b9a966]:-ms-input-placeholder, input[type="email"][data-v-67b9a966]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-67b9a966]::-ms-input-placeholder, input[type="password"][data-v-67b9a966]::-ms-input-placeholder, input[type="text"][data-v-67b9a966]::-ms-input-placeholder, input[type="number"][data-v-67b9a966]::-ms-input-placeholder, input[type="email"][data-v-67b9a966]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-67b9a966]::placeholder,\ninput[type="password"][data-v-67b9a966]::placeholder,\ninput[type="text"][data-v-67b9a966]::placeholder,\ninput[type="number"][data-v-67b9a966]::placeholder,\ninput[type="email"][data-v-67b9a966]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-67b9a966]:focus,\ninput[type="password"][data-v-67b9a966]:focus,\ninput[type="text"][data-v-67b9a966]:focus,\ninput[type="number"][data-v-67b9a966]:focus,\ninput[type="email"][data-v-67b9a966]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-67b9a966],\ninput[type="password"][disabled][data-v-67b9a966],\ninput[type="text"][disabled][data-v-67b9a966],\ninput[type="number"][disabled][data-v-67b9a966],\ninput[type="email"][disabled][data-v-67b9a966] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-67b9a966] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-67b9a966], .additional-link a[data-v-67b9a966] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-67b9a966]:hover, .additional-link a[data-v-67b9a966]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-67b9a966] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-67b9a966] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-67b9a966], .form textarea[data-v-67b9a966] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-67b9a966] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-67b9a966] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-67b9a966] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-67b9a966] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-67b9a966] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-67b9a966] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-67b9a966] {\n display: block;\n}\n.single-line-form .submit-button[data-v-67b9a966] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-67b9a966],\n input[type="password"][data-v-67b9a966],\n input[type="number"][data-v-67b9a966],\n input[type="text"][data-v-67b9a966],\n input[type="email"][data-v-67b9a966] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-67b9a966] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-67b9a966] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-67b9a966] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-67b9a966] {\n color: #bec6cf;\n}\ntextarea[data-v-67b9a966],\n input[type="password"][data-v-67b9a966],\n input[type="text"][data-v-67b9a966],\n input[type="number"][data-v-67b9a966],\n input[type="email"][data-v-67b9a966] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-67b9a966]::-webkit-input-placeholder, input[type="password"][data-v-67b9a966]::-webkit-input-placeholder, input[type="text"][data-v-67b9a966]::-webkit-input-placeholder, input[type="number"][data-v-67b9a966]::-webkit-input-placeholder, input[type="email"][data-v-67b9a966]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-67b9a966]::-moz-placeholder, input[type="password"][data-v-67b9a966]::-moz-placeholder, input[type="text"][data-v-67b9a966]::-moz-placeholder, input[type="number"][data-v-67b9a966]::-moz-placeholder, input[type="email"][data-v-67b9a966]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-67b9a966]:-ms-input-placeholder, input[type="password"][data-v-67b9a966]:-ms-input-placeholder, input[type="text"][data-v-67b9a966]:-ms-input-placeholder, input[type="number"][data-v-67b9a966]:-ms-input-placeholder, input[type="email"][data-v-67b9a966]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-67b9a966]::-ms-input-placeholder, input[type="password"][data-v-67b9a966]::-ms-input-placeholder, input[type="text"][data-v-67b9a966]::-ms-input-placeholder, input[type="number"][data-v-67b9a966]::-ms-input-placeholder, input[type="email"][data-v-67b9a966]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-67b9a966]::placeholder,\n input[type="password"][data-v-67b9a966]::placeholder,\n input[type="text"][data-v-67b9a966]::placeholder,\n input[type="number"][data-v-67b9a966]::placeholder,\n input[type="email"][data-v-67b9a966]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-67b9a966],\n input[type="password"][disabled][data-v-67b9a966],\n input[type="text"][disabled][data-v-67b9a966],\n input[type="number"][disabled][data-v-67b9a966],\n input[type="email"][disabled][data-v-67b9a966] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-67b9a966] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(108);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-66b5a1ee] {\n max-width: 700px;\n}\n.form.inline-form[data-v-66b5a1ee] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-66b5a1ee] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-66b5a1ee] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-66b5a1ee] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-66b5a1ee] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-66b5a1ee] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-66b5a1ee] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-66b5a1ee]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-66b5a1ee] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-66b5a1ee] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-66b5a1ee] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-66b5a1ee] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-66b5a1ee] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-66b5a1ee] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-66b5a1ee] {\n margin-left: 20px;\n}\n.error-message[data-v-66b5a1ee] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-66b5a1ee] {\n width: 100%;\n}\ntextarea[data-v-66b5a1ee],\ninput[type="password"][data-v-66b5a1ee],\ninput[type="text"][data-v-66b5a1ee],\ninput[type="number"][data-v-66b5a1ee],\ninput[type="email"][data-v-66b5a1ee] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-66b5a1ee],\ninput[type="password"].is-error[data-v-66b5a1ee],\ninput[type="text"].is-error[data-v-66b5a1ee],\ninput[type="number"].is-error[data-v-66b5a1ee],\ninput[type="email"].is-error[data-v-66b5a1ee] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-66b5a1ee]::-webkit-input-placeholder, input[type="password"][data-v-66b5a1ee]::-webkit-input-placeholder, input[type="text"][data-v-66b5a1ee]::-webkit-input-placeholder, input[type="number"][data-v-66b5a1ee]::-webkit-input-placeholder, input[type="email"][data-v-66b5a1ee]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-66b5a1ee]::-moz-placeholder, input[type="password"][data-v-66b5a1ee]::-moz-placeholder, input[type="text"][data-v-66b5a1ee]::-moz-placeholder, input[type="number"][data-v-66b5a1ee]::-moz-placeholder, input[type="email"][data-v-66b5a1ee]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-66b5a1ee]:-ms-input-placeholder, input[type="password"][data-v-66b5a1ee]:-ms-input-placeholder, input[type="text"][data-v-66b5a1ee]:-ms-input-placeholder, input[type="number"][data-v-66b5a1ee]:-ms-input-placeholder, input[type="email"][data-v-66b5a1ee]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-66b5a1ee]::-ms-input-placeholder, input[type="password"][data-v-66b5a1ee]::-ms-input-placeholder, input[type="text"][data-v-66b5a1ee]::-ms-input-placeholder, input[type="number"][data-v-66b5a1ee]::-ms-input-placeholder, input[type="email"][data-v-66b5a1ee]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-66b5a1ee]::placeholder,\ninput[type="password"][data-v-66b5a1ee]::placeholder,\ninput[type="text"][data-v-66b5a1ee]::placeholder,\ninput[type="number"][data-v-66b5a1ee]::placeholder,\ninput[type="email"][data-v-66b5a1ee]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-66b5a1ee]:focus,\ninput[type="password"][data-v-66b5a1ee]:focus,\ninput[type="text"][data-v-66b5a1ee]:focus,\ninput[type="number"][data-v-66b5a1ee]:focus,\ninput[type="email"][data-v-66b5a1ee]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-66b5a1ee],\ninput[type="password"][disabled][data-v-66b5a1ee],\ninput[type="text"][disabled][data-v-66b5a1ee],\ninput[type="number"][disabled][data-v-66b5a1ee],\ninput[type="email"][disabled][data-v-66b5a1ee] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-66b5a1ee] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-66b5a1ee], .additional-link a[data-v-66b5a1ee] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-66b5a1ee]:hover, .additional-link a[data-v-66b5a1ee]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-66b5a1ee] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-66b5a1ee] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-66b5a1ee], .form textarea[data-v-66b5a1ee] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-66b5a1ee] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-66b5a1ee] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-66b5a1ee] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-66b5a1ee] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-66b5a1ee] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-66b5a1ee] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-66b5a1ee] {\n display: block;\n}\n.single-line-form .submit-button[data-v-66b5a1ee] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-66b5a1ee],\n input[type="password"][data-v-66b5a1ee],\n input[type="number"][data-v-66b5a1ee],\n input[type="text"][data-v-66b5a1ee],\n input[type="email"][data-v-66b5a1ee] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-66b5a1ee] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-66b5a1ee] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-66b5a1ee] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-66b5a1ee] {\n color: #bec6cf;\n}\ntextarea[data-v-66b5a1ee],\n input[type="password"][data-v-66b5a1ee],\n input[type="text"][data-v-66b5a1ee],\n input[type="number"][data-v-66b5a1ee],\n input[type="email"][data-v-66b5a1ee] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-66b5a1ee]::-webkit-input-placeholder, input[type="password"][data-v-66b5a1ee]::-webkit-input-placeholder, input[type="text"][data-v-66b5a1ee]::-webkit-input-placeholder, input[type="number"][data-v-66b5a1ee]::-webkit-input-placeholder, input[type="email"][data-v-66b5a1ee]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-66b5a1ee]::-moz-placeholder, input[type="password"][data-v-66b5a1ee]::-moz-placeholder, input[type="text"][data-v-66b5a1ee]::-moz-placeholder, input[type="number"][data-v-66b5a1ee]::-moz-placeholder, input[type="email"][data-v-66b5a1ee]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-66b5a1ee]:-ms-input-placeholder, input[type="password"][data-v-66b5a1ee]:-ms-input-placeholder, input[type="text"][data-v-66b5a1ee]:-ms-input-placeholder, input[type="number"][data-v-66b5a1ee]:-ms-input-placeholder, input[type="email"][data-v-66b5a1ee]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-66b5a1ee]::-ms-input-placeholder, input[type="password"][data-v-66b5a1ee]::-ms-input-placeholder, input[type="text"][data-v-66b5a1ee]::-ms-input-placeholder, input[type="number"][data-v-66b5a1ee]::-ms-input-placeholder, input[type="email"][data-v-66b5a1ee]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-66b5a1ee]::placeholder,\n input[type="password"][data-v-66b5a1ee]::placeholder,\n input[type="text"][data-v-66b5a1ee]::placeholder,\n input[type="number"][data-v-66b5a1ee]::placeholder,\n input[type="email"][data-v-66b5a1ee]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-66b5a1ee],\n input[type="password"][disabled][data-v-66b5a1ee],\n input[type="text"][disabled][data-v-66b5a1ee],\n input[type="number"][disabled][data-v-66b5a1ee],\n input[type="email"][disabled][data-v-66b5a1ee] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-66b5a1ee] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(109);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".table-tools[data-v-0da90200] {\n background: white;\n display: flex;\n justify-content: space-between;\n padding: 15px 0 10px;\n position: -webkit-sticky;\n position: sticky;\n top: 40px;\n z-index: 9;\n}\n.table .cell-item[data-v-0da90200] {\n font-size: 0.9375em;\n white-space: nowrap;\n}\n.table .name[data-v-0da90200] {\n font-weight: 700;\n cursor: pointer;\n}\n@media only screen and (max-width: 690px) {\n.table-tools[data-v-0da90200] {\n padding: 0 0 5px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.table-tools[data-v-0da90200] {\n background: #111314;\n}\n.action-icons .icon[data-v-0da90200] {\n cursor: pointer;\n}\n.action-icons .icon circle[data-v-0da90200], .action-icons .icon path[data-v-0da90200], .action-icons .icon line[data-v-0da90200], .action-icons .icon polyline[data-v-0da90200] {\n stroke: #bec6cf;\n}\n.user-thumbnail .info .email[data-v-0da90200] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(110);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".user-thumbnail[data-v-17590cf9] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.user-thumbnail .avatar[data-v-17590cf9] {\n margin-right: 20px;\n}\n.user-thumbnail .avatar img[data-v-17590cf9] {\n line-height: 0;\n width: 62px;\n height: 62px;\n border-radius: 12px;\n}\n.user-thumbnail .info .name[data-v-17590cf9] {\n display: block;\n font-size: 1.0625em;\n line-height: 1;\n}\n.user-thumbnail .info .email[data-v-17590cf9] {\n color: rgba(27, 37, 57, 0.7);\n font-size: 0.875em;\n}\n@media (prefers-color-scheme: dark) {\n.user-thumbnail .info .email[data-v-17590cf9] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(111);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-adc2cef8] {\n max-width: 700px;\n}\n.form.inline-form[data-v-adc2cef8] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-adc2cef8] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-adc2cef8] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-adc2cef8] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-adc2cef8] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-adc2cef8] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-adc2cef8] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-adc2cef8]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-adc2cef8] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-adc2cef8] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-adc2cef8] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-adc2cef8] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-adc2cef8] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-adc2cef8] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-adc2cef8] {\n margin-left: 20px;\n}\n.error-message[data-v-adc2cef8] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-adc2cef8] {\n width: 100%;\n}\ntextarea[data-v-adc2cef8],\ninput[type="password"][data-v-adc2cef8],\ninput[type="text"][data-v-adc2cef8],\ninput[type="number"][data-v-adc2cef8],\ninput[type="email"][data-v-adc2cef8] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-adc2cef8],\ninput[type="password"].is-error[data-v-adc2cef8],\ninput[type="text"].is-error[data-v-adc2cef8],\ninput[type="number"].is-error[data-v-adc2cef8],\ninput[type="email"].is-error[data-v-adc2cef8] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-adc2cef8]::-webkit-input-placeholder, input[type="password"][data-v-adc2cef8]::-webkit-input-placeholder, input[type="text"][data-v-adc2cef8]::-webkit-input-placeholder, input[type="number"][data-v-adc2cef8]::-webkit-input-placeholder, input[type="email"][data-v-adc2cef8]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-adc2cef8]::-moz-placeholder, input[type="password"][data-v-adc2cef8]::-moz-placeholder, input[type="text"][data-v-adc2cef8]::-moz-placeholder, input[type="number"][data-v-adc2cef8]::-moz-placeholder, input[type="email"][data-v-adc2cef8]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-adc2cef8]:-ms-input-placeholder, input[type="password"][data-v-adc2cef8]:-ms-input-placeholder, input[type="text"][data-v-adc2cef8]:-ms-input-placeholder, input[type="number"][data-v-adc2cef8]:-ms-input-placeholder, input[type="email"][data-v-adc2cef8]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-adc2cef8]::-ms-input-placeholder, input[type="password"][data-v-adc2cef8]::-ms-input-placeholder, input[type="text"][data-v-adc2cef8]::-ms-input-placeholder, input[type="number"][data-v-adc2cef8]::-ms-input-placeholder, input[type="email"][data-v-adc2cef8]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-adc2cef8]::placeholder,\ninput[type="password"][data-v-adc2cef8]::placeholder,\ninput[type="text"][data-v-adc2cef8]::placeholder,\ninput[type="number"][data-v-adc2cef8]::placeholder,\ninput[type="email"][data-v-adc2cef8]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-adc2cef8]:focus,\ninput[type="password"][data-v-adc2cef8]:focus,\ninput[type="text"][data-v-adc2cef8]:focus,\ninput[type="number"][data-v-adc2cef8]:focus,\ninput[type="email"][data-v-adc2cef8]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-adc2cef8],\ninput[type="password"][disabled][data-v-adc2cef8],\ninput[type="text"][disabled][data-v-adc2cef8],\ninput[type="number"][disabled][data-v-adc2cef8],\ninput[type="email"][disabled][data-v-adc2cef8] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-adc2cef8] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-adc2cef8], .additional-link a[data-v-adc2cef8] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-adc2cef8]:hover, .additional-link a[data-v-adc2cef8]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-adc2cef8] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-adc2cef8] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-adc2cef8], .form textarea[data-v-adc2cef8] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-adc2cef8] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-adc2cef8] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-adc2cef8] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-adc2cef8] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-adc2cef8] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-adc2cef8] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-adc2cef8] {\n display: block;\n}\n.single-line-form .submit-button[data-v-adc2cef8] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-adc2cef8],\n input[type="password"][data-v-adc2cef8],\n input[type="number"][data-v-adc2cef8],\n input[type="text"][data-v-adc2cef8],\n input[type="email"][data-v-adc2cef8] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-adc2cef8] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-adc2cef8] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-adc2cef8] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-adc2cef8] {\n color: #bec6cf;\n}\ntextarea[data-v-adc2cef8],\n input[type="password"][data-v-adc2cef8],\n input[type="text"][data-v-adc2cef8],\n input[type="number"][data-v-adc2cef8],\n input[type="email"][data-v-adc2cef8] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-adc2cef8]::-webkit-input-placeholder, input[type="password"][data-v-adc2cef8]::-webkit-input-placeholder, input[type="text"][data-v-adc2cef8]::-webkit-input-placeholder, input[type="number"][data-v-adc2cef8]::-webkit-input-placeholder, input[type="email"][data-v-adc2cef8]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-adc2cef8]::-moz-placeholder, input[type="password"][data-v-adc2cef8]::-moz-placeholder, input[type="text"][data-v-adc2cef8]::-moz-placeholder, input[type="number"][data-v-adc2cef8]::-moz-placeholder, input[type="email"][data-v-adc2cef8]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-adc2cef8]:-ms-input-placeholder, input[type="password"][data-v-adc2cef8]:-ms-input-placeholder, input[type="text"][data-v-adc2cef8]:-ms-input-placeholder, input[type="number"][data-v-adc2cef8]:-ms-input-placeholder, input[type="email"][data-v-adc2cef8]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-adc2cef8]::-ms-input-placeholder, input[type="password"][data-v-adc2cef8]::-ms-input-placeholder, input[type="text"][data-v-adc2cef8]::-ms-input-placeholder, input[type="number"][data-v-adc2cef8]::-ms-input-placeholder, input[type="email"][data-v-adc2cef8]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-adc2cef8]::placeholder,\n input[type="password"][data-v-adc2cef8]::placeholder,\n input[type="text"][data-v-adc2cef8]::placeholder,\n input[type="number"][data-v-adc2cef8]::placeholder,\n input[type="email"][data-v-adc2cef8]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-adc2cef8],\n input[type="password"][disabled][data-v-adc2cef8],\n input[type="text"][disabled][data-v-adc2cef8],\n input[type="number"][disabled][data-v-adc2cef8],\n input[type="email"][disabled][data-v-adc2cef8] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(112);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-3f9382aa] {\n max-width: 700px;\n}\n.form.inline-form[data-v-3f9382aa] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-3f9382aa] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-3f9382aa] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-3f9382aa] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-3f9382aa] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-3f9382aa] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-3f9382aa] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-3f9382aa]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-3f9382aa] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-3f9382aa] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-3f9382aa] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-3f9382aa] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-3f9382aa] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-3f9382aa] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-3f9382aa] {\n margin-left: 20px;\n}\n.error-message[data-v-3f9382aa] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-3f9382aa] {\n width: 100%;\n}\ntextarea[data-v-3f9382aa],\ninput[type="password"][data-v-3f9382aa],\ninput[type="text"][data-v-3f9382aa],\ninput[type="number"][data-v-3f9382aa],\ninput[type="email"][data-v-3f9382aa] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-3f9382aa],\ninput[type="password"].is-error[data-v-3f9382aa],\ninput[type="text"].is-error[data-v-3f9382aa],\ninput[type="number"].is-error[data-v-3f9382aa],\ninput[type="email"].is-error[data-v-3f9382aa] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-3f9382aa]::-webkit-input-placeholder, input[type="password"][data-v-3f9382aa]::-webkit-input-placeholder, input[type="text"][data-v-3f9382aa]::-webkit-input-placeholder, input[type="number"][data-v-3f9382aa]::-webkit-input-placeholder, input[type="email"][data-v-3f9382aa]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3f9382aa]::-moz-placeholder, input[type="password"][data-v-3f9382aa]::-moz-placeholder, input[type="text"][data-v-3f9382aa]::-moz-placeholder, input[type="number"][data-v-3f9382aa]::-moz-placeholder, input[type="email"][data-v-3f9382aa]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3f9382aa]:-ms-input-placeholder, input[type="password"][data-v-3f9382aa]:-ms-input-placeholder, input[type="text"][data-v-3f9382aa]:-ms-input-placeholder, input[type="number"][data-v-3f9382aa]:-ms-input-placeholder, input[type="email"][data-v-3f9382aa]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3f9382aa]::-ms-input-placeholder, input[type="password"][data-v-3f9382aa]::-ms-input-placeholder, input[type="text"][data-v-3f9382aa]::-ms-input-placeholder, input[type="number"][data-v-3f9382aa]::-ms-input-placeholder, input[type="email"][data-v-3f9382aa]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3f9382aa]::placeholder,\ninput[type="password"][data-v-3f9382aa]::placeholder,\ninput[type="text"][data-v-3f9382aa]::placeholder,\ninput[type="number"][data-v-3f9382aa]::placeholder,\ninput[type="email"][data-v-3f9382aa]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3f9382aa]:focus,\ninput[type="password"][data-v-3f9382aa]:focus,\ninput[type="text"][data-v-3f9382aa]:focus,\ninput[type="number"][data-v-3f9382aa]:focus,\ninput[type="email"][data-v-3f9382aa]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-3f9382aa],\ninput[type="password"][disabled][data-v-3f9382aa],\ninput[type="text"][disabled][data-v-3f9382aa],\ninput[type="number"][disabled][data-v-3f9382aa],\ninput[type="email"][disabled][data-v-3f9382aa] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-3f9382aa] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-3f9382aa], .additional-link a[data-v-3f9382aa] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-3f9382aa]:hover, .additional-link a[data-v-3f9382aa]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-3f9382aa] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-3f9382aa] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-3f9382aa], .form textarea[data-v-3f9382aa] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-3f9382aa] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-3f9382aa] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-3f9382aa] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-3f9382aa] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-3f9382aa] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-3f9382aa] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-3f9382aa] {\n display: block;\n}\n.single-line-form .submit-button[data-v-3f9382aa] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-3f9382aa],\n input[type="password"][data-v-3f9382aa],\n input[type="number"][data-v-3f9382aa],\n input[type="text"][data-v-3f9382aa],\n input[type="email"][data-v-3f9382aa] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-3f9382aa] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-3f9382aa] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-3f9382aa] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-3f9382aa] {\n color: #bec6cf;\n}\ntextarea[data-v-3f9382aa],\n input[type="password"][data-v-3f9382aa],\n input[type="text"][data-v-3f9382aa],\n input[type="number"][data-v-3f9382aa],\n input[type="email"][data-v-3f9382aa] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-3f9382aa]::-webkit-input-placeholder, input[type="password"][data-v-3f9382aa]::-webkit-input-placeholder, input[type="text"][data-v-3f9382aa]::-webkit-input-placeholder, input[type="number"][data-v-3f9382aa]::-webkit-input-placeholder, input[type="email"][data-v-3f9382aa]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3f9382aa]::-moz-placeholder, input[type="password"][data-v-3f9382aa]::-moz-placeholder, input[type="text"][data-v-3f9382aa]::-moz-placeholder, input[type="number"][data-v-3f9382aa]::-moz-placeholder, input[type="email"][data-v-3f9382aa]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3f9382aa]:-ms-input-placeholder, input[type="password"][data-v-3f9382aa]:-ms-input-placeholder, input[type="text"][data-v-3f9382aa]:-ms-input-placeholder, input[type="number"][data-v-3f9382aa]:-ms-input-placeholder, input[type="email"][data-v-3f9382aa]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3f9382aa]::-ms-input-placeholder, input[type="password"][data-v-3f9382aa]::-ms-input-placeholder, input[type="text"][data-v-3f9382aa]::-ms-input-placeholder, input[type="number"][data-v-3f9382aa]::-ms-input-placeholder, input[type="email"][data-v-3f9382aa]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3f9382aa]::placeholder,\n input[type="password"][data-v-3f9382aa]::placeholder,\n input[type="text"][data-v-3f9382aa]::placeholder,\n input[type="number"][data-v-3f9382aa]::placeholder,\n input[type="email"][data-v-3f9382aa]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-3f9382aa],\n input[type="password"][disabled][data-v-3f9382aa],\n input[type="text"][disabled][data-v-3f9382aa],\n input[type="number"][disabled][data-v-3f9382aa],\n input[type="email"][disabled][data-v-3f9382aa] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-3f9382aa] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(113);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-3614d452] {\n max-width: 700px;\n}\n.form.inline-form[data-v-3614d452] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-3614d452] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-3614d452] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-3614d452] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-3614d452] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-3614d452] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-3614d452] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-3614d452]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-3614d452] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-3614d452] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-3614d452] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-3614d452] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-3614d452] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-3614d452] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-3614d452] {\n margin-left: 20px;\n}\n.error-message[data-v-3614d452] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-3614d452] {\n width: 100%;\n}\ntextarea[data-v-3614d452],\ninput[type="password"][data-v-3614d452],\ninput[type="text"][data-v-3614d452],\ninput[type="number"][data-v-3614d452],\ninput[type="email"][data-v-3614d452] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-3614d452],\ninput[type="password"].is-error[data-v-3614d452],\ninput[type="text"].is-error[data-v-3614d452],\ninput[type="number"].is-error[data-v-3614d452],\ninput[type="email"].is-error[data-v-3614d452] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-3614d452]::-webkit-input-placeholder, input[type="password"][data-v-3614d452]::-webkit-input-placeholder, input[type="text"][data-v-3614d452]::-webkit-input-placeholder, input[type="number"][data-v-3614d452]::-webkit-input-placeholder, input[type="email"][data-v-3614d452]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3614d452]::-moz-placeholder, input[type="password"][data-v-3614d452]::-moz-placeholder, input[type="text"][data-v-3614d452]::-moz-placeholder, input[type="number"][data-v-3614d452]::-moz-placeholder, input[type="email"][data-v-3614d452]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3614d452]:-ms-input-placeholder, input[type="password"][data-v-3614d452]:-ms-input-placeholder, input[type="text"][data-v-3614d452]:-ms-input-placeholder, input[type="number"][data-v-3614d452]:-ms-input-placeholder, input[type="email"][data-v-3614d452]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3614d452]::-ms-input-placeholder, input[type="password"][data-v-3614d452]::-ms-input-placeholder, input[type="text"][data-v-3614d452]::-ms-input-placeholder, input[type="number"][data-v-3614d452]::-ms-input-placeholder, input[type="email"][data-v-3614d452]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3614d452]::placeholder,\ninput[type="password"][data-v-3614d452]::placeholder,\ninput[type="text"][data-v-3614d452]::placeholder,\ninput[type="number"][data-v-3614d452]::placeholder,\ninput[type="email"][data-v-3614d452]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3614d452]:focus,\ninput[type="password"][data-v-3614d452]:focus,\ninput[type="text"][data-v-3614d452]:focus,\ninput[type="number"][data-v-3614d452]:focus,\ninput[type="email"][data-v-3614d452]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-3614d452],\ninput[type="password"][disabled][data-v-3614d452],\ninput[type="text"][disabled][data-v-3614d452],\ninput[type="number"][disabled][data-v-3614d452],\ninput[type="email"][disabled][data-v-3614d452] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-3614d452] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-3614d452], .additional-link a[data-v-3614d452] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-3614d452]:hover, .additional-link a[data-v-3614d452]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-3614d452] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-3614d452] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-3614d452], .form textarea[data-v-3614d452] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-3614d452] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-3614d452] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-3614d452] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-3614d452] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-3614d452] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-3614d452] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-3614d452] {\n display: block;\n}\n.single-line-form .submit-button[data-v-3614d452] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-3614d452],\n input[type="password"][data-v-3614d452],\n input[type="number"][data-v-3614d452],\n input[type="text"][data-v-3614d452],\n input[type="email"][data-v-3614d452] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-3614d452] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-3614d452] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-3614d452] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-3614d452] {\n color: #bec6cf;\n}\ntextarea[data-v-3614d452],\n input[type="password"][data-v-3614d452],\n input[type="text"][data-v-3614d452],\n input[type="number"][data-v-3614d452],\n input[type="email"][data-v-3614d452] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-3614d452]::-webkit-input-placeholder, input[type="password"][data-v-3614d452]::-webkit-input-placeholder, input[type="text"][data-v-3614d452]::-webkit-input-placeholder, input[type="number"][data-v-3614d452]::-webkit-input-placeholder, input[type="email"][data-v-3614d452]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3614d452]::-moz-placeholder, input[type="password"][data-v-3614d452]::-moz-placeholder, input[type="text"][data-v-3614d452]::-moz-placeholder, input[type="number"][data-v-3614d452]::-moz-placeholder, input[type="email"][data-v-3614d452]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3614d452]:-ms-input-placeholder, input[type="password"][data-v-3614d452]:-ms-input-placeholder, input[type="text"][data-v-3614d452]:-ms-input-placeholder, input[type="number"][data-v-3614d452]:-ms-input-placeholder, input[type="email"][data-v-3614d452]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3614d452]::-ms-input-placeholder, input[type="password"][data-v-3614d452]::-ms-input-placeholder, input[type="text"][data-v-3614d452]::-ms-input-placeholder, input[type="number"][data-v-3614d452]::-ms-input-placeholder, input[type="email"][data-v-3614d452]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3614d452]::placeholder,\n input[type="password"][data-v-3614d452]::placeholder,\n input[type="text"][data-v-3614d452]::placeholder,\n input[type="number"][data-v-3614d452]::placeholder,\n input[type="email"][data-v-3614d452]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-3614d452],\n input[type="password"][disabled][data-v-3614d452],\n input[type="text"][disabled][data-v-3614d452],\n input[type="number"][disabled][data-v-3614d452],\n input[type="email"][disabled][data-v-3614d452] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-3614d452] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(114);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-0441d4a5] {\n max-width: 700px;\n}\n.form.inline-form[data-v-0441d4a5] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-0441d4a5] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-0441d4a5] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-0441d4a5] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-0441d4a5] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-0441d4a5] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-0441d4a5] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-0441d4a5]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-0441d4a5] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-0441d4a5] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-0441d4a5] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-0441d4a5] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-0441d4a5] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-0441d4a5] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-0441d4a5] {\n margin-left: 20px;\n}\n.error-message[data-v-0441d4a5] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-0441d4a5] {\n width: 100%;\n}\ntextarea[data-v-0441d4a5],\ninput[type="password"][data-v-0441d4a5],\ninput[type="text"][data-v-0441d4a5],\ninput[type="number"][data-v-0441d4a5],\ninput[type="email"][data-v-0441d4a5] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-0441d4a5],\ninput[type="password"].is-error[data-v-0441d4a5],\ninput[type="text"].is-error[data-v-0441d4a5],\ninput[type="number"].is-error[data-v-0441d4a5],\ninput[type="email"].is-error[data-v-0441d4a5] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-0441d4a5]::-webkit-input-placeholder, input[type="password"][data-v-0441d4a5]::-webkit-input-placeholder, input[type="text"][data-v-0441d4a5]::-webkit-input-placeholder, input[type="number"][data-v-0441d4a5]::-webkit-input-placeholder, input[type="email"][data-v-0441d4a5]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0441d4a5]::-moz-placeholder, input[type="password"][data-v-0441d4a5]::-moz-placeholder, input[type="text"][data-v-0441d4a5]::-moz-placeholder, input[type="number"][data-v-0441d4a5]::-moz-placeholder, input[type="email"][data-v-0441d4a5]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0441d4a5]:-ms-input-placeholder, input[type="password"][data-v-0441d4a5]:-ms-input-placeholder, input[type="text"][data-v-0441d4a5]:-ms-input-placeholder, input[type="number"][data-v-0441d4a5]:-ms-input-placeholder, input[type="email"][data-v-0441d4a5]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0441d4a5]::-ms-input-placeholder, input[type="password"][data-v-0441d4a5]::-ms-input-placeholder, input[type="text"][data-v-0441d4a5]::-ms-input-placeholder, input[type="number"][data-v-0441d4a5]::-ms-input-placeholder, input[type="email"][data-v-0441d4a5]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0441d4a5]::placeholder,\ninput[type="password"][data-v-0441d4a5]::placeholder,\ninput[type="text"][data-v-0441d4a5]::placeholder,\ninput[type="number"][data-v-0441d4a5]::placeholder,\ninput[type="email"][data-v-0441d4a5]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0441d4a5]:focus,\ninput[type="password"][data-v-0441d4a5]:focus,\ninput[type="text"][data-v-0441d4a5]:focus,\ninput[type="number"][data-v-0441d4a5]:focus,\ninput[type="email"][data-v-0441d4a5]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-0441d4a5],\ninput[type="password"][disabled][data-v-0441d4a5],\ninput[type="text"][disabled][data-v-0441d4a5],\ninput[type="number"][disabled][data-v-0441d4a5],\ninput[type="email"][disabled][data-v-0441d4a5] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-0441d4a5] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-0441d4a5], .additional-link a[data-v-0441d4a5] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-0441d4a5]:hover, .additional-link a[data-v-0441d4a5]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-0441d4a5] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-0441d4a5] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-0441d4a5], .form textarea[data-v-0441d4a5] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-0441d4a5] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-0441d4a5] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-0441d4a5] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-0441d4a5] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-0441d4a5] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-0441d4a5] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-0441d4a5] {\n display: block;\n}\n.single-line-form .submit-button[data-v-0441d4a5] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-0441d4a5],\n input[type="password"][data-v-0441d4a5],\n input[type="number"][data-v-0441d4a5],\n input[type="text"][data-v-0441d4a5],\n input[type="email"][data-v-0441d4a5] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-0441d4a5] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-0441d4a5] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-0441d4a5] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-0441d4a5] {\n color: #bec6cf;\n}\ntextarea[data-v-0441d4a5],\n input[type="password"][data-v-0441d4a5],\n input[type="text"][data-v-0441d4a5],\n input[type="number"][data-v-0441d4a5],\n input[type="email"][data-v-0441d4a5] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-0441d4a5]::-webkit-input-placeholder, input[type="password"][data-v-0441d4a5]::-webkit-input-placeholder, input[type="text"][data-v-0441d4a5]::-webkit-input-placeholder, input[type="number"][data-v-0441d4a5]::-webkit-input-placeholder, input[type="email"][data-v-0441d4a5]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0441d4a5]::-moz-placeholder, input[type="password"][data-v-0441d4a5]::-moz-placeholder, input[type="text"][data-v-0441d4a5]::-moz-placeholder, input[type="number"][data-v-0441d4a5]::-moz-placeholder, input[type="email"][data-v-0441d4a5]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0441d4a5]:-ms-input-placeholder, input[type="password"][data-v-0441d4a5]:-ms-input-placeholder, input[type="text"][data-v-0441d4a5]:-ms-input-placeholder, input[type="number"][data-v-0441d4a5]:-ms-input-placeholder, input[type="email"][data-v-0441d4a5]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0441d4a5]::-ms-input-placeholder, input[type="password"][data-v-0441d4a5]::-ms-input-placeholder, input[type="text"][data-v-0441d4a5]::-ms-input-placeholder, input[type="number"][data-v-0441d4a5]::-ms-input-placeholder, input[type="email"][data-v-0441d4a5]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0441d4a5]::placeholder,\n input[type="password"][data-v-0441d4a5]::placeholder,\n input[type="text"][data-v-0441d4a5]::placeholder,\n input[type="number"][data-v-0441d4a5]::placeholder,\n input[type="email"][data-v-0441d4a5]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-0441d4a5],\n input[type="password"][disabled][data-v-0441d4a5],\n input[type="text"][disabled][data-v-0441d4a5],\n input[type="number"][disabled][data-v-0441d4a5],\n input[type="email"][disabled][data-v-0441d4a5] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-0441d4a5] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(115);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".table-tools[data-v-357b13aa] {\n background: white;\n display: flex;\n justify-content: space-between;\n padding: 15px 0 10px;\n position: -webkit-sticky;\n position: sticky;\n top: 40px;\n z-index: 9;\n}\n.table .cell-item[data-v-357b13aa] {\n font-size: 0.9375em;\n white-space: nowrap;\n}\n@media only screen and (max-width: 690px) {\n.table-tools[data-v-357b13aa] {\n padding: 0 0 5px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.table-tools[data-v-357b13aa] {\n background: #111314;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(116);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".user-thumbnail[data-v-3c66d64e] {\n display: flex;\n align-items: center;\n cursor: pointer;\n padding-bottom: 10px;\n padding-top: 15px;\n}\n.user-thumbnail .avatar[data-v-3c66d64e] {\n margin-right: 20px;\n position: relative;\n}\n.user-thumbnail .avatar img[data-v-3c66d64e] {\n line-height: 0;\n width: 62px;\n height: 62px;\n border-radius: 12px;\n z-index: 1;\n position: relative;\n}\n.user-thumbnail .avatar img.blurred[data-v-3c66d64e] {\n position: absolute;\n left: 0;\n top: 2px;\n z-index: 0;\n -webkit-filter: blur(8px);\n filter: blur(8px);\n opacity: 0.5;\n top: 0;\n}\n.user-thumbnail .info .name[data-v-3c66d64e] {\n display: block;\n font-size: 1.0625em;\n line-height: 1;\n}\n.user-thumbnail .info .email[data-v-3c66d64e] {\n color: rgba(27, 37, 57, 0.7);\n font-size: 0.875em;\n}\n@media (prefers-color-scheme: dark) {\n.user-thumbnail .info .email[data-v-3c66d64e] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(117);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-77be2634] {\n max-width: 700px;\n}\n.form.inline-form[data-v-77be2634] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-77be2634] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-77be2634] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-77be2634] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-77be2634] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-77be2634] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-77be2634] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-77be2634]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-77be2634] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-77be2634] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-77be2634] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-77be2634] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-77be2634] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-77be2634] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-77be2634] {\n margin-left: 20px;\n}\n.error-message[data-v-77be2634] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-77be2634] {\n width: 100%;\n}\ntextarea[data-v-77be2634],\ninput[type="password"][data-v-77be2634],\ninput[type="text"][data-v-77be2634],\ninput[type="number"][data-v-77be2634],\ninput[type="email"][data-v-77be2634] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-77be2634],\ninput[type="password"].is-error[data-v-77be2634],\ninput[type="text"].is-error[data-v-77be2634],\ninput[type="number"].is-error[data-v-77be2634],\ninput[type="email"].is-error[data-v-77be2634] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-77be2634]::-webkit-input-placeholder, input[type="password"][data-v-77be2634]::-webkit-input-placeholder, input[type="text"][data-v-77be2634]::-webkit-input-placeholder, input[type="number"][data-v-77be2634]::-webkit-input-placeholder, input[type="email"][data-v-77be2634]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-77be2634]::-moz-placeholder, input[type="password"][data-v-77be2634]::-moz-placeholder, input[type="text"][data-v-77be2634]::-moz-placeholder, input[type="number"][data-v-77be2634]::-moz-placeholder, input[type="email"][data-v-77be2634]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-77be2634]:-ms-input-placeholder, input[type="password"][data-v-77be2634]:-ms-input-placeholder, input[type="text"][data-v-77be2634]:-ms-input-placeholder, input[type="number"][data-v-77be2634]:-ms-input-placeholder, input[type="email"][data-v-77be2634]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-77be2634]::-ms-input-placeholder, input[type="password"][data-v-77be2634]::-ms-input-placeholder, input[type="text"][data-v-77be2634]::-ms-input-placeholder, input[type="number"][data-v-77be2634]::-ms-input-placeholder, input[type="email"][data-v-77be2634]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-77be2634]::placeholder,\ninput[type="password"][data-v-77be2634]::placeholder,\ninput[type="text"][data-v-77be2634]::placeholder,\ninput[type="number"][data-v-77be2634]::placeholder,\ninput[type="email"][data-v-77be2634]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-77be2634]:focus,\ninput[type="password"][data-v-77be2634]:focus,\ninput[type="text"][data-v-77be2634]:focus,\ninput[type="number"][data-v-77be2634]:focus,\ninput[type="email"][data-v-77be2634]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-77be2634],\ninput[type="password"][disabled][data-v-77be2634],\ninput[type="text"][disabled][data-v-77be2634],\ninput[type="number"][disabled][data-v-77be2634],\ninput[type="email"][disabled][data-v-77be2634] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-77be2634] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-77be2634], .additional-link a[data-v-77be2634] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-77be2634]:hover, .additional-link a[data-v-77be2634]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-77be2634] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-77be2634] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-77be2634], .form textarea[data-v-77be2634] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-77be2634] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-77be2634] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-77be2634] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-77be2634] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-77be2634] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-77be2634] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-77be2634] {\n display: block;\n}\n.single-line-form .submit-button[data-v-77be2634] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-77be2634],\n input[type="password"][data-v-77be2634],\n input[type="number"][data-v-77be2634],\n input[type="text"][data-v-77be2634],\n input[type="email"][data-v-77be2634] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-77be2634] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-77be2634] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-77be2634] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-77be2634] {\n color: #bec6cf;\n}\ntextarea[data-v-77be2634],\n input[type="password"][data-v-77be2634],\n input[type="text"][data-v-77be2634],\n input[type="number"][data-v-77be2634],\n input[type="email"][data-v-77be2634] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-77be2634]::-webkit-input-placeholder, input[type="password"][data-v-77be2634]::-webkit-input-placeholder, input[type="text"][data-v-77be2634]::-webkit-input-placeholder, input[type="number"][data-v-77be2634]::-webkit-input-placeholder, input[type="email"][data-v-77be2634]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-77be2634]::-moz-placeholder, input[type="password"][data-v-77be2634]::-moz-placeholder, input[type="text"][data-v-77be2634]::-moz-placeholder, input[type="number"][data-v-77be2634]::-moz-placeholder, input[type="email"][data-v-77be2634]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-77be2634]:-ms-input-placeholder, input[type="password"][data-v-77be2634]:-ms-input-placeholder, input[type="text"][data-v-77be2634]:-ms-input-placeholder, input[type="number"][data-v-77be2634]:-ms-input-placeholder, input[type="email"][data-v-77be2634]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-77be2634]::-ms-input-placeholder, input[type="password"][data-v-77be2634]::-ms-input-placeholder, input[type="text"][data-v-77be2634]::-ms-input-placeholder, input[type="number"][data-v-77be2634]::-ms-input-placeholder, input[type="email"][data-v-77be2634]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-77be2634]::placeholder,\n input[type="password"][data-v-77be2634]::placeholder,\n input[type="text"][data-v-77be2634]::placeholder,\n input[type="number"][data-v-77be2634]::placeholder,\n input[type="email"][data-v-77be2634]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-77be2634],\n input[type="password"][disabled][data-v-77be2634],\n input[type="text"][disabled][data-v-77be2634],\n input[type="number"][disabled][data-v-77be2634],\n input[type="email"][disabled][data-v-77be2634] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(118);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-5c899184] {\n max-width: 700px;\n}\n.form.inline-form[data-v-5c899184] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-5c899184] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-5c899184] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-5c899184] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-5c899184] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-5c899184] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-5c899184] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-5c899184]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-5c899184] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-5c899184] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-5c899184] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-5c899184] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-5c899184] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-5c899184] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-5c899184] {\n margin-left: 20px;\n}\n.error-message[data-v-5c899184] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-5c899184] {\n width: 100%;\n}\ntextarea[data-v-5c899184],\ninput[type="password"][data-v-5c899184],\ninput[type="text"][data-v-5c899184],\ninput[type="number"][data-v-5c899184],\ninput[type="email"][data-v-5c899184] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-5c899184],\ninput[type="password"].is-error[data-v-5c899184],\ninput[type="text"].is-error[data-v-5c899184],\ninput[type="number"].is-error[data-v-5c899184],\ninput[type="email"].is-error[data-v-5c899184] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-5c899184]::-webkit-input-placeholder, input[type="password"][data-v-5c899184]::-webkit-input-placeholder, input[type="text"][data-v-5c899184]::-webkit-input-placeholder, input[type="number"][data-v-5c899184]::-webkit-input-placeholder, input[type="email"][data-v-5c899184]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5c899184]::-moz-placeholder, input[type="password"][data-v-5c899184]::-moz-placeholder, input[type="text"][data-v-5c899184]::-moz-placeholder, input[type="number"][data-v-5c899184]::-moz-placeholder, input[type="email"][data-v-5c899184]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5c899184]:-ms-input-placeholder, input[type="password"][data-v-5c899184]:-ms-input-placeholder, input[type="text"][data-v-5c899184]:-ms-input-placeholder, input[type="number"][data-v-5c899184]:-ms-input-placeholder, input[type="email"][data-v-5c899184]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5c899184]::-ms-input-placeholder, input[type="password"][data-v-5c899184]::-ms-input-placeholder, input[type="text"][data-v-5c899184]::-ms-input-placeholder, input[type="number"][data-v-5c899184]::-ms-input-placeholder, input[type="email"][data-v-5c899184]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5c899184]::placeholder,\ninput[type="password"][data-v-5c899184]::placeholder,\ninput[type="text"][data-v-5c899184]::placeholder,\ninput[type="number"][data-v-5c899184]::placeholder,\ninput[type="email"][data-v-5c899184]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5c899184]:focus,\ninput[type="password"][data-v-5c899184]:focus,\ninput[type="text"][data-v-5c899184]:focus,\ninput[type="number"][data-v-5c899184]:focus,\ninput[type="email"][data-v-5c899184]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-5c899184],\ninput[type="password"][disabled][data-v-5c899184],\ninput[type="text"][disabled][data-v-5c899184],\ninput[type="number"][disabled][data-v-5c899184],\ninput[type="email"][disabled][data-v-5c899184] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-5c899184] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-5c899184], .additional-link a[data-v-5c899184] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-5c899184]:hover, .additional-link a[data-v-5c899184]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-5c899184] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-5c899184] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-5c899184], .form textarea[data-v-5c899184] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-5c899184] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-5c899184] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-5c899184] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-5c899184] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-5c899184] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-5c899184] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-5c899184] {\n display: block;\n}\n.single-line-form .submit-button[data-v-5c899184] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-5c899184],\n input[type="password"][data-v-5c899184],\n input[type="number"][data-v-5c899184],\n input[type="text"][data-v-5c899184],\n input[type="email"][data-v-5c899184] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-5c899184] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-5c899184] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-5c899184] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-5c899184] {\n color: #bec6cf;\n}\ntextarea[data-v-5c899184],\n input[type="password"][data-v-5c899184],\n input[type="text"][data-v-5c899184],\n input[type="number"][data-v-5c899184],\n input[type="email"][data-v-5c899184] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-5c899184]::-webkit-input-placeholder, input[type="password"][data-v-5c899184]::-webkit-input-placeholder, input[type="text"][data-v-5c899184]::-webkit-input-placeholder, input[type="number"][data-v-5c899184]::-webkit-input-placeholder, input[type="email"][data-v-5c899184]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5c899184]::-moz-placeholder, input[type="password"][data-v-5c899184]::-moz-placeholder, input[type="text"][data-v-5c899184]::-moz-placeholder, input[type="number"][data-v-5c899184]::-moz-placeholder, input[type="email"][data-v-5c899184]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5c899184]:-ms-input-placeholder, input[type="password"][data-v-5c899184]:-ms-input-placeholder, input[type="text"][data-v-5c899184]:-ms-input-placeholder, input[type="number"][data-v-5c899184]:-ms-input-placeholder, input[type="email"][data-v-5c899184]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5c899184]::-ms-input-placeholder, input[type="password"][data-v-5c899184]::-ms-input-placeholder, input[type="text"][data-v-5c899184]::-ms-input-placeholder, input[type="number"][data-v-5c899184]::-ms-input-placeholder, input[type="email"][data-v-5c899184]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5c899184]::placeholder,\n input[type="password"][data-v-5c899184]::placeholder,\n input[type="text"][data-v-5c899184]::placeholder,\n input[type="number"][data-v-5c899184]::placeholder,\n input[type="email"][data-v-5c899184]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-5c899184],\n input[type="password"][disabled][data-v-5c899184],\n input[type="text"][disabled][data-v-5c899184],\n input[type="number"][disabled][data-v-5c899184],\n input[type="email"][disabled][data-v-5c899184] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-5c899184] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(119);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-83657456] {\n max-width: 700px;\n}\n.form.inline-form[data-v-83657456] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-83657456] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-83657456] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-83657456] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-83657456] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-83657456] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-83657456] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-83657456]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-83657456] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-83657456] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-83657456] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-83657456] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-83657456] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-83657456] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-83657456] {\n margin-left: 20px;\n}\n.error-message[data-v-83657456] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-83657456] {\n width: 100%;\n}\ntextarea[data-v-83657456],\ninput[type="password"][data-v-83657456],\ninput[type="text"][data-v-83657456],\ninput[type="number"][data-v-83657456],\ninput[type="email"][data-v-83657456] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-83657456],\ninput[type="password"].is-error[data-v-83657456],\ninput[type="text"].is-error[data-v-83657456],\ninput[type="number"].is-error[data-v-83657456],\ninput[type="email"].is-error[data-v-83657456] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-83657456]::-webkit-input-placeholder, input[type="password"][data-v-83657456]::-webkit-input-placeholder, input[type="text"][data-v-83657456]::-webkit-input-placeholder, input[type="number"][data-v-83657456]::-webkit-input-placeholder, input[type="email"][data-v-83657456]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-83657456]::-moz-placeholder, input[type="password"][data-v-83657456]::-moz-placeholder, input[type="text"][data-v-83657456]::-moz-placeholder, input[type="number"][data-v-83657456]::-moz-placeholder, input[type="email"][data-v-83657456]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-83657456]:-ms-input-placeholder, input[type="password"][data-v-83657456]:-ms-input-placeholder, input[type="text"][data-v-83657456]:-ms-input-placeholder, input[type="number"][data-v-83657456]:-ms-input-placeholder, input[type="email"][data-v-83657456]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-83657456]::-ms-input-placeholder, input[type="password"][data-v-83657456]::-ms-input-placeholder, input[type="text"][data-v-83657456]::-ms-input-placeholder, input[type="number"][data-v-83657456]::-ms-input-placeholder, input[type="email"][data-v-83657456]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-83657456]::placeholder,\ninput[type="password"][data-v-83657456]::placeholder,\ninput[type="text"][data-v-83657456]::placeholder,\ninput[type="number"][data-v-83657456]::placeholder,\ninput[type="email"][data-v-83657456]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-83657456]:focus,\ninput[type="password"][data-v-83657456]:focus,\ninput[type="text"][data-v-83657456]:focus,\ninput[type="number"][data-v-83657456]:focus,\ninput[type="email"][data-v-83657456]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-83657456],\ninput[type="password"][disabled][data-v-83657456],\ninput[type="text"][disabled][data-v-83657456],\ninput[type="number"][disabled][data-v-83657456],\ninput[type="email"][disabled][data-v-83657456] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-83657456] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-83657456], .additional-link a[data-v-83657456] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-83657456]:hover, .additional-link a[data-v-83657456]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-83657456] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-83657456] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-83657456], .form textarea[data-v-83657456] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-83657456] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-83657456] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-83657456] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-83657456] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-83657456] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-83657456] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-83657456] {\n display: block;\n}\n.single-line-form .submit-button[data-v-83657456] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-83657456],\n input[type="password"][data-v-83657456],\n input[type="number"][data-v-83657456],\n input[type="text"][data-v-83657456],\n input[type="email"][data-v-83657456] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-83657456] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-83657456] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-83657456] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-83657456] {\n color: #bec6cf;\n}\ntextarea[data-v-83657456],\n input[type="password"][data-v-83657456],\n input[type="text"][data-v-83657456],\n input[type="number"][data-v-83657456],\n input[type="email"][data-v-83657456] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-83657456]::-webkit-input-placeholder, input[type="password"][data-v-83657456]::-webkit-input-placeholder, input[type="text"][data-v-83657456]::-webkit-input-placeholder, input[type="number"][data-v-83657456]::-webkit-input-placeholder, input[type="email"][data-v-83657456]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-83657456]::-moz-placeholder, input[type="password"][data-v-83657456]::-moz-placeholder, input[type="text"][data-v-83657456]::-moz-placeholder, input[type="number"][data-v-83657456]::-moz-placeholder, input[type="email"][data-v-83657456]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-83657456]:-ms-input-placeholder, input[type="password"][data-v-83657456]:-ms-input-placeholder, input[type="text"][data-v-83657456]:-ms-input-placeholder, input[type="number"][data-v-83657456]:-ms-input-placeholder, input[type="email"][data-v-83657456]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-83657456]::-ms-input-placeholder, input[type="password"][data-v-83657456]::-ms-input-placeholder, input[type="text"][data-v-83657456]::-ms-input-placeholder, input[type="number"][data-v-83657456]::-ms-input-placeholder, input[type="email"][data-v-83657456]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-83657456]::placeholder,\n input[type="password"][data-v-83657456]::placeholder,\n input[type="text"][data-v-83657456]::placeholder,\n input[type="number"][data-v-83657456]::placeholder,\n input[type="email"][data-v-83657456]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-83657456],\n input[type="password"][disabled][data-v-83657456],\n input[type="text"][disabled][data-v-83657456],\n input[type="number"][disabled][data-v-83657456],\n input[type="email"][disabled][data-v-83657456] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-83657456] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(120);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-29b38764] {\n max-width: 700px;\n}\n.form.inline-form[data-v-29b38764] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-29b38764] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-29b38764] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-29b38764] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-29b38764] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-29b38764] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-29b38764] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-29b38764]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-29b38764] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-29b38764] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-29b38764] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-29b38764] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-29b38764] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-29b38764] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-29b38764] {\n margin-left: 20px;\n}\n.error-message[data-v-29b38764] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-29b38764] {\n width: 100%;\n}\ntextarea[data-v-29b38764],\ninput[type="password"][data-v-29b38764],\ninput[type="text"][data-v-29b38764],\ninput[type="number"][data-v-29b38764],\ninput[type="email"][data-v-29b38764] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-29b38764],\ninput[type="password"].is-error[data-v-29b38764],\ninput[type="text"].is-error[data-v-29b38764],\ninput[type="number"].is-error[data-v-29b38764],\ninput[type="email"].is-error[data-v-29b38764] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-29b38764]::-webkit-input-placeholder, input[type="password"][data-v-29b38764]::-webkit-input-placeholder, input[type="text"][data-v-29b38764]::-webkit-input-placeholder, input[type="number"][data-v-29b38764]::-webkit-input-placeholder, input[type="email"][data-v-29b38764]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-29b38764]::-moz-placeholder, input[type="password"][data-v-29b38764]::-moz-placeholder, input[type="text"][data-v-29b38764]::-moz-placeholder, input[type="number"][data-v-29b38764]::-moz-placeholder, input[type="email"][data-v-29b38764]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-29b38764]:-ms-input-placeholder, input[type="password"][data-v-29b38764]:-ms-input-placeholder, input[type="text"][data-v-29b38764]:-ms-input-placeholder, input[type="number"][data-v-29b38764]:-ms-input-placeholder, input[type="email"][data-v-29b38764]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-29b38764]::-ms-input-placeholder, input[type="password"][data-v-29b38764]::-ms-input-placeholder, input[type="text"][data-v-29b38764]::-ms-input-placeholder, input[type="number"][data-v-29b38764]::-ms-input-placeholder, input[type="email"][data-v-29b38764]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-29b38764]::placeholder,\ninput[type="password"][data-v-29b38764]::placeholder,\ninput[type="text"][data-v-29b38764]::placeholder,\ninput[type="number"][data-v-29b38764]::placeholder,\ninput[type="email"][data-v-29b38764]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-29b38764]:focus,\ninput[type="password"][data-v-29b38764]:focus,\ninput[type="text"][data-v-29b38764]:focus,\ninput[type="number"][data-v-29b38764]:focus,\ninput[type="email"][data-v-29b38764]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-29b38764],\ninput[type="password"][disabled][data-v-29b38764],\ninput[type="text"][disabled][data-v-29b38764],\ninput[type="number"][disabled][data-v-29b38764],\ninput[type="email"][disabled][data-v-29b38764] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-29b38764] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-29b38764], .additional-link a[data-v-29b38764] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-29b38764]:hover, .additional-link a[data-v-29b38764]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-29b38764] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-29b38764] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-29b38764], .form textarea[data-v-29b38764] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-29b38764] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-29b38764] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-29b38764] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-29b38764] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-29b38764] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-29b38764] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-29b38764] {\n display: block;\n}\n.single-line-form .submit-button[data-v-29b38764] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-29b38764],\n input[type="password"][data-v-29b38764],\n input[type="number"][data-v-29b38764],\n input[type="text"][data-v-29b38764],\n input[type="email"][data-v-29b38764] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-29b38764] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-29b38764] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-29b38764] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-29b38764] {\n color: #bec6cf;\n}\ntextarea[data-v-29b38764],\n input[type="password"][data-v-29b38764],\n input[type="text"][data-v-29b38764],\n input[type="number"][data-v-29b38764],\n input[type="email"][data-v-29b38764] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-29b38764]::-webkit-input-placeholder, input[type="password"][data-v-29b38764]::-webkit-input-placeholder, input[type="text"][data-v-29b38764]::-webkit-input-placeholder, input[type="number"][data-v-29b38764]::-webkit-input-placeholder, input[type="email"][data-v-29b38764]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-29b38764]::-moz-placeholder, input[type="password"][data-v-29b38764]::-moz-placeholder, input[type="text"][data-v-29b38764]::-moz-placeholder, input[type="number"][data-v-29b38764]::-moz-placeholder, input[type="email"][data-v-29b38764]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-29b38764]:-ms-input-placeholder, input[type="password"][data-v-29b38764]:-ms-input-placeholder, input[type="text"][data-v-29b38764]:-ms-input-placeholder, input[type="number"][data-v-29b38764]:-ms-input-placeholder, input[type="email"][data-v-29b38764]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-29b38764]::-ms-input-placeholder, input[type="password"][data-v-29b38764]::-ms-input-placeholder, input[type="text"][data-v-29b38764]::-ms-input-placeholder, input[type="number"][data-v-29b38764]::-ms-input-placeholder, input[type="email"][data-v-29b38764]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-29b38764]::placeholder,\n input[type="password"][data-v-29b38764]::placeholder,\n input[type="text"][data-v-29b38764]::placeholder,\n input[type="number"][data-v-29b38764]::placeholder,\n input[type="email"][data-v-29b38764]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-29b38764],\n input[type="password"][disabled][data-v-29b38764],\n input[type="text"][disabled][data-v-29b38764],\n input[type="number"][disabled][data-v-29b38764],\n input[type="email"][disabled][data-v-29b38764] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-29b38764] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(121);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-e33b1e42] {\n max-width: 700px;\n}\n.form.inline-form[data-v-e33b1e42] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-e33b1e42] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-e33b1e42] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-e33b1e42] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-e33b1e42] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-e33b1e42] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-e33b1e42] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-e33b1e42]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-e33b1e42] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-e33b1e42] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-e33b1e42] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-e33b1e42] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-e33b1e42] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-e33b1e42] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-e33b1e42] {\n margin-left: 20px;\n}\n.error-message[data-v-e33b1e42] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-e33b1e42] {\n width: 100%;\n}\ntextarea[data-v-e33b1e42],\ninput[type="password"][data-v-e33b1e42],\ninput[type="text"][data-v-e33b1e42],\ninput[type="number"][data-v-e33b1e42],\ninput[type="email"][data-v-e33b1e42] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-e33b1e42],\ninput[type="password"].is-error[data-v-e33b1e42],\ninput[type="text"].is-error[data-v-e33b1e42],\ninput[type="number"].is-error[data-v-e33b1e42],\ninput[type="email"].is-error[data-v-e33b1e42] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-e33b1e42]::-webkit-input-placeholder, input[type="password"][data-v-e33b1e42]::-webkit-input-placeholder, input[type="text"][data-v-e33b1e42]::-webkit-input-placeholder, input[type="number"][data-v-e33b1e42]::-webkit-input-placeholder, input[type="email"][data-v-e33b1e42]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-e33b1e42]::-moz-placeholder, input[type="password"][data-v-e33b1e42]::-moz-placeholder, input[type="text"][data-v-e33b1e42]::-moz-placeholder, input[type="number"][data-v-e33b1e42]::-moz-placeholder, input[type="email"][data-v-e33b1e42]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-e33b1e42]:-ms-input-placeholder, input[type="password"][data-v-e33b1e42]:-ms-input-placeholder, input[type="text"][data-v-e33b1e42]:-ms-input-placeholder, input[type="number"][data-v-e33b1e42]:-ms-input-placeholder, input[type="email"][data-v-e33b1e42]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-e33b1e42]::-ms-input-placeholder, input[type="password"][data-v-e33b1e42]::-ms-input-placeholder, input[type="text"][data-v-e33b1e42]::-ms-input-placeholder, input[type="number"][data-v-e33b1e42]::-ms-input-placeholder, input[type="email"][data-v-e33b1e42]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-e33b1e42]::placeholder,\ninput[type="password"][data-v-e33b1e42]::placeholder,\ninput[type="text"][data-v-e33b1e42]::placeholder,\ninput[type="number"][data-v-e33b1e42]::placeholder,\ninput[type="email"][data-v-e33b1e42]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-e33b1e42]:focus,\ninput[type="password"][data-v-e33b1e42]:focus,\ninput[type="text"][data-v-e33b1e42]:focus,\ninput[type="number"][data-v-e33b1e42]:focus,\ninput[type="email"][data-v-e33b1e42]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-e33b1e42],\ninput[type="password"][disabled][data-v-e33b1e42],\ninput[type="text"][disabled][data-v-e33b1e42],\ninput[type="number"][disabled][data-v-e33b1e42],\ninput[type="email"][disabled][data-v-e33b1e42] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-e33b1e42] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-e33b1e42], .additional-link a[data-v-e33b1e42] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-e33b1e42]:hover, .additional-link a[data-v-e33b1e42]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-e33b1e42] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-e33b1e42] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-e33b1e42], .form textarea[data-v-e33b1e42] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-e33b1e42] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-e33b1e42] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-e33b1e42] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-e33b1e42] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-e33b1e42] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-e33b1e42] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-e33b1e42] {\n display: block;\n}\n.single-line-form .submit-button[data-v-e33b1e42] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-e33b1e42],\n input[type="password"][data-v-e33b1e42],\n input[type="number"][data-v-e33b1e42],\n input[type="text"][data-v-e33b1e42],\n input[type="email"][data-v-e33b1e42] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-e33b1e42] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-e33b1e42] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-e33b1e42] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-e33b1e42] {\n color: #bec6cf;\n}\ntextarea[data-v-e33b1e42],\n input[type="password"][data-v-e33b1e42],\n input[type="text"][data-v-e33b1e42],\n input[type="number"][data-v-e33b1e42],\n input[type="email"][data-v-e33b1e42] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-e33b1e42]::-webkit-input-placeholder, input[type="password"][data-v-e33b1e42]::-webkit-input-placeholder, input[type="text"][data-v-e33b1e42]::-webkit-input-placeholder, input[type="number"][data-v-e33b1e42]::-webkit-input-placeholder, input[type="email"][data-v-e33b1e42]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-e33b1e42]::-moz-placeholder, input[type="password"][data-v-e33b1e42]::-moz-placeholder, input[type="text"][data-v-e33b1e42]::-moz-placeholder, input[type="number"][data-v-e33b1e42]::-moz-placeholder, input[type="email"][data-v-e33b1e42]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-e33b1e42]:-ms-input-placeholder, input[type="password"][data-v-e33b1e42]:-ms-input-placeholder, input[type="text"][data-v-e33b1e42]:-ms-input-placeholder, input[type="number"][data-v-e33b1e42]:-ms-input-placeholder, input[type="email"][data-v-e33b1e42]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-e33b1e42]::-ms-input-placeholder, input[type="password"][data-v-e33b1e42]::-ms-input-placeholder, input[type="text"][data-v-e33b1e42]::-ms-input-placeholder, input[type="number"][data-v-e33b1e42]::-ms-input-placeholder, input[type="email"][data-v-e33b1e42]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-e33b1e42]::placeholder,\n input[type="password"][data-v-e33b1e42]::placeholder,\n input[type="text"][data-v-e33b1e42]::placeholder,\n input[type="number"][data-v-e33b1e42]::placeholder,\n input[type="email"][data-v-e33b1e42]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-e33b1e42],\n input[type="password"][disabled][data-v-e33b1e42],\n input[type="text"][disabled][data-v-e33b1e42],\n input[type="number"][disabled][data-v-e33b1e42],\n input[type="email"][disabled][data-v-e33b1e42] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-e33b1e42] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(122);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-210f4d1b] {\n max-width: 700px;\n}\n.form.inline-form[data-v-210f4d1b] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-210f4d1b] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-210f4d1b] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-210f4d1b] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-210f4d1b] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-210f4d1b] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-210f4d1b] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-210f4d1b]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-210f4d1b] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-210f4d1b] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-210f4d1b] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-210f4d1b] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-210f4d1b] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-210f4d1b] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-210f4d1b] {\n margin-left: 20px;\n}\n.error-message[data-v-210f4d1b] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-210f4d1b] {\n width: 100%;\n}\ntextarea[data-v-210f4d1b],\ninput[type="password"][data-v-210f4d1b],\ninput[type="text"][data-v-210f4d1b],\ninput[type="number"][data-v-210f4d1b],\ninput[type="email"][data-v-210f4d1b] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-210f4d1b],\ninput[type="password"].is-error[data-v-210f4d1b],\ninput[type="text"].is-error[data-v-210f4d1b],\ninput[type="number"].is-error[data-v-210f4d1b],\ninput[type="email"].is-error[data-v-210f4d1b] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-210f4d1b]::-webkit-input-placeholder, input[type="password"][data-v-210f4d1b]::-webkit-input-placeholder, input[type="text"][data-v-210f4d1b]::-webkit-input-placeholder, input[type="number"][data-v-210f4d1b]::-webkit-input-placeholder, input[type="email"][data-v-210f4d1b]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-210f4d1b]::-moz-placeholder, input[type="password"][data-v-210f4d1b]::-moz-placeholder, input[type="text"][data-v-210f4d1b]::-moz-placeholder, input[type="number"][data-v-210f4d1b]::-moz-placeholder, input[type="email"][data-v-210f4d1b]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-210f4d1b]:-ms-input-placeholder, input[type="password"][data-v-210f4d1b]:-ms-input-placeholder, input[type="text"][data-v-210f4d1b]:-ms-input-placeholder, input[type="number"][data-v-210f4d1b]:-ms-input-placeholder, input[type="email"][data-v-210f4d1b]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-210f4d1b]::-ms-input-placeholder, input[type="password"][data-v-210f4d1b]::-ms-input-placeholder, input[type="text"][data-v-210f4d1b]::-ms-input-placeholder, input[type="number"][data-v-210f4d1b]::-ms-input-placeholder, input[type="email"][data-v-210f4d1b]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-210f4d1b]::placeholder,\ninput[type="password"][data-v-210f4d1b]::placeholder,\ninput[type="text"][data-v-210f4d1b]::placeholder,\ninput[type="number"][data-v-210f4d1b]::placeholder,\ninput[type="email"][data-v-210f4d1b]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-210f4d1b]:focus,\ninput[type="password"][data-v-210f4d1b]:focus,\ninput[type="text"][data-v-210f4d1b]:focus,\ninput[type="number"][data-v-210f4d1b]:focus,\ninput[type="email"][data-v-210f4d1b]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-210f4d1b],\ninput[type="password"][disabled][data-v-210f4d1b],\ninput[type="text"][disabled][data-v-210f4d1b],\ninput[type="number"][disabled][data-v-210f4d1b],\ninput[type="email"][disabled][data-v-210f4d1b] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-210f4d1b] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-210f4d1b], .additional-link a[data-v-210f4d1b] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-210f4d1b]:hover, .additional-link a[data-v-210f4d1b]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-210f4d1b] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-210f4d1b] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-210f4d1b], .form textarea[data-v-210f4d1b] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-210f4d1b] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-210f4d1b] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-210f4d1b] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-210f4d1b] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-210f4d1b] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-210f4d1b] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-210f4d1b] {\n display: block;\n}\n.single-line-form .submit-button[data-v-210f4d1b] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-210f4d1b],\n input[type="password"][data-v-210f4d1b],\n input[type="number"][data-v-210f4d1b],\n input[type="text"][data-v-210f4d1b],\n input[type="email"][data-v-210f4d1b] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-210f4d1b] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-210f4d1b] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-210f4d1b] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-210f4d1b] {\n color: #bec6cf;\n}\ntextarea[data-v-210f4d1b],\n input[type="password"][data-v-210f4d1b],\n input[type="text"][data-v-210f4d1b],\n input[type="number"][data-v-210f4d1b],\n input[type="email"][data-v-210f4d1b] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-210f4d1b]::-webkit-input-placeholder, input[type="password"][data-v-210f4d1b]::-webkit-input-placeholder, input[type="text"][data-v-210f4d1b]::-webkit-input-placeholder, input[type="number"][data-v-210f4d1b]::-webkit-input-placeholder, input[type="email"][data-v-210f4d1b]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-210f4d1b]::-moz-placeholder, input[type="password"][data-v-210f4d1b]::-moz-placeholder, input[type="text"][data-v-210f4d1b]::-moz-placeholder, input[type="number"][data-v-210f4d1b]::-moz-placeholder, input[type="email"][data-v-210f4d1b]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-210f4d1b]:-ms-input-placeholder, input[type="password"][data-v-210f4d1b]:-ms-input-placeholder, input[type="text"][data-v-210f4d1b]:-ms-input-placeholder, input[type="number"][data-v-210f4d1b]:-ms-input-placeholder, input[type="email"][data-v-210f4d1b]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-210f4d1b]::-ms-input-placeholder, input[type="password"][data-v-210f4d1b]::-ms-input-placeholder, input[type="text"][data-v-210f4d1b]::-ms-input-placeholder, input[type="number"][data-v-210f4d1b]::-ms-input-placeholder, input[type="email"][data-v-210f4d1b]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-210f4d1b]::placeholder,\n input[type="password"][data-v-210f4d1b]::placeholder,\n input[type="text"][data-v-210f4d1b]::placeholder,\n input[type="number"][data-v-210f4d1b]::placeholder,\n input[type="email"][data-v-210f4d1b]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-210f4d1b],\n input[type="password"][disabled][data-v-210f4d1b],\n input[type="text"][disabled][data-v-210f4d1b],\n input[type="number"][disabled][data-v-210f4d1b],\n input[type="email"][disabled][data-v-210f4d1b] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.block-form[data-v-210f4d1b] {\n max-width: 100%;\n}\n',""])},function(t,e,n){"use strict";var a=n(123);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".cancel-plan[data-v-3792ea4e] {\n margin-top: 10px;\n}\n.list-info[data-v-3792ea4e] {\n display: flex;\n flex-wrap: wrap;\n}\n.list-info .list-item[data-v-3792ea4e] {\n flex: 0 0 50%;\n}\n",""])},function(t,e,n){"use strict";var a=n(124);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-6c36d9ad] {\n max-width: 700px;\n}\n.form.inline-form[data-v-6c36d9ad] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-6c36d9ad] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-6c36d9ad] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-6c36d9ad] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-6c36d9ad] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-6c36d9ad] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-6c36d9ad] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-6c36d9ad]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-6c36d9ad] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-6c36d9ad] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-6c36d9ad] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-6c36d9ad] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-6c36d9ad] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-6c36d9ad] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-6c36d9ad] {\n margin-left: 20px;\n}\n.error-message[data-v-6c36d9ad] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-6c36d9ad] {\n width: 100%;\n}\ntextarea[data-v-6c36d9ad],\ninput[type="password"][data-v-6c36d9ad],\ninput[type="text"][data-v-6c36d9ad],\ninput[type="number"][data-v-6c36d9ad],\ninput[type="email"][data-v-6c36d9ad] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-6c36d9ad],\ninput[type="password"].is-error[data-v-6c36d9ad],\ninput[type="text"].is-error[data-v-6c36d9ad],\ninput[type="number"].is-error[data-v-6c36d9ad],\ninput[type="email"].is-error[data-v-6c36d9ad] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-6c36d9ad]::-webkit-input-placeholder, input[type="password"][data-v-6c36d9ad]::-webkit-input-placeholder, input[type="text"][data-v-6c36d9ad]::-webkit-input-placeholder, input[type="number"][data-v-6c36d9ad]::-webkit-input-placeholder, input[type="email"][data-v-6c36d9ad]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-6c36d9ad]::-moz-placeholder, input[type="password"][data-v-6c36d9ad]::-moz-placeholder, input[type="text"][data-v-6c36d9ad]::-moz-placeholder, input[type="number"][data-v-6c36d9ad]::-moz-placeholder, input[type="email"][data-v-6c36d9ad]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-6c36d9ad]:-ms-input-placeholder, input[type="password"][data-v-6c36d9ad]:-ms-input-placeholder, input[type="text"][data-v-6c36d9ad]:-ms-input-placeholder, input[type="number"][data-v-6c36d9ad]:-ms-input-placeholder, input[type="email"][data-v-6c36d9ad]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-6c36d9ad]::-ms-input-placeholder, input[type="password"][data-v-6c36d9ad]::-ms-input-placeholder, input[type="text"][data-v-6c36d9ad]::-ms-input-placeholder, input[type="number"][data-v-6c36d9ad]::-ms-input-placeholder, input[type="email"][data-v-6c36d9ad]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-6c36d9ad]::placeholder,\ninput[type="password"][data-v-6c36d9ad]::placeholder,\ninput[type="text"][data-v-6c36d9ad]::placeholder,\ninput[type="number"][data-v-6c36d9ad]::placeholder,\ninput[type="email"][data-v-6c36d9ad]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-6c36d9ad]:focus,\ninput[type="password"][data-v-6c36d9ad]:focus,\ninput[type="text"][data-v-6c36d9ad]:focus,\ninput[type="number"][data-v-6c36d9ad]:focus,\ninput[type="email"][data-v-6c36d9ad]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-6c36d9ad],\ninput[type="password"][disabled][data-v-6c36d9ad],\ninput[type="text"][disabled][data-v-6c36d9ad],\ninput[type="number"][disabled][data-v-6c36d9ad],\ninput[type="email"][disabled][data-v-6c36d9ad] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-6c36d9ad] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-6c36d9ad], .additional-link a[data-v-6c36d9ad] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-6c36d9ad]:hover, .additional-link a[data-v-6c36d9ad]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-6c36d9ad] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-6c36d9ad] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-6c36d9ad], .form textarea[data-v-6c36d9ad] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-6c36d9ad] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-6c36d9ad] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-6c36d9ad] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-6c36d9ad] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-6c36d9ad] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-6c36d9ad] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-6c36d9ad] {\n display: block;\n}\n.single-line-form .submit-button[data-v-6c36d9ad] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-6c36d9ad],\n input[type="password"][data-v-6c36d9ad],\n input[type="number"][data-v-6c36d9ad],\n input[type="text"][data-v-6c36d9ad],\n input[type="email"][data-v-6c36d9ad] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-6c36d9ad] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-6c36d9ad] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-6c36d9ad] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-6c36d9ad] {\n color: #bec6cf;\n}\ntextarea[data-v-6c36d9ad],\n input[type="password"][data-v-6c36d9ad],\n input[type="text"][data-v-6c36d9ad],\n input[type="number"][data-v-6c36d9ad],\n input[type="email"][data-v-6c36d9ad] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-6c36d9ad]::-webkit-input-placeholder, input[type="password"][data-v-6c36d9ad]::-webkit-input-placeholder, input[type="text"][data-v-6c36d9ad]::-webkit-input-placeholder, input[type="number"][data-v-6c36d9ad]::-webkit-input-placeholder, input[type="email"][data-v-6c36d9ad]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-6c36d9ad]::-moz-placeholder, input[type="password"][data-v-6c36d9ad]::-moz-placeholder, input[type="text"][data-v-6c36d9ad]::-moz-placeholder, input[type="number"][data-v-6c36d9ad]::-moz-placeholder, input[type="email"][data-v-6c36d9ad]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-6c36d9ad]:-ms-input-placeholder, input[type="password"][data-v-6c36d9ad]:-ms-input-placeholder, input[type="text"][data-v-6c36d9ad]:-ms-input-placeholder, input[type="number"][data-v-6c36d9ad]:-ms-input-placeholder, input[type="email"][data-v-6c36d9ad]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-6c36d9ad]::-ms-input-placeholder, input[type="password"][data-v-6c36d9ad]::-ms-input-placeholder, input[type="text"][data-v-6c36d9ad]::-ms-input-placeholder, input[type="number"][data-v-6c36d9ad]::-ms-input-placeholder, input[type="email"][data-v-6c36d9ad]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-6c36d9ad]::placeholder,\n input[type="password"][data-v-6c36d9ad]::placeholder,\n input[type="text"][data-v-6c36d9ad]::placeholder,\n input[type="number"][data-v-6c36d9ad]::placeholder,\n input[type="email"][data-v-6c36d9ad]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-6c36d9ad],\n input[type="password"][disabled][data-v-6c36d9ad],\n input[type="text"][disabled][data-v-6c36d9ad],\n input[type="number"][disabled][data-v-6c36d9ad],\n input[type="email"][disabled][data-v-6c36d9ad] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-6c36d9ad] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-6c36d9ad] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-6c36d9ad] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-6c36d9ad] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-6c36d9ad] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-6c36d9ad] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-6c36d9ad] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-6c36d9ad] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-6c36d9ad] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-6c36d9ad] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-6c36d9ad] {\n width: 100%;\n}\n.auth-form h1[data-v-6c36d9ad] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-6c36d9ad] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-6c36d9ad] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-6c36d9ad] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-6c36d9ad] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-6c36d9ad] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-6c36d9ad], .auth-form h2[data-v-6c36d9ad], .auth-form .additional-link[data-v-6c36d9ad] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-6c36d9ad] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-6c36d9ad] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-6c36d9ad] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-6c36d9ad] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-6c36d9ad] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-6c36d9ad] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-6c36d9ad] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-6c36d9ad],\n.duplicator .duplicator-item textarea[data-v-6c36d9ad] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-6c36d9ad] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-6c36d9ad] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-6c36d9ad] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-6c36d9ad] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-6c36d9ad 5s linear infinite;\n animation: spinner-data-v-6c36d9ad 5s linear infinite;\n}\n.title-icon circle[data-v-6c36d9ad], .title-icon path[data-v-6c36d9ad] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-6c36d9ad {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-6c36d9ad {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-6c36d9ad] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-6c36d9ad],\n .duplicator .duplicator-item textarea[data-v-6c36d9ad] {\n background: #111314;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(125);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-3d9c02d4] {\n max-width: 700px;\n}\n.form.inline-form[data-v-3d9c02d4] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-3d9c02d4] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-3d9c02d4] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-3d9c02d4] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-3d9c02d4] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-3d9c02d4] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-3d9c02d4] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-3d9c02d4]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-3d9c02d4] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-3d9c02d4] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-3d9c02d4] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-3d9c02d4] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-3d9c02d4] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-3d9c02d4] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-3d9c02d4] {\n margin-left: 20px;\n}\n.error-message[data-v-3d9c02d4] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-3d9c02d4] {\n width: 100%;\n}\ntextarea[data-v-3d9c02d4],\ninput[type="password"][data-v-3d9c02d4],\ninput[type="text"][data-v-3d9c02d4],\ninput[type="number"][data-v-3d9c02d4],\ninput[type="email"][data-v-3d9c02d4] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-3d9c02d4],\ninput[type="password"].is-error[data-v-3d9c02d4],\ninput[type="text"].is-error[data-v-3d9c02d4],\ninput[type="number"].is-error[data-v-3d9c02d4],\ninput[type="email"].is-error[data-v-3d9c02d4] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-3d9c02d4]::-webkit-input-placeholder, input[type="password"][data-v-3d9c02d4]::-webkit-input-placeholder, input[type="text"][data-v-3d9c02d4]::-webkit-input-placeholder, input[type="number"][data-v-3d9c02d4]::-webkit-input-placeholder, input[type="email"][data-v-3d9c02d4]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3d9c02d4]::-moz-placeholder, input[type="password"][data-v-3d9c02d4]::-moz-placeholder, input[type="text"][data-v-3d9c02d4]::-moz-placeholder, input[type="number"][data-v-3d9c02d4]::-moz-placeholder, input[type="email"][data-v-3d9c02d4]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3d9c02d4]:-ms-input-placeholder, input[type="password"][data-v-3d9c02d4]:-ms-input-placeholder, input[type="text"][data-v-3d9c02d4]:-ms-input-placeholder, input[type="number"][data-v-3d9c02d4]:-ms-input-placeholder, input[type="email"][data-v-3d9c02d4]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3d9c02d4]::-ms-input-placeholder, input[type="password"][data-v-3d9c02d4]::-ms-input-placeholder, input[type="text"][data-v-3d9c02d4]::-ms-input-placeholder, input[type="number"][data-v-3d9c02d4]::-ms-input-placeholder, input[type="email"][data-v-3d9c02d4]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3d9c02d4]::placeholder,\ninput[type="password"][data-v-3d9c02d4]::placeholder,\ninput[type="text"][data-v-3d9c02d4]::placeholder,\ninput[type="number"][data-v-3d9c02d4]::placeholder,\ninput[type="email"][data-v-3d9c02d4]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-3d9c02d4]:focus,\ninput[type="password"][data-v-3d9c02d4]:focus,\ninput[type="text"][data-v-3d9c02d4]:focus,\ninput[type="number"][data-v-3d9c02d4]:focus,\ninput[type="email"][data-v-3d9c02d4]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-3d9c02d4],\ninput[type="password"][disabled][data-v-3d9c02d4],\ninput[type="text"][disabled][data-v-3d9c02d4],\ninput[type="number"][disabled][data-v-3d9c02d4],\ninput[type="email"][disabled][data-v-3d9c02d4] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-3d9c02d4] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-3d9c02d4], .additional-link a[data-v-3d9c02d4] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-3d9c02d4]:hover, .additional-link a[data-v-3d9c02d4]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-3d9c02d4] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-3d9c02d4] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-3d9c02d4], .form textarea[data-v-3d9c02d4] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-3d9c02d4] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-3d9c02d4] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-3d9c02d4] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-3d9c02d4] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-3d9c02d4] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-3d9c02d4] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-3d9c02d4] {\n display: block;\n}\n.single-line-form .submit-button[data-v-3d9c02d4] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-3d9c02d4],\n input[type="password"][data-v-3d9c02d4],\n input[type="number"][data-v-3d9c02d4],\n input[type="text"][data-v-3d9c02d4],\n input[type="email"][data-v-3d9c02d4] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-3d9c02d4] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-3d9c02d4] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-3d9c02d4] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-3d9c02d4] {\n color: #bec6cf;\n}\ntextarea[data-v-3d9c02d4],\n input[type="password"][data-v-3d9c02d4],\n input[type="text"][data-v-3d9c02d4],\n input[type="number"][data-v-3d9c02d4],\n input[type="email"][data-v-3d9c02d4] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-3d9c02d4]::-webkit-input-placeholder, input[type="password"][data-v-3d9c02d4]::-webkit-input-placeholder, input[type="text"][data-v-3d9c02d4]::-webkit-input-placeholder, input[type="number"][data-v-3d9c02d4]::-webkit-input-placeholder, input[type="email"][data-v-3d9c02d4]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3d9c02d4]::-moz-placeholder, input[type="password"][data-v-3d9c02d4]::-moz-placeholder, input[type="text"][data-v-3d9c02d4]::-moz-placeholder, input[type="number"][data-v-3d9c02d4]::-moz-placeholder, input[type="email"][data-v-3d9c02d4]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3d9c02d4]:-ms-input-placeholder, input[type="password"][data-v-3d9c02d4]:-ms-input-placeholder, input[type="text"][data-v-3d9c02d4]:-ms-input-placeholder, input[type="number"][data-v-3d9c02d4]:-ms-input-placeholder, input[type="email"][data-v-3d9c02d4]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3d9c02d4]::-ms-input-placeholder, input[type="password"][data-v-3d9c02d4]::-ms-input-placeholder, input[type="text"][data-v-3d9c02d4]::-ms-input-placeholder, input[type="number"][data-v-3d9c02d4]::-ms-input-placeholder, input[type="email"][data-v-3d9c02d4]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-3d9c02d4]::placeholder,\n input[type="password"][data-v-3d9c02d4]::placeholder,\n input[type="text"][data-v-3d9c02d4]::placeholder,\n input[type="number"][data-v-3d9c02d4]::placeholder,\n input[type="email"][data-v-3d9c02d4]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-3d9c02d4],\n input[type="password"][disabled][data-v-3d9c02d4],\n input[type="text"][disabled][data-v-3d9c02d4],\n input[type="number"][disabled][data-v-3d9c02d4],\n input[type="email"][disabled][data-v-3d9c02d4] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-3d9c02d4] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-3d9c02d4] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-3d9c02d4] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-3d9c02d4] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-3d9c02d4] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-3d9c02d4] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-3d9c02d4] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-3d9c02d4] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-3d9c02d4] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-3d9c02d4] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-3d9c02d4] {\n width: 100%;\n}\n.auth-form h1[data-v-3d9c02d4] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-3d9c02d4] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-3d9c02d4] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-3d9c02d4] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-3d9c02d4] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-3d9c02d4] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-3d9c02d4], .auth-form h2[data-v-3d9c02d4], .auth-form .additional-link[data-v-3d9c02d4] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-3d9c02d4] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-3d9c02d4] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-3d9c02d4] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-3d9c02d4] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-3d9c02d4] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-3d9c02d4] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-3d9c02d4] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-3d9c02d4],\n.duplicator .duplicator-item textarea[data-v-3d9c02d4] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-3d9c02d4] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-3d9c02d4] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-3d9c02d4] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-3d9c02d4] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-3d9c02d4 5s linear infinite;\n animation: spinner-data-v-3d9c02d4 5s linear infinite;\n}\n.title-icon circle[data-v-3d9c02d4], .title-icon path[data-v-3d9c02d4] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-3d9c02d4 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-3d9c02d4 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-3d9c02d4] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-3d9c02d4],\n .duplicator .duplicator-item textarea[data-v-3d9c02d4] {\n background: #111314;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(126);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-0a02c523] {\n max-width: 700px;\n}\n.form.inline-form[data-v-0a02c523] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-0a02c523] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-0a02c523] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-0a02c523] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-0a02c523] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-0a02c523] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-0a02c523] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-0a02c523]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-0a02c523] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-0a02c523] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-0a02c523] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-0a02c523] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-0a02c523] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-0a02c523] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-0a02c523] {\n margin-left: 20px;\n}\n.error-message[data-v-0a02c523] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-0a02c523] {\n width: 100%;\n}\ntextarea[data-v-0a02c523],\ninput[type="password"][data-v-0a02c523],\ninput[type="text"][data-v-0a02c523],\ninput[type="number"][data-v-0a02c523],\ninput[type="email"][data-v-0a02c523] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-0a02c523],\ninput[type="password"].is-error[data-v-0a02c523],\ninput[type="text"].is-error[data-v-0a02c523],\ninput[type="number"].is-error[data-v-0a02c523],\ninput[type="email"].is-error[data-v-0a02c523] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-0a02c523]::-webkit-input-placeholder, input[type="password"][data-v-0a02c523]::-webkit-input-placeholder, input[type="text"][data-v-0a02c523]::-webkit-input-placeholder, input[type="number"][data-v-0a02c523]::-webkit-input-placeholder, input[type="email"][data-v-0a02c523]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0a02c523]::-moz-placeholder, input[type="password"][data-v-0a02c523]::-moz-placeholder, input[type="text"][data-v-0a02c523]::-moz-placeholder, input[type="number"][data-v-0a02c523]::-moz-placeholder, input[type="email"][data-v-0a02c523]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0a02c523]:-ms-input-placeholder, input[type="password"][data-v-0a02c523]:-ms-input-placeholder, input[type="text"][data-v-0a02c523]:-ms-input-placeholder, input[type="number"][data-v-0a02c523]:-ms-input-placeholder, input[type="email"][data-v-0a02c523]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0a02c523]::-ms-input-placeholder, input[type="password"][data-v-0a02c523]::-ms-input-placeholder, input[type="text"][data-v-0a02c523]::-ms-input-placeholder, input[type="number"][data-v-0a02c523]::-ms-input-placeholder, input[type="email"][data-v-0a02c523]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0a02c523]::placeholder,\ninput[type="password"][data-v-0a02c523]::placeholder,\ninput[type="text"][data-v-0a02c523]::placeholder,\ninput[type="number"][data-v-0a02c523]::placeholder,\ninput[type="email"][data-v-0a02c523]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-0a02c523]:focus,\ninput[type="password"][data-v-0a02c523]:focus,\ninput[type="text"][data-v-0a02c523]:focus,\ninput[type="number"][data-v-0a02c523]:focus,\ninput[type="email"][data-v-0a02c523]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-0a02c523],\ninput[type="password"][disabled][data-v-0a02c523],\ninput[type="text"][disabled][data-v-0a02c523],\ninput[type="number"][disabled][data-v-0a02c523],\ninput[type="email"][disabled][data-v-0a02c523] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-0a02c523] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-0a02c523], .additional-link a[data-v-0a02c523] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-0a02c523]:hover, .additional-link a[data-v-0a02c523]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-0a02c523] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-0a02c523] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-0a02c523], .form textarea[data-v-0a02c523] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-0a02c523] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-0a02c523] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-0a02c523] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-0a02c523] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-0a02c523] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-0a02c523] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-0a02c523] {\n display: block;\n}\n.single-line-form .submit-button[data-v-0a02c523] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-0a02c523],\n input[type="password"][data-v-0a02c523],\n input[type="number"][data-v-0a02c523],\n input[type="text"][data-v-0a02c523],\n input[type="email"][data-v-0a02c523] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-0a02c523] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-0a02c523] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-0a02c523] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-0a02c523] {\n color: #bec6cf;\n}\ntextarea[data-v-0a02c523],\n input[type="password"][data-v-0a02c523],\n input[type="text"][data-v-0a02c523],\n input[type="number"][data-v-0a02c523],\n input[type="email"][data-v-0a02c523] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-0a02c523]::-webkit-input-placeholder, input[type="password"][data-v-0a02c523]::-webkit-input-placeholder, input[type="text"][data-v-0a02c523]::-webkit-input-placeholder, input[type="number"][data-v-0a02c523]::-webkit-input-placeholder, input[type="email"][data-v-0a02c523]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0a02c523]::-moz-placeholder, input[type="password"][data-v-0a02c523]::-moz-placeholder, input[type="text"][data-v-0a02c523]::-moz-placeholder, input[type="number"][data-v-0a02c523]::-moz-placeholder, input[type="email"][data-v-0a02c523]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0a02c523]:-ms-input-placeholder, input[type="password"][data-v-0a02c523]:-ms-input-placeholder, input[type="text"][data-v-0a02c523]:-ms-input-placeholder, input[type="number"][data-v-0a02c523]:-ms-input-placeholder, input[type="email"][data-v-0a02c523]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0a02c523]::-ms-input-placeholder, input[type="password"][data-v-0a02c523]::-ms-input-placeholder, input[type="text"][data-v-0a02c523]::-ms-input-placeholder, input[type="number"][data-v-0a02c523]::-ms-input-placeholder, input[type="email"][data-v-0a02c523]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-0a02c523]::placeholder,\n input[type="password"][data-v-0a02c523]::placeholder,\n input[type="text"][data-v-0a02c523]::placeholder,\n input[type="number"][data-v-0a02c523]::placeholder,\n input[type="email"][data-v-0a02c523]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-0a02c523],\n input[type="password"][disabled][data-v-0a02c523],\n input[type="text"][disabled][data-v-0a02c523],\n input[type="number"][disabled][data-v-0a02c523],\n input[type="email"][disabled][data-v-0a02c523] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-0a02c523] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-0a02c523] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-0a02c523] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-0a02c523] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-0a02c523] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-0a02c523] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-0a02c523] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-0a02c523] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-0a02c523] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-0a02c523] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-0a02c523] {\n width: 100%;\n}\n.auth-form h1[data-v-0a02c523] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-0a02c523] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-0a02c523] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-0a02c523] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-0a02c523] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-0a02c523] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-0a02c523], .auth-form h2[data-v-0a02c523], .auth-form .additional-link[data-v-0a02c523] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-0a02c523] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-0a02c523] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-0a02c523] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-0a02c523] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-0a02c523] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-0a02c523] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-0a02c523] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-0a02c523],\n.duplicator .duplicator-item textarea[data-v-0a02c523] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-0a02c523] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-0a02c523] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-0a02c523] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-0a02c523] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-0a02c523 5s linear infinite;\n animation: spinner-data-v-0a02c523 5s linear infinite;\n}\n.title-icon circle[data-v-0a02c523], .title-icon path[data-v-0a02c523] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-0a02c523 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-0a02c523 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-0a02c523] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-0a02c523],\n .duplicator .duplicator-item textarea[data-v-0a02c523] {\n background: #111314;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(127);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form.inline-form[data-v-efc80e8a] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-efc80e8a] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-efc80e8a] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-efc80e8a] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-efc80e8a] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-efc80e8a]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-efc80e8a] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1B2539;\n text-align: right;\n}\n.form.block-form .button[data-v-efc80e8a] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-efc80e8a] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-efc80e8a] {\n width: 100%;\n}\ntextarea[data-v-efc80e8a],\ninput[type="password"][data-v-efc80e8a],\ninput[type="text"][data-v-efc80e8a],\ninput[type="email"][data-v-efc80e8a] {\n background: #f4f5f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-efc80e8a],\ninput[type="password"].is-error[data-v-efc80e8a],\ninput[type="text"].is-error[data-v-efc80e8a],\ninput[type="email"].is-error[data-v-efc80e8a] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-efc80e8a]::-webkit-input-placeholder, input[type="password"][data-v-efc80e8a]::-webkit-input-placeholder, input[type="text"][data-v-efc80e8a]::-webkit-input-placeholder, input[type="email"][data-v-efc80e8a]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-efc80e8a]::-moz-placeholder, input[type="password"][data-v-efc80e8a]::-moz-placeholder, input[type="text"][data-v-efc80e8a]::-moz-placeholder, input[type="email"][data-v-efc80e8a]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-efc80e8a]:-ms-input-placeholder, input[type="password"][data-v-efc80e8a]:-ms-input-placeholder, input[type="text"][data-v-efc80e8a]:-ms-input-placeholder, input[type="email"][data-v-efc80e8a]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-efc80e8a]::-ms-input-placeholder, input[type="password"][data-v-efc80e8a]::-ms-input-placeholder, input[type="text"][data-v-efc80e8a]::-ms-input-placeholder, input[type="email"][data-v-efc80e8a]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-efc80e8a]::placeholder,\ninput[type="password"][data-v-efc80e8a]::placeholder,\ninput[type="text"][data-v-efc80e8a]::placeholder,\ninput[type="email"][data-v-efc80e8a]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-efc80e8a]:focus,\ninput[type="password"][data-v-efc80e8a]:focus,\ninput[type="text"][data-v-efc80e8a]:focus,\ninput[type="email"][data-v-efc80e8a]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-efc80e8a],\ninput[type="password"][disabled][data-v-efc80e8a],\ninput[type="text"][disabled][data-v-efc80e8a],\ninput[type="email"][disabled][data-v-efc80e8a] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-efc80e8a] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-efc80e8a], .additional-link a[data-v-efc80e8a] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-efc80e8a]:hover, .additional-link a[data-v-efc80e8a]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-efc80e8a] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-efc80e8a], .form textarea[data-v-efc80e8a] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-efc80e8a] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-efc80e8a] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-efc80e8a] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-efc80e8a] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-efc80e8a] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-efc80e8a] {\n padding: 14px 32px;\n}\ntextarea[data-v-efc80e8a],\n input[type="password"][data-v-efc80e8a],\n input[type="text"][data-v-efc80e8a],\n input[type="email"][data-v-efc80e8a] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-efc80e8a] {\n color: #bec6cf;\n}\ntextarea[data-v-efc80e8a],\n input[type="password"][data-v-efc80e8a],\n input[type="text"][data-v-efc80e8a],\n input[type="email"][data-v-efc80e8a] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-efc80e8a]::-webkit-input-placeholder, input[type="password"][data-v-efc80e8a]::-webkit-input-placeholder, input[type="text"][data-v-efc80e8a]::-webkit-input-placeholder, input[type="email"][data-v-efc80e8a]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-efc80e8a]::-moz-placeholder, input[type="password"][data-v-efc80e8a]::-moz-placeholder, input[type="text"][data-v-efc80e8a]::-moz-placeholder, input[type="email"][data-v-efc80e8a]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-efc80e8a]:-ms-input-placeholder, input[type="password"][data-v-efc80e8a]:-ms-input-placeholder, input[type="text"][data-v-efc80e8a]:-ms-input-placeholder, input[type="email"][data-v-efc80e8a]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-efc80e8a]::-ms-input-placeholder, input[type="password"][data-v-efc80e8a]::-ms-input-placeholder, input[type="text"][data-v-efc80e8a]::-ms-input-placeholder, input[type="email"][data-v-efc80e8a]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-efc80e8a]::placeholder,\n input[type="password"][data-v-efc80e8a]::placeholder,\n input[type="text"][data-v-efc80e8a]::placeholder,\n input[type="email"][data-v-efc80e8a]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-efc80e8a],\n input[type="password"][disabled][data-v-efc80e8a],\n input[type="text"][disabled][data-v-efc80e8a],\n input[type="email"][disabled][data-v-efc80e8a] {\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-efc80e8a] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-efc80e8a] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-efc80e8a] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-efc80e8a] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-efc80e8a] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-efc80e8a] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-efc80e8a] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-efc80e8a] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-efc80e8a] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-efc80e8a] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-efc80e8a] {\n width: 100%;\n}\n.auth-form h1[data-v-efc80e8a] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-efc80e8a] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-efc80e8a] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-efc80e8a] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-efc80e8a] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-efc80e8a] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-efc80e8a], .auth-form h2[data-v-efc80e8a], .auth-form .additional-link[data-v-efc80e8a] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-efc80e8a] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-efc80e8a] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-efc80e8a] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-efc80e8a] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-efc80e8a] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-efc80e8a] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-efc80e8a] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-efc80e8a],\n.duplicator .duplicator-item textarea[data-v-efc80e8a] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-efc80e8a] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-efc80e8a] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-efc80e8a] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-efc80e8a] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-efc80e8a 5s linear infinite;\n animation: spinner-data-v-efc80e8a 5s linear infinite;\n}\n.title-icon circle[data-v-efc80e8a], .title-icon path[data-v-efc80e8a] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-efc80e8a {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-efc80e8a {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-efc80e8a] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-efc80e8a],\n .duplicator .duplicator-item textarea[data-v-efc80e8a] {\n background: #111314;\n}\n}\n.additional-link .black-link[data-v-efc80e8a] {\n color: #1B2539;\n}\n.auth-form input[data-v-efc80e8a] {\n min-width: 380px;\n}\n@media (prefers-color-scheme: dark) {\n.additional-link .black-link[data-v-efc80e8a] {\n color: #bec6cf;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(128);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-20e7b715] {\n max-width: 700px;\n}\n.form.inline-form[data-v-20e7b715] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-20e7b715] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-20e7b715] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-20e7b715] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-20e7b715] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-20e7b715] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-20e7b715] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-20e7b715]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-20e7b715] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-20e7b715] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-20e7b715] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-20e7b715] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-20e7b715] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-20e7b715] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-20e7b715] {\n margin-left: 20px;\n}\n.error-message[data-v-20e7b715] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-20e7b715] {\n width: 100%;\n}\ntextarea[data-v-20e7b715],\ninput[type="password"][data-v-20e7b715],\ninput[type="text"][data-v-20e7b715],\ninput[type="number"][data-v-20e7b715],\ninput[type="email"][data-v-20e7b715] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-20e7b715],\ninput[type="password"].is-error[data-v-20e7b715],\ninput[type="text"].is-error[data-v-20e7b715],\ninput[type="number"].is-error[data-v-20e7b715],\ninput[type="email"].is-error[data-v-20e7b715] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-20e7b715]::-webkit-input-placeholder, input[type="password"][data-v-20e7b715]::-webkit-input-placeholder, input[type="text"][data-v-20e7b715]::-webkit-input-placeholder, input[type="number"][data-v-20e7b715]::-webkit-input-placeholder, input[type="email"][data-v-20e7b715]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-20e7b715]::-moz-placeholder, input[type="password"][data-v-20e7b715]::-moz-placeholder, input[type="text"][data-v-20e7b715]::-moz-placeholder, input[type="number"][data-v-20e7b715]::-moz-placeholder, input[type="email"][data-v-20e7b715]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-20e7b715]:-ms-input-placeholder, input[type="password"][data-v-20e7b715]:-ms-input-placeholder, input[type="text"][data-v-20e7b715]:-ms-input-placeholder, input[type="number"][data-v-20e7b715]:-ms-input-placeholder, input[type="email"][data-v-20e7b715]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-20e7b715]::-ms-input-placeholder, input[type="password"][data-v-20e7b715]::-ms-input-placeholder, input[type="text"][data-v-20e7b715]::-ms-input-placeholder, input[type="number"][data-v-20e7b715]::-ms-input-placeholder, input[type="email"][data-v-20e7b715]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-20e7b715]::placeholder,\ninput[type="password"][data-v-20e7b715]::placeholder,\ninput[type="text"][data-v-20e7b715]::placeholder,\ninput[type="number"][data-v-20e7b715]::placeholder,\ninput[type="email"][data-v-20e7b715]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-20e7b715]:focus,\ninput[type="password"][data-v-20e7b715]:focus,\ninput[type="text"][data-v-20e7b715]:focus,\ninput[type="number"][data-v-20e7b715]:focus,\ninput[type="email"][data-v-20e7b715]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-20e7b715],\ninput[type="password"][disabled][data-v-20e7b715],\ninput[type="text"][disabled][data-v-20e7b715],\ninput[type="number"][disabled][data-v-20e7b715],\ninput[type="email"][disabled][data-v-20e7b715] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-20e7b715] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-20e7b715], .additional-link a[data-v-20e7b715] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-20e7b715]:hover, .additional-link a[data-v-20e7b715]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-20e7b715] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-20e7b715] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-20e7b715], .form textarea[data-v-20e7b715] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-20e7b715] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-20e7b715] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-20e7b715] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-20e7b715] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-20e7b715] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-20e7b715] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-20e7b715] {\n display: block;\n}\n.single-line-form .submit-button[data-v-20e7b715] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-20e7b715],\n input[type="password"][data-v-20e7b715],\n input[type="number"][data-v-20e7b715],\n input[type="text"][data-v-20e7b715],\n input[type="email"][data-v-20e7b715] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-20e7b715] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-20e7b715] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-20e7b715] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-20e7b715] {\n color: #bec6cf;\n}\ntextarea[data-v-20e7b715],\n input[type="password"][data-v-20e7b715],\n input[type="text"][data-v-20e7b715],\n input[type="number"][data-v-20e7b715],\n input[type="email"][data-v-20e7b715] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-20e7b715]::-webkit-input-placeholder, input[type="password"][data-v-20e7b715]::-webkit-input-placeholder, input[type="text"][data-v-20e7b715]::-webkit-input-placeholder, input[type="number"][data-v-20e7b715]::-webkit-input-placeholder, input[type="email"][data-v-20e7b715]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-20e7b715]::-moz-placeholder, input[type="password"][data-v-20e7b715]::-moz-placeholder, input[type="text"][data-v-20e7b715]::-moz-placeholder, input[type="number"][data-v-20e7b715]::-moz-placeholder, input[type="email"][data-v-20e7b715]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-20e7b715]:-ms-input-placeholder, input[type="password"][data-v-20e7b715]:-ms-input-placeholder, input[type="text"][data-v-20e7b715]:-ms-input-placeholder, input[type="number"][data-v-20e7b715]:-ms-input-placeholder, input[type="email"][data-v-20e7b715]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-20e7b715]::-ms-input-placeholder, input[type="password"][data-v-20e7b715]::-ms-input-placeholder, input[type="text"][data-v-20e7b715]::-ms-input-placeholder, input[type="number"][data-v-20e7b715]::-ms-input-placeholder, input[type="email"][data-v-20e7b715]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-20e7b715]::placeholder,\n input[type="password"][data-v-20e7b715]::placeholder,\n input[type="text"][data-v-20e7b715]::placeholder,\n input[type="number"][data-v-20e7b715]::placeholder,\n input[type="email"][data-v-20e7b715]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-20e7b715],\n input[type="password"][disabled][data-v-20e7b715],\n input[type="text"][disabled][data-v-20e7b715],\n input[type="number"][disabled][data-v-20e7b715],\n input[type="email"][disabled][data-v-20e7b715] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-20e7b715] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-20e7b715] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-20e7b715] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-20e7b715] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-20e7b715] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-20e7b715] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-20e7b715] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-20e7b715] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-20e7b715] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-20e7b715] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-20e7b715] {\n width: 100%;\n}\n.auth-form h1[data-v-20e7b715] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-20e7b715] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-20e7b715] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-20e7b715] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-20e7b715] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-20e7b715] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-20e7b715], .auth-form h2[data-v-20e7b715], .auth-form .additional-link[data-v-20e7b715] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-20e7b715] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-20e7b715] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-20e7b715] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-20e7b715] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-20e7b715] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-20e7b715] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-20e7b715] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-20e7b715],\n.duplicator .duplicator-item textarea[data-v-20e7b715] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-20e7b715] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-20e7b715] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-20e7b715] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-20e7b715] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-20e7b715 5s linear infinite;\n animation: spinner-data-v-20e7b715 5s linear infinite;\n}\n.title-icon circle[data-v-20e7b715], .title-icon path[data-v-20e7b715] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-20e7b715 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-20e7b715 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-20e7b715] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-20e7b715],\n .duplicator .duplicator-item textarea[data-v-20e7b715] {\n background: #111314;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(129);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-23c357ae] {\n max-width: 700px;\n}\n.form.inline-form[data-v-23c357ae] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-23c357ae] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-23c357ae] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-23c357ae] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-23c357ae] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-23c357ae] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-23c357ae] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-23c357ae]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-23c357ae] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-23c357ae] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-23c357ae] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-23c357ae] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-23c357ae] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-23c357ae] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-23c357ae] {\n margin-left: 20px;\n}\n.error-message[data-v-23c357ae] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-23c357ae] {\n width: 100%;\n}\ntextarea[data-v-23c357ae],\ninput[type="password"][data-v-23c357ae],\ninput[type="text"][data-v-23c357ae],\ninput[type="number"][data-v-23c357ae],\ninput[type="email"][data-v-23c357ae] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-23c357ae],\ninput[type="password"].is-error[data-v-23c357ae],\ninput[type="text"].is-error[data-v-23c357ae],\ninput[type="number"].is-error[data-v-23c357ae],\ninput[type="email"].is-error[data-v-23c357ae] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-23c357ae]::-webkit-input-placeholder, input[type="password"][data-v-23c357ae]::-webkit-input-placeholder, input[type="text"][data-v-23c357ae]::-webkit-input-placeholder, input[type="number"][data-v-23c357ae]::-webkit-input-placeholder, input[type="email"][data-v-23c357ae]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-23c357ae]::-moz-placeholder, input[type="password"][data-v-23c357ae]::-moz-placeholder, input[type="text"][data-v-23c357ae]::-moz-placeholder, input[type="number"][data-v-23c357ae]::-moz-placeholder, input[type="email"][data-v-23c357ae]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-23c357ae]:-ms-input-placeholder, input[type="password"][data-v-23c357ae]:-ms-input-placeholder, input[type="text"][data-v-23c357ae]:-ms-input-placeholder, input[type="number"][data-v-23c357ae]:-ms-input-placeholder, input[type="email"][data-v-23c357ae]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-23c357ae]::-ms-input-placeholder, input[type="password"][data-v-23c357ae]::-ms-input-placeholder, input[type="text"][data-v-23c357ae]::-ms-input-placeholder, input[type="number"][data-v-23c357ae]::-ms-input-placeholder, input[type="email"][data-v-23c357ae]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-23c357ae]::placeholder,\ninput[type="password"][data-v-23c357ae]::placeholder,\ninput[type="text"][data-v-23c357ae]::placeholder,\ninput[type="number"][data-v-23c357ae]::placeholder,\ninput[type="email"][data-v-23c357ae]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-23c357ae]:focus,\ninput[type="password"][data-v-23c357ae]:focus,\ninput[type="text"][data-v-23c357ae]:focus,\ninput[type="number"][data-v-23c357ae]:focus,\ninput[type="email"][data-v-23c357ae]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-23c357ae],\ninput[type="password"][disabled][data-v-23c357ae],\ninput[type="text"][disabled][data-v-23c357ae],\ninput[type="number"][disabled][data-v-23c357ae],\ninput[type="email"][disabled][data-v-23c357ae] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-23c357ae] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-23c357ae], .additional-link a[data-v-23c357ae] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-23c357ae]:hover, .additional-link a[data-v-23c357ae]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-23c357ae] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-23c357ae] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-23c357ae], .form textarea[data-v-23c357ae] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-23c357ae] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-23c357ae] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-23c357ae] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-23c357ae] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-23c357ae] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-23c357ae] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-23c357ae] {\n display: block;\n}\n.single-line-form .submit-button[data-v-23c357ae] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-23c357ae],\n input[type="password"][data-v-23c357ae],\n input[type="number"][data-v-23c357ae],\n input[type="text"][data-v-23c357ae],\n input[type="email"][data-v-23c357ae] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-23c357ae] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-23c357ae] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-23c357ae] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-23c357ae] {\n color: #bec6cf;\n}\ntextarea[data-v-23c357ae],\n input[type="password"][data-v-23c357ae],\n input[type="text"][data-v-23c357ae],\n input[type="number"][data-v-23c357ae],\n input[type="email"][data-v-23c357ae] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-23c357ae]::-webkit-input-placeholder, input[type="password"][data-v-23c357ae]::-webkit-input-placeholder, input[type="text"][data-v-23c357ae]::-webkit-input-placeholder, input[type="number"][data-v-23c357ae]::-webkit-input-placeholder, input[type="email"][data-v-23c357ae]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-23c357ae]::-moz-placeholder, input[type="password"][data-v-23c357ae]::-moz-placeholder, input[type="text"][data-v-23c357ae]::-moz-placeholder, input[type="number"][data-v-23c357ae]::-moz-placeholder, input[type="email"][data-v-23c357ae]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-23c357ae]:-ms-input-placeholder, input[type="password"][data-v-23c357ae]:-ms-input-placeholder, input[type="text"][data-v-23c357ae]:-ms-input-placeholder, input[type="number"][data-v-23c357ae]:-ms-input-placeholder, input[type="email"][data-v-23c357ae]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-23c357ae]::-ms-input-placeholder, input[type="password"][data-v-23c357ae]::-ms-input-placeholder, input[type="text"][data-v-23c357ae]::-ms-input-placeholder, input[type="number"][data-v-23c357ae]::-ms-input-placeholder, input[type="email"][data-v-23c357ae]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-23c357ae]::placeholder,\n input[type="password"][data-v-23c357ae]::placeholder,\n input[type="text"][data-v-23c357ae]::placeholder,\n input[type="number"][data-v-23c357ae]::placeholder,\n input[type="email"][data-v-23c357ae]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-23c357ae],\n input[type="password"][disabled][data-v-23c357ae],\n input[type="text"][disabled][data-v-23c357ae],\n input[type="number"][disabled][data-v-23c357ae],\n input[type="email"][disabled][data-v-23c357ae] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-23c357ae] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-23c357ae] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-23c357ae] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-23c357ae] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-23c357ae] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-23c357ae] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-23c357ae] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-23c357ae] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-23c357ae] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-23c357ae] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-23c357ae] {\n width: 100%;\n}\n.auth-form h1[data-v-23c357ae] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-23c357ae] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-23c357ae] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-23c357ae] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-23c357ae] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-23c357ae] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-23c357ae], .auth-form h2[data-v-23c357ae], .auth-form .additional-link[data-v-23c357ae] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-23c357ae] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-23c357ae] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-23c357ae] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-23c357ae] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-23c357ae] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-23c357ae] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-23c357ae] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-23c357ae],\n.duplicator .duplicator-item textarea[data-v-23c357ae] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-23c357ae] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-23c357ae] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-23c357ae] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-23c357ae] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-23c357ae 5s linear infinite;\n animation: spinner-data-v-23c357ae 5s linear infinite;\n}\n.title-icon circle[data-v-23c357ae], .title-icon path[data-v-23c357ae] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-23c357ae {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-23c357ae {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-23c357ae] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-23c357ae],\n .duplicator .duplicator-item textarea[data-v-23c357ae] {\n background: #111314;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(130);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-2a84423f] {\n max-width: 700px;\n}\n.form.inline-form[data-v-2a84423f] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-2a84423f] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-2a84423f] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-2a84423f] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-2a84423f] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-2a84423f] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-2a84423f] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-2a84423f]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-2a84423f] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-2a84423f] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-2a84423f] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-2a84423f] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-2a84423f] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-2a84423f] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-2a84423f] {\n margin-left: 20px;\n}\n.error-message[data-v-2a84423f] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-2a84423f] {\n width: 100%;\n}\ntextarea[data-v-2a84423f],\ninput[type="password"][data-v-2a84423f],\ninput[type="text"][data-v-2a84423f],\ninput[type="number"][data-v-2a84423f],\ninput[type="email"][data-v-2a84423f] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-2a84423f],\ninput[type="password"].is-error[data-v-2a84423f],\ninput[type="text"].is-error[data-v-2a84423f],\ninput[type="number"].is-error[data-v-2a84423f],\ninput[type="email"].is-error[data-v-2a84423f] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-2a84423f]::-webkit-input-placeholder, input[type="password"][data-v-2a84423f]::-webkit-input-placeholder, input[type="text"][data-v-2a84423f]::-webkit-input-placeholder, input[type="number"][data-v-2a84423f]::-webkit-input-placeholder, input[type="email"][data-v-2a84423f]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-2a84423f]::-moz-placeholder, input[type="password"][data-v-2a84423f]::-moz-placeholder, input[type="text"][data-v-2a84423f]::-moz-placeholder, input[type="number"][data-v-2a84423f]::-moz-placeholder, input[type="email"][data-v-2a84423f]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-2a84423f]:-ms-input-placeholder, input[type="password"][data-v-2a84423f]:-ms-input-placeholder, input[type="text"][data-v-2a84423f]:-ms-input-placeholder, input[type="number"][data-v-2a84423f]:-ms-input-placeholder, input[type="email"][data-v-2a84423f]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-2a84423f]::-ms-input-placeholder, input[type="password"][data-v-2a84423f]::-ms-input-placeholder, input[type="text"][data-v-2a84423f]::-ms-input-placeholder, input[type="number"][data-v-2a84423f]::-ms-input-placeholder, input[type="email"][data-v-2a84423f]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-2a84423f]::placeholder,\ninput[type="password"][data-v-2a84423f]::placeholder,\ninput[type="text"][data-v-2a84423f]::placeholder,\ninput[type="number"][data-v-2a84423f]::placeholder,\ninput[type="email"][data-v-2a84423f]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-2a84423f]:focus,\ninput[type="password"][data-v-2a84423f]:focus,\ninput[type="text"][data-v-2a84423f]:focus,\ninput[type="number"][data-v-2a84423f]:focus,\ninput[type="email"][data-v-2a84423f]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-2a84423f],\ninput[type="password"][disabled][data-v-2a84423f],\ninput[type="text"][disabled][data-v-2a84423f],\ninput[type="number"][disabled][data-v-2a84423f],\ninput[type="email"][disabled][data-v-2a84423f] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-2a84423f] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-2a84423f], .additional-link a[data-v-2a84423f] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-2a84423f]:hover, .additional-link a[data-v-2a84423f]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-2a84423f] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-2a84423f] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-2a84423f], .form textarea[data-v-2a84423f] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-2a84423f] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-2a84423f] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-2a84423f] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-2a84423f] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-2a84423f] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-2a84423f] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-2a84423f] {\n display: block;\n}\n.single-line-form .submit-button[data-v-2a84423f] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-2a84423f],\n input[type="password"][data-v-2a84423f],\n input[type="number"][data-v-2a84423f],\n input[type="text"][data-v-2a84423f],\n input[type="email"][data-v-2a84423f] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-2a84423f] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-2a84423f] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-2a84423f] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-2a84423f] {\n color: #bec6cf;\n}\ntextarea[data-v-2a84423f],\n input[type="password"][data-v-2a84423f],\n input[type="text"][data-v-2a84423f],\n input[type="number"][data-v-2a84423f],\n input[type="email"][data-v-2a84423f] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-2a84423f]::-webkit-input-placeholder, input[type="password"][data-v-2a84423f]::-webkit-input-placeholder, input[type="text"][data-v-2a84423f]::-webkit-input-placeholder, input[type="number"][data-v-2a84423f]::-webkit-input-placeholder, input[type="email"][data-v-2a84423f]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-2a84423f]::-moz-placeholder, input[type="password"][data-v-2a84423f]::-moz-placeholder, input[type="text"][data-v-2a84423f]::-moz-placeholder, input[type="number"][data-v-2a84423f]::-moz-placeholder, input[type="email"][data-v-2a84423f]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-2a84423f]:-ms-input-placeholder, input[type="password"][data-v-2a84423f]:-ms-input-placeholder, input[type="text"][data-v-2a84423f]:-ms-input-placeholder, input[type="number"][data-v-2a84423f]:-ms-input-placeholder, input[type="email"][data-v-2a84423f]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-2a84423f]::-ms-input-placeholder, input[type="password"][data-v-2a84423f]::-ms-input-placeholder, input[type="text"][data-v-2a84423f]::-ms-input-placeholder, input[type="number"][data-v-2a84423f]::-ms-input-placeholder, input[type="email"][data-v-2a84423f]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-2a84423f]::placeholder,\n input[type="password"][data-v-2a84423f]::placeholder,\n input[type="text"][data-v-2a84423f]::placeholder,\n input[type="number"][data-v-2a84423f]::placeholder,\n input[type="email"][data-v-2a84423f]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-2a84423f],\n input[type="password"][disabled][data-v-2a84423f],\n input[type="text"][disabled][data-v-2a84423f],\n input[type="number"][disabled][data-v-2a84423f],\n input[type="email"][disabled][data-v-2a84423f] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-2a84423f] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-2a84423f] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-2a84423f] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-2a84423f] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-2a84423f] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-2a84423f] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-2a84423f] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-2a84423f] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-2a84423f] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-2a84423f] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-2a84423f] {\n width: 100%;\n}\n.auth-form h1[data-v-2a84423f] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-2a84423f] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-2a84423f] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-2a84423f] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-2a84423f] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-2a84423f] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-2a84423f], .auth-form h2[data-v-2a84423f], .auth-form .additional-link[data-v-2a84423f] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-2a84423f] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-2a84423f] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-2a84423f] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-2a84423f] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-2a84423f] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-2a84423f] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-2a84423f] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-2a84423f],\n.duplicator .duplicator-item textarea[data-v-2a84423f] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-2a84423f] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-2a84423f] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-2a84423f] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-2a84423f] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-2a84423f 5s linear infinite;\n animation: spinner-data-v-2a84423f 5s linear infinite;\n}\n.title-icon circle[data-v-2a84423f], .title-icon path[data-v-2a84423f] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-2a84423f {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-2a84423f {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-2a84423f] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-2a84423f],\n .duplicator .duplicator-item textarea[data-v-2a84423f] {\n background: #111314;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(131);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-138d7087] {\n max-width: 700px;\n}\n.form.inline-form[data-v-138d7087] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-138d7087] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-138d7087] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-138d7087] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-138d7087] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-138d7087] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-138d7087] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-138d7087]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-138d7087] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-138d7087] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-138d7087] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-138d7087] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-138d7087] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-138d7087] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-138d7087] {\n margin-left: 20px;\n}\n.error-message[data-v-138d7087] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-138d7087] {\n width: 100%;\n}\ntextarea[data-v-138d7087],\ninput[type="password"][data-v-138d7087],\ninput[type="text"][data-v-138d7087],\ninput[type="number"][data-v-138d7087],\ninput[type="email"][data-v-138d7087] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-138d7087],\ninput[type="password"].is-error[data-v-138d7087],\ninput[type="text"].is-error[data-v-138d7087],\ninput[type="number"].is-error[data-v-138d7087],\ninput[type="email"].is-error[data-v-138d7087] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-138d7087]::-webkit-input-placeholder, input[type="password"][data-v-138d7087]::-webkit-input-placeholder, input[type="text"][data-v-138d7087]::-webkit-input-placeholder, input[type="number"][data-v-138d7087]::-webkit-input-placeholder, input[type="email"][data-v-138d7087]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-138d7087]::-moz-placeholder, input[type="password"][data-v-138d7087]::-moz-placeholder, input[type="text"][data-v-138d7087]::-moz-placeholder, input[type="number"][data-v-138d7087]::-moz-placeholder, input[type="email"][data-v-138d7087]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-138d7087]:-ms-input-placeholder, input[type="password"][data-v-138d7087]:-ms-input-placeholder, input[type="text"][data-v-138d7087]:-ms-input-placeholder, input[type="number"][data-v-138d7087]:-ms-input-placeholder, input[type="email"][data-v-138d7087]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-138d7087]::-ms-input-placeholder, input[type="password"][data-v-138d7087]::-ms-input-placeholder, input[type="text"][data-v-138d7087]::-ms-input-placeholder, input[type="number"][data-v-138d7087]::-ms-input-placeholder, input[type="email"][data-v-138d7087]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-138d7087]::placeholder,\ninput[type="password"][data-v-138d7087]::placeholder,\ninput[type="text"][data-v-138d7087]::placeholder,\ninput[type="number"][data-v-138d7087]::placeholder,\ninput[type="email"][data-v-138d7087]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-138d7087]:focus,\ninput[type="password"][data-v-138d7087]:focus,\ninput[type="text"][data-v-138d7087]:focus,\ninput[type="number"][data-v-138d7087]:focus,\ninput[type="email"][data-v-138d7087]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-138d7087],\ninput[type="password"][disabled][data-v-138d7087],\ninput[type="text"][disabled][data-v-138d7087],\ninput[type="number"][disabled][data-v-138d7087],\ninput[type="email"][disabled][data-v-138d7087] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-138d7087] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-138d7087], .additional-link a[data-v-138d7087] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-138d7087]:hover, .additional-link a[data-v-138d7087]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-138d7087] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-138d7087] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-138d7087], .form textarea[data-v-138d7087] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-138d7087] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-138d7087] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-138d7087] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-138d7087] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-138d7087] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-138d7087] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-138d7087] {\n display: block;\n}\n.single-line-form .submit-button[data-v-138d7087] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-138d7087],\n input[type="password"][data-v-138d7087],\n input[type="number"][data-v-138d7087],\n input[type="text"][data-v-138d7087],\n input[type="email"][data-v-138d7087] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-138d7087] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-138d7087] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-138d7087] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-138d7087] {\n color: #bec6cf;\n}\ntextarea[data-v-138d7087],\n input[type="password"][data-v-138d7087],\n input[type="text"][data-v-138d7087],\n input[type="number"][data-v-138d7087],\n input[type="email"][data-v-138d7087] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-138d7087]::-webkit-input-placeholder, input[type="password"][data-v-138d7087]::-webkit-input-placeholder, input[type="text"][data-v-138d7087]::-webkit-input-placeholder, input[type="number"][data-v-138d7087]::-webkit-input-placeholder, input[type="email"][data-v-138d7087]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-138d7087]::-moz-placeholder, input[type="password"][data-v-138d7087]::-moz-placeholder, input[type="text"][data-v-138d7087]::-moz-placeholder, input[type="number"][data-v-138d7087]::-moz-placeholder, input[type="email"][data-v-138d7087]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-138d7087]:-ms-input-placeholder, input[type="password"][data-v-138d7087]:-ms-input-placeholder, input[type="text"][data-v-138d7087]:-ms-input-placeholder, input[type="number"][data-v-138d7087]:-ms-input-placeholder, input[type="email"][data-v-138d7087]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-138d7087]::-ms-input-placeholder, input[type="password"][data-v-138d7087]::-ms-input-placeholder, input[type="text"][data-v-138d7087]::-ms-input-placeholder, input[type="number"][data-v-138d7087]::-ms-input-placeholder, input[type="email"][data-v-138d7087]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-138d7087]::placeholder,\n input[type="password"][data-v-138d7087]::placeholder,\n input[type="text"][data-v-138d7087]::placeholder,\n input[type="number"][data-v-138d7087]::placeholder,\n input[type="email"][data-v-138d7087]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-138d7087],\n input[type="password"][disabled][data-v-138d7087],\n input[type="text"][disabled][data-v-138d7087],\n input[type="number"][disabled][data-v-138d7087],\n input[type="email"][disabled][data-v-138d7087] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-138d7087] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-138d7087] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-138d7087] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-138d7087] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-138d7087] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-138d7087] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-138d7087] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-138d7087] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-138d7087] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-138d7087] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-138d7087] {\n width: 100%;\n}\n.auth-form h1[data-v-138d7087] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-138d7087] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-138d7087] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-138d7087] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-138d7087] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-138d7087] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-138d7087], .auth-form h2[data-v-138d7087], .auth-form .additional-link[data-v-138d7087] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-138d7087] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-138d7087] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-138d7087] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-138d7087] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-138d7087] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-138d7087] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-138d7087] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-138d7087],\n.duplicator .duplicator-item textarea[data-v-138d7087] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-138d7087] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-138d7087] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-138d7087] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-138d7087] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-138d7087 5s linear infinite;\n animation: spinner-data-v-138d7087 5s linear infinite;\n}\n.title-icon circle[data-v-138d7087], .title-icon path[data-v-138d7087] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-138d7087 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-138d7087 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-138d7087] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-138d7087],\n .duplicator .duplicator-item textarea[data-v-138d7087] {\n background: #111314;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(132);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-392fd7e4] {\n max-width: 700px;\n}\n.form.inline-form[data-v-392fd7e4] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-392fd7e4] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-392fd7e4] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-392fd7e4] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-392fd7e4] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-392fd7e4] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-392fd7e4] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-392fd7e4]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-392fd7e4] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-392fd7e4] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-392fd7e4] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-392fd7e4] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-392fd7e4] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-392fd7e4] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-392fd7e4] {\n margin-left: 20px;\n}\n.error-message[data-v-392fd7e4] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-392fd7e4] {\n width: 100%;\n}\ntextarea[data-v-392fd7e4],\ninput[type="password"][data-v-392fd7e4],\ninput[type="text"][data-v-392fd7e4],\ninput[type="number"][data-v-392fd7e4],\ninput[type="email"][data-v-392fd7e4] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-392fd7e4],\ninput[type="password"].is-error[data-v-392fd7e4],\ninput[type="text"].is-error[data-v-392fd7e4],\ninput[type="number"].is-error[data-v-392fd7e4],\ninput[type="email"].is-error[data-v-392fd7e4] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-392fd7e4]::-webkit-input-placeholder, input[type="password"][data-v-392fd7e4]::-webkit-input-placeholder, input[type="text"][data-v-392fd7e4]::-webkit-input-placeholder, input[type="number"][data-v-392fd7e4]::-webkit-input-placeholder, input[type="email"][data-v-392fd7e4]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-392fd7e4]::-moz-placeholder, input[type="password"][data-v-392fd7e4]::-moz-placeholder, input[type="text"][data-v-392fd7e4]::-moz-placeholder, input[type="number"][data-v-392fd7e4]::-moz-placeholder, input[type="email"][data-v-392fd7e4]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-392fd7e4]:-ms-input-placeholder, input[type="password"][data-v-392fd7e4]:-ms-input-placeholder, input[type="text"][data-v-392fd7e4]:-ms-input-placeholder, input[type="number"][data-v-392fd7e4]:-ms-input-placeholder, input[type="email"][data-v-392fd7e4]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-392fd7e4]::-ms-input-placeholder, input[type="password"][data-v-392fd7e4]::-ms-input-placeholder, input[type="text"][data-v-392fd7e4]::-ms-input-placeholder, input[type="number"][data-v-392fd7e4]::-ms-input-placeholder, input[type="email"][data-v-392fd7e4]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-392fd7e4]::placeholder,\ninput[type="password"][data-v-392fd7e4]::placeholder,\ninput[type="text"][data-v-392fd7e4]::placeholder,\ninput[type="number"][data-v-392fd7e4]::placeholder,\ninput[type="email"][data-v-392fd7e4]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-392fd7e4]:focus,\ninput[type="password"][data-v-392fd7e4]:focus,\ninput[type="text"][data-v-392fd7e4]:focus,\ninput[type="number"][data-v-392fd7e4]:focus,\ninput[type="email"][data-v-392fd7e4]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-392fd7e4],\ninput[type="password"][disabled][data-v-392fd7e4],\ninput[type="text"][disabled][data-v-392fd7e4],\ninput[type="number"][disabled][data-v-392fd7e4],\ninput[type="email"][disabled][data-v-392fd7e4] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-392fd7e4] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-392fd7e4], .additional-link a[data-v-392fd7e4] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-392fd7e4]:hover, .additional-link a[data-v-392fd7e4]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-392fd7e4] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-392fd7e4] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-392fd7e4], .form textarea[data-v-392fd7e4] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-392fd7e4] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-392fd7e4] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-392fd7e4] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-392fd7e4] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-392fd7e4] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-392fd7e4] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-392fd7e4] {\n display: block;\n}\n.single-line-form .submit-button[data-v-392fd7e4] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-392fd7e4],\n input[type="password"][data-v-392fd7e4],\n input[type="number"][data-v-392fd7e4],\n input[type="text"][data-v-392fd7e4],\n input[type="email"][data-v-392fd7e4] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-392fd7e4] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-392fd7e4] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-392fd7e4] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-392fd7e4] {\n color: #bec6cf;\n}\ntextarea[data-v-392fd7e4],\n input[type="password"][data-v-392fd7e4],\n input[type="text"][data-v-392fd7e4],\n input[type="number"][data-v-392fd7e4],\n input[type="email"][data-v-392fd7e4] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-392fd7e4]::-webkit-input-placeholder, input[type="password"][data-v-392fd7e4]::-webkit-input-placeholder, input[type="text"][data-v-392fd7e4]::-webkit-input-placeholder, input[type="number"][data-v-392fd7e4]::-webkit-input-placeholder, input[type="email"][data-v-392fd7e4]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-392fd7e4]::-moz-placeholder, input[type="password"][data-v-392fd7e4]::-moz-placeholder, input[type="text"][data-v-392fd7e4]::-moz-placeholder, input[type="number"][data-v-392fd7e4]::-moz-placeholder, input[type="email"][data-v-392fd7e4]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-392fd7e4]:-ms-input-placeholder, input[type="password"][data-v-392fd7e4]:-ms-input-placeholder, input[type="text"][data-v-392fd7e4]:-ms-input-placeholder, input[type="number"][data-v-392fd7e4]:-ms-input-placeholder, input[type="email"][data-v-392fd7e4]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-392fd7e4]::-ms-input-placeholder, input[type="password"][data-v-392fd7e4]::-ms-input-placeholder, input[type="text"][data-v-392fd7e4]::-ms-input-placeholder, input[type="number"][data-v-392fd7e4]::-ms-input-placeholder, input[type="email"][data-v-392fd7e4]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-392fd7e4]::placeholder,\n input[type="password"][data-v-392fd7e4]::placeholder,\n input[type="text"][data-v-392fd7e4]::placeholder,\n input[type="number"][data-v-392fd7e4]::placeholder,\n input[type="email"][data-v-392fd7e4]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-392fd7e4],\n input[type="password"][disabled][data-v-392fd7e4],\n input[type="text"][disabled][data-v-392fd7e4],\n input[type="number"][disabled][data-v-392fd7e4],\n input[type="email"][disabled][data-v-392fd7e4] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-392fd7e4] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-392fd7e4] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-392fd7e4] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-392fd7e4] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-392fd7e4] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-392fd7e4] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-392fd7e4] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-392fd7e4] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-392fd7e4] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-392fd7e4] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-392fd7e4] {\n width: 100%;\n}\n.auth-form h1[data-v-392fd7e4] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-392fd7e4] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-392fd7e4] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-392fd7e4] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-392fd7e4] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-392fd7e4] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-392fd7e4], .auth-form h2[data-v-392fd7e4], .auth-form .additional-link[data-v-392fd7e4] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-392fd7e4] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-392fd7e4] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-392fd7e4] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-392fd7e4] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-392fd7e4] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-392fd7e4] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-392fd7e4] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-392fd7e4],\n.duplicator .duplicator-item textarea[data-v-392fd7e4] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-392fd7e4] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-392fd7e4] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-392fd7e4] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-392fd7e4] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-392fd7e4 5s linear infinite;\n animation: spinner-data-v-392fd7e4 5s linear infinite;\n}\n.title-icon circle[data-v-392fd7e4], .title-icon path[data-v-392fd7e4] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-392fd7e4 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-392fd7e4 {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-392fd7e4] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-392fd7e4],\n .duplicator .duplicator-item textarea[data-v-392fd7e4] {\n background: #111314;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(133);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form.inline-form[data-v-2c28719a] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-2c28719a] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-2c28719a] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form.create-new-password .block-wrapper label[data-v-2c28719a] {\n width: 280px;\n}\n.form.block-form .block-wrapper[data-v-2c28719a] {\n display: flex;\n align-items: center;\n margin-top: 25px;\n justify-content: center;\n}\n.form.block-form .block-wrapper[data-v-2c28719a]:first-child {\n margin-top: 0;\n}\n.form.block-form .block-wrapper label[data-v-2c28719a] {\n white-space: nowrap;\n font-size: 1.125em;\n font-weight: 700;\n padding-right: 20px;\n width: 200px;\n text-align: right !important;\n color: #1B2539;\n text-align: right;\n}\n.form.block-form .button[data-v-2c28719a] {\n margin-top: 50px;\n}\n.input-wrapper .error-message[data-v-2c28719a] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-2c28719a] {\n width: 100%;\n}\ntextarea[data-v-2c28719a],\ninput[type="password"][data-v-2c28719a],\ninput[type="text"][data-v-2c28719a],\ninput[type="email"][data-v-2c28719a] {\n background: #f4f5f6;\n border: 1px solid transparent;\n transition: 0.15s all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n}\ntextarea.is-error[data-v-2c28719a],\ninput[type="password"].is-error[data-v-2c28719a],\ninput[type="text"].is-error[data-v-2c28719a],\ninput[type="email"].is-error[data-v-2c28719a] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-2c28719a]::-webkit-input-placeholder, input[type="password"][data-v-2c28719a]::-webkit-input-placeholder, input[type="text"][data-v-2c28719a]::-webkit-input-placeholder, input[type="email"][data-v-2c28719a]::-webkit-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-2c28719a]::-moz-placeholder, input[type="password"][data-v-2c28719a]::-moz-placeholder, input[type="text"][data-v-2c28719a]::-moz-placeholder, input[type="email"][data-v-2c28719a]::-moz-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-2c28719a]:-ms-input-placeholder, input[type="password"][data-v-2c28719a]:-ms-input-placeholder, input[type="text"][data-v-2c28719a]:-ms-input-placeholder, input[type="email"][data-v-2c28719a]:-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-2c28719a]::-ms-input-placeholder, input[type="password"][data-v-2c28719a]::-ms-input-placeholder, input[type="text"][data-v-2c28719a]::-ms-input-placeholder, input[type="email"][data-v-2c28719a]::-ms-input-placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-2c28719a]::placeholder,\ninput[type="password"][data-v-2c28719a]::placeholder,\ninput[type="text"][data-v-2c28719a]::placeholder,\ninput[type="email"][data-v-2c28719a]::placeholder {\n color: #A4ADB6;\n font-size: 1em;\n}\ntextarea[data-v-2c28719a]:focus,\ninput[type="password"][data-v-2c28719a]:focus,\ninput[type="text"][data-v-2c28719a]:focus,\ninput[type="email"][data-v-2c28719a]:focus {\n border-color: #00BC7E;\n box-shadow: 0 0 7px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-2c28719a],\ninput[type="password"][disabled][data-v-2c28719a],\ninput[type="text"][disabled][data-v-2c28719a],\ninput[type="email"][disabled][data-v-2c28719a] {\n color: #A4ADB6;\n cursor: not-allowed;\n}\n.additional-link[data-v-2c28719a] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-2c28719a], .additional-link a[data-v-2c28719a] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-2c28719a]:hover, .additional-link a[data-v-2c28719a]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-2c28719a] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-2c28719a], .form textarea[data-v-2c28719a] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-2c28719a] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-2c28719a] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-2c28719a] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-2c28719a] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-2c28719a] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-2c28719a] {\n padding: 14px 32px;\n}\ntextarea[data-v-2c28719a],\n input[type="password"][data-v-2c28719a],\n input[type="text"][data-v-2c28719a],\n input[type="email"][data-v-2c28719a] {\n padding: 14px 20px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form.block-form .block-wrapper label[data-v-2c28719a] {\n color: #bec6cf;\n}\ntextarea[data-v-2c28719a],\n input[type="password"][data-v-2c28719a],\n input[type="text"][data-v-2c28719a],\n input[type="email"][data-v-2c28719a] {\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-2c28719a]::-webkit-input-placeholder, input[type="password"][data-v-2c28719a]::-webkit-input-placeholder, input[type="text"][data-v-2c28719a]::-webkit-input-placeholder, input[type="email"][data-v-2c28719a]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-2c28719a]::-moz-placeholder, input[type="password"][data-v-2c28719a]::-moz-placeholder, input[type="text"][data-v-2c28719a]::-moz-placeholder, input[type="email"][data-v-2c28719a]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-2c28719a]:-ms-input-placeholder, input[type="password"][data-v-2c28719a]:-ms-input-placeholder, input[type="text"][data-v-2c28719a]:-ms-input-placeholder, input[type="email"][data-v-2c28719a]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-2c28719a]::-ms-input-placeholder, input[type="password"][data-v-2c28719a]::-ms-input-placeholder, input[type="text"][data-v-2c28719a]::-ms-input-placeholder, input[type="email"][data-v-2c28719a]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-2c28719a]::placeholder,\n input[type="password"][data-v-2c28719a]::placeholder,\n input[type="text"][data-v-2c28719a]::placeholder,\n input[type="email"][data-v-2c28719a]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-2c28719a],\n input[type="password"][disabled][data-v-2c28719a],\n input[type="text"][disabled][data-v-2c28719a],\n input[type="email"][disabled][data-v-2c28719a] {\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-2c28719a] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-2c28719a] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-2c28719a] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-2c28719a] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-2c28719a] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-2c28719a] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-2c28719a] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-2c28719a] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-2c28719a] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-2c28719a] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-2c28719a] {\n width: 100%;\n}\n.auth-form h1[data-v-2c28719a] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-2c28719a] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-2c28719a] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-2c28719a] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-2c28719a] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-2c28719a] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-2c28719a], .auth-form h2[data-v-2c28719a], .auth-form .additional-link[data-v-2c28719a] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-2c28719a] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-2c28719a] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-2c28719a] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-2c28719a] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-2c28719a] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-2c28719a] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-2c28719a] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-2c28719a],\n.duplicator .duplicator-item textarea[data-v-2c28719a] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-2c28719a] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-2c28719a] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-2c28719a] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-2c28719a] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-2c28719a 5s linear infinite;\n animation: spinner-data-v-2c28719a 5s linear infinite;\n}\n.title-icon circle[data-v-2c28719a], .title-icon path[data-v-2c28719a] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-2c28719a {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-2c28719a {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-2c28719a] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-2c28719a],\n .duplicator .duplicator-item textarea[data-v-2c28719a] {\n background: #111314;\n}\n}\n.services[data-v-2c28719a] {\n margin: 0 auto;\n}\n.service-card[data-v-2c28719a] {\n text-align: left;\n box-shadow: 0 5px 30px 5px rgba(61, 78, 253, 0.25);\n border-radius: 20px;\n max-width: 415px;\n display: inline-block;\n padding: 30px;\n background: #3a4bff;\n background: linear-gradient(135deg, #3a4bff 0%, #6772e5 100%);\n transition: 200ms all ease;\n}\n.service-card[data-v-2c28719a]:hover {\n cursor: pointer;\n box-shadow: 0 8px 35px 5px rgba(61, 78, 253, 0.4);\n transform: scale(1.02);\n}\n.service-card .service-logo[data-v-2c28719a] {\n margin-bottom: 30px;\n display: block;\n}\n.service-card .service-content[data-v-2c28719a] {\n margin-bottom: 65px;\n}\n.service-card .service-content .service-title[data-v-2c28719a] {\n font-size: 1.125em;\n font-weight: 700;\n color: white;\n margin-bottom: 5px;\n display: block;\n}\n.service-card .service-content .service-description[data-v-2c28719a] {\n font-size: 1em;\n font-weight: 600;\n color: white;\n opacity: 0.8;\n}\n.service-card .service-link[data-v-2c28719a] {\n display: flex;\n align-items: center;\n}\n.service-card .service-link .icon[data-v-2c28719a] {\n margin-left: 5px;\n}\n.service-card .service-link .icon polyline[data-v-2c28719a] {\n stroke: white;\n}\n.service-card .service-link span[data-v-2c28719a] {\n font-size: 1em;\n font-weight: 700;\n color: white;\n}\n.skip-subscription-setup[data-v-2c28719a] {\n border: none !important;\n}\n.auth-form input[data-v-2c28719a] {\n min-width: 380px;\n}\n',""])},function(t,e,n){"use strict";var a=n(134);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form[data-v-e0a4915e] {\n max-width: 700px;\n}\n.form.inline-form[data-v-e0a4915e] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-e0a4915e] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-e0a4915e] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-e0a4915e] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-e0a4915e] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-e0a4915e] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-e0a4915e] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-e0a4915e]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-e0a4915e] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-e0a4915e] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-e0a4915e] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-e0a4915e] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-e0a4915e] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-e0a4915e] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-e0a4915e] {\n margin-left: 20px;\n}\n.error-message[data-v-e0a4915e] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-e0a4915e] {\n width: 100%;\n}\ntextarea[data-v-e0a4915e],\ninput[type="password"][data-v-e0a4915e],\ninput[type="text"][data-v-e0a4915e],\ninput[type="number"][data-v-e0a4915e],\ninput[type="email"][data-v-e0a4915e] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-e0a4915e],\ninput[type="password"].is-error[data-v-e0a4915e],\ninput[type="text"].is-error[data-v-e0a4915e],\ninput[type="number"].is-error[data-v-e0a4915e],\ninput[type="email"].is-error[data-v-e0a4915e] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-e0a4915e]::-webkit-input-placeholder, input[type="password"][data-v-e0a4915e]::-webkit-input-placeholder, input[type="text"][data-v-e0a4915e]::-webkit-input-placeholder, input[type="number"][data-v-e0a4915e]::-webkit-input-placeholder, input[type="email"][data-v-e0a4915e]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-e0a4915e]::-moz-placeholder, input[type="password"][data-v-e0a4915e]::-moz-placeholder, input[type="text"][data-v-e0a4915e]::-moz-placeholder, input[type="number"][data-v-e0a4915e]::-moz-placeholder, input[type="email"][data-v-e0a4915e]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-e0a4915e]:-ms-input-placeholder, input[type="password"][data-v-e0a4915e]:-ms-input-placeholder, input[type="text"][data-v-e0a4915e]:-ms-input-placeholder, input[type="number"][data-v-e0a4915e]:-ms-input-placeholder, input[type="email"][data-v-e0a4915e]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-e0a4915e]::-ms-input-placeholder, input[type="password"][data-v-e0a4915e]::-ms-input-placeholder, input[type="text"][data-v-e0a4915e]::-ms-input-placeholder, input[type="number"][data-v-e0a4915e]::-ms-input-placeholder, input[type="email"][data-v-e0a4915e]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-e0a4915e]::placeholder,\ninput[type="password"][data-v-e0a4915e]::placeholder,\ninput[type="text"][data-v-e0a4915e]::placeholder,\ninput[type="number"][data-v-e0a4915e]::placeholder,\ninput[type="email"][data-v-e0a4915e]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-e0a4915e]:focus,\ninput[type="password"][data-v-e0a4915e]:focus,\ninput[type="text"][data-v-e0a4915e]:focus,\ninput[type="number"][data-v-e0a4915e]:focus,\ninput[type="email"][data-v-e0a4915e]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-e0a4915e],\ninput[type="password"][disabled][data-v-e0a4915e],\ninput[type="text"][disabled][data-v-e0a4915e],\ninput[type="number"][disabled][data-v-e0a4915e],\ninput[type="email"][disabled][data-v-e0a4915e] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-e0a4915e] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-e0a4915e], .additional-link a[data-v-e0a4915e] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-e0a4915e]:hover, .additional-link a[data-v-e0a4915e]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-e0a4915e] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-e0a4915e] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-e0a4915e], .form textarea[data-v-e0a4915e] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-e0a4915e] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-e0a4915e] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-e0a4915e] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-e0a4915e] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-e0a4915e] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-e0a4915e] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-e0a4915e] {\n display: block;\n}\n.single-line-form .submit-button[data-v-e0a4915e] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-e0a4915e],\n input[type="password"][data-v-e0a4915e],\n input[type="number"][data-v-e0a4915e],\n input[type="text"][data-v-e0a4915e],\n input[type="email"][data-v-e0a4915e] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-e0a4915e] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-e0a4915e] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-e0a4915e] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-e0a4915e] {\n color: #bec6cf;\n}\ntextarea[data-v-e0a4915e],\n input[type="password"][data-v-e0a4915e],\n input[type="text"][data-v-e0a4915e],\n input[type="number"][data-v-e0a4915e],\n input[type="email"][data-v-e0a4915e] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-e0a4915e]::-webkit-input-placeholder, input[type="password"][data-v-e0a4915e]::-webkit-input-placeholder, input[type="text"][data-v-e0a4915e]::-webkit-input-placeholder, input[type="number"][data-v-e0a4915e]::-webkit-input-placeholder, input[type="email"][data-v-e0a4915e]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-e0a4915e]::-moz-placeholder, input[type="password"][data-v-e0a4915e]::-moz-placeholder, input[type="text"][data-v-e0a4915e]::-moz-placeholder, input[type="number"][data-v-e0a4915e]::-moz-placeholder, input[type="email"][data-v-e0a4915e]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-e0a4915e]:-ms-input-placeholder, input[type="password"][data-v-e0a4915e]:-ms-input-placeholder, input[type="text"][data-v-e0a4915e]:-ms-input-placeholder, input[type="number"][data-v-e0a4915e]:-ms-input-placeholder, input[type="email"][data-v-e0a4915e]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-e0a4915e]::-ms-input-placeholder, input[type="password"][data-v-e0a4915e]::-ms-input-placeholder, input[type="text"][data-v-e0a4915e]::-ms-input-placeholder, input[type="number"][data-v-e0a4915e]::-ms-input-placeholder, input[type="email"][data-v-e0a4915e]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-e0a4915e]::placeholder,\n input[type="password"][data-v-e0a4915e]::placeholder,\n input[type="text"][data-v-e0a4915e]::placeholder,\n input[type="number"][data-v-e0a4915e]::placeholder,\n input[type="email"][data-v-e0a4915e]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-e0a4915e],\n input[type="password"][disabled][data-v-e0a4915e],\n input[type="text"][disabled][data-v-e0a4915e],\n input[type="number"][disabled][data-v-e0a4915e],\n input[type="email"][disabled][data-v-e0a4915e] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.auth-logo-text[data-v-e0a4915e] {\n font-size: 1.375em;\n font-weight: 800;\n margin-bottom: 40px;\n display: block;\n}\n.auth-form[data-v-e0a4915e] {\n text-align: center;\n max-width: 600px;\n padding: 25px 20px;\n display: table-cell;\n vertical-align: middle;\n}\n.auth-form input[data-v-e0a4915e] {\n min-width: 310px;\n}\n.auth-form .additional-link a[data-v-e0a4915e] {\n font-weight: 700;\n text-decoration: none;\n}\n.auth-form .user-avatar[data-v-e0a4915e] {\n width: 100px;\n height: 100px;\n -o-object-fit: cover;\n object-fit: cover;\n margin-bottom: 20px;\n border-radius: 8px;\n box-shadow: 0 10px 30px rgba(25, 54, 60, 0.2);\n}\n.auth-form .logo[data-v-e0a4915e] {\n width: 120px;\n margin-bottom: 20px;\n}\n.auth-form h1[data-v-e0a4915e] {\n font-size: 2.125em;\n font-weight: 800;\n line-height: 1.2;\n margin-bottom: 2px;\n color: #1B2539;\n}\n.auth-form h2[data-v-e0a4915e] {\n font-size: 1.4375em;\n font-weight: 500;\n margin-bottom: 50px;\n color: #1B2539;\n}\n.auth-form .block-form[data-v-e0a4915e] {\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (min-width: 690px) and (max-width: 960px) {\n.auth-form[data-v-e0a4915e] {\n padding-left: 20%;\n padding-right: 20%;\n}\n}\n@media only screen and (max-width: 690px) {\n.auth-form[data-v-e0a4915e] {\n width: 100%;\n}\n.auth-form h1[data-v-e0a4915e] {\n font-size: 1.875em;\n}\n.auth-form h2[data-v-e0a4915e] {\n font-size: 1.3125em;\n}\n}\n@media only screen and (max-width: 490px) {\n.auth-form h1[data-v-e0a4915e] {\n font-size: 1.375em;\n}\n.auth-form h2[data-v-e0a4915e] {\n font-size: 1.125em;\n}\n.auth-form input[data-v-e0a4915e] {\n min-width: initial;\n}\n.auth-form .additional-link[data-v-e0a4915e] {\n font-size: 0.9375em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.auth-form h1[data-v-e0a4915e], .auth-form h2[data-v-e0a4915e], .auth-form .additional-link[data-v-e0a4915e] {\n color: #bec6cf;\n}\n}\n.content-headline[data-v-e0a4915e] {\n max-width: 630px;\n margin-left: auto;\n margin-right: auto;\n}\n.auth-form input[data-v-e0a4915e] {\n min-width: initial;\n}\n.duplicator .duplicator-add-button[data-v-e0a4915e] {\n width: 100%;\n}\n.duplicator .duplicator-item[data-v-e0a4915e] {\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n border-radius: 8px;\n background: white;\n padding: 25px;\n margin: 0 -25px 32px;\n position: relative;\n}\n.duplicator .duplicator-item .duplicator-title[data-v-e0a4915e] {\n font-size: 1.125em;\n margin-bottom: 20px;\n display: block;\n font-weight: 700;\n}\n.duplicator .duplicator-item .delete-item[data-v-e0a4915e] {\n position: absolute;\n top: 15px;\n right: 15px;\n cursor: pointer;\n}\n.duplicator .duplicator-item .delete-item:hover line[data-v-e0a4915e] {\n stroke: #00BC7E;\n}\n.duplicator .duplicator-item input[data-v-e0a4915e],\n.duplicator .duplicator-item textarea[data-v-e0a4915e] {\n box-shadow: none;\n background: #FAFAFA;\n}\n.form[data-v-e0a4915e] {\n max-width: 580px;\n text-align: left;\n}\n.submit-wrapper[data-v-e0a4915e] {\n text-align: right;\n}\n.submit-wrapper .button[data-v-e0a4915e] {\n margin: 58px 0 50px 0;\n width: 100%;\n}\n.title-icon[data-v-e0a4915e] {\n margin-bottom: 10px;\n -webkit-animation: spinner-data-v-e0a4915e 5s linear infinite;\n animation: spinner-data-v-e0a4915e 5s linear infinite;\n}\n.title-icon circle[data-v-e0a4915e], .title-icon path[data-v-e0a4915e] {\n stroke: #00BC7E;\n}\n@-webkit-keyframes spinner-data-v-e0a4915e {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes spinner-data-v-e0a4915e {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@media (prefers-color-scheme: dark) {\n.duplicator .duplicator-item[data-v-e0a4915e] {\n background: #1e2024;\n}\n.duplicator .duplicator-item input[data-v-e0a4915e],\n .duplicator .duplicator-item textarea[data-v-e0a4915e] {\n background: #111314;\n}\n}\n#loader[data-v-e0a4915e] {\n position: relative;\n margin-top: 80px;\n}\n.information-list li[data-v-e0a4915e] {\n padding: 8px 0;\n font-size: 1.0625em;\n font-weight: 600;\n}\n.information-list li[data-v-e0a4915e]:first-child {\n padding-top: 0;\n}\n.information-list li[data-v-e0a4915e]:last-child {\n padding-bottom: 0;\n}\n',""])},function(t,e,n){"use strict";var a=n(135);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".landing-page[data-v-6e4c7e26] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-6e4c7e26] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-6e4c7e26] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-6e4c7e26] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-6e4c7e26] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-6e4c7e26] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-6e4c7e26] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-6e4c7e26] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-6e4c7e26] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-6e4c7e26] {\n width: 100%;\n}\n}\n.page-title[data-v-6e4c7e26] {\n position: relative;\n z-index: 1;\n}\n.page-title.center[data-v-6e4c7e26] {\n text-align: center;\n}\n.page-title.center .title[data-v-6e4c7e26] {\n margin-left: auto;\n margin-right: auto;\n max-width: 780px;\n}\n.page-title.center .description[data-v-6e4c7e26] {\n margin-left: auto;\n margin-right: auto;\n}\n.page-title .title[data-v-6e4c7e26] {\n max-width: 580px;\n font-size: 48px;\n font-weight: 800;\n line-height: 1.3;\n margin-bottom: 15px;\n}\n.page-title .title[data-v-6e4c7e26] span {\n font-size: 48px;\n}\n.page-title .description[data-v-6e4c7e26] {\n max-width: 580px;\n font-size: 1.25em;\n font-weight: 500;\n line-height: 1.65;\n margin-bottom: 30px;\n}\n@media only screen and (max-width: 960px) {\n.page-title .title[data-v-6e4c7e26] {\n max-width: 100%;\n font-size: 32px;\n line-height: 1.25;\n margin-bottom: 15px;\n}\n.page-title .title[data-v-6e4c7e26] span {\n font-size: 32px;\n}\n.page-title .description[data-v-6e4c7e26] {\n max-width: 100%;\n font-size: 1em;\n line-height: 1.6;\n margin-bottom: 30px;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(136);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".landing-page[data-v-4e8f999e] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-4e8f999e] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-4e8f999e] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-4e8f999e] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-4e8f999e] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-4e8f999e] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-4e8f999e] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-4e8f999e] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-4e8f999e] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-4e8f999e] {\n width: 100%;\n}\n}\nfooter[data-v-4e8f999e] {\n text-align: center;\n padding-top: 80px;\n}\n.logo[data-v-4e8f999e] {\n margin-bottom: 15px;\n cursor: pointer;\n}\n.logo img[data-v-4e8f999e] {\n height: 38px;\n width: auto;\n}\n.logo .logo-text[data-v-4e8f999e] {\n font-weight: 800;\n font-size: 1.5625em;\n}\n.navigation-links[data-v-4e8f999e] {\n display: inline-block;\n}\n.navigation-links li[data-v-4e8f999e] {\n display: inline-block;\n}\n.navigation-links li a[data-v-4e8f999e] {\n display: block;\n padding: 19px;\n font-weight: 700;\n font-size: 1.0625em;\n transition: 150ms all ease;\n}\n.navigation-links li a[data-v-4e8f999e]:hover {\n color: #00BC7E;\n}\n.copyright[data-v-4e8f999e] {\n font-size: 1.0625em;\n color: rgba(27, 37, 57, 0.7);\n padding-top: 50px;\n padding-bottom: 20px;\n}\n.copyright[data-v-4e8f999e] a {\n color: #00BC7E;\n font-weight: 700;\n}\n@media only screen and (max-width: 960px) {\n.navigation-links[data-v-4e8f999e] {\n display: block;\n}\n.navigation-links li[data-v-4e8f999e] {\n display: block;\n}\n.navigation-links li a[data-v-4e8f999e] {\n padding: 10px 0;\n}\n}\n@media (prefers-color-scheme: dark) {\n.copyright[data-v-4e8f999e] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(137);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".landing-page[data-v-f352e51e] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-f352e51e] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-f352e51e] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-f352e51e] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-f352e51e] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-f352e51e] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-f352e51e] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-f352e51e] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-f352e51e] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-f352e51e] {\n width: 100%;\n}\n}\n.main-navigation[data-v-f352e51e] {\n justify-content: space-between;\n padding-bottom: 25px;\n align-items: center;\n padding-top: 25px;\n display: flex;\n}\n.logo[data-v-f352e51e] {\n cursor: pointer;\n}\n.logo img[data-v-f352e51e] {\n cursor: pointer;\n height: 38px;\n width: auto;\n}\n.logo .logo-text[data-v-f352e51e] {\n font-weight: 800;\n font-size: 1.5625em;\n}\n.navigation-links[data-v-f352e51e] {\n display: inline-block;\n margin-left: 50px;\n}\n.navigation-links[data-v-f352e51e]:first-child {\n margin-left: 0;\n}\n.navigation-links li[data-v-f352e51e] {\n display: inline-block;\n}\n.navigation-links li a[data-v-f352e51e] {\n padding: 14px;\n font-weight: 700;\n font-size: 1.0625em;\n transition: 150ms all ease;\n}\n.navigation-links li a[data-v-f352e51e]:hover {\n color: #00BC7E;\n}\n.cta-button[data-v-f352e51e] {\n background: rgba(0, 188, 126, 0.1);\n border-radius: 6px;\n padding: 8px 23px;\n color: #00BC7E;\n font-size: 1.0625em;\n font-weight: 700;\n}\n.cta-button.log-in[data-v-f352e51e] {\n display: none;\n}\n@media only screen and (max-width: 690px) {\n.navigation[data-v-f352e51e] {\n display: none;\n}\n.logo img[data-v-f352e51e] {\n height: auto;\n width: 190px;\n}\n.cta-button.log-in[data-v-f352e51e] {\n display: block;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(138);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.landing-page[data-v-68517f42] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-68517f42] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-68517f42] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-68517f42] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-68517f42] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-68517f42] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-68517f42] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-68517f42] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-68517f42] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-68517f42] {\n width: 100%;\n}\n}\n.form[data-v-68517f42] {\n max-width: 700px;\n}\n.form.inline-form[data-v-68517f42] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-68517f42] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-68517f42] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-68517f42] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-68517f42] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-68517f42] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-68517f42] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-68517f42]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-68517f42] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-68517f42] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-68517f42] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-68517f42] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-68517f42] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-68517f42] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-68517f42] {\n margin-left: 20px;\n}\n.error-message[data-v-68517f42] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-68517f42] {\n width: 100%;\n}\ntextarea[data-v-68517f42],\ninput[type="password"][data-v-68517f42],\ninput[type="text"][data-v-68517f42],\ninput[type="number"][data-v-68517f42],\ninput[type="email"][data-v-68517f42] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-68517f42],\ninput[type="password"].is-error[data-v-68517f42],\ninput[type="text"].is-error[data-v-68517f42],\ninput[type="number"].is-error[data-v-68517f42],\ninput[type="email"].is-error[data-v-68517f42] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-68517f42]::-webkit-input-placeholder, input[type="password"][data-v-68517f42]::-webkit-input-placeholder, input[type="text"][data-v-68517f42]::-webkit-input-placeholder, input[type="number"][data-v-68517f42]::-webkit-input-placeholder, input[type="email"][data-v-68517f42]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-68517f42]::-moz-placeholder, input[type="password"][data-v-68517f42]::-moz-placeholder, input[type="text"][data-v-68517f42]::-moz-placeholder, input[type="number"][data-v-68517f42]::-moz-placeholder, input[type="email"][data-v-68517f42]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-68517f42]:-ms-input-placeholder, input[type="password"][data-v-68517f42]:-ms-input-placeholder, input[type="text"][data-v-68517f42]:-ms-input-placeholder, input[type="number"][data-v-68517f42]:-ms-input-placeholder, input[type="email"][data-v-68517f42]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-68517f42]::-ms-input-placeholder, input[type="password"][data-v-68517f42]::-ms-input-placeholder, input[type="text"][data-v-68517f42]::-ms-input-placeholder, input[type="number"][data-v-68517f42]::-ms-input-placeholder, input[type="email"][data-v-68517f42]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-68517f42]::placeholder,\ninput[type="password"][data-v-68517f42]::placeholder,\ninput[type="text"][data-v-68517f42]::placeholder,\ninput[type="number"][data-v-68517f42]::placeholder,\ninput[type="email"][data-v-68517f42]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-68517f42]:focus,\ninput[type="password"][data-v-68517f42]:focus,\ninput[type="text"][data-v-68517f42]:focus,\ninput[type="number"][data-v-68517f42]:focus,\ninput[type="email"][data-v-68517f42]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-68517f42],\ninput[type="password"][disabled][data-v-68517f42],\ninput[type="text"][disabled][data-v-68517f42],\ninput[type="number"][disabled][data-v-68517f42],\ninput[type="email"][disabled][data-v-68517f42] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-68517f42] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-68517f42], .additional-link a[data-v-68517f42] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-68517f42]:hover, .additional-link a[data-v-68517f42]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-68517f42] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-68517f42] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-68517f42], .form textarea[data-v-68517f42] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-68517f42] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-68517f42] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-68517f42] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-68517f42] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-68517f42] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-68517f42] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-68517f42] {\n display: block;\n}\n.single-line-form .submit-button[data-v-68517f42] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-68517f42],\n input[type="password"][data-v-68517f42],\n input[type="number"][data-v-68517f42],\n input[type="text"][data-v-68517f42],\n input[type="email"][data-v-68517f42] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-68517f42] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-68517f42] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-68517f42] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-68517f42] {\n color: #bec6cf;\n}\ntextarea[data-v-68517f42],\n input[type="password"][data-v-68517f42],\n input[type="text"][data-v-68517f42],\n input[type="number"][data-v-68517f42],\n input[type="email"][data-v-68517f42] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-68517f42]::-webkit-input-placeholder, input[type="password"][data-v-68517f42]::-webkit-input-placeholder, input[type="text"][data-v-68517f42]::-webkit-input-placeholder, input[type="number"][data-v-68517f42]::-webkit-input-placeholder, input[type="email"][data-v-68517f42]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-68517f42]::-moz-placeholder, input[type="password"][data-v-68517f42]::-moz-placeholder, input[type="text"][data-v-68517f42]::-moz-placeholder, input[type="number"][data-v-68517f42]::-moz-placeholder, input[type="email"][data-v-68517f42]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-68517f42]:-ms-input-placeholder, input[type="password"][data-v-68517f42]:-ms-input-placeholder, input[type="text"][data-v-68517f42]:-ms-input-placeholder, input[type="number"][data-v-68517f42]:-ms-input-placeholder, input[type="email"][data-v-68517f42]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-68517f42]::-ms-input-placeholder, input[type="password"][data-v-68517f42]::-ms-input-placeholder, input[type="text"][data-v-68517f42]::-ms-input-placeholder, input[type="number"][data-v-68517f42]::-ms-input-placeholder, input[type="email"][data-v-68517f42]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-68517f42]::placeholder,\n input[type="password"][data-v-68517f42]::placeholder,\n input[type="text"][data-v-68517f42]::placeholder,\n input[type="number"][data-v-68517f42]::placeholder,\n input[type="email"][data-v-68517f42]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-68517f42],\n input[type="password"][disabled][data-v-68517f42],\n input[type="text"][disabled][data-v-68517f42],\n input[type="number"][disabled][data-v-68517f42],\n input[type="email"][disabled][data-v-68517f42] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.form[data-v-68517f42] {\n max-width: 100%;\n}\n.headline[data-v-68517f42] {\n padding-top: 70px;\n padding-bottom: 50px;\n}\n.form.block-form .submit-button[data-v-68517f42] {\n margin-top: 20px;\n margin-left: 0;\n margin-right: 0;\n}\n@media only screen and (max-width: 960px) {\n.headline[data-v-68517f42] {\n padding-top: 50px;\n padding-bottom: 30px;\n}\n}\n',""])},function(t,e,n){"use strict";var a=n(139);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".landing-page[data-v-6345d4c1] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-6345d4c1] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-6345d4c1] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-6345d4c1] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-6345d4c1] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-6345d4c1] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-6345d4c1] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-6345d4c1] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-6345d4c1] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-6345d4c1] {\n width: 100%;\n}\n}\n.headline[data-v-6345d4c1] {\n padding-top: 70px;\n padding-bottom: 50px;\n}\n.page-content[data-v-6345d4c1] p {\n font-size: 1.25em;\n font-weight: 500;\n line-height: 1.65;\n padding-bottom: 30px;\n}\n@media only screen and (max-width: 960px) {\n.headline[data-v-6345d4c1] {\n padding-top: 50px;\n padding-bottom: 30px;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(140);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".landing-page[data-v-5125e07f] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-5125e07f] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-5125e07f] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-5125e07f] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-5125e07f] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-5125e07f] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-5125e07f] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-5125e07f] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-5125e07f] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-5125e07f] {\n width: 100%;\n}\n}\n.icons .icon[data-v-5125e07f] {\n z-index: 0;\n position: absolute;\n}\n.icons .icon[data-v-5125e07f]:nth-child(1) {\n top: -14%;\n right: 2%;\n}\n.icons .icon[data-v-5125e07f]:nth-child(2) {\n top: -5%;\n right: 14%;\n transform: rotate(19deg);\n}\n.icons .icon[data-v-5125e07f]:nth-child(3) {\n top: -6.5%;\n right: 28.5%;\n transform: rotate(-12deg);\n}\n.icons .icon:nth-child(3) line[data-v-5125e07f], .icons .icon:nth-child(3) path[data-v-5125e07f] {\n stroke: #00BC7E;\n}\n.icons .icon[data-v-5125e07f]:nth-child(4) {\n top: -9.5%;\n right: 41.5%;\n transform: rotate(13deg);\n}\n.icons .icon:nth-child(4) path[data-v-5125e07f], .icons .icon:nth-child(4) line[data-v-5125e07f] {\n stroke: #FFBD2D;\n}\n.icons .icon[data-v-5125e07f]:nth-child(5) {\n top: -16%;\n right: 26%;\n}\n.icons .icon:nth-child(5) circle[data-v-5125e07f], .icons .icon:nth-child(5) path[data-v-5125e07f] {\n stroke: #FE6057;\n}\n.icons .icon[data-v-5125e07f]:nth-child(6) {\n top: -13%;\n right: 49%;\n}\n.icons .icon[data-v-5125e07f]:nth-child(7) {\n top: 2.5%;\n right: 46%;\n}\n.icons .icon:nth-child(7) polygon[data-v-5125e07f] {\n stroke: #9D66FE;\n}\n.icons .icon[data-v-5125e07f]:nth-child(8) {\n top: 13%;\n right: 2.5%;\n transform: rotate(22deg);\n}\n.icons .icon:nth-child(8) polyline[data-v-5125e07f], .icons .icon:nth-child(8) path[data-v-5125e07f], .icons .icon:nth-child(8) line[data-v-5125e07f] {\n stroke: #FE6057;\n}\n.icons .icon[data-v-5125e07f]:nth-child(9) {\n top: 14%;\n right: 11%;\n}\n.icons .icon:nth-child(9) circle[data-v-5125e07f], .icons .icon:nth-child(9) line[data-v-5125e07f] {\n stroke: #9D66FE;\n}\n.icons .icon[data-v-5125e07f]:nth-child(10) {\n top: 29%;\n right: 7%;\n transform: rotate(19deg);\n}\n.icons .icon[data-v-5125e07f]:nth-child(11) {\n top: 38%;\n right: 3%;\n}\n.icons .icon:nth-child(11) polygon[data-v-5125e07f] {\n stroke: #FFBD2D;\n}\n.icons .icon[data-v-5125e07f]:nth-child(12) {\n top: 50%;\n right: 11.5%;\n transform: rotate(-22deg);\n}\n.icons .icon[data-v-5125e07f]:nth-child(13) {\n top: 34%;\n right: 16%;\n transform: rotate(13deg);\n}\n.icons .icon:nth-child(13) rect[data-v-5125e07f] {\n stroke: #00BC7E;\n}\n.hero-screenshot[data-v-5125e07f] {\n position: relative;\n z-index: 1;\n padding-top: 75px;\n padding-bottom: 130px;\n}\n.hero-screenshot img[data-v-5125e07f] {\n border-radius: 8px;\n width: 80%;\n box-shadow: 0 7px 255px rgba(25, 54, 60, 0.1);\n}\n.hero-screenshot img.hero-dark[data-v-5125e07f] {\n display: none;\n}\n@media only screen and (max-width: 890px) {\n.icons[data-v-5125e07f] {\n display: none;\n}\n.hero-screenshot[data-v-5125e07f] {\n padding-top: 40px;\n padding-bottom: 90px;\n}\n.hero-screenshot img[data-v-5125e07f] {\n width: 100%;\n}\n}\n@media (prefers-color-scheme: dark) {\n.hero-screenshot img.hero-light[data-v-5125e07f] {\n display: none;\n}\n.hero-screenshot img.hero-dark[data-v-5125e07f] {\n display: block;\n box-shadow: 0 7px 185px rgba(0, 0, 0, 0.8);\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(141);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".plans-wrapper[data-v-77a81720] {\n box-shadow: 0 7px 20px 5px rgba(26, 36, 55, 0.05);\n border-radius: 8px;\n background: white;\n}\n.plan[data-v-77a81720] {\n text-align: center;\n flex: 0 0 33%;\n padding: 55px 25px 75px;\n}\n.plan[data-v-77a81720]:last-child {\n border-right: none;\n}\n.plan .plan-header .icon path[data-v-77a81720], .plan .plan-header .icon line[data-v-77a81720], .plan .plan-header .icon polyline[data-v-77a81720], .plan .plan-header .icon rect[data-v-77a81720], .plan .plan-header .icon circle[data-v-77a81720] {\n color: #00BC7E;\n}\n.plan .plan-header .title[data-v-77a81720] {\n font-size: 1.375em;\n font-weight: 800;\n padding-top: 10px;\n}\n.plan .plan-header .description[data-v-77a81720] {\n font-size: 0.875em;\n font-weight: 600;\n}\n.plan .plan-features[data-v-77a81720] {\n margin: 55px 0;\n}\n.plan .plan-features .storage-size[data-v-77a81720] {\n font-size: 3em;\n font-weight: 900;\n line-height: 1.1;\n}\n.plan .plan-features .storage-description[data-v-77a81720] {\n display: block;\n font-size: 0.9375em;\n font-weight: 800;\n}\n.plan .plan-footer .sign-in-button[data-v-77a81720] {\n width: 100%;\n text-align: center;\n}\n.plan .plan-footer .price[data-v-77a81720] {\n color: #00BC7E;\n font-size: 1.125em;\n display: block;\n padding-top: 5px;\n}\n.plan .plan-footer .price .vat-disclaimer[data-v-77a81720] {\n font-size: 0.6875em;\n color: #1B2539;\n display: block;\n font-weight: 300;\n opacity: 0.45;\n margin-top: 5px;\n}\n.plans-wrapper[data-v-77a81720] {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-around;\n}\n@media only screen and (max-width: 960px) {\n.plans-wrapper[data-v-77a81720] {\n display: block;\n margin: 0;\n}\n.plans-wrapper .plan[data-v-77a81720] {\n padding: 30px 25px;\n border-bottom: 1px solid #F7F7F7;\n border-right: none;\n}\n}\n@media (prefers-color-scheme: dark) {\n.plans-wrapper[data-v-77a81720] {\n background: #1e2024;\n}\n.plan[data-v-77a81720] {\n border-color: rgba(255, 255, 255, 0.02) !important;\n}\n.plan .plan-wrapper[data-v-77a81720] {\n background: #1e2024;\n}\n.plan .plan-header .title[data-v-77a81720] {\n color: #bec6cf;\n}\n.plan .plan-header .description[data-v-77a81720] {\n color: #7d858c;\n}\n.plan .plan-features .storage-size[data-v-77a81720] {\n color: #bec6cf;\n}\n.plan .plan-features .storage-description[data-v-77a81720] {\n color: #bec6cf;\n}\n.plan .plan-footer .sign-in-button[data-v-77a81720] {\n background: rgba(0, 188, 126, 0.1);\n}\n.plan .plan-footer .sign-in-button[data-v-77a81720] .content {\n color: #00BC7E;\n}\n.plan .plan-footer .price .vat-disclaimer[data-v-77a81720] {\n color: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(142);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".landing-page[data-v-338d3266] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-338d3266] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-338d3266] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-338d3266] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-338d3266] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-338d3266] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-338d3266] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-338d3266] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-338d3266] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-338d3266] {\n width: 100%;\n}\n}\n.pricing .cloud-bg[data-v-338d3266] {\n z-index: 0;\n}\n.pricing .cloud-bg path[data-v-338d3266] {\n stroke: none;\n fill: rgba(0, 188, 126, 0.05);\n}\n.pricing .cloud-bg[data-v-338d3266]:first-of-type {\n position: absolute;\n top: 30px;\n right: -130px;\n transform: scale(-1, 1) rotate(-17deg);\n}\n.pricing .cloud-bg[data-v-338d3266]:last-of-type {\n position: absolute;\n bottom: 160px;\n left: -230px;\n transform: rotate(13deg);\n}\n.page-title[data-v-338d3266] {\n position: relative;\n z-index: 1;\n}\n.page-title.center[data-v-338d3266] {\n text-align: center;\n}\n.page-title.center .title[data-v-338d3266] {\n margin-left: auto;\n margin-right: auto;\n}\n.page-title.center .description[data-v-338d3266] {\n margin-left: auto;\n margin-right: auto;\n}\n.page-title .title[data-v-338d3266] {\n max-width: 580px;\n font-size: 48px;\n font-weight: 800;\n line-height: 1.25;\n margin-bottom: 15px;\n}\n.page-title .title[data-v-338d3266] span {\n font-size: 48px;\n}\n.page-title .description[data-v-338d3266] {\n max-width: 580px;\n font-size: 1.25em;\n font-weight: 500;\n line-height: 1.6;\n margin-bottom: 30px;\n}\n.pricing[data-v-338d3266] {\n padding-top: 250px;\n padding-bottom: 120px;\n}\n.pricing-tables[data-v-338d3266] {\n margin-top: 50px;\n margin-bottom: 60px;\n position: relative;\n z-index: 1;\n}\n.sign-up-button[data-v-338d3266] {\n padding-top: 10px;\n display: block;\n}\n@media only screen and (max-width: 1190px) {\n.cloud-bg[data-v-338d3266] {\n display: none;\n}\n.pricing[data-v-338d3266] {\n padding-top: 150px;\n padding-bottom: 60px;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-title .title[data-v-338d3266] {\n font-size: 28px;\n line-height: 1.25;\n margin-bottom: 15px;\n}\n.page-title .title[data-v-338d3266] span {\n font-size: 28px;\n}\n.page-title .description[data-v-338d3266] {\n font-size: 1em;\n line-height: 1.6;\n margin-bottom: 30px;\n}\n.pricing[data-v-338d3266] {\n padding-top: 50px;\n padding-bottom: 120px;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(143);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".landing-page[data-v-359abb58] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-359abb58] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-359abb58] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-359abb58] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-359abb58] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-359abb58] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-359abb58] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-359abb58] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-359abb58] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-359abb58] {\n width: 100%;\n}\n}\n.features[data-v-359abb58] {\n padding-left: 75px;\n}\n.features .feature[data-v-359abb58] {\n margin-bottom: 25px;\n}\n.features .feature .title[data-v-359abb58] {\n font-size: 1.625em;\n font-weight: 800;\n margin-bottom: 4px;\n}\n.features .feature .description[data-v-359abb58] {\n line-height: 1.5;\n color: rgba(27, 37, 57, 0.7);\n font-size: 1.125em;\n}\n.features .feature .icon[data-v-359abb58] {\n border-radius: 12px;\n width: 44px;\n height: 44px;\n display: flex;\n align-items: center;\n margin-bottom: 18px;\n}\n.features .feature .icon svg[data-v-359abb58] {\n margin: 0 auto;\n}\n.features .feature:nth-child(1) .icon[data-v-359abb58] {\n background: rgba(255, 189, 45, 0.1);\n}\n.features .feature:nth-child(1) .icon path[data-v-359abb58], .features .feature:nth-child(1) .icon line[data-v-359abb58], .features .feature:nth-child(1) .icon polyline[data-v-359abb58], .features .feature:nth-child(1) .icon rect[data-v-359abb58], .features .feature:nth-child(1) .icon circle[data-v-359abb58] {\n stroke: #FFBD2D;\n}\n.features .feature:nth-child(2) .icon[data-v-359abb58] {\n background: rgba(0, 188, 126, 0.1);\n}\n.features .feature:nth-child(2) .icon path[data-v-359abb58], .features .feature:nth-child(2) .icon line[data-v-359abb58], .features .feature:nth-child(2) .icon polyline[data-v-359abb58], .features .feature:nth-child(2) .icon rect[data-v-359abb58], .features .feature:nth-child(2) .icon circle[data-v-359abb58] {\n stroke: #00BC7E;\n}\n.features .feature:nth-child(3) .icon[data-v-359abb58] {\n background: rgba(157, 102, 254, 0.1);\n}\n.features .feature:nth-child(3) .icon path[data-v-359abb58], .features .feature:nth-child(3) .icon line[data-v-359abb58], .features .feature:nth-child(3) .icon polyline[data-v-359abb58], .features .feature:nth-child(3) .icon rect[data-v-359abb58], .features .feature:nth-child(3) .icon circle[data-v-359abb58] {\n stroke: #9D66FE;\n}\n.content[data-v-359abb58] {\n margin-top: 107px;\n display: flex;\n}\n@media only screen and (max-width: 1190px) {\n.hero[data-v-359abb58] {\n flex: 0 0 60%;\n}\n.hero img[data-v-359abb58] {\n width: 100%;\n}\n.features[data-v-359abb58] {\n padding-left: 25px;\n margin-top: 0px;\n}\n}\n@media only screen and (max-width: 960px) {\n.content[data-v-359abb58] {\n display: block;\n margin-top: 40px;\n}\n.features[data-v-359abb58] {\n margin-top: 50px;\n padding-left: 0;\n}\n.features .feature[data-v-359abb58] {\n margin-bottom: 35px;\n}\n.features .feature .title[data-v-359abb58] {\n font-size: 1.375em;\n}\n.features .feature .description[data-v-359abb58] {\n font-size: 1em;\n}\n}\n@media (prefers-color-scheme: dark) {\n.features .feature .description[data-v-359abb58] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(144);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".landing-page[data-v-6788f69f] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-6788f69f] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-6788f69f] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-6788f69f] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-6788f69f] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-6788f69f] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-6788f69f] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-6788f69f] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-6788f69f] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-6788f69f] {\n width: 100%;\n}\n}\n.features[data-v-6788f69f] {\n display: flex;\n margin-top: 35px;\n}\n.features .feature[data-v-6788f69f] {\n display: flex;\n margin-right: 35px;\n}\n.features .feature:nth-child(1) path[data-v-6788f69f], .features .feature:nth-child(1) line[data-v-6788f69f], .features .feature:nth-child(1) polyline[data-v-6788f69f], .features .feature:nth-child(1) rect[data-v-6788f69f], .features .feature:nth-child(1) circle[data-v-6788f69f] {\n stroke: #FFBD2D;\n}\n.features .feature:nth-child(2) path[data-v-6788f69f], .features .feature:nth-child(2) line[data-v-6788f69f], .features .feature:nth-child(2) polyline[data-v-6788f69f], .features .feature:nth-child(2) rect[data-v-6788f69f], .features .feature:nth-child(2) circle[data-v-6788f69f] {\n stroke: #9D66FE;\n}\n.features .feature[data-v-6788f69f]:last-child {\n margin-right: 0;\n}\n.features .feature .feature-title[data-v-6788f69f] {\n font-size: 0.875em;\n font-weight: 700;\n}\n.features .feature .feature-icon[data-v-6788f69f] {\n margin-right: 10px;\n}\n.main-header[data-v-6788f69f] {\n padding-top: 70px;\n}\n.sign-up-button[data-v-6788f69f] {\n margin-top: 65px;\n display: block;\n}\n.sign-up-button .button[data-v-6788f69f] {\n margin-left: 0;\n margin-right: 0;\n}\n@media only screen and (max-width: 690px) {\n.main-header[data-v-6788f69f] {\n padding-top: 50px;\n}\n.features[data-v-6788f69f] {\n display: block;\n}\n.features .feature[data-v-6788f69f] {\n margin-right: 0;\n margin-bottom: 15px;\n}\n.features .feature[data-v-6788f69f]:last-child {\n margin-bottom: 0;\n}\n.sign-up-button[data-v-6788f69f] {\n margin-top: 30px;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(145);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".landing-page[data-v-1aaf5e1c] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-1aaf5e1c] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-1aaf5e1c] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-1aaf5e1c] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-1aaf5e1c] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-1aaf5e1c] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-1aaf5e1c] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-1aaf5e1c] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-1aaf5e1c] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-1aaf5e1c] {\n width: 100%;\n}\n}\n.icons .icon[data-v-1aaf5e1c] {\n position: absolute;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(20) {\n bottom: -37%;\n left: 37%;\n transform: rotate(0deg);\n}\n.icons .icon:nth-child(20) circle[data-v-1aaf5e1c], .icons .icon:nth-child(20) line[data-v-1aaf5e1c] {\n stroke: #FFBD2D;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(19) {\n bottom: -21%;\n left: 23.5%;\n transform: rotate(-20deg);\n}\n.icons .icon:nth-child(19) path[data-v-1aaf5e1c], .icons .icon:nth-child(19) line[data-v-1aaf5e1c] {\n stroke: #9D66FE;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(18) {\n bottom: -4%;\n left: 26.5%;\n transform: rotate(0deg);\n}\n.icons .icon:nth-child(18) path[data-v-1aaf5e1c] {\n stroke: #00BC7E;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(17) {\n bottom: -5%;\n left: 8.5%;\n transform: rotate(0deg);\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(16) {\n top: 86%;\n left: 17%;\n transform: rotate(18deg);\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(15) {\n top: 64%;\n left: 17%;\n transform: rotate(0deg);\n}\n.icons .icon:nth-child(15) polyline[data-v-1aaf5e1c], .icons .icon:nth-child(15) line[data-v-1aaf5e1c], .icons .icon:nth-child(15) path[data-v-1aaf5e1c] {\n stroke: #FE6057;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(14) {\n top: 44%;\n left: 28%;\n transform: rotate(0deg);\n}\n.icons .icon:nth-child(14) polygon[data-v-1aaf5e1c] {\n stroke: #9D66FE;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(13) {\n top: 33%;\n left: 16%;\n transform: rotate(0deg);\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(12) {\n top: 23%;\n left: 32%;\n transform: rotate(13deg);\n}\n.icons .icon:nth-child(12) line[data-v-1aaf5e1c], .icons .icon:nth-child(12) path[data-v-1aaf5e1c] {\n stroke: #FFBD2D;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(1) {\n top: 35%;\n right: 49%;\n transform: rotate(-11deg);\n}\n.icons .icon:nth-child(1) line[data-v-1aaf5e1c], .icons .icon:nth-child(1) path[data-v-1aaf5e1c] {\n stroke: #00BC7E;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(2) {\n top: 12%;\n right: 45%;\n transform: rotate(0);\n}\n.icons .icon:nth-child(2) circle[data-v-1aaf5e1c], .icons .icon:nth-child(2) path[data-v-1aaf5e1c] {\n stroke: #FE6057;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(3) {\n top: 30%;\n right: 30%;\n transform: rotate(20deg);\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(4) {\n top: 14%;\n right: 14.5%;\n transform: rotate(-1deg);\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(5) {\n top: 62%;\n right: 15.5%;\n transform: rotate(21deg);\n}\n.icons .icon:nth-child(5) polyline[data-v-1aaf5e1c], .icons .icon:nth-child(5) path[data-v-1aaf5e1c], .icons .icon:nth-child(5) line[data-v-1aaf5e1c] {\n stroke: #FE6057;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(6) {\n top: 66%;\n right: 26.5%;\n transform: rotate(0deg);\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(7) {\n bottom: 3%;\n right: 21.5%;\n transform: rotate(16deg);\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(8) {\n bottom: -13%;\n right: 16.5%;\n transform: rotate(0deg);\n}\n.icons .icon:nth-child(8) polygon[data-v-1aaf5e1c] {\n stroke: #FFBD2D;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(9) {\n bottom: -32%;\n right: 27%;\n transform: rotate(-20deg);\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(10) {\n bottom: -5%;\n right: 34%;\n transform: rotate(16deg);\n}\n.icons .icon:nth-child(10) rect[data-v-1aaf5e1c] {\n stroke: #9D66FE;\n}\n.icons .icon[data-v-1aaf5e1c]:nth-child(11) {\n bottom: -28%;\n right: 44%;\n transform: rotate(-12deg);\n}\n.icons .icon:nth-child(11) polyline[data-v-1aaf5e1c], .icons .icon:nth-child(11) line[data-v-1aaf5e1c], .icons .icon:nth-child(11) path[data-v-1aaf5e1c] {\n stroke: #FE6057;\n}\n.cloud-bg[data-v-1aaf5e1c] {\n z-index: 0;\n position: absolute;\n top: 70px;\n right: 60px;\n transform: scale(-1, 1) rotate(13deg);\n}\n.cloud-bg path[data-v-1aaf5e1c] {\n stroke: none;\n fill: rgba(0, 188, 126, 0.05);\n}\n.page-title[data-v-1aaf5e1c] {\n padding-top: 340px;\n}\n.get-started-button[data-v-1aaf5e1c] {\n display: flex;\n align-items: center;\n background: none;\n outline: none;\n border: none;\n margin-left: auto;\n margin-right: auto;\n cursor: pointer;\n background: rgba(0, 188, 126, 0.8);\n padding: 20px 36px;\n border-radius: 6px;\n box-shadow: 0 5px 10px 2px rgba(0, 188, 126, 0.34);\n margin-bottom: 395px;\n transition: 150ms all ease;\n position: relative;\n z-index: 1;\n}\n.get-started-button[data-v-1aaf5e1c]:hover {\n box-shadow: 0 7px 16px 2px rgba(0, 188, 126, 0.4);\n background: #00bc7e;\n}\n.get-started-button .content[data-v-1aaf5e1c] {\n font-size: 1.1875em;\n font-weight: 700;\n margin-right: 8px;\n color: white;\n}\n.get-started-button polyline[data-v-1aaf5e1c] {\n stroke: white;\n}\n@media only screen and (max-width: 1190px) {\n.get-started-button[data-v-1aaf5e1c] {\n margin-bottom: 280px;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-title[data-v-1aaf5e1c] {\n padding-top: 20px;\n}\n.get-started-button[data-v-1aaf5e1c] {\n margin-bottom: 30px;\n}\n.cloud-bg[data-v-1aaf5e1c],\n .icons[data-v-1aaf5e1c] {\n display: none;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(146);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".landing-page[data-v-72649e9a] {\n overflow-x: hidden;\n}\n.page-wrapper[data-v-72649e9a] {\n position: relative;\n margin: 0 auto;\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.large[data-v-72649e9a] {\n width: 1490px;\n}\n.page-wrapper.medium[data-v-72649e9a] {\n width: 1150px;\n}\n.page-wrapper.small[data-v-72649e9a] {\n width: 890px;\n}\n@media only screen and (max-width: 1390px) {\n.page-wrapper.large[data-v-72649e9a] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 1190px) {\n.page-wrapper.large[data-v-72649e9a] {\n width: 100%;\n}\n.page-wrapper.medium[data-v-72649e9a] {\n width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.page-wrapper[data-v-72649e9a] {\n padding-left: 25px;\n padding-right: 25px;\n}\n.page-wrapper.small[data-v-72649e9a] {\n width: 100%;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(147);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".fade-enter-active[data-v-d6f3c004],\n.fade-leave-active[data-v-d6f3c004] {\n transition: 0.3s ease;\n}\n.fade-enter[data-v-d6f3c004],\n.fade-leave-to[data-v-d6f3c004] {\n opacity: 0;\n transform: translateX(100%);\n}\n.toastr-content-wrapper[data-v-d6f3c004] {\n display: flex;\n align-items: center;\n padding: 15px;\n box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);\n}\n.progressbar[data-v-d6f3c004] {\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n opacity: 0.35;\n}\n.progressbar span[data-v-d6f3c004] {\n width: 0;\n height: 3px;\n display: block;\n background: #00BC7E;\n -webkit-animation: progressbar-data-v-d6f3c004 5s linear;\n animation: progressbar-data-v-d6f3c004 5s linear;\n}\n@-webkit-keyframes progressbar-data-v-d6f3c004 {\n0% {\n width: 0;\n}\n100% {\n width: 100%;\n}\n}\n@keyframes progressbar-data-v-d6f3c004 {\n0% {\n width: 0;\n}\n100% {\n width: 100%;\n}\n}\n.toastr-item[data-v-d6f3c004] {\n max-width: 320px;\n margin-bottom: 20px;\n position: relative;\n overflow: hidden;\n display: block;\n border-radius: 8px;\n}\n.toastr-item .toastr-description[data-v-d6f3c004] {\n font-size: 0.9375em;\n font-weight: bold;\n}\n.toastr-item .toastr-icon[data-v-d6f3c004] {\n height: 42px;\n width: 42px;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n font-size: 20px;\n margin-right: 10px;\n}\n.toastr-item.success[data-v-d6f3c004] {\n background: #ECF7F2;\n}\n.toastr-item.success polyline[data-v-d6f3c004] {\n stroke: #00BC7E;\n}\n.toastr-item.success .toastr-description[data-v-d6f3c004] {\n color: #00BC7E;\n}\n.toastr-item.danger[data-v-d6f3c004] {\n background: rgba(253, 57, 122, 0.1);\n}\n.toastr-item.danger polyline[data-v-d6f3c004] {\n stroke: #fd397a;\n}\n.toastr-item.danger .toastr-description[data-v-d6f3c004] {\n color: #fd397a;\n}\n@media only screen and (max-width: 690px) {\n.toastr-item[data-v-d6f3c004] {\n margin-bottom: 0;\n margin-top: 20px;\n max-width: 100%;\n}\n.fade-enter[data-v-d6f3c004],\n .fade-leave-to[data-v-d6f3c004] {\n opacity: 0;\n transform: translateY(100%);\n}\n}\n@media (prefers-color-scheme: dark) {\n.toastr-item.success[data-v-d6f3c004], .toastr-item.danger[data-v-d6f3c004] {\n background: #1e2024;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(148);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".toastr-list[data-v-479c4f2a] {\n transition: all 5s ease;\n display: inline-block;\n}\n.toastr-list-enter[data-v-479c4f2a],\n.toastr-list-leave-to[data-v-479c4f2a] {\n opacity: 0;\n transform: translateY(-100%);\n}\n.toastr-list-leave-active[data-v-479c4f2a] {\n position: absolute;\n}\n#toastr-wrapper[data-v-479c4f2a] {\n position: absolute;\n right: 30px;\n top: 30px;\n z-index: 10;\n}\n@media only screen and (max-width: 690px) {\n#toastr-wrapper[data-v-479c4f2a] {\n top: initial;\n right: 15px;\n left: 15px;\n bottom: 15px;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(149);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".user-meta[data-v-8d6becfa] {\n padding-left: 20px;\n}\n.user-meta .name[data-v-8d6becfa] {\n display: block;\n font-size: 1.125em;\n}\n.user-meta .email[data-v-8d6becfa] {\n display: block;\n font-size: 0.75em;\n color: #00BC7E;\n font-weight: 600;\n}\n",""])},function(t,e,n){"use strict";var a=n(150);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".user-avatar[data-v-6e170a1a] {\n line-height: 0;\n position: relative;\n width: 40px;\n margin: 0 auto;\n}\n.user-avatar .notification[data-v-6e170a1a] {\n width: 12px;\n height: 12px;\n display: block;\n position: absolute;\n bottom: -5px;\n right: -4px;\n border-radius: 10px;\n z-index: 2;\n background: #FE6057;\n border: 2px solid #f4f5f6;\n}\n.user-avatar img[data-v-6e170a1a] {\n border-radius: 6px;\n width: 40px;\n height: 40px;\n}\n.user-avatar.large[data-v-6e170a1a] {\n margin: 0;\n width: 54px;\n}\n.user-avatar.large img[data-v-6e170a1a] {\n border-radius: 9px;\n width: 52px;\n height: 52px;\n}\n@media (prefers-color-scheme: dark) {\n.user-avatar .notification[data-v-6e170a1a] {\n border-color: #1e2024;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(151);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".mobile-navigation[data-v-1ef9a688] {\n padding: 20px;\n width: 100%;\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 99;\n background: white;\n border-top-left-radius: 12px;\n border-top-right-radius: 12px;\n min-height: 440px;\n max-height: 80%;\n overflow-y: auto;\n}\n.vignette[data-v-1ef9a688] {\n background: rgba(0, 0, 0, 0.35);\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 9;\n cursor: pointer;\n opacity: 1;\n}\n.user-info[data-v-1ef9a688] {\n display: flex;\n align-items: center;\n margin-bottom: 10px;\n}\n@media (prefers-color-scheme: dark) {\n.mobile-navigation[data-v-1ef9a688] {\n background: #111314;\n}\n}\n.context-menu-enter-active[data-v-1ef9a688],\n.fade-enter-active[data-v-1ef9a688] {\n transition: all 200ms;\n}\n.context-menu-leave-active[data-v-1ef9a688],\n.fade-leave-active[data-v-1ef9a688] {\n transition: all 200ms;\n}\n.fade-enter[data-v-1ef9a688],\n.fade-leave-to[data-v-1ef9a688] {\n opacity: 0;\n}\n.context-menu-enter[data-v-1ef9a688],\n.context-menu-leave-to[data-v-1ef9a688] {\n opacity: 0;\n transform: translateY(100%);\n}\n.context-menu-leave-active[data-v-1ef9a688] {\n position: absolute;\n}\n",""])},function(t,e,n){"use strict";var a=n(152);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".cookie-wrapper[data-v-c52b2d30] {\n padding: 20px;\n border-radius: 8px;\n box-shadow: 0 3px 15px 2px rgba(26, 36, 55, 0.05);\n background: white;\n position: fixed;\n bottom: 0;\n left: 115px;\n max-width: 225px;\n z-index: 3;\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n}\n.cookie-wrapper .close-icon[data-v-c52b2d30] {\n position: absolute;\n right: -4px;\n top: -4px;\n cursor: pointer;\n padding: 12px;\n}\n.cookie-wrapper .close-icon line[data-v-c52b2d30] {\n stroke: rgba(27, 37, 57, 0.7);\n}\n.cookie-wrapper p[data-v-c52b2d30] {\n font-size: 12px;\n line-height: 1.6;\n}\n.cookie-wrapper p a[data-v-c52b2d30] {\n font-size: 12px;\n color: #00BC7E;\n}\n@media only screen and (max-width: 690px) {\n.cookie-wrapper[data-v-c52b2d30] {\n padding: 10px 15px;\n left: 0;\n right: 0;\n max-width: 100%;\n}\n.cookie-wrapper p[data-v-c52b2d30] {\n max-width: 300px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.cookie-wrapper[data-v-c52b2d30] {\n background: #1e2024;\n}\n.cookie-wrapper p[data-v-c52b2d30] {\n color: #bec6cf;\n}\n.cookie-wrapper .close-icon line[data-v-c52b2d30] {\n stroke: #bec6cf;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(153);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form-wrapper[data-v-5768774e] {\n padding: 0 20px;\n}\n.input-wrapper[data-v-5768774e] {\n margin-bottom: 20px;\n}\n.input-wrapper[data-v-5768774e]:last-child {\n margin-bottom: 0;\n}\n.input-wrapper input[data-v-5768774e] {\n width: 100%;\n color: #1B2539;\n}\n.input-wrapper input.is-error[data-v-5768774e] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\n.inline-wrapper[data-v-5768774e] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.inline-wrapper.icon-append .input-text[data-v-5768774e] {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.inline-wrapper.icon-append .icon[data-v-5768774e] {\n background: black;\n padding: 15px 18px;\n border-top-right-radius: 8px;\n border-bottom-right-radius: 8px;\n text-align: center;\n line-height: 0;\n}\n.inline-wrapper.icon-append .icon path[data-v-5768774e], .inline-wrapper.icon-append .icon polyline[data-v-5768774e] {\n stroke: white;\n}\n.input-label[data-v-5768774e] {\n font-size: 0.75em;\n color: #1B2539;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n@media (prefers-color-scheme: dark) {\n.inline-wrapper.icon-append .icon[data-v-5768774e] {\n background: rgba(0, 188, 126, 0.1);\n}\n.inline-wrapper.icon-append .icon path[data-v-5768774e], .inline-wrapper.icon-append .icon polyline[data-v-5768774e] {\n stroke: #00BC7E;\n}\n.input-label[data-v-5768774e] {\n color: #bec6cf;\n}\n}\n.form[data-v-5768774e] {\n max-width: 700px;\n}\n.form.inline-form[data-v-5768774e] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-5768774e] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-5768774e] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-5768774e] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-5768774e] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-5768774e] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-5768774e] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-5768774e]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-5768774e] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-5768774e] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-5768774e] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-5768774e] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-5768774e] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-5768774e] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-5768774e] {\n margin-left: 20px;\n}\n.error-message[data-v-5768774e] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-5768774e] {\n width: 100%;\n}\ntextarea[data-v-5768774e],\ninput[type="password"][data-v-5768774e],\ninput[type="text"][data-v-5768774e],\ninput[type="number"][data-v-5768774e],\ninput[type="email"][data-v-5768774e] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-5768774e],\ninput[type="password"].is-error[data-v-5768774e],\ninput[type="text"].is-error[data-v-5768774e],\ninput[type="number"].is-error[data-v-5768774e],\ninput[type="email"].is-error[data-v-5768774e] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-5768774e]::-webkit-input-placeholder, input[type="password"][data-v-5768774e]::-webkit-input-placeholder, input[type="text"][data-v-5768774e]::-webkit-input-placeholder, input[type="number"][data-v-5768774e]::-webkit-input-placeholder, input[type="email"][data-v-5768774e]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5768774e]::-moz-placeholder, input[type="password"][data-v-5768774e]::-moz-placeholder, input[type="text"][data-v-5768774e]::-moz-placeholder, input[type="number"][data-v-5768774e]::-moz-placeholder, input[type="email"][data-v-5768774e]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5768774e]:-ms-input-placeholder, input[type="password"][data-v-5768774e]:-ms-input-placeholder, input[type="text"][data-v-5768774e]:-ms-input-placeholder, input[type="number"][data-v-5768774e]:-ms-input-placeholder, input[type="email"][data-v-5768774e]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5768774e]::-ms-input-placeholder, input[type="password"][data-v-5768774e]::-ms-input-placeholder, input[type="text"][data-v-5768774e]::-ms-input-placeholder, input[type="number"][data-v-5768774e]::-ms-input-placeholder, input[type="email"][data-v-5768774e]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5768774e]::placeholder,\ninput[type="password"][data-v-5768774e]::placeholder,\ninput[type="text"][data-v-5768774e]::placeholder,\ninput[type="number"][data-v-5768774e]::placeholder,\ninput[type="email"][data-v-5768774e]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-5768774e]:focus,\ninput[type="password"][data-v-5768774e]:focus,\ninput[type="text"][data-v-5768774e]:focus,\ninput[type="number"][data-v-5768774e]:focus,\ninput[type="email"][data-v-5768774e]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-5768774e],\ninput[type="password"][disabled][data-v-5768774e],\ninput[type="text"][disabled][data-v-5768774e],\ninput[type="number"][disabled][data-v-5768774e],\ninput[type="email"][disabled][data-v-5768774e] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-5768774e] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-5768774e], .additional-link a[data-v-5768774e] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-5768774e]:hover, .additional-link a[data-v-5768774e]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-5768774e] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-5768774e] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-5768774e], .form textarea[data-v-5768774e] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-5768774e] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-5768774e] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-5768774e] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-5768774e] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-5768774e] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-5768774e] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-5768774e] {\n display: block;\n}\n.single-line-form .submit-button[data-v-5768774e] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-5768774e],\n input[type="password"][data-v-5768774e],\n input[type="number"][data-v-5768774e],\n input[type="text"][data-v-5768774e],\n input[type="email"][data-v-5768774e] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-5768774e] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-5768774e] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-5768774e] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-5768774e] {\n color: #bec6cf;\n}\ntextarea[data-v-5768774e],\n input[type="password"][data-v-5768774e],\n input[type="text"][data-v-5768774e],\n input[type="number"][data-v-5768774e],\n input[type="email"][data-v-5768774e] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-5768774e]::-webkit-input-placeholder, input[type="password"][data-v-5768774e]::-webkit-input-placeholder, input[type="text"][data-v-5768774e]::-webkit-input-placeholder, input[type="number"][data-v-5768774e]::-webkit-input-placeholder, input[type="email"][data-v-5768774e]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5768774e]::-moz-placeholder, input[type="password"][data-v-5768774e]::-moz-placeholder, input[type="text"][data-v-5768774e]::-moz-placeholder, input[type="number"][data-v-5768774e]::-moz-placeholder, input[type="email"][data-v-5768774e]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5768774e]:-ms-input-placeholder, input[type="password"][data-v-5768774e]:-ms-input-placeholder, input[type="text"][data-v-5768774e]:-ms-input-placeholder, input[type="number"][data-v-5768774e]:-ms-input-placeholder, input[type="email"][data-v-5768774e]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5768774e]::-ms-input-placeholder, input[type="password"][data-v-5768774e]::-ms-input-placeholder, input[type="text"][data-v-5768774e]::-ms-input-placeholder, input[type="number"][data-v-5768774e]::-ms-input-placeholder, input[type="email"][data-v-5768774e]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-5768774e]::placeholder,\n input[type="password"][data-v-5768774e]::placeholder,\n input[type="text"][data-v-5768774e]::placeholder,\n input[type="number"][data-v-5768774e]::placeholder,\n input[type="email"][data-v-5768774e]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-5768774e],\n input[type="password"][disabled][data-v-5768774e],\n input[type="text"][disabled][data-v-5768774e],\n input[type="number"][disabled][data-v-5768774e],\n input[type="email"][disabled][data-v-5768774e] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.input-wrapper.password[data-v-5768774e] {\n margin-top: -10px;\n}\n.item-thumbnail[data-v-5768774e] {\n margin-bottom: 20px;\n}\n',""])},function(t,e,n){"use strict";var a=n(154);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".popup-image[data-v-67b302b2] {\n padding-top: 20px;\n text-align: center;\n margin-bottom: 20px;\n}\n.popup-image .emoji[data-v-67b302b2] {\n font-size: 3.5em;\n line-height: 1;\n}\n.content[data-v-67b302b2] {\n text-align: center;\n padding-bottom: 10px;\n padding-left: 20px;\n padding-right: 20px;\n}\n.content .title[data-v-67b302b2] {\n font-size: 1.375em;\n text-transform: uppercase;\n font-weight: 800;\n color: #1B2539;\n}\n.content .message[data-v-67b302b2] {\n font-size: 1em;\n color: #333;\n margin-top: 5px;\n}\n@media only screen and (max-width: 690px) {\n.content[data-v-67b302b2] {\n top: 110px;\n}\n}\n@media (prefers-color-scheme: dark) {\n.content .title[data-v-67b302b2] {\n color: #bec6cf;\n}\n.content .message[data-v-67b302b2] {\n color: #7d858c;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(155);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".action-button[data-v-d9be4a42] {\n cursor: pointer;\n}\n.action-button .label[data-v-d9be4a42] {\n font-size: 0.75em;\n color: #00BC7E;\n font-weight: 600;\n text-decoration: underline;\n}\n.action-button .icon[data-v-d9be4a42] {\n font-size: 0.625em;\n display: inline-block;\n margin-right: 2px;\n}\n.action-button .icon path[data-v-d9be4a42] {\n fill: #00BC7E;\n}\n",""])},function(t,e,n){"use strict";var a=n(156);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.form-wrapper[data-v-64924a9a] {\n padding: 0 20px;\n}\n.input-wrapper[data-v-64924a9a] {\n margin-bottom: 20px;\n}\n.input-wrapper[data-v-64924a9a]:last-child {\n margin-bottom: 0;\n}\n.input-wrapper input[data-v-64924a9a] {\n width: 100%;\n color: #1B2539;\n}\n.input-wrapper input.is-error[data-v-64924a9a] {\n border-color: #fd397a;\n box-shadow: 0 0 7px rgba(253, 57, 122, 0.3);\n}\n.inline-wrapper[data-v-64924a9a] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.inline-wrapper.icon-append .input-text[data-v-64924a9a] {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.inline-wrapper.icon-append .icon[data-v-64924a9a] {\n background: black;\n padding: 15px 18px;\n border-top-right-radius: 8px;\n border-bottom-right-radius: 8px;\n text-align: center;\n line-height: 0;\n}\n.inline-wrapper.icon-append .icon path[data-v-64924a9a], .inline-wrapper.icon-append .icon polyline[data-v-64924a9a] {\n stroke: white;\n}\n.input-label[data-v-64924a9a] {\n font-size: 0.75em;\n color: #1B2539;\n font-weight: 700;\n display: block;\n margin-bottom: 5px;\n}\n@media (prefers-color-scheme: dark) {\n.inline-wrapper.icon-append .icon[data-v-64924a9a] {\n background: rgba(0, 188, 126, 0.1);\n}\n.inline-wrapper.icon-append .icon path[data-v-64924a9a], .inline-wrapper.icon-append .icon polyline[data-v-64924a9a] {\n stroke: #00BC7E;\n}\n.input-label[data-v-64924a9a] {\n color: #bec6cf;\n}\n}\n.form[data-v-64924a9a] {\n max-width: 700px;\n}\n.form.inline-form[data-v-64924a9a] {\n display: flex;\n position: relative;\n justify-content: center;\n margin: 0 auto;\n}\n.form.inline-form .input-wrapper[data-v-64924a9a] {\n position: relative;\n}\n.form.inline-form .input-wrapper .error-message[data-v-64924a9a] {\n position: absolute;\n left: 0;\n bottom: -25px;\n}\n.form.block-form .wrapper-inline[data-v-64924a9a] {\n display: flex;\n margin: 0 -15px;\n}\n.form.block-form .wrapper-inline .block-wrapper[data-v-64924a9a] {\n width: 100%;\n padding: 0 15px;\n}\n.form.block-form .block-wrapper[data-v-64924a9a] {\n margin-bottom: 32px;\n}\n.form.block-form .block-wrapper label[data-v-64924a9a] {\n font-size: 0.875em;\n color: rgba(27, 37, 57, 0.8);\n font-weight: 700;\n display: block;\n margin-bottom: 7px;\n text-align: left;\n}\n.form.block-form .block-wrapper[data-v-64924a9a]:last-child {\n margin-bottom: 0;\n}\n.form.block-form .button[data-v-64924a9a] {\n margin-top: 50px;\n}\n.form .inline-wrapper[data-v-64924a9a] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.form .inline-wrapper .switch-label .input-help[data-v-64924a9a] {\n padding-top: 0;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-64924a9a] {\n font-weight: 700;\n color: #1B2539;\n font-size: 1em;\n margin-bottom: 5px;\n}\n.form .input-help[data-v-64924a9a] {\n font-size: 0.75em;\n color: rgba(27, 37, 57, 0.7);\n line-height: 1.35;\n padding-top: 10px;\n display: block;\n}\n.single-line-form[data-v-64924a9a] {\n display: flex;\n}\n.single-line-form .submit-button[data-v-64924a9a] {\n margin-left: 20px;\n}\n.error-message[data-v-64924a9a] {\n font-size: 0.875em;\n color: #fd397a;\n padding-top: 5px;\n display: block;\n text-align: left;\n}\ntextarea[data-v-64924a9a] {\n width: 100%;\n}\ntextarea[data-v-64924a9a],\ninput[type="password"][data-v-64924a9a],\ninput[type="text"][data-v-64924a9a],\ninput[type="number"][data-v-64924a9a],\ninput[type="email"][data-v-64924a9a] {\n border: 1px solid transparent;\n transition: 150ms all ease;\n font-size: 1em;\n border-radius: 8px;\n padding: 13px 20px;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-weight: 700;\n outline: 0;\n width: 100%;\n box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);\n}\ntextarea.is-error[data-v-64924a9a],\ninput[type="password"].is-error[data-v-64924a9a],\ninput[type="text"].is-error[data-v-64924a9a],\ninput[type="number"].is-error[data-v-64924a9a],\ninput[type="email"].is-error[data-v-64924a9a] {\n border-color: #fd397a;\n box-shadow: 0 1px 5px rgba(253, 57, 122, 0.3);\n}\ntextarea[data-v-64924a9a]::-webkit-input-placeholder, input[type="password"][data-v-64924a9a]::-webkit-input-placeholder, input[type="text"][data-v-64924a9a]::-webkit-input-placeholder, input[type="number"][data-v-64924a9a]::-webkit-input-placeholder, input[type="email"][data-v-64924a9a]::-webkit-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-64924a9a]::-moz-placeholder, input[type="password"][data-v-64924a9a]::-moz-placeholder, input[type="text"][data-v-64924a9a]::-moz-placeholder, input[type="number"][data-v-64924a9a]::-moz-placeholder, input[type="email"][data-v-64924a9a]::-moz-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-64924a9a]:-ms-input-placeholder, input[type="password"][data-v-64924a9a]:-ms-input-placeholder, input[type="text"][data-v-64924a9a]:-ms-input-placeholder, input[type="number"][data-v-64924a9a]:-ms-input-placeholder, input[type="email"][data-v-64924a9a]:-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-64924a9a]::-ms-input-placeholder, input[type="password"][data-v-64924a9a]::-ms-input-placeholder, input[type="text"][data-v-64924a9a]::-ms-input-placeholder, input[type="number"][data-v-64924a9a]::-ms-input-placeholder, input[type="email"][data-v-64924a9a]::-ms-input-placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-64924a9a]::placeholder,\ninput[type="password"][data-v-64924a9a]::placeholder,\ninput[type="text"][data-v-64924a9a]::placeholder,\ninput[type="number"][data-v-64924a9a]::placeholder,\ninput[type="email"][data-v-64924a9a]::placeholder {\n color: rgba(27, 37, 57, 0.5);\n font-size: 0.9375em;\n}\ntextarea[data-v-64924a9a]:focus,\ninput[type="password"][data-v-64924a9a]:focus,\ninput[type="text"][data-v-64924a9a]:focus,\ninput[type="number"][data-v-64924a9a]:focus,\ninput[type="email"][data-v-64924a9a]:focus {\n border-color: #00BC7E;\n box-shadow: 0 1px 5px rgba(0, 188, 126, 0.3);\n}\ntextarea[disabled][data-v-64924a9a],\ninput[type="password"][disabled][data-v-64924a9a],\ninput[type="text"][disabled][data-v-64924a9a],\ninput[type="number"][disabled][data-v-64924a9a],\ninput[type="email"][disabled][data-v-64924a9a] {\n background: white;\n color: rgba(27, 37, 57, 0.8);\n cursor: not-allowed;\n}\n.additional-link[data-v-64924a9a] {\n font-size: 1em;\n margin-top: 50px;\n display: block;\n color: #1B2539;\n}\n.additional-link b[data-v-64924a9a], .additional-link a[data-v-64924a9a] {\n color: #00BC7E;\n cursor: pointer;\n}\n.additional-link b[data-v-64924a9a]:hover, .additional-link a[data-v-64924a9a]:hover {\n text-decoration: underline;\n}\n@media only screen and (max-width: 1024px) {\n.form[data-v-64924a9a] {\n max-width: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.form .button[data-v-64924a9a] {\n margin-top: 20px;\n width: 100%;\n margin-left: 0;\n margin-right: 0;\n}\n.form input[data-v-64924a9a], .form textarea[data-v-64924a9a] {\n width: 100%;\n min-width: 100%;\n}\n.form.block-form .block-wrapper[data-v-64924a9a] {\n display: block;\n}\n.form.block-form .block-wrapper label[data-v-64924a9a] {\n width: 100%;\n padding-right: 0;\n display: block;\n margin-bottom: 7px;\n text-align: left !important;\n font-size: 0.875em;\n padding-top: 0;\n}\n.form.block-form .button[data-v-64924a9a] {\n margin-top: 25px;\n margin-left: 0;\n margin-right: 0;\n}\n.form.inline-form[data-v-64924a9a] {\n display: block;\n}\n.form.inline-form .input-wrapper .error-message[data-v-64924a9a] {\n position: relative;\n bottom: 0;\n}\n.form .button[data-v-64924a9a] {\n padding: 14px 32px;\n}\n.single-line-form[data-v-64924a9a] {\n display: block;\n}\n.single-line-form .submit-button[data-v-64924a9a] {\n margin-left: 0;\n margin-top: 20px;\n width: 100%;\n}\ntextarea[data-v-64924a9a],\n input[type="password"][data-v-64924a9a],\n input[type="number"][data-v-64924a9a],\n input[type="text"][data-v-64924a9a],\n input[type="email"][data-v-64924a9a] {\n padding: 14px 20px;\n}\n}\n@media only screen and (max-width: 690px) {\n.form.block-form .wrapper-inline[data-v-64924a9a] {\n display: block;\n}\n}\n@media (prefers-color-scheme: dark) {\n.form .input-help[data-v-64924a9a] {\n color: #7d858c;\n}\n.form.block-form .block-wrapper label[data-v-64924a9a] {\n color: #bec6cf;\n}\n.form .inline-wrapper .switch-label .input-label[data-v-64924a9a] {\n color: #bec6cf;\n}\ntextarea[data-v-64924a9a],\n input[type="password"][data-v-64924a9a],\n input[type="text"][data-v-64924a9a],\n input[type="number"][data-v-64924a9a],\n input[type="email"][data-v-64924a9a] {\n border-color: #1e2024;\n background: #1e2024;\n color: #bec6cf;\n}\ntextarea[data-v-64924a9a]::-webkit-input-placeholder, input[type="password"][data-v-64924a9a]::-webkit-input-placeholder, input[type="text"][data-v-64924a9a]::-webkit-input-placeholder, input[type="number"][data-v-64924a9a]::-webkit-input-placeholder, input[type="email"][data-v-64924a9a]::-webkit-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-64924a9a]::-moz-placeholder, input[type="password"][data-v-64924a9a]::-moz-placeholder, input[type="text"][data-v-64924a9a]::-moz-placeholder, input[type="number"][data-v-64924a9a]::-moz-placeholder, input[type="email"][data-v-64924a9a]::-moz-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-64924a9a]:-ms-input-placeholder, input[type="password"][data-v-64924a9a]:-ms-input-placeholder, input[type="text"][data-v-64924a9a]:-ms-input-placeholder, input[type="number"][data-v-64924a9a]:-ms-input-placeholder, input[type="email"][data-v-64924a9a]:-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-64924a9a]::-ms-input-placeholder, input[type="password"][data-v-64924a9a]::-ms-input-placeholder, input[type="text"][data-v-64924a9a]::-ms-input-placeholder, input[type="number"][data-v-64924a9a]::-ms-input-placeholder, input[type="email"][data-v-64924a9a]::-ms-input-placeholder {\n color: #7d858c;\n}\ntextarea[data-v-64924a9a]::placeholder,\n input[type="password"][data-v-64924a9a]::placeholder,\n input[type="text"][data-v-64924a9a]::placeholder,\n input[type="number"][data-v-64924a9a]::placeholder,\n input[type="email"][data-v-64924a9a]::placeholder {\n color: #7d858c;\n}\ntextarea[disabled][data-v-64924a9a],\n input[type="password"][disabled][data-v-64924a9a],\n input[type="text"][disabled][data-v-64924a9a],\n input[type="number"][disabled][data-v-64924a9a],\n input[type="email"][disabled][data-v-64924a9a] {\n background: #1e2024;\n color: #7d858c;\n}\n}\n.input-wrapper.password[data-v-64924a9a] {\n margin-top: -10px;\n}\n.item-thumbnail[data-v-64924a9a] {\n margin-bottom: 20px;\n}\n',""])},function(t,e,n){"use strict";var a=n(157);n.n(a).a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,".menu-bar[data-v-49587d86] {\n background: #f4f5f6;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n padding-top: 25px;\n display: grid;\n flex: 0 0 72px;\n}\n.icon-navigation[data-v-49587d86] {\n text-align: center;\n}\n.icon-navigation.menu[data-v-49587d86] {\n margin-bottom: auto;\n}\n.icon-navigation.logout[data-v-49587d86] {\n margin-top: auto;\n}\n.icon-navigation .icon-navigation-item[data-v-49587d86] {\n display: block;\n margin-bottom: 10px;\n}\n.icon-navigation .icon-navigation-item.user[data-v-49587d86] {\n margin-bottom: 20px;\n display: block;\n}\n.icon-navigation .button-icon[data-v-49587d86] {\n cursor: pointer;\n border-radius: 4px;\n padding: 12px;\n display: inline-block;\n line-height: 0;\n transition: 150ms all ease;\n}\n.icon-navigation .button-icon[data-v-49587d86]:hover {\n background: #e6e8eb;\n}\n.icon-navigation .button-icon path[data-v-49587d86], .icon-navigation .button-icon line[data-v-49587d86], .icon-navigation .button-icon polyline[data-v-49587d86], .icon-navigation .button-icon rect[data-v-49587d86], .icon-navigation .button-icon circle[data-v-49587d86] {\n transition: 150ms all ease;\n stroke: black;\n}\n.icon-navigation .router-link-active.home .button-icon[data-v-49587d86],\n.icon-navigation .is-active.home .button-icon[data-v-49587d86] {\n background: rgba(0, 188, 126, 0.1);\n}\n.icon-navigation .router-link-active.home .button-icon path[data-v-49587d86], .icon-navigation .router-link-active.home .button-icon line[data-v-49587d86], .icon-navigation .router-link-active.home .button-icon polyline[data-v-49587d86], .icon-navigation .router-link-active.home .button-icon rect[data-v-49587d86], .icon-navigation .router-link-active.home .button-icon circle[data-v-49587d86],\n.icon-navigation .is-active.home .button-icon path[data-v-49587d86],\n.icon-navigation .is-active.home .button-icon line[data-v-49587d86],\n.icon-navigation .is-active.home .button-icon polyline[data-v-49587d86],\n.icon-navigation .is-active.home .button-icon rect[data-v-49587d86],\n.icon-navigation .is-active.home .button-icon circle[data-v-49587d86] {\n stroke: #00BC7E;\n}\n.icon-navigation .router-link-active.shared .button-icon[data-v-49587d86],\n.icon-navigation .is-active.shared .button-icon[data-v-49587d86] {\n background: rgba(255, 189, 45, 0.1);\n}\n.icon-navigation .router-link-active.shared .button-icon path[data-v-49587d86], .icon-navigation .router-link-active.shared .button-icon line[data-v-49587d86], .icon-navigation .router-link-active.shared .button-icon polyline[data-v-49587d86], .icon-navigation .router-link-active.shared .button-icon rect[data-v-49587d86], .icon-navigation .router-link-active.shared .button-icon circle[data-v-49587d86],\n.icon-navigation .is-active.shared .button-icon path[data-v-49587d86],\n.icon-navigation .is-active.shared .button-icon line[data-v-49587d86],\n.icon-navigation .is-active.shared .button-icon polyline[data-v-49587d86],\n.icon-navigation .is-active.shared .button-icon rect[data-v-49587d86],\n.icon-navigation .is-active.shared .button-icon circle[data-v-49587d86] {\n stroke: #FFBD2D;\n}\n.icon-navigation .router-link-active.trash .button-icon[data-v-49587d86],\n.icon-navigation .is-active.trash .button-icon[data-v-49587d86] {\n background: rgba(254, 96, 87, 0.1);\n}\n.icon-navigation .router-link-active.trash .button-icon path[data-v-49587d86], .icon-navigation .router-link-active.trash .button-icon line[data-v-49587d86], .icon-navigation .router-link-active.trash .button-icon polyline[data-v-49587d86], .icon-navigation .router-link-active.trash .button-icon rect[data-v-49587d86], .icon-navigation .router-link-active.trash .button-icon circle[data-v-49587d86],\n.icon-navigation .is-active.trash .button-icon path[data-v-49587d86],\n.icon-navigation .is-active.trash .button-icon line[data-v-49587d86],\n.icon-navigation .is-active.trash .button-icon polyline[data-v-49587d86],\n.icon-navigation .is-active.trash .button-icon rect[data-v-49587d86],\n.icon-navigation .is-active.trash .button-icon circle[data-v-49587d86] {\n stroke: #FE6057;\n}\n.icon-navigation .router-link-active.settings .button-icon[data-v-49587d86],\n.icon-navigation .is-active.settings .button-icon[data-v-49587d86] {\n background: rgba(157, 102, 254, 0.1);\n}\n.icon-navigation .router-link-active.settings .button-icon path[data-v-49587d86], .icon-navigation .router-link-active.settings .button-icon line[data-v-49587d86], .icon-navigation .router-link-active.settings .button-icon polyline[data-v-49587d86], .icon-navigation .router-link-active.settings .button-icon rect[data-v-49587d86], .icon-navigation .router-link-active.settings .button-icon circle[data-v-49587d86],\n.icon-navigation .is-active.settings .button-icon path[data-v-49587d86],\n.icon-navigation .is-active.settings .button-icon line[data-v-49587d86],\n.icon-navigation .is-active.settings .button-icon polyline[data-v-49587d86],\n.icon-navigation .is-active.settings .button-icon rect[data-v-49587d86],\n.icon-navigation .is-active.settings .button-icon circle[data-v-49587d86] {\n stroke: #9D66FE;\n}\n.icon-navigation .router-link-active.users .button-icon[data-v-49587d86],\n.icon-navigation .is-active.users .button-icon[data-v-49587d86] {\n background: rgba(254, 102, 161, 0.1);\n}\n.icon-navigation .router-link-active.users .button-icon path[data-v-49587d86], .icon-navigation .router-link-active.users .button-icon line[data-v-49587d86], .icon-navigation .router-link-active.users .button-icon polyline[data-v-49587d86], .icon-navigation .router-link-active.users .button-icon rect[data-v-49587d86], .icon-navigation .router-link-active.users .button-icon circle[data-v-49587d86],\n.icon-navigation .is-active.users .button-icon path[data-v-49587d86],\n.icon-navigation .is-active.users .button-icon line[data-v-49587d86],\n.icon-navigation .is-active.users .button-icon polyline[data-v-49587d86],\n.icon-navigation .is-active.users .button-icon rect[data-v-49587d86],\n.icon-navigation .is-active.users .button-icon circle[data-v-49587d86] {\n stroke: #FE66A1;\n}\n@media only screen and (max-width: 1024px) {\n.menu-bar[data-v-49587d86] {\n flex: 0 0 60px;\n}\n.icon-navigation .icon-navigation-item[data-v-49587d86] {\n margin-bottom: 15px;\n}\n.icon-navigation .button-icon[data-v-49587d86] {\n padding: 8px;\n}\n}\n@media only screen and (max-width: 690px) {\n.menu-bar[data-v-49587d86] {\n display: none;\n}\n}\n@media (prefers-color-scheme: dark) {\n.icon-navigation .button-icon[data-v-49587d86]:hover {\n background: #111314;\n}\n.icon-navigation .button-icon path[data-v-49587d86], .icon-navigation .button-icon line[data-v-49587d86], .icon-navigation .button-icon polyline[data-v-49587d86], .icon-navigation .button-icon rect[data-v-49587d86], .icon-navigation .button-icon circle[data-v-49587d86] {\n stroke: #bec6cf;\n}\n.menu-bar[data-v-49587d86] {\n background: #1e2024;\n}\n}\n",""])},function(t,e,n){"use strict";var a=n(158);n.n(a).a},function(t,e,n){(e=t.exports=n(2)(!1)).push([t.i,"@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800;900&display=swap);",""]),e.push([t.i,"[v-cloak],\n[v-cloak] > * {\n display: none;\n}\n* {\n outline: 0;\n margin: 0;\n padding: 0;\n font-family: 'Nunito', sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n box-sizing: border-box;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n font-size: 16px;\n text-decoration: none;\n color: #1B2539;\n}\n#auth {\n width: 100%;\n height: 100%;\n}\n#vue-file-manager {\n position: absolute;\n width: 100%;\n height: 100%;\n overflow-y: auto;\n scroll-behavior: smooth;\n}\n@media only screen and (max-width: 690px) {\n.is-scaled-down {\n transform: scale(0.95);\n}\n}\n@media (prefers-color-scheme: dark) {\n* {\n color: #bec6cf;\n}\nbody, html {\n background: #111314;\n color: #bec6cf;\n}\nbody img, html img {\n opacity: .95;\n}\n}\n",""])},function(t,e,n){"use strict";n.r(e);var a=n(8),i=n.n(a);function r(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function o(t,e){return r(t)&&t._isRouter&&(null==e||t.type===e)}function s(t,e){for(var n in e)t[n]=e[n];return t}var l={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,a=e.children,i=e.parent,r=e.data;r.routerView=!0;for(var o=i.$createElement,l=n.name,p=i.$route,c=i._routerViewCache||(i._routerViewCache={}),u=0,f=!1;i&&i._routerRoot!==i;){var m=i.$vnode?i.$vnode.data:{};m.routerView&&u++,m.keepAlive&&i._directInactive&&i._inactive&&(f=!0),i=i.$parent}if(r.routerViewDepth=u,f){var v=c[l],b=v&&v.component;return b?(v.configProps&&d(b,r,v.route,v.configProps),o(b,r,a)):o()}var h=p.matched[u],g=h&&h.components[l];if(!h||!g)return c[l]=null,o();c[l]={component:g},r.registerRouteInstance=function(t,e){var n=h.instances[l];(e&&n!==t||!e&&n===t)&&(h.instances[l]=e)},(r.hook||(r.hook={})).prepatch=function(t,e){h.instances[l]=e.componentInstance},r.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==h.instances[l]&&(h.instances[l]=t.componentInstance)};var y=h.props&&h.props[l];return y&&(s(c[l],{route:p,configProps:y}),d(g,r,p,y)),o(g,r,a)}};function d(t,e,n,a){var i=e.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(n,a);if(i){i=e.props=s({},i);var r=e.attrs=e.attrs||{};for(var o in i)t.props&&o in t.props||(r[o]=i[o],delete i[o])}}var p=/[!'()*]/g,c=function(t){return"%"+t.charCodeAt(0).toString(16)},u=/%2C/g,f=function(t){return encodeURIComponent(t).replace(p,c).replace(u,",")},m=decodeURIComponent;function v(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach((function(t){var n=t.replace(/\+/g," ").split("="),a=m(n.shift()),i=n.length>0?m(n.join("=")):null;void 0===e[a]?e[a]=i:Array.isArray(e[a])?e[a].push(i):e[a]=[e[a],i]})),e):e}function b(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return"";if(null===n)return f(e);if(Array.isArray(n)){var a=[];return n.forEach((function(t){void 0!==t&&(null===t?a.push(f(e)):a.push(f(e)+"="+f(t)))})),a.join("&")}return f(e)+"="+f(n)})).filter((function(t){return t.length>0})).join("&"):null;return e?"?"+e:""}var h=/\/?$/;function g(t,e,n,a){var i=a&&a.options.stringifyQuery,r=e.query||{};try{r=y(r)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:r,params:e.params||{},fullPath:w(e,i),matched:t?x(t):[]};return n&&(o.redirectedFrom=w(n,i)),Object.freeze(o)}function y(t){if(Array.isArray(t))return t.map(y);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=y(t[n]);return e}return t}var _=g(null,{path:"/"});function x(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function w(t,e){var n=t.path,a=t.query;void 0===a&&(a={});var i=t.hash;return void 0===i&&(i=""),(n||"/")+(e||b)(a)+i}function k(t,e){return e===_?t===e:!!e&&(t.path&&e.path?t.path.replace(h,"")===e.path.replace(h,"")&&t.hash===e.hash&&C(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&C(t.query,e.query)&&C(t.params,e.params)))}function C(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),a=Object.keys(e);return n.length===a.length&&n.every((function(n){var a=t[n],i=e[n];return"object"==typeof a&&"object"==typeof i?C(a,i):String(a)===String(i)}))}function z(t,e,n){var a=t.charAt(0);if("/"===a)return t;if("?"===a||"#"===a)return e+t;var i=e.split("/");n&&i[i.length-1]||i.pop();for(var r=t.replace(/^\//,"").split("/"),o=0;o=0&&(e=t.slice(a),t=t.slice(0,a));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}(i.path||""),p=e&&e.path||"/",c=d.path?z(d.path,p,n||i.append):p,u=function(t,e,n){void 0===e&&(e={});var a,i=n||v;try{a=i(t||"")}catch(t){a={}}for(var r in e)a[r]=e[r];return a}(d.query,i.query,a&&a.options.parseQuery),f=i.hash||d.hash;return f&&"#"!==f.charAt(0)&&(f="#"+f),{_normalized:!0,path:c,query:u,hash:f}}var G,W=function(){},K={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:[String,Array],default:"click"}},render:function(t){var e=this,n=this.$router,a=this.$route,i=n.resolve(this.to,a,this.append),r=i.location,o=i.route,l=i.href,d={},p=n.options.linkActiveClass,c=n.options.linkExactActiveClass,u=null==p?"router-link-active":p,f=null==c?"router-link-exact-active":c,m=null==this.activeClass?u:this.activeClass,v=null==this.exactActiveClass?f:this.exactActiveClass,b=o.redirectedFrom?g(null,H(o.redirectedFrom),null,n):o;d[v]=k(a,b),d[m]=this.exact?d[v]:function(t,e){return 0===t.path.replace(h,"/").indexOf(e.path.replace(h,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(a,b);var y=d[v]?this.ariaCurrentValue:null,_=function(t){Y(t)&&(e.replace?n.replace(r,W):n.push(r,W))},x={click:Y};Array.isArray(this.event)?this.event.forEach((function(t){x[t]=_})):x[this.event]=_;var w={class:d},C=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:l,route:o,navigate:_,isActive:d[m],isExactActive:d[v]});if(C){if(1===C.length)return C[0];if(C.length>1||!C.length)return 0===C.length?t():t("span",{},C)}if("a"===this.tag)w.on=x,w.attrs={href:l,"aria-current":y};else{var z=function t(e){var n;if(e)for(var a=0;a-1&&(s.params[u]=n.params[u]);return s.path=q(p.path,s.params),l(p,s,o)}if(s.path){s.params={};for(var f=0;f=t.length?n():t[i]?e(t[i],(function(){a(i+1)})):a(i+1)};a(0)}function xt(t){return function(e,n,a){var i=!1,o=0,s=null;wt(t,(function(t,e,n,l){if("function"==typeof t&&void 0===t.cid){i=!0,o++;var d,p=zt((function(e){var i;((i=e).__esModule||Ct&&"Module"===i[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:G.extend(e),n.components[l]=e,--o<=0&&a()})),c=zt((function(t){var e="Failed to resolve async component "+l+": "+t;s||(s=r(t)?t:new Error(e),a(s))}));try{d=t(p,c)}catch(t){c(t)}if(d)if("function"==typeof d.then)d.then(p,c);else{var u=d.component;u&&"function"==typeof u.then&&u.then(p,c)}}})),i||a()}}function wt(t,e){return kt(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function kt(t){return Array.prototype.concat.apply([],t)}var Ct="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function zt(t){var e=!1;return function(){for(var n=[],a=arguments.length;a--;)n[a]=arguments[a];if(!e)return e=!0,t.apply(this,n)}}var Pt=1,Ot=2,St=3,$t=4;function It(t,e){return Et(t,e,Pt,'Redirected when going from "'+t.fullPath+'" to "'+function(t){if("string"==typeof t)return t;if("path"in t)return t.path;var e={};return jt.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}(e)+'" via a navigation guard.')}function At(t,e){return Et(t,e,St,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Et(t,e,n,a){var i=new Error(a);return i._isRouter=!0,i.from=t,i.to=e,i.type=n,i}var jt=["params","query","hash"];var Dt=function(t,e){this.router=t,this.base=function(t){if(!t)if(Z){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=_,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function Tt(t,e,n,a){var i=wt(t,(function(t,a,i,r){var o=function(t,e){"function"!=typeof t&&(t=G.extend(t));return t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map((function(t){return n(t,a,i,r)})):n(o,a,i,r)}));return kt(a?i.reverse():i)}function Lt(t,e){if(e)return function(){return t.apply(e,arguments)}}Dt.prototype.listen=function(t){this.cb=t},Dt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},Dt.prototype.onError=function(t){this.errorCbs.push(t)},Dt.prototype.transitionTo=function(t,e,n){var a=this,i=this.router.match(t,this.current);this.confirmTransition(i,(function(){var t=a.current;a.updateRoute(i),e&&e(i),a.ensureURL(),a.router.afterHooks.forEach((function(e){e&&e(i,t)})),a.ready||(a.ready=!0,a.readyCbs.forEach((function(t){t(i)})))}),(function(t){n&&n(t),t&&!a.ready&&(a.ready=!0,o(t,Pt)?a.readyCbs.forEach((function(t){t(i)})):a.readyErrorCbs.forEach((function(e){e(t)})))}))},Dt.prototype.confirmTransition=function(t,e,n){var a,i=this,s=this.current,l=function(t){!o(t)&&r(t)&&(i.errorCbs.length?i.errorCbs.forEach((function(e){e(t)})):console.error(t)),n&&n(t)},d=t.matched.length-1,p=s.matched.length-1;if(k(t,s)&&d===p&&t.matched[d]===s.matched[p])return this.ensureURL(),l(Et(a=s,t,$t,'Avoided redundant navigation to current location: "'+a.fullPath+'".'));var c=function(t,e){var n,a=Math.max(t.length,e.length);for(n=0;n0)){var e=this.router,n=e.options.scrollBehavior,a=ht&&n;a&&this.listeners.push(st());var i=function(){var n=t.current,i=Nt(t.base);t.current===_&&i===t._startLocation||t.transitionTo(i,(function(t){a&<(e,t,n,!0)}))};window.addEventListener("popstate",i),this.listeners.push((function(){window.removeEventListener("popstate",i)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var a=this,i=this.current;this.transitionTo(t,(function(t){gt(P(a.base+t.fullPath)),lt(a.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var a=this,i=this.current;this.transitionTo(t,(function(t){yt(P(a.base+t.fullPath)),lt(a.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(Nt(this.base)!==this.current.fullPath){var e=P(this.base+this.current.fullPath);t?gt(e):yt(e)}},e.prototype.getCurrentLocation=function(){return Nt(this.base)},e}(Dt);function Nt(t){var e=decodeURI(window.location.pathname);return t&&0===e.toLowerCase().indexOf(t.toLowerCase())&&(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var Ft=function(t){function e(e,n,a){t.call(this,e,n),a&&function(t){var e=Nt(t);if(!/^\/#/.test(e))return window.location.replace(P(t+"/#"+e)),!0}(this.base)||Mt()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router.options.scrollBehavior,n=ht&&e;n&&this.listeners.push(st());var a=function(){var e=t.current;Mt()&&t.transitionTo(Rt(),(function(a){n&<(t.router,a,e,!0),ht||qt(a.fullPath)}))},i=ht?"popstate":"hashchange";window.addEventListener(i,a),this.listeners.push((function(){window.removeEventListener(i,a)}))}},e.prototype.push=function(t,e,n){var a=this,i=this.current;this.transitionTo(t,(function(t){Ut(t.fullPath),lt(a.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var a=this,i=this.current;this.transitionTo(t,(function(t){qt(t.fullPath),lt(a.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;Rt()!==e&&(t?Ut(e):qt(e))},e.prototype.getCurrentLocation=function(){return Rt()},e}(Dt);function Mt(){var t=Rt();return"/"===t.charAt(0)||(qt("/"+t),!1)}function Rt(){var t=window.location.href,e=t.indexOf("#");if(e<0)return"";var n=(t=t.slice(e+1)).indexOf("?");if(n<0){var a=t.indexOf("#");t=a>-1?decodeURI(t.slice(0,a))+t.slice(a):decodeURI(t)}else t=decodeURI(t.slice(0,n))+t.slice(n);return t}function Vt(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function Ut(t){ht?gt(Vt(t)):window.location.hash=t}function qt(t){ht?yt(Vt(t)):window.location.replace(Vt(t))}var Ht=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var a=this;this.transitionTo(t,(function(t){a.stack=a.stack.slice(0,a.index+1).concat(t),a.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var a=this;this.transitionTo(t,(function(t){a.stack=a.stack.slice(0,a.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var a=this.stack[n];this.confirmTransition(a,(function(){e.index=n,e.updateRoute(a)}),(function(t){o(t,$t)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(Dt),Gt=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Q(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!ht&&!1!==t.fallback,this.fallback&&(e="hash"),Z||(e="abstract"),this.mode=e,e){case"history":this.history=new Bt(this,t.base);break;case"hash":this.history=new Ft(this,t.base,this.fallback);break;case"abstract":this.history=new Ht(this,t.base);break;default:0}},Wt={currentRoute:{configurable:!0}};function Kt(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}Gt.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Wt.currentRoute.get=function(){return this.history&&this.history.current},Gt.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardownListeners()})),!this.app){this.app=t;var n=this.history;if(n instanceof Bt||n instanceof Ft){var a=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),a,a)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},Gt.prototype.beforeEach=function(t){return Kt(this.beforeHooks,t)},Gt.prototype.beforeResolve=function(t){return Kt(this.resolveHooks,t)},Gt.prototype.afterEach=function(t){return Kt(this.afterHooks,t)},Gt.prototype.onReady=function(t,e){this.history.onReady(t,e)},Gt.prototype.onError=function(t){this.history.onError(t)},Gt.prototype.push=function(t,e,n){var a=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){a.history.push(t,e,n)}));this.history.push(t,e,n)},Gt.prototype.replace=function(t,e,n){var a=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){a.history.replace(t,e,n)}));this.history.replace(t,e,n)},Gt.prototype.go=function(t){this.history.go(t)},Gt.prototype.back=function(){this.go(-1)},Gt.prototype.forward=function(){this.go(1)},Gt.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},Gt.prototype.resolve=function(t,e,n){var a=H(t,e=e||this.history.current,n,this),i=this.match(a,e),r=i.redirectedFrom||i.fullPath;return{location:a,route:i,href:function(t,e,n){var a="hash"===n?"#"+e:e;return t?P(t+"/"+a):a}(this.history.base,r,this.mode),normalizedTo:a,resolved:i}},Gt.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==_&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(Gt.prototype,Wt),Gt.install=function t(e){if(!t.installed||G!==e){t.installed=!0,G=e;var n=function(t){return void 0!==t},a=function(t,e){var a=t.$options._parentVnode;n(a)&&n(a=a.data)&&n(a=a.registerRouteInstance)&&a(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,a(this,this)},destroyed:function(){a(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",l),e.component("RouterLink",K);var i=e.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}},Gt.version="3.3.4",Z&&window.Vue&&window.Vue.use(Gt);var Yt=Gt,Zt=["style","currency","currencyDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","localeMatcher","formatMatcher","unit"];function Jt(t,e){"undefined"!=typeof console&&(console.warn("[vue-i18n] "+t),e&&console.warn(e.stack))}var Xt=Array.isArray;function Qt(t){return null!==t&&"object"==typeof t}function te(t){return"string"==typeof t}var ee=Object.prototype.toString;function ne(t){return"[object Object]"===ee.call(t)}function ae(t){return null==t}function ie(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var n=null,a=null;return 1===t.length?Qt(t[0])||Array.isArray(t[0])?a=t[0]:"string"==typeof t[0]&&(n=t[0]):2===t.length&&("string"==typeof t[0]&&(n=t[0]),(Qt(t[1])||Array.isArray(t[1]))&&(a=t[1])),{locale:n,params:a}}function re(t){return JSON.parse(JSON.stringify(t))}function oe(t,e){return!!~t.indexOf(e)}var se=Object.prototype.hasOwnProperty;function le(t,e){return se.call(t,e)}function de(t){for(var e=arguments,n=Object(t),a=1;a0;)e[n]=arguments[n+1];var a=this.$i18n;return a._t.apply(a,[t,a.locale,a._getMessages(),this].concat(e))},e.prototype.$tc=function(t,e){for(var n=[],a=arguments.length-2;a-- >0;)n[a]=arguments[a+2];var i=this.$i18n;return i._tc.apply(i,[t,i.locale,i._getMessages(),this,e].concat(n))},e.prototype.$te=function(t,e){var n=this.$i18n;return n._te(t,n.locale,n._getMessages(),e)},e.prototype.$d=function(t){for(var e,n=[],a=arguments.length-1;a-- >0;)n[a]=arguments[a+1];return(e=this.$i18n).d.apply(e,[t].concat(n))},e.prototype.$n=function(t){for(var e,n=[],a=arguments.length-1;a-- >0;)n[a]=arguments[a+1];return(e=this.$i18n).n.apply(e,[t].concat(n))},be.mixin(ce),be.directive("t",{bind:ge,update:ye,unbind:_e}),be.component(ue.name,ue),be.component(he.name,he),be.config.optionMergeStrategies.i18n=function(t,e){return void 0===e?t:e}}var ze=function(){this._caches=Object.create(null)};ze.prototype.interpolate=function(t,e){if(!e)return[t];var n=this._caches[t];return n||(n=function(t){var e=[],n=0,a="";for(;n0)c--,p=4,u[0]();else{if(c=0,void 0===n)return!1;if(!1===(n=Ae(n)))return!1;u[1]()}};null!==p;)if(d++,"\\"!==(e=t[d])||!f()){if(i=Ie(e),8===(r=(s=Se[p])[i]||s.else||8))return;if(p=r[0],(o=u[r[1]])&&(a=void 0===(a=r[2])?e:a,!1===o()))return;if(7===p)return l}}(t))&&(this._cache[t]=e),e||[]},Ee.prototype.getPathValue=function(t,e){if(!Qt(t))return null;var n=this.parsePath(e);if(0===n.length)return null;for(var a=n.length,i=t,r=0;r/,Te=/(?:@(?:\.[a-z]+)?:(?:[\w\-_|.]+|\([\w\-_|.]+\)))/g,Le=/^@(?:\.([a-z]+))?:/,Be=/[()]/g,Ne={upper:function(t){return t.toLocaleUpperCase()},lower:function(t){return t.toLocaleLowerCase()},capitalize:function(t){return""+t.charAt(0).toLocaleUpperCase()+t.substr(1)}},Fe=new ze,Me=function(t){var e=this;void 0===t&&(t={}),!be&&"undefined"!=typeof window&&window.Vue&&Ce(window.Vue);var n=t.locale||"en-US",a=!1!==t.fallbackLocale&&(t.fallbackLocale||"en-US"),i=t.messages||{},r=t.dateTimeFormats||{},o=t.numberFormats||{};this._vm=null,this._formatter=t.formatter||Fe,this._modifiers=t.modifiers||{},this._missing=t.missing||null,this._root=t.root||null,this._sync=void 0===t.sync||!!t.sync,this._fallbackRoot=void 0===t.fallbackRoot||!!t.fallbackRoot,this._formatFallbackMessages=void 0!==t.formatFallbackMessages&&!!t.formatFallbackMessages,this._silentTranslationWarn=void 0!==t.silentTranslationWarn&&t.silentTranslationWarn,this._silentFallbackWarn=void 0!==t.silentFallbackWarn&&!!t.silentFallbackWarn,this._dateTimeFormatters={},this._numberFormatters={},this._path=new Ee,this._dataListeners=[],this._componentInstanceCreatedListener=t.componentInstanceCreatedListener||null,this._preserveDirectiveContent=void 0!==t.preserveDirectiveContent&&!!t.preserveDirectiveContent,this.pluralizationRules=t.pluralizationRules||{},this._warnHtmlInMessage=t.warnHtmlInMessage||"off",this._postTranslation=t.postTranslation||null,this.getChoiceIndex=function(t,n){var a=Object.getPrototypeOf(e);if(a&&a.getChoiceIndex)return a.getChoiceIndex.call(e,t,n);var i,r;return e.locale in e.pluralizationRules?e.pluralizationRules[e.locale].apply(e,[t,n]):(i=t,r=n,i=Math.abs(i),2===r?i?i>1?1:0:1:i?Math.min(i,2):0)},this._exist=function(t,n){return!(!t||!n)&&(!ae(e._path.getPathValue(t,n))||!!t[n])},"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||Object.keys(i).forEach((function(t){e._checkLocaleMessage(t,e._warnHtmlInMessage,i[t])})),this._initVM({locale:n,fallbackLocale:a,messages:i,dateTimeFormats:r,numberFormats:o})},Re={vm:{configurable:!0},messages:{configurable:!0},dateTimeFormats:{configurable:!0},numberFormats:{configurable:!0},availableLocales:{configurable:!0},locale:{configurable:!0},fallbackLocale:{configurable:!0},formatFallbackMessages:{configurable:!0},missing:{configurable:!0},formatter:{configurable:!0},silentTranslationWarn:{configurable:!0},silentFallbackWarn:{configurable:!0},preserveDirectiveContent:{configurable:!0},warnHtmlInMessage:{configurable:!0},postTranslation:{configurable:!0}};Me.prototype._checkLocaleMessage=function(t,e,n){var a=function(t,e,n,i){if(ne(n))Object.keys(n).forEach((function(r){var o=n[r];ne(o)?(i.push(r),i.push("."),a(t,e,o,i),i.pop(),i.pop()):(i.push(r),a(t,e,o,i),i.pop())}));else if(Array.isArray(n))n.forEach((function(n,r){ne(n)?(i.push("["+r+"]"),i.push("."),a(t,e,n,i),i.pop(),i.pop()):(i.push("["+r+"]"),a(t,e,n,i),i.pop())}));else if(te(n)){if(De.test(n)){var r="Detected HTML in message '"+n+"' of keypath '"+i.join("")+"' at '"+e+"'. Consider component interpolation with '' to avoid XSS. See https://bit.ly/2ZqJzkp";"warn"===t?Jt(r):"error"===t&&function(t,e){"undefined"!=typeof console&&(console.error("[vue-i18n] "+t),e&&console.error(e.stack))}(r)}}};a(e,t,n,[])},Me.prototype._initVM=function(t){var e=be.config.silent;be.config.silent=!0,this._vm=new be({data:t}),be.config.silent=e},Me.prototype.destroyVM=function(){this._vm.$destroy()},Me.prototype.subscribeDataChanging=function(t){this._dataListeners.push(t)},Me.prototype.unsubscribeDataChanging=function(t){!function(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)t.splice(n,1)}}(this._dataListeners,t)},Me.prototype.watchI18nData=function(){var t=this;return this._vm.$watch("$data",(function(){for(var e=t._dataListeners.length;e--;)be.nextTick((function(){t._dataListeners[e]&&t._dataListeners[e].$forceUpdate()}))}),{deep:!0})},Me.prototype.watchLocale=function(){if(!this._sync||!this._root)return null;var t=this._vm;return this._root.$i18n.vm.$watch("locale",(function(e){t.$set(t,"locale",e),t.$forceUpdate()}),{immediate:!0})},Me.prototype.onComponentInstanceCreated=function(t){this._componentInstanceCreatedListener&&this._componentInstanceCreatedListener(t,this)},Re.vm.get=function(){return this._vm},Re.messages.get=function(){return re(this._getMessages())},Re.dateTimeFormats.get=function(){return re(this._getDateTimeFormats())},Re.numberFormats.get=function(){return re(this._getNumberFormats())},Re.availableLocales.get=function(){return Object.keys(this.messages).sort()},Re.locale.get=function(){return this._vm.locale},Re.locale.set=function(t){this._vm.$set(this._vm,"locale",t)},Re.fallbackLocale.get=function(){return this._vm.fallbackLocale},Re.fallbackLocale.set=function(t){this._localeChainCache={},this._vm.$set(this._vm,"fallbackLocale",t)},Re.formatFallbackMessages.get=function(){return this._formatFallbackMessages},Re.formatFallbackMessages.set=function(t){this._formatFallbackMessages=t},Re.missing.get=function(){return this._missing},Re.missing.set=function(t){this._missing=t},Re.formatter.get=function(){return this._formatter},Re.formatter.set=function(t){this._formatter=t},Re.silentTranslationWarn.get=function(){return this._silentTranslationWarn},Re.silentTranslationWarn.set=function(t){this._silentTranslationWarn=t},Re.silentFallbackWarn.get=function(){return this._silentFallbackWarn},Re.silentFallbackWarn.set=function(t){this._silentFallbackWarn=t},Re.preserveDirectiveContent.get=function(){return this._preserveDirectiveContent},Re.preserveDirectiveContent.set=function(t){this._preserveDirectiveContent=t},Re.warnHtmlInMessage.get=function(){return this._warnHtmlInMessage},Re.warnHtmlInMessage.set=function(t){var e=this,n=this._warnHtmlInMessage;if(this._warnHtmlInMessage=t,n!==t&&("warn"===t||"error"===t)){var a=this._getMessages();Object.keys(a).forEach((function(t){e._checkLocaleMessage(t,e._warnHtmlInMessage,a[t])}))}},Re.postTranslation.get=function(){return this._postTranslation},Re.postTranslation.set=function(t){this._postTranslation=t},Me.prototype._getMessages=function(){return this._vm.messages},Me.prototype._getDateTimeFormats=function(){return this._vm.dateTimeFormats},Me.prototype._getNumberFormats=function(){return this._vm.numberFormats},Me.prototype._warnDefault=function(t,e,n,a,i,r){if(!ae(n))return n;if(this._missing){var o=this._missing.apply(null,[t,e,a,i]);if(te(o))return o}else 0;if(this._formatFallbackMessages){var s=ie.apply(void 0,i);return this._render(e,r,s.params,e)}return e},Me.prototype._isFallbackRoot=function(t){return!t&&!ae(this._root)&&this._fallbackRoot},Me.prototype._isSilentFallbackWarn=function(t){return this._silentFallbackWarn instanceof RegExp?this._silentFallbackWarn.test(t):this._silentFallbackWarn},Me.prototype._isSilentFallback=function(t,e){return this._isSilentFallbackWarn(e)&&(this._isFallbackRoot()||t!==this.fallbackLocale)},Me.prototype._isSilentTranslationWarn=function(t){return this._silentTranslationWarn instanceof RegExp?this._silentTranslationWarn.test(t):this._silentTranslationWarn},Me.prototype._interpolate=function(t,e,n,a,i,r,o){if(!e)return null;var s,l=this._path.getPathValue(e,n);if(Array.isArray(l)||ne(l))return l;if(ae(l)){if(!ne(e))return null;if(!te(s=e[n]))return null}else{if(!te(l))return null;s=l}return(s.indexOf("@:")>=0||s.indexOf("@.")>=0)&&(s=this._link(t,e,s,a,"raw",r,o)),this._render(s,i,r,n)},Me.prototype._link=function(t,e,n,a,i,r,o){var s=n,l=s.match(Te);for(var d in l)if(l.hasOwnProperty(d)){var p=l[d],c=p.match(Le),u=c[0],f=c[1],m=p.replace(u,"").replace(Be,"");if(oe(o,m))return s;o.push(m);var v=this._interpolate(t,e,m,a,"raw"===i?"string":i,"raw"===i?void 0:r,o);if(this._isFallbackRoot(v)){if(!this._root)throw Error("unexpected error");var b=this._root.$i18n;v=b._translate(b._getMessages(),b.locale,b.fallbackLocale,m,a,i,r)}v=this._warnDefault(t,m,v,a,Array.isArray(r)?r:[r],i),this._modifiers.hasOwnProperty(f)?v=this._modifiers[f](v):Ne.hasOwnProperty(f)&&(v=Ne[f](v)),o.pop(),s=v?s.replace(p,v):s}return s},Me.prototype._render=function(t,e,n,a){var i=this._formatter.interpolate(t,n,a);return i||(i=Fe.interpolate(t,n,a)),"string"!==e||te(i)?i:i.join("")},Me.prototype._appendItemToChain=function(t,e,n){var a=!1;return oe(t,e)||(a=!0,e&&(a="!"!==e[e.length-1],e=e.replace(/!/g,""),t.push(e),n&&n[e]&&(a=n[e]))),a},Me.prototype._appendLocaleToChain=function(t,e,n){var a,i=e.split("-");do{var r=i.join("-");a=this._appendItemToChain(t,r,n),i.splice(-1,1)}while(i.length&&!0===a);return a},Me.prototype._appendBlockToChain=function(t,e,n){for(var a=!0,i=0;i0;)r[o]=arguments[o+4];if(!t)return"";var s=ie.apply(void 0,r),l=s.locale||e,d=this._translate(n,l,this.fallbackLocale,t,a,"string",s.params);if(this._isFallbackRoot(d)){if(!this._root)throw Error("unexpected error");return(i=this._root).$t.apply(i,[t].concat(r))}return d=this._warnDefault(l,t,d,a,r,"string"),this._postTranslation&&null!=d&&(d=this._postTranslation(d,t)),d},Me.prototype.t=function(t){for(var e,n=[],a=arguments.length-1;a-- >0;)n[a]=arguments[a+1];return(e=this)._t.apply(e,[t,this.locale,this._getMessages(),null].concat(n))},Me.prototype._i=function(t,e,n,a,i){var r=this._translate(n,e,this.fallbackLocale,t,a,"raw",i);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.$i18n.i(t,e,i)}return this._warnDefault(e,t,r,a,[i],"raw")},Me.prototype.i=function(t,e,n){return t?(te(e)||(e=this.locale),this._i(t,e,this._getMessages(),null,n)):""},Me.prototype._tc=function(t,e,n,a,i){for(var r,o=[],s=arguments.length-5;s-- >0;)o[s]=arguments[s+5];if(!t)return"";void 0===i&&(i=1);var l={count:i,n:i},d=ie.apply(void 0,o);return d.params=Object.assign(l,d.params),o=null===d.locale?[d.params]:[d.locale,d.params],this.fetchChoice((r=this)._t.apply(r,[t,e,n,a].concat(o)),i)},Me.prototype.fetchChoice=function(t,e){if(!t&&!te(t))return null;var n=t.split("|");return n[e=this.getChoiceIndex(e,n.length)]?n[e].trim():t},Me.prototype.tc=function(t,e){for(var n,a=[],i=arguments.length-2;i-- >0;)a[i]=arguments[i+2];return(n=this)._tc.apply(n,[t,this.locale,this._getMessages(),null,e].concat(a))},Me.prototype._te=function(t,e,n){for(var a=[],i=arguments.length-3;i-- >0;)a[i]=arguments[i+3];var r=ie.apply(void 0,a).locale||e;return this._exist(n[r],t)},Me.prototype.te=function(t,e){return this._te(t,this.locale,this._getMessages(),e)},Me.prototype.getLocaleMessage=function(t){return re(this._vm.messages[t]||{})},Me.prototype.setLocaleMessage=function(t,e){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,e),this._vm.$set(this._vm.messages,t,e)},Me.prototype.mergeLocaleMessage=function(t,e){"warn"!==this._warnHtmlInMessage&&"error"!==this._warnHtmlInMessage||this._checkLocaleMessage(t,this._warnHtmlInMessage,e),this._vm.$set(this._vm.messages,t,de({},this._vm.messages[t]||{},e))},Me.prototype.getDateTimeFormat=function(t){return re(this._vm.dateTimeFormats[t]||{})},Me.prototype.setDateTimeFormat=function(t,e){this._vm.$set(this._vm.dateTimeFormats,t,e),this._clearDateTimeFormat(t,e)},Me.prototype.mergeDateTimeFormat=function(t,e){this._vm.$set(this._vm.dateTimeFormats,t,de(this._vm.dateTimeFormats[t]||{},e)),this._clearDateTimeFormat(t,e)},Me.prototype._clearDateTimeFormat=function(t,e){for(var n in e){var a=t+"__"+n;this._dateTimeFormatters.hasOwnProperty(a)&&delete this._dateTimeFormatters[a]}},Me.prototype._localizeDateTime=function(t,e,n,a,i){for(var r=e,o=a[r],s=this._getLocaleChain(e,n),l=0;l0;)e[n]=arguments[n+1];var a=this.locale,i=null;return 1===e.length?te(e[0])?i=e[0]:Qt(e[0])&&(e[0].locale&&(a=e[0].locale),e[0].key&&(i=e[0].key)):2===e.length&&(te(e[0])&&(i=e[0]),te(e[1])&&(a=e[1])),this._d(t,a,i)},Me.prototype.getNumberFormat=function(t){return re(this._vm.numberFormats[t]||{})},Me.prototype.setNumberFormat=function(t,e){this._vm.$set(this._vm.numberFormats,t,e),this._clearNumberFormat(t,e)},Me.prototype.mergeNumberFormat=function(t,e){this._vm.$set(this._vm.numberFormats,t,de(this._vm.numberFormats[t]||{},e)),this._clearNumberFormat(t,e)},Me.prototype._clearNumberFormat=function(t,e){for(var n in e){var a=t+"__"+n;this._numberFormatters.hasOwnProperty(a)&&delete this._numberFormatters[a]}},Me.prototype._getNumberFormatter=function(t,e,n,a,i,r){for(var o=e,s=a[o],l=this._getLocaleChain(e,n),d=0;d0;)e[n]=arguments[n+1];var a=this.locale,i=null,r=null;return 1===e.length?te(e[0])?i=e[0]:Qt(e[0])&&(e[0].locale&&(a=e[0].locale),e[0].key&&(i=e[0].key),r=Object.keys(e[0]).reduce((function(t,n){var a;return oe(Zt,n)?Object.assign({},t,((a={})[n]=e[0][n],a)):t}),null)):2===e.length&&(te(e[0])&&(i=e[0]),te(e[1])&&(a=e[1])),this._n(t,a,i,r)},Me.prototype._ntp=function(t,e,n,a){if(!Me.availabilities.numberFormat)return[];if(!n)return(a?new Intl.NumberFormat(e,a):new Intl.NumberFormat(e)).formatToParts(t);var i=this._getNumberFormatter(t,e,this.fallbackLocale,this._getNumberFormats(),n,a),r=i&&i.formatToParts(t);if(this._isFallbackRoot(r)){if(!this._root)throw Error("unexpected error");return this._root.$i18n._ntp(t,e,n,a)}return r||[]},Object.defineProperties(Me.prototype,Re),Object.defineProperty(Me,"availabilities",{get:function(){if(!je){var t="undefined"!=typeof Intl;je={dateTimeFormat:t&&void 0!==Intl.DateTimeFormat,numberFormat:t&&void 0!==Intl.NumberFormat}}return je}}),Me.install=Ce,Me.version="8.18.2";var Ve=Me,Ue=n(169);n(190),n(191);i.a.use(Ve);var qe=new Ve({locale:config.locale,messages:Object.assign({en:Ue})}),He=n(6),Ge=n.n(He),We={name:"AuthContentWrapper"};n(195);function Ke(t,e,n,a,i,r,o,s){var l,d="function"==typeof t?t.options:t;if(e&&(d.render=e,d.staticRenderFns=n,d._compiled=!0),a&&(d.functional=!0),r&&(d._scopeId="data-v-"+r),o?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var p=d.render;d.render=function(t,e){return l.call(e),p(t,e)}}else{var c=d.beforeCreate;d.beforeCreate=c?[].concat(c,l):[l]}return{exports:t,options:d}}var Ye=Ke(We,(function(){var t=this.$createElement;return(this._self._c||t)("div",{attrs:{id:"auth"}},[this._t("default")],2)}),[],!1,null,"31af8372",null).exports,Ze=n(5),Je=Ke({name:"AuthContent",props:["visible","name"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}},(function(){var t=this.$createElement,e=this._self._c||t;return this.isVisible?e("div",{staticClass:"auth-form"},[this._t("default")],2):this._e()}),[],!1,null,null,null).exports,Xe={name:"AuthContent",props:["loading","icon","text"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}},Qe=(n(198),Ke(Xe,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("button",{staticClass:"button outline"},[n("span",{staticClass:"text-label"},[t._v(t._s(t.text))]),t._v(" "),t.loading?n("span",{staticClass:"icon"},[n("FontAwesomeIcon",{staticClass:"sync-alt",attrs:{icon:"sync-alt"}})],1):t._e(),t._v(" "),!t.loading&&t.icon?n("span",{staticClass:"icon"},[n("FontAwesomeIcon",{attrs:{icon:t.icon}})],1):t._e()])}),[],!1,null,"59e2dfc0",null).exports);function tn(t){return null==t}function en(t){return Array.isArray(t)&&0===t.length}var nn={validate:function(t,e){var n=(void 0===e?{allowFalse:!0}:e).allowFalse,a={valid:!1,required:!0};return tn(t)||en(t)?a:!1!==t||n?(a.valid=!!String(t).trim().length,a):a},params:[{name:"allowFalse",default:!0}],computesRequired:!0},an=n(4),rn=new i.a,on=n(1),sn=n.n(on);function ln(t,e,n,a,i,r,o){try{var s=t[r](o),l=s.value}catch(t){return void n(t)}s.done?e(l):Promise.resolve(l).then(a,i)}function dn(t){return function(){var e=this,n=arguments;return new Promise((function(a,i){var r=t.apply(e,n);function o(t){ln(r,a,i,o,s,"next",t)}function s(t){ln(r,a,i,o,s,"throw",t)}o(void 0)}))}}function pn(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function cn(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var un={name:"SignIn",components:{AuthContentWrapper:Ye,ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,AuthContent:Je,AuthButton:Qe,required:nn},computed:function(t){for(var e=1;e=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-box"},e.data]),[t("path",{attrs:{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}}),t("polyline",{attrs:{points:"3.27 6.96 12 12.01 20.73 6.96"}}),t("line",{attrs:{x1:"12",y1:"22.08",x2:"12",y2:"12"}})])}},Cn={name:"CheckIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-check"},e.data]),[t("polyline",{attrs:{points:"20 6 9 17 4 12"}})])}},zn={name:"ChevronDownIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-chevron-down"},e.data]),[t("polyline",{attrs:{points:"6 9 12 15 18 9"}})])}},Pn={name:"ChevronLeftIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-chevron-left"},e.data]),[t("polyline",{attrs:{points:"15 18 9 12 15 6"}})])}},On={name:"ChevronRightIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-chevron-right"},e.data]),[t("polyline",{attrs:{points:"9 18 15 12 9 6"}})])}},Sn={name:"ChevronUpIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-chevron-up"},e.data]),[t("polyline",{attrs:{points:"18 15 12 9 6 15"}})])}},$n={name:"CloudIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-cloud"},e.data]),[t("path",{attrs:{d:"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"}})])}},In={name:"CodeIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-code"},e.data]),[t("polyline",{attrs:{points:"16 18 22 12 16 6"}}),t("polyline",{attrs:{points:"8 6 2 12 8 18"}})])}},An={name:"CornerDownRightIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-corner-down-right"},e.data]),[t("polyline",{attrs:{points:"15 10 20 15 15 20"}}),t("path",{attrs:{d:"M4 4v7a4 4 0 0 0 4 4h12"}})])}},En={name:"CreditCardIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-credit-card"},e.data]),[t("rect",{attrs:{x:"1",y:"4",width:"22",height:"16",rx:"2",ry:"2"}}),t("line",{attrs:{x1:"1",y1:"10",x2:"23",y2:"10"}})])}},jn={name:"DatabaseIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-database"},e.data]),[t("ellipse",{attrs:{cx:"12",cy:"5",rx:"9",ry:"3"}}),t("path",{attrs:{d:"M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"}}),t("path",{attrs:{d:"M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"}})])}},Dn={name:"DownloadCloudIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-download-cloud"},e.data]),[t("polyline",{attrs:{points:"8 17 12 21 16 17"}}),t("line",{attrs:{x1:"12",y1:"12",x2:"12",y2:"21"}}),t("path",{attrs:{d:"M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"}})])}},Tn={name:"Edit2Icon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-edit-2"},e.data]),[t("path",{attrs:{d:"M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"}})])}},Ln={name:"ExternalLinkIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-external-link"},e.data]),[t("path",{attrs:{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}}),t("polyline",{attrs:{points:"15 3 21 3 21 9"}}),t("line",{attrs:{x1:"10",y1:"14",x2:"21",y2:"3"}})])}},Bn={name:"EyeOffIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-eye-off"},e.data]),[t("path",{attrs:{d:"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"}}),t("line",{attrs:{x1:"1",y1:"1",x2:"23",y2:"23"}})])}},Nn={name:"EyeIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-eye"},e.data]),[t("path",{attrs:{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}}),t("circle",{attrs:{cx:"12",cy:"12",r:"3"}})])}},Fn={name:"FileTextIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-file-text"},e.data]),[t("path",{attrs:{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}}),t("polyline",{attrs:{points:"14 2 14 8 20 8"}}),t("line",{attrs:{x1:"16",y1:"13",x2:"8",y2:"13"}}),t("line",{attrs:{x1:"16",y1:"17",x2:"8",y2:"17"}}),t("polyline",{attrs:{points:"10 9 9 9 8 9"}})])}},Mn={name:"FileIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-file"},e.data]),[t("path",{attrs:{d:"M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"}}),t("polyline",{attrs:{points:"13 2 13 9 20 9"}})])}},Rn={name:"FolderPlusIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-folder-plus"},e.data]),[t("path",{attrs:{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}}),t("line",{attrs:{x1:"12",y1:"11",x2:"12",y2:"17"}}),t("line",{attrs:{x1:"9",y1:"14",x2:"15",y2:"14"}})])}},Vn={name:"FolderIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-folder"},e.data]),[t("path",{attrs:{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}})])}},Un={name:"GridIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-grid"},e.data]),[t("rect",{attrs:{x:"3",y:"3",width:"7",height:"7"}}),t("rect",{attrs:{x:"14",y:"3",width:"7",height:"7"}}),t("rect",{attrs:{x:"14",y:"14",width:"7",height:"7"}}),t("rect",{attrs:{x:"3",y:"14",width:"7",height:"7"}})])}},qn={name:"HardDriveIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-hard-drive"},e.data]),[t("line",{attrs:{x1:"22",y1:"12",x2:"2",y2:"12"}}),t("path",{attrs:{d:"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}}),t("line",{attrs:{x1:"6",y1:"16",x2:"6",y2:"16"}}),t("line",{attrs:{x1:"10",y1:"16",x2:"10",y2:"16"}})])}},Hn={name:"HomeIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-home"},e.data]),[t("path",{attrs:{d:"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}}),t("polyline",{attrs:{points:"9 22 9 12 15 12 15 22"}})])}},Gn={name:"ImageIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-image"},e.data]),[t("rect",{attrs:{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}}),t("circle",{attrs:{cx:"8.5",cy:"8.5",r:"1.5"}}),t("polyline",{attrs:{points:"21 15 16 10 5 21"}})])}},Wn={name:"InfoIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-info"},e.data]),[t("circle",{attrs:{cx:"12",cy:"12",r:"10"}}),t("line",{attrs:{x1:"12",y1:"16",x2:"12",y2:"12"}}),t("line",{attrs:{x1:"12",y1:"8",x2:"12",y2:"8"}})])}},Kn={name:"LifeBuoyIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-life-buoy"},e.data]),[t("circle",{attrs:{cx:"12",cy:"12",r:"10"}}),t("circle",{attrs:{cx:"12",cy:"12",r:"4"}}),t("line",{attrs:{x1:"4.93",y1:"4.93",x2:"9.17",y2:"9.17"}}),t("line",{attrs:{x1:"14.83",y1:"14.83",x2:"19.07",y2:"19.07"}}),t("line",{attrs:{x1:"14.83",y1:"9.17",x2:"19.07",y2:"4.93"}}),t("line",{attrs:{x1:"14.83",y1:"9.17",x2:"18.36",y2:"5.64"}}),t("line",{attrs:{x1:"4.93",y1:"19.07",x2:"9.17",y2:"14.83"}})])}},Yn={name:"LinkIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-link"},e.data]),[t("path",{attrs:{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}}),t("path",{attrs:{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}})])}},Zn={name:"ListIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-list"},e.data]),[t("line",{attrs:{x1:"8",y1:"6",x2:"21",y2:"6"}}),t("line",{attrs:{x1:"8",y1:"12",x2:"21",y2:"12"}}),t("line",{attrs:{x1:"8",y1:"18",x2:"21",y2:"18"}}),t("line",{attrs:{x1:"3",y1:"6",x2:"3",y2:"6"}}),t("line",{attrs:{x1:"3",y1:"12",x2:"3",y2:"12"}}),t("line",{attrs:{x1:"3",y1:"18",x2:"3",y2:"18"}})])}},Jn={name:"LockIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-lock"},e.data]),[t("rect",{attrs:{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}}),t("path",{attrs:{d:"M7 11V7a5 5 0 0 1 10 0v4"}})])}},Xn={name:"MailIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-mail"},e.data]),[t("path",{attrs:{d:"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"}}),t("polyline",{attrs:{points:"22,6 12,13 2,6"}})])}},Qn={name:"MenuIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-menu"},e.data]),[t("line",{attrs:{x1:"3",y1:"12",x2:"21",y2:"12"}}),t("line",{attrs:{x1:"3",y1:"6",x2:"21",y2:"6"}}),t("line",{attrs:{x1:"3",y1:"18",x2:"21",y2:"18"}})])}},ta={name:"MonitorIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-monitor"},e.data]),[t("rect",{attrs:{x:"2",y:"3",width:"20",height:"14",rx:"2",ry:"2"}}),t("line",{attrs:{x1:"8",y1:"21",x2:"16",y2:"21"}}),t("line",{attrs:{x1:"12",y1:"17",x2:"12",y2:"21"}})])}},ea={name:"MoreHorizontalIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-more-horizontal"},e.data]),[t("circle",{attrs:{cx:"12",cy:"12",r:"1"}}),t("circle",{attrs:{cx:"19",cy:"12",r:"1"}}),t("circle",{attrs:{cx:"5",cy:"12",r:"1"}})])}},na={name:"MusicIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-music"},e.data]),[t("path",{attrs:{d:"M9 18V5l12-2v13"}}),t("circle",{attrs:{cx:"6",cy:"18",r:"3"}}),t("circle",{attrs:{cx:"18",cy:"16",r:"3"}})])}},aa={name:"PlusIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-plus"},e.data]),[t("line",{attrs:{x1:"12",y1:"5",x2:"12",y2:"19"}}),t("line",{attrs:{x1:"5",y1:"12",x2:"19",y2:"12"}})])}},ia={name:"PowerIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-power"},e.data]),[t("path",{attrs:{d:"M18.36 6.64a9 9 0 1 1-12.73 0"}}),t("line",{attrs:{x1:"12",y1:"2",x2:"12",y2:"12"}})])}},ra={name:"RefreshCwIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-refresh-cw"},e.data]),[t("polyline",{attrs:{points:"23 4 23 10 17 10"}}),t("polyline",{attrs:{points:"1 20 1 14 7 14"}}),t("path",{attrs:{d:"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"}})])}},oa={name:"SearchIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-search"},e.data]),[t("circle",{attrs:{cx:"11",cy:"11",r:"8"}}),t("line",{attrs:{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}})])}},sa={name:"SettingsIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-settings"},e.data]),[t("circle",{attrs:{cx:"12",cy:"12",r:"3"}}),t("path",{attrs:{d:"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"}})])}},la={name:"ShareIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-share"},e.data]),[t("path",{attrs:{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}}),t("polyline",{attrs:{points:"16 6 12 2 8 6"}}),t("line",{attrs:{x1:"12",y1:"2",x2:"12",y2:"15"}})])}},da={name:"StarIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-star"},e.data]),[t("polygon",{attrs:{points:"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"}})])}},pa={name:"Trash2Icon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-trash-2"},e.data]),[t("polyline",{attrs:{points:"3 6 5 6 21 6"}}),t("path",{attrs:{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}}),t("line",{attrs:{x1:"10",y1:"11",x2:"10",y2:"17"}}),t("line",{attrs:{x1:"14",y1:"11",x2:"14",y2:"17"}})])}},ca={name:"TrashIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-trash"},e.data]),[t("polyline",{attrs:{points:"3 6 5 6 21 6"}}),t("path",{attrs:{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}})])}},ua={name:"UnlockIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-unlock"},e.data]),[t("rect",{attrs:{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}}),t("path",{attrs:{d:"M7 11V7a5 5 0 0 1 9.9-1"}})])}},fa={name:"UploadCloudIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-upload-cloud"},e.data]),[t("polyline",{attrs:{points:"16 16 12 12 8 16"}}),t("line",{attrs:{x1:"12",y1:"12",x2:"12",y2:"21"}}),t("path",{attrs:{d:"M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"}}),t("polyline",{attrs:{points:"16 16 12 12 8 16"}})])}},ma={name:"UserPlusIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-user-plus"},e.data]),[t("path",{attrs:{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}}),t("circle",{attrs:{cx:"8.5",cy:"7",r:"4"}}),t("line",{attrs:{x1:"20",y1:"8",x2:"20",y2:"14"}}),t("line",{attrs:{x1:"23",y1:"11",x2:"17",y2:"11"}})])}},va={name:"UserIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-user"},e.data]),[t("path",{attrs:{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}}),t("circle",{attrs:{cx:"12",cy:"7",r:"4"}})])}},ba={name:"UsersIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-users"},e.data]),[t("path",{attrs:{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}}),t("circle",{attrs:{cx:"9",cy:"7",r:"4"}}),t("path",{attrs:{d:"M23 21v-2a4 4 0 0 0-3-3.87"}}),t("path",{attrs:{d:"M16 3.13a4 4 0 0 1 0 7.75"}})])}},ha={name:"VideoIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-video"},e.data]),[t("polygon",{attrs:{points:"23 7 16 12 23 17 23 7"}}),t("rect",{attrs:{x:"1",y:"5",width:"15",height:"14",rx:"2",ry:"2"}})])}},ga={name:"XIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-x"},e.data]),[t("line",{attrs:{x1:"18",y1:"6",x2:"6",y2:"18"}}),t("line",{attrs:{x1:"6",y1:"6",x2:"18",y2:"18"}})])}},ya={name:"ToolbarButtonUpload",props:["action"],components:{UploadCloudIcon:fa},methods:{emmitFiles:function(t){this.$uploadFiles(t.target.files)}}},_a=(n(204),Ke(ya,(function(){var t=this.$createElement,e=this._self._c||t;return e("label",{staticClass:"button file-input",attrs:{label:"file"}},[e("upload-cloud-icon",{attrs:{size:"17"}}),this._v(" "),e("input",{directives:[{name:"show",rawName:"v-show",value:!1,expression:"false"}],attrs:{id:"file",type:"file",name:"files[]",multiple:""},on:{change:this.emmitFiles}})],1)}),[],!1,null,"3a42fd9f",null).exports),xa={name:"ProgressBar",props:["progress"]},wa=(n(206),Ke(xa,(function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"progress-bar"},[e("span",{style:{width:this.progress+"%"}})])}),[],!1,null,"9f98bf3e",null).exports);function ka(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function Ca(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var za={name:"UploadProgress",components:{ProgressBar:wa},computed:function(t){for(var e=1;e1},attrs:{size:"17"}}),t._v(" "),n("span",{staticClass:"back-directory-title"},[t._v("\n "+t._s(t.directoryName)+"\n ")]),t._v(" "),t.browseHistory.length>1&&t.$isThisLocation(["base","public"])?n("span",{staticClass:"folder-options",attrs:{id:"folder-actions"},on:{click:function(e){return e.stopPropagation(),t.folderActions(e)}}},[n("more-horizontal-icon",{staticClass:"icon-more",attrs:{size:"14"}})],1):t._e()],1)]):t._e(),t._v(" "),n("div",{staticClass:"toolbar-tools"},[n("div",{staticClass:"toolbar-button-wrapper"},[n("SearchBar")],1),t._v(" "),t.$checkPermission(["master","editor"])?n("div",{staticClass:"toolbar-button-wrapper"},[n("ToolbarButtonUpload",{class:{"is-inactive":t.canUploadInView||!t.hasCapacity},attrs:{action:t.$t("actions.upload")}}),t._v(" "),n("ToolbarButton",{class:{"is-inactive":t.canCreateFolderInView},attrs:{source:"folder-plus",action:t.$t("actions.create_folder")},nativeOn:{click:function(e){return t.createFolder(e)}}})],1):t._e(),t._v(" "),t.$checkPermission(["master","editor"])?n("div",{staticClass:"toolbar-button-wrapper"},[n("ToolbarButton",{class:{"is-inactive":t.canMoveInView},attrs:{source:"move",action:t.$t("actions.move")},nativeOn:{click:function(e){return t.moveItem(e)}}}),t._v(" "),t.$isThisLocation(["public"])?t._e():n("ToolbarButton",{class:{"is-inactive":t.canShareInView},attrs:{source:"share",action:t.$t("actions.share")},nativeOn:{click:function(e){return t.shareItem(e)}}}),t._v(" "),n("ToolbarButton",{class:{"is-inactive":t.canDeleteInView},attrs:{source:"trash",action:t.$t("actions.delete")},nativeOn:{click:function(e){return t.deleteItem(e)}}})],1):t._e(),t._v(" "),n("div",{staticClass:"toolbar-button-wrapper"},[n("ToolbarButton",{attrs:{source:t.preview,action:t.$t("actions.preview")},nativeOn:{click:function(e){return t.$store.dispatch("changePreviewType")}}}),t._v(" "),n("ToolbarButton",{class:{active:t.fileInfoVisible},attrs:{source:"info"},nativeOn:{click:function(e){return t.$store.dispatch("fileInfoToggle")}}})],1)])]),t._v(" "),n("UploadProgress")],1)}),[],!1,null,"f58fc246",null).exports);function Na(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function Fa(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Ma={name:"FileItemGrid",props:["data"],components:{UserPlusIcon:ma,LinkIcon:Yn},computed:function(t){for(var e=1;e1},attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"directory-name"},[t._v(t._s(t.directoryName))]),t._v(" "),n("div",{staticClass:"more-actions-button"},[t.$checkPermission("master")?n("div",{staticClass:"tap-area",on:{click:t.showMobileNavigation}},[n("menu-icon",{attrs:{size:"17"}})],1):t._e()])])}),[],!1,null,"d0931b78",null).exports),Ga={name:"MobileActionButtonUpload",components:{UploadCloudIcon:fa},methods:{emmitFiles:function(t){this.$uploadFiles(t.target.files)}}},Wa=(n(220),Ke(Ga,(function(){var t=this.$createElement,e=this._self._c||t;return e("button",{staticClass:"mobile-action-button"},[e("div",{staticClass:"flex"},[e("upload-cloud-icon",{staticClass:"icon",attrs:{size:"15"}}),this._v(" "),e("label",{staticClass:"label button file-input button-base",attrs:{label:"file"}},[this._t("default"),this._v(" "),e("input",{directives:[{name:"show",rawName:"v-show",value:!1,expression:"false"}],attrs:{id:"file",type:"file",name:"files[]",multiple:""},on:{change:this.emmitFiles}})],2)],1)])}),[],!1,null,"160992a2",null).exports),Ka={name:"MobileActionButton",props:["icon"],components:{CreditCardIcon:En,FolderPlusIcon:Rn,UserPlusIcon:ma,TrashIcon:ca,PlusIcon:aa,ListIcon:Zn,GridIcon:Un}},Ya=(n(222),Ke(Ka,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("button",{staticClass:"mobile-action-button"},[n("div",{staticClass:"flex"},["credit-card"===t.icon?n("credit-card-icon",{staticClass:"icon",attrs:{size:"15"}}):t._e(),t._v(" "),"folder-plus"===t.icon?n("folder-plus-icon",{staticClass:"icon",attrs:{size:"15"}}):t._e(),t._v(" "),"th-list"===t.icon?n("list-icon",{staticClass:"icon",attrs:{size:"15"}}):t._e(),t._v(" "),"trash"===t.icon?n("trash-icon",{staticClass:"icon",attrs:{size:"15"}}):t._e(),t._v(" "),"th"===t.icon?n("grid-icon",{staticClass:"icon",attrs:{size:"15"}}):t._e(),t._v(" "),"user-plus"===t.icon?n("user-plus-icon",{staticClass:"icon",attrs:{size:"15"}}):t._e(),t._v(" "),"plus"===t.icon?n("plus-icon",{staticClass:"icon",attrs:{size:"15"}}):t._e(),t._v(" "),n("span",{staticClass:"label"},[t._t("default")],2)],1)])}),[],!1,null,"8b0e9378",null).exports);function Za(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function Ja(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Xa={name:"MobileActions",components:{MobileActionButtonUpload:Wa,MobileActionButton:Ya,UploadProgress:Pa},computed:function(t){for(var e=1;e3?t.substring(0,3)+"...":t.substring(0,3)}},data:function(){return{isClicked:!1,area:!1,itemName:void 0}},methods:{showItemActions:function(){this.$store.commit("GET_FILEINFO_DETAIL",this.data),rn.$emit("mobileMenu:show")},dragEnter:function(){"folder"===this.data.type&&(this.area=!0)},dragLeave:function(){this.area=!1},clickedItem:function(t){rn.$emit("contextMenu:hide"),rn.$emit("fileItem:deselect"),this.isClicked=!0,this.$isMobile()&&this.isFolder&&(this.$isThisLocation("public")?this.$store.dispatch("browseShared",[{folder:this.data,back:!1,init:!1}]):this.$store.dispatch("getFolder",[{folder:this.data,back:!1,init:!1}])),this.$store.commit("GET_FILEINFO_DETAIL",this.data);var e=t.target.className;["name","icon","file-link","file-icon-text"].includes(e)},goToItem:function(){this.isImage&&this.$openImageOnNewTab(this.data.file_url),this.isFile&&this.$downloadFile(this.data.file_url,this.data.name+"."+this.data.mimetype),this.isFolder&&(this.$isThisLocation("public")?this.$store.dispatch("browseShared",[{folder:this.data,back:!1,init:!1}]):this.$store.dispatch("getFolder",[{folder:this.data,back:!1,init:!1}]))},renameItem:Object($a.debounce)((function(t){""!==t.target.innerText.trim()&&this.$store.dispatch("renameItem",{unique_id:this.data.unique_id,type:this.data.type,name:t.target.innerText})}),300)},created:function(){var t=this;this.itemName=this.data.name,rn.$on("fileItem:deselect",(function(){t.isClicked=!1})),rn.$on("change:name",(function(e){t.data.unique_id==e.unique_id&&(t.itemName=e.name)}))}},hi=(n(236),Ke(bi,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"file-wrapper",attrs:{spellcheck:"false"},on:{click:function(e){return e.stopPropagation(),t.clickedItem(e)},dblclick:t.goToItem}},[n("div",{staticClass:"file-item",class:{"is-clicked":t.isClicked,"is-dragenter":t.area},attrs:{draggable:t.canDrag},on:{dragstart:function(e){return t.$emit("dragstart")},drop:function(e){t.$emit("drop"),t.area=!1},dragleave:t.dragLeave,dragover:function(e){return e.preventDefault(),t.dragEnter(e)}}},[n("div",{staticClass:"icon-item"},[t.isFile?n("span",{staticClass:"file-icon-text"},[t._v("\n "+t._s(t._f("limitCharacters")(t.data.mimetype))+"\n ")]):t._e(),t._v(" "),t.isFile?n("FontAwesomeIcon",{staticClass:"file-icon",attrs:{icon:"file"}}):t._e(),t._v(" "),t.isImage?n("img",{staticClass:"image",attrs:{src:t.data.thumbnail,alt:t.data.name}}):t._e(),t._v(" "),t.isFolder?n("FontAwesomeIcon",{staticClass:"folder-icon",class:{"is-deleted":t.isDeleted},attrs:{icon:"folder"}}):t._e()],1),t._v(" "),n("div",{staticClass:"item-name"},[n("b",{ref:"name",staticClass:"name",attrs:{contenteditable:t.canEditName},on:{input:t.renameItem}},[t._v("\n "+t._s(t.itemName)+"\n ")]),t._v(" "),n("div",{staticClass:"item-info"},[t.$checkPermission("master")&&t.data.shared?n("div",{staticClass:"item-shared"},[n("link-icon",{staticClass:"shared-icon",attrs:{size:"12"}})],1):t._e(),t._v(" "),t.$checkPermission("master")&&"master"!==t.data.user_scope?n("div",{staticClass:"item-shared"},[n("user-plus-icon",{staticClass:"shared-icon",attrs:{size:"12"}})],1):t._e(),t._v(" "),t.isFolder?t._e():n("span",{staticClass:"item-size"},[t._v(t._s(t.data.filesize)+", "+t._s(t.timeStamp))]),t._v(" "),t.isFolder?n("span",{staticClass:"item-length"},[t._v("\n "+t._s(0==t.folderItems?t.$t("folder.empty"):t.$tc("folder.item_counts",t.folderItems))+", "+t._s(t.timeStamp)+"\n ")]):t._e()])]),t._v(" "),!t.$isMobile()||t.$checkPermission("visitor")&&t.isFolder?t._e():n("div",{staticClass:"actions"},[n("span",{staticClass:"show-actions",on:{click:function(e){return e.stopPropagation(),t.showItemActions(e)}}},[n("FontAwesomeIcon",{staticClass:"icon-action",attrs:{icon:"ellipsis-v"}})],1)])])])}),[],!1,null,"0e147eab",null).exports),gi={name:"EmptyMessage",props:["icon","message"],components:{EyeOffIcon:Bn}},yi=(n(238),Ke(gi,(function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"empty-message"},[e("div",{staticClass:"message"},["eye-off"===this.icon?e("eye-off-icon",{staticClass:"icon",attrs:{size:"36"}}):this._e(),this._v(" "),e("p",[this._v(this._s(this.message))])],1)])}),[],!1,null,"f1b82072",null).exports),_i={name:"ButtonBase",props:["buttonStyle"],data:function(){return{files:void 0}},methods:{emmitFiles:function(t){this.$uploadFiles(t.target.files)}}},xi=(n(240),Ke(_i,(function(){var t=this.$createElement,e=this._self._c||t;return e("label",{staticClass:"button file-input button-base",class:this.buttonStyle,attrs:{label:"file"}},[this._t("default"),this._v(" "),e("input",{directives:[{name:"show",rawName:"v-show",value:!1,expression:"false"}],attrs:{accept:"*",id:"file",type:"file",name:"files[]",multiple:""},on:{change:this.emmitFiles}})],2)}),[],!1,null,"00125c42",null).exports),wi={name:"Spinner"},ki=(n(242),Ke(wi,(function(){var t=this.$createElement;this._self._c;return this._m(0)}),[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"spinner",attrs:{id:"loading-bar-spinner"}},[e("div",{staticClass:"spinner-icon"})])}],!1,null,"6cfbc808",null).exports);function Ci(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function zi(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Pi={name:"EmptyPage",props:["title","description"],components:{ButtonUpload:xi,Spinner:ki},computed:function(t){for(var e=1;e95},canShowUpgradeWarning:function(){return this.config.storageLimit&&this.user.relationships.storage.data.attributes.used>95},canShowIncompletePayment:function(){return this.user.data.attributes.incomplete_payment}}),data:function(){return{avatar:void 0,isLoading:!1}}},Gr=(n(296),Ke(Hr,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{attrs:{id:"viewport"}},[n("ContentSidebar",[n("ContentGroup",{staticClass:"navigator",attrs:{title:"Menu"}},[n("div",{staticClass:"menu-list-wrapper vertical"},[n("router-link",{staticClass:"menu-list-item link",attrs:{replace:"",to:{name:"Profile"}}},[n("div",{staticClass:"icon"},[n("user-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("menu.profile"))+"\n ")])]),t._v(" "),n("router-link",{staticClass:"menu-list-item link",attrs:{replace:"",to:{name:"Storage"}}},[n("div",{staticClass:"icon"},[n("hard-drive-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("menu.storage"))+"\n ")])]),t._v(" "),n("router-link",{staticClass:"menu-list-item link",attrs:{replace:"",to:{name:"Password"}}},[n("div",{staticClass:"icon"},[n("lock-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("menu.password"))+"\n ")])])],1)]),t._v(" "),t.canShowSubscriptionSettings?n("ContentGroup",{staticClass:"navigator",attrs:{title:"Subscription"}},[n("div",{staticClass:"menu-list-wrapper vertical"},[n("router-link",{staticClass:"menu-list-item link",attrs:{replace:"",to:{name:"Subscription"}}},[n("div",{staticClass:"icon"},[n("cloud-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("menu.subscription"))+"\n ")])]),t._v(" "),n("router-link",{staticClass:"menu-list-item link",attrs:{replace:"",to:{name:"PaymentMethods"}}},[n("div",{staticClass:"icon"},[n("credit-card-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("menu.payment_cards"))+"\n ")])]),t._v(" "),n("router-link",{staticClass:"menu-list-item link",attrs:{replace:"",to:{name:"Invoice"}}},[n("div",{staticClass:"icon"},[n("file-text-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("menu.invoices"))+"\n ")])])],1)]):t._e()],1),t._v(" "),t.user?n("div",{attrs:{id:"single-page"}},[t.isLoading?t._e():n("div",{staticClass:"medium-width",attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("div",{staticClass:"content-page"},[n("div",{staticClass:"page-detail-headline"},[n("div",{staticClass:"user-thumbnail"},[n("div",{staticClass:"avatar"},[n("UserImageInput",{attrs:{avatar:t.user.data.attributes.avatar},model:{value:t.avatar,callback:function(e){t.avatar=e},expression:"avatar"}})],1),t._v(" "),n("div",{staticClass:"info"},[n("b",{staticClass:"name"},[t._v("\n "+t._s(t.user.data.attributes.name)+"\n "),t.config.isSaaS?n("ColorLabel",{attrs:{color:t.subscriptionColor}},[t._v("\n "+t._s(t.subscriptionStatus)+"\n ")]):t._e()],1),t._v(" "),n("span",{staticClass:"email"},[t._v(t._s(t.user.data.attributes.email))])])]),t._v(" "),t.config.storageLimit&&t.config.isSaaS&&t.config.app_payments_active&&!t.canShowIncompletePayment?n("div",{staticClass:"headline-actions"},[t.canShowUpgradeButton?n("router-link",{attrs:{to:{name:"UpgradePlan"}}},[n("ButtonBase",{staticClass:"upgrade-button",attrs:{"button-style":"secondary",type:"button"}},[t._v("\n "+t._s(t.$t("global.upgrade_plan"))+"\n ")])],1):t._e()],1):t._e()]),t._v(" "),t.canShowIncompletePayment?n("InfoBox",{staticClass:"message-box",attrs:{type:"error"}},[n("i18n",{attrs:{path:"incomplete_payment.description",tag:"p"}},[n("a",{attrs:{href:t.user.data.attributes.incomplete_payment}},[t._v(t._s(t.$t("incomplete_payment.href")))])])],1):t._e(),t._v(" "),t.canShowUpgradeWarning&&!t.canShowIncompletePayment?n("InfoBox",{staticClass:"message-box",attrs:{type:"error"}},[n("p",[t._v(t._s(t.$t("upgrade_banner.title")))])]):t._e(),t._v(" "),n("router-view",{attrs:{user:t.user}})],1)],1),t._v(" "),t.isLoading?n("div",{attrs:{id:"loader"}},[n("Spinner")],1):t._e()]):t._e()],1)}),[],!1,null,"37fc8bdc",null).exports),Wr={name:"FormLabel",components:{Edit2Icon:Tn}},Kr=(n(298),Ke(Wr,(function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"form-label"},[e("edit-2-icon",{staticClass:"icon",attrs:{size:"22"}}),this._v(" "),e("b",{staticClass:"label"},[this._t("default")],2)],1)}),[],!1,null,"c1157a8e",null).exports),Yr={name:"PageTabGroup"},Zr=(n(300),Ke(Yr,(function(){var t=this.$createElement;return(this._self._c||t)("div",{staticClass:"page-tab-group"},[this._t("default")],2)}),[],!1,null,"1bb470e4",null).exports),Jr={name:"PageTab",props:["isLoading"],components:{Spinner:ki}},Xr=(n(302),Ke(Jr,(function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"page-tab"},[this.isLoading?e("div",{attrs:{id:"loader"}},[e("Spinner")],1):this._e(),this._v(" "),this.isLoading?this._e():this._t("default")],2)}),[],!1,null,"cb8ef734",null).exports),Qr={name:"StorageItemDetail",props:["percentage","title","type","used"],components:{HardDriveIcon:qn,FileTextIcon:Fn,ProgressBar:wa,MusicIcon:na,VideoIcon:ha,ImageIcon:Gn,FileIcon:Mn}},to=(n(304),Ke(Qr,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("article",{staticClass:"detail-storage-item",class:t.type},[n("div",{staticClass:"header-storage-item"},[n("div",{staticClass:"icon"},["images"==t.type?n("image-icon",{attrs:{size:"23"}}):t._e(),t._v(" "),"videos"==t.type?n("video-icon",{attrs:{size:"23"}}):t._e(),t._v(" "),"audios"==t.type?n("music-icon",{attrs:{size:"23"}}):t._e(),t._v(" "),"documents"==t.type?n("file-text-icon",{attrs:{size:"23"}}):t._e(),t._v(" "),"others"==t.type?n("file-icon",{attrs:{size:"23"}}):t._e(),t._v(" "),"disk"==t.type?n("hard-drive-icon",{attrs:{size:"23"}}):t._e()],1),t._v(" "),n("div",{staticClass:"title"},[n("b",{staticClass:"type"},[t._v(t._s(t.title))]),t._v(" "),n("span",{staticClass:"total-size"},[t._v(t._s(t.used))])])]),t._v(" "),n("ProgressBar",{staticClass:"storage-progress",attrs:{progress:t.percentage}})],1)}),[],!1,null,"56af1b6e",null).exports),eo={name:"SectionTitle"},no=(n(306),Ke(eo,(function(){var t=this.$createElement;return(this._self._c||t)("b",{staticClass:"text-label"},[this._t("default")],2)}),[],!1,null,"69d97df2",null).exports),ao={name:"Profile",components:{PageTabGroup:Zr,FormLabel:Kr,PageTab:Xr,StorageItemDetail:to,SectionTitle:no,MobileHeader:Lr,PageHeader:Mr,Spinner:ki},data:function(){return{isLoading:!0,storage:void 0}},created:function(){var t=this;sn.a.get("/api/user/storage").then((function(e){t.storage=e.data.data,t.isLoading=!1}))}},io=(n(308),Ke(ao,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.storage?n("PageTab",[n("PageTabGroup",[n("FormLabel",[t._v(t._s(t.$t("storage.sec_capacity")))]),t._v(" "),n("StorageItemDetail",{attrs:{type:"disk",title:t.$t("storage.total_used",{used:t.storage.attributes.used}),percentage:t.storage.attributes.percentage,used:t.$t("storage.total_capacity",{capacity:t.storage.attributes.capacity})}})],1),t._v(" "),n("PageTabGroup",[n("FormLabel",[t._v(t._s(t.$t("storage.sec_details")))]),t._v(" "),n("StorageItemDetail",{attrs:{type:"images",title:t.$t("storage.images"),percentage:t.storage.meta.images.percentage,used:t.storage.meta.images.used}}),t._v(" "),n("StorageItemDetail",{attrs:{type:"videos",title:t.$t("storage.videos"),percentage:t.storage.meta.videos.percentage,used:t.storage.meta.videos.used}}),t._v(" "),n("StorageItemDetail",{attrs:{type:"audios",title:t.$t("storage.audios"),percentage:t.storage.meta.audios.percentage,used:t.storage.meta.audios.used}}),t._v(" "),n("StorageItemDetail",{attrs:{type:"documents",title:t.$t("storage.documents"),percentage:t.storage.meta.documents.percentage,used:t.storage.meta.documents.used}}),t._v(" "),n("StorageItemDetail",{attrs:{type:"others",title:t.$t("storage.others"),percentage:t.storage.meta.others.percentage,used:t.storage.meta.others.used}})],1)],1):t._e()}),[],!1,null,"20411c08",null).exports),ro={name:"SelectInput",props:["options","isError","default","placeholder"],components:{Edit2Icon:Tn,UserIcon:va,ChevronDownIcon:zn},data:function(){return{selected:void 0,isOpen:!1}},methods:{selectOption:function(t){this.$emit("input",t.value),this.selected=t,this.isOpen=!1},openMenu:function(){this.isOpen=!this.isOpen}},created:function(){var t=this;this.default&&(this.selected=this.options.find((function(e){return e.value===t.default})))}},oo=(n(310),Ke(ro,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"select"},[n("div",{staticClass:"input-area",class:{"is-active":t.isOpen,"is-error":t.isError},on:{click:t.openMenu}},[t.selected?n("div",{staticClass:"selected"},[t.selected.icon?n("div",{staticClass:"option-icon"},["user"===t.selected.icon?n("user-icon",{attrs:{size:"14"}}):t._e(),t._v(" "),"user-edit"===t.selected.icon?n("edit2-icon",{attrs:{size:"14"}}):t._e()],1):t._e(),t._v(" "),n("span",{staticClass:"option-value"},[t._v(t._s(t.selected.label))])]):t._e(),t._v(" "),t.selected?t._e():n("div",{staticClass:"not-selected"},[n("span",{staticClass:"option-value placehoder"},[t._v(t._s(t.placeholder))])]),t._v(" "),n("chevron-down-icon",{staticClass:"chevron",attrs:{size:"19"}})],1),t._v(" "),n("transition",{attrs:{name:"slide-in"}},[t.isOpen?n("ul",{staticClass:"input-options"},t._l(t.options,(function(e,a){return n("li",{key:a,staticClass:"option-item",on:{click:function(n){return t.selectOption(e)}}},[e.icon?n("div",{staticClass:"option-icon"},["user"===e.icon?n("user-icon",{attrs:{size:"14"}}):t._e(),t._v(" "),"user-edit"===e.icon?n("edit2-icon",{attrs:{size:"14"}}):t._e()],1):t._e(),t._v(" "),n("span",{staticClass:"option-value"},[t._v(t._s(e.label))])])})),0):t._e()])],1)}),[],!1,null,"d50fee16",null).exports),so={name:"TextLabel"},lo=(n(312),Ke(so,(function(){var t=this.$createElement;return(this._self._c||t)("b",{staticClass:"theme-label"},[this._t("default")],2)}),[],!1,null,"4c650264",null).exports);function po(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function co(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var uo={name:"Settings",props:["user"],components:{ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,PageTabGroup:Zr,MobileHeader:Lr,SelectInput:oo,PageHeader:Mr,ButtonBase:Li,ThemeLabel:lo,FormLabel:Kr,required:nn,PageTab:Xr},computed:function(t){for(var e=1;e0},visibleData:function(){if(this.hasData)return this.filter.field?"DESC"===this.filter.sort?this.chunks=Object($a.chunk)(Object($a.sortBy)(this.data,this.filter.field),this.items_per_view):this.chunks=Object($a.chunk)(Object($a.sortBy)(this.data,this.filter.field).reverse(),this.items_per_view):this.chunks=Object($a.chunk)(this.data,this.items_per_view),this.chunks[this.pageIndex]}}}),bo=(n(318),Ke(vo,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"datatable"},[t.hasData?n("table",{staticClass:"table"},[n("thead",{staticClass:"table-header"},[n("tr",t._l(t.columns,(function(e,a){return e.hidden?t._e():n("th",{key:a,class:{sortable:e.sortable},on:{click:function(n){return t.sort(e.field,e.sortable,a)}}},[n("span",[t._v(t._s(e.label))]),t._v(" "),t._e()],1)})),0)]),t._v(" "),n("tbody",{staticClass:"table-body"},[t._l(t.visibleData,(function(e){return t._t("default",[n("DatatableCell",{key:e.id,attrs:{data:e}})],{row:e})}))],2)]):t._e(),t._v(" "),t.hasData&&t.paginator?n("div",{staticClass:"paginator-wrapper"},[t.chunks.length>1?n("ul",{staticClass:"pagination"},[n("li",{staticClass:"page-item"},[n("a",{staticClass:"page-link",class:{disabled:0==t.pageIndex},on:{click:function(e){return t.goToPage(t.pageIndex-1)}}},[n("chevron-left-icon",{staticClass:"icon",attrs:{size:"14"}})],1)]),t._v(" "),t._l(t.chunks,(function(e,a){return n("li",{key:a,staticClass:"page-item",on:{click:function(e){return t.goToPage(a)}}},[n("a",{staticClass:"page-link",class:{active:t.pageIndex==a}},[t._v("\n "+t._s(a+1)+"\n ")])])})),t._v(" "),n("li",{staticClass:"page-item"},[n("a",{staticClass:"page-link",class:{disabled:t.pageIndex+1==t.chunks.length},on:{click:function(e){return t.goToPage(t.pageIndex+1)}}},[n("chevron-right-icon",{staticClass:"icon",attrs:{size:"14"}})],1)])],2):t._e(),t._v(" "),n("span",{staticClass:"paginator-info"},[t._v(t._s(t.$t("datatable.paginate_info",{visible:t.visibleData.length,total:t.data.length})))])]):t._e()])}),[],!1,null,"601fddd5",null).exports),ho={name:"UserInvoices",components:{DatatableWrapper:bo,ExternalLinkIcon:Ln,PageTabGroup:Zr,FormLabel:Kr,InfoBox:Nr,PageTab:Xr},data:function(){return{isLoading:!0,invoices:void 0,columns:[{label:this.$t("rows.invoice.number"),field:"data.attributes.order",sortable:!0},{label:this.$t("rows.invoice.total"),field:"data.attributes.bag.amount",sortable:!0},{label:this.$t("rows.invoice.plan"),field:"data.attributes.bag.amount",sortable:!0},{label:this.$t("rows.invoice.payed"),field:"data.attributes.created_at",sortable:!0},{label:this.$t("admin_page_user.table.action"),sortable:!1}]}},created:function(){var t=this;sn.a.get("/api/user/invoices").then((function(e){t.invoices=e.data.data,t.isLoading=!1}))}},go=(n(320),Ke(ho,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",{attrs:{"is-loading":t.isLoading}},[t.invoices&&t.invoices.length>0?n("PageTabGroup",[n("FormLabel",[t._v(t._s(t.$t("user_invoices.title")))]),t._v(" "),n("DatatableWrapper",{staticClass:"table",attrs:{paginator:!0,columns:t.columns,data:t.invoices},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.row;return[n("tr",[n("td",[n("a",{staticClass:"cell-item",attrs:{href:"/invoice/"+a.data.attributes.customer+"/"+a.data.id,target:"_blank"}},[t._v("\n "+t._s(a.data.attributes.order)+"\n ")])]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.total)+"\n ")])]),t._v(" "),n("td",[a.data.attributes.invoice_subscriptions[0].description?n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.invoice_subscriptions[0].description)+"\n ")]):t._e()]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.created_at_formatted)+"\n ")])]),t._v(" "),n("td",[n("div",{staticClass:"action-icons"},[n("a",{attrs:{href:t.$getInvoiceLink(a.data.attributes.customer,a.data.id),target:"_blank"}},[n("external-link-icon",{staticClass:"icon",attrs:{size:"15"}})],1)])])])]}}],null,!1,803592020)})],1):n("InfoBox",[n("p",[t._v(t._s(t.$t("user_invoices.empty")))])])],1)}),[],!1,null,"478a7944",null).exports);function yo(t,e,n,a,i,r,o){try{var s=t[r](o),l=s.value}catch(t){return void n(t)}s.done?e(l):Promise.resolve(l).then(a,i)}var _o={name:"Profile",components:{PageTabGroup:Zr,FormLabel:Kr,PageTab:Xr,ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,UserImageInput:Dr,MobileHeader:Lr,PageHeader:Mr,ButtonBase:Li,ThemeLabel:lo,required:nn},data:function(){return{newPasswordConfirmation:"",newPassword:"",isLoading:!1}},methods:{resetPassword:function(){var t,e=this;return(t=Ge.a.mark((function t(){return Ge.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.$refs.password.validate();case 2:if(t.sent){t.next=5;break}return t.abrupt("return");case 5:sn.a.post(e.$store.getters.api+"/user/password",{password:e.newPassword,password_confirmation:e.newPasswordConfirmation}).then((function(){e.newPassword="",e.newPasswordConfirmation="",e.$refs.password.reset(),rn.$emit("success:open",{title:e.$t("popup_pass_changed.title"),message:e.$t("popup_pass_changed.message")})})).catch((function(t){422==t.response.status&&t.response.data.errors.password&&e.$refs.password.setErrors({"New Password":t.response.data.errors.password})}));case 6:case"end":return t.stop()}}),t)})),function(){var e=this,n=arguments;return new Promise((function(a,i){var r=t.apply(e,n);function o(t){yo(r,a,i,o,s,"next",t)}function s(t){yo(r,a,i,o,s,"throw",t)}o(void 0)}))})()}}},xo=(n(322),Ke(_o,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",[n("PageTabGroup",[n("ValidationObserver",{ref:"password",staticClass:"form block-form",attrs:{tag:"form"},on:{submit:function(e){return e.preventDefault(),t.resetPassword(e)}},scopedSlots:t._u([{key:"default",fn:function(e){e.invalid;return[n("FormLabel",[t._v(t._s(t.$t("user_password.title")))]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("page_create_password.label_new_pass"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"New Password",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newPassword,expression:"newPassword"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("page_create_password.label_new_pass"),type:"password"},domProps:{value:t.newPassword},on:{input:function(e){e.target.composing||(t.newPassword=e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("page_create_password.label_confirm_pass"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Confirm Your Password",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newPasswordConfirmation,expression:"newPasswordConfirmation"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("page_create_password.label_confirm_pass"),type:"password"},domProps:{value:t.newPasswordConfirmation},on:{input:function(e){e.target.composing||(t.newPasswordConfirmation=e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("ButtonBase",{staticClass:"confirm-form",attrs:{type:"submit","button-style":"theme"}},[t._v("\n "+t._s(t.$t("profile.store_pass"))+"\n ")])],1)]}}])})],1)],1)}),[],!1,null,"45c71fba",null).exports),wo={name:"UserSubscription",components:{ExternalLinkIcon:Ln,DatatableWrapper:bo,ListInfoItem:si,PageTabGroup:Zr,ButtonBase:Li,FormLabel:Kr,ListInfo:di,InfoBox:Nr,PageTab:Xr},computed:{cancelButtonText:function(){return this.isConfirmedCancel?this.$t("popup_share_edit.confirm"):this.$t("user_subscription.cancel_plan")},cancelButtonStyle:function(){return this.isConfirmedCancel?"danger-solid":"secondary"},resumeButtonText:function(){return this.isConfirmedResume?this.$t("popup_share_edit.confirm"):this.$t("user_subscription.resume_plan")},resumeButtonStyle:function(){return this.isConfirmedResume?"theme-solid":"secondary"},status:function(){return this.subscription.data.attributes.incomplete?this.$t("global.incomplete"):this.subscription.data.attributes.canceled?this.$t("global.canceled"):this.subscription.data.attributes.active?this.$t("global.active"):void 0}},data:function(){return{subscription:void 0,isConfirmedCancel:!1,isConfirmedResume:!1,isDeleting:!1,isResuming:!1,isLoading:!0}},methods:{cancelSubscription:function(){var t=this;this.isConfirmedCancel?(this.isDeleting=!0,this.isLoading=!0,sn.a.post("/api/subscription/cancel").then((function(){t.$store.dispatch("getAppData").then((function(){t.fetchSubscriptionDetail()})),rn.$emit("alert:open",{emoji:"👍",title:t.$t("popup_subscription_cancel.title"),message:t.$t("popup_subscription_cancel.message"),buttonStyle:"theme",button:t.$t("popup_subscription_cancel.button")})})).catch((function(){rn.$emit("alert:open",{title:t.$t("popup_error.title"),message:t.$t("popup_error.message")})})).finally((function(){t.isDeleting=!1,t.isLoading=!1,t.isConfirmedCancel=!1}))):this.isConfirmedCancel=!0},resumeSubscription:function(){var t=this;this.isConfirmedResume?(this.isResuming=!0,this.isLoading=!0,sn.a.post("/api/subscription/resume").then((function(){t.$store.dispatch("getAppData").then((function(){t.fetchSubscriptionDetail()})),rn.$emit("alert:open",{emoji:"👍",title:t.$t("popup_subscription_resumed.title"),message:t.$t("popup_subscription_resumed.message"),buttonStyle:"theme",button:t.$t("popup_subscription_resumed.button")})})).catch((function(){rn.$emit("alert:open",{title:t.$t("popup_error.title"),message:t.$t("popup_error.message")})})).finally((function(){t.isResuming=!1,t.isLoading=!1,t.isConfirmedResume=!1}))):this.isConfirmedResume=!0},fetchSubscriptionDetail:function(){var t=this;sn.a.get("/api/user/subscription").then((function(e){204==e.status&&(t.subscription=void 0),200==e.status&&(t.subscription=e.data)})).finally((function(){t.isLoading=!1}))}},created:function(){this.fetchSubscriptionDetail()}},ko=(n(324),Ke(wo,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",{attrs:{"is-loading":t.isLoading}},[t.subscription?n("PageTabGroup",[n("FormLabel",[t._v("\n "+t._s(t.$t("user_subscription.title"))+"\n ")]),t._v(" "),t.subscription.data.attributes.canceled?t._e():n("div",{staticClass:"state active"},[n("ListInfo",{staticClass:"list-info"},[n("ListInfoItem",{staticClass:"list-item",attrs:{title:t.$t("user_subscription.plan"),content:t.subscription.data.attributes.name+" - "+t.subscription.data.attributes.capacity_formatted}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item",attrs:{title:t.$t("user_subscription.billed"),content:t.$t("admin_page_user.subscription.interval_mo")}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item",attrs:{title:t.$t("user_subscription.status"),content:t.status}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item capitalize",attrs:{title:t.$t("user_subscription.created_at"),content:t.subscription.data.attributes.created_at}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item capitalize",attrs:{title:t.$t("user_subscription.renews_at"),content:t.subscription.data.attributes.ends_at}})],1),t._v(" "),n("div",{staticClass:"plan-action"},[n("ButtonBase",{staticClass:"confirm-button",attrs:{disabled:t.isDeleting,"button-style":t.cancelButtonStyle},nativeOn:{click:function(e){return t.cancelSubscription(e)}}},[t._v("\n "+t._s(t.cancelButtonText)+"\n ")])],1)],1),t._v(" "),t.subscription.data.attributes.canceled?n("div",{staticClass:"state canceled"},[n("ListInfo",{staticClass:"list-info"},[n("ListInfoItem",{staticClass:"list-item",attrs:{title:t.$t("user_subscription.plan"),content:t.subscription.data.attributes.name+" - "+t.subscription.data.attributes.capacity_formatted}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item",attrs:{title:t.$t("user_subscription.status"),content:t.status}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item capitalize",attrs:{title:t.$t("user_subscription.canceled_at"),content:t.subscription.data.attributes.canceled_at}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item capitalize",attrs:{title:t.$t("user_subscription.ends_at"),content:t.subscription.data.attributes.ends_at}})],1),t._v(" "),n("div",{staticClass:"plan-action"},[n("ButtonBase",{staticClass:"confirm-button",attrs:{disabled:t.isResuming,"button-style":t.resumeButtonStyle},nativeOn:{click:function(e){return t.resumeSubscription(e)}}},[t._v("\n "+t._s(t.resumeButtonText)+"\n ")])],1)],1):t._e()],1):n("InfoBox",[n("p",[t._v(t._s(t.$t("user_subscription.empty")))])])],1)}),[],!1,null,"3e5693e3",null).exports);function Co(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function zo(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Po={name:"UserPaymentMethods",components:{MobileActionButton:Ya,DatatableWrapper:bo,CreditCardIcon:En,PageTabGroup:Zr,Trash2Icon:pa,ColorLabel:Vr,FormLabel:Kr,InfoBox:Nr,PageTab:Xr},computed:function(t){for(var e=1;e0?n("PageTabGroup",[n("FormLabel",[t._v(t._s(t.$t("user_payments.title")))]),t._v(" "),n("div",{staticClass:"page-actions"},[n("router-link",{attrs:{to:{name:"CreatePaymentMethod"}}},[n("MobileActionButton",{attrs:{icon:"credit-card"}},[t._v("\n "+t._s(t.$t("user_payments.add_card"))+"\n ")])],1)],1),t._v(" "),n("DatatableWrapper",{staticClass:"table",attrs:{paginator:!1,columns:t.columns,data:t.PaymentMethods},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.row;return[n("tr",{class:{"is-deleting":a.data.attributes.card_id===t.deletingID}},[n("td",{staticStyle:{width:"300px"}},[n("span",{staticClass:"cell-item"},[n("div",{staticClass:"credit-card"},[n("img",{staticClass:"credit-card-icon",attrs:{src:t.$getCreditCardBrand(a.data.attributes.brand),alt:a.data.attributes.brand}}),t._v(" "),n("div",{staticClass:"credit-card-numbers"},[t._v("\n •••• "+t._s(a.data.attributes.last4)+"\n ")]),t._v(" "),a.data.id===t.defaultPaymentCard.data.id?n("ColorLabel",{attrs:{color:"purple"}},[t._v(t._s(t.$t("global.default")))]):t._e()],1)])]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.exp_month)+" / "+t._s(a.data.attributes.exp_year)+"\n ")])]),t._v(" "),n("td",[n("div",{staticClass:"action-icons"},[n("label",{staticClass:"icon-wrapper",attrs:{title:t.$t("user_payments.set_as_default")}},[a.data.id!==t.defaultPaymentCard.data.id?n("credit-card-icon",{staticClass:"icon icon-card",attrs:{size:"15"},on:{click:function(e){return t.setDefaultCard(a.data.attributes)}}}):t._e()],1),t._v(" "),n("label",{staticClass:"icon-wrapper",attrs:{title:t.$t("user_payments.delete_card")}},[n("trash2-icon",{staticClass:"icon icon-trash",attrs:{size:"15"},on:{click:function(e){return t.deleteCard(a.data.attributes)}}})],1)])])])]}}],null,!1,3219636701)})],1):n("InfoBox",[n("p",[t._v(t._s(t.$t("user_payments.empty"))+" "),t.user.data.attributes.stripe_customer?n("router-link",{attrs:{to:{name:"CreatePaymentMethod"}}},[t._v("Add new payment method.")]):t._e()],1)])],1)}),[],!1,null,"5fce6c68",null).exports),So={name:"SwitchInput",props:["label","name","state","info"],data:function(){return{isSwitched:void 0}},methods:{changeState:function(){this.isSwitched=!this.isSwitched,this.$emit("input",this.isSwitched)}},mounted:function(){this.isSwitched=this.state}},$o=(n(328),Ke(So,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"input-wrapper"},[n("div",{staticClass:"switch-content"},[t.label?n("label",{staticClass:"input-label"},[t._v(t._s(t.label)+":")]):t._e(),t._v(" "),t.info?n("small",{staticClass:"input-info"},[t._v(t._s(t.info))]):t._e()]),t._v(" "),n("div",{staticClass:"switch-content text-right"},[n("div",{staticClass:"switch",class:{active:t.isSwitched},on:{click:t.changeState}},[n("div",{staticClass:"switch-button"})])])])}),[],!1,null,"3922b662",null).exports);function Io(t,e,n,a,i,r,o){try{var s=t[r](o),l=s.value}catch(t){return void n(t)}s.done?e(l):Promise.resolve(l).then(a,i)}function Ao(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function Eo(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var jo=void 0,Do=void 0,To={name:"CreatePaymentMethod",components:{PageTabGroup:Zr,SwitchInput:$o,ButtonBase:Li,FormLabel:Kr,PageTab:Xr,InfoBox:Nr},computed:function(t){for(var e=1;e95?n("p",{staticClass:"reach-capacity"},[t._v(t._s(t.$t("upgrade_banner.title")))]):n("p",{staticClass:"reach-capacity"},[t._v(t._s(t.$t("upgrade_banner.description")))])]),t._v(" "),t.config.app_payments_active?n("div",{staticClass:"footer"},[n("router-link",{staticClass:"button",attrs:{to:{name:"UpgradePlan"}}},[t._v("\n "+t._s(t.$t("upgrade_banner.button"))+"\n ")])],1):t._e()])}),[],!1,null,"086836f8",null).exports),Go={name:"TreeMenuNavigator",props:["nodes","depth"],components:{TreeMenuNavigator:Wo,ChevronRightIcon:On,FolderIcon:Vn},computed:{indent:function(){var t=window.innerWidth<=1024?17:22;return{paddingLeft:(0==this.depth?t:t+20*this.depth)+"px"}}},data:function(){return{isVisible:!1,isSelected:!1}},methods:{getFolder:function(){rn.$emit("show-folder",this.nodes),this.$store.dispatch("getFolder",[{folder:this.nodes,back:!1,init:!1}])},showTree:function(){this.isVisible=!this.isVisible}},created:function(){var t=this;rn.$on("show-folder",(function(e){t.isSelected=!1,t.nodes.unique_id==e.unique_id&&(t.isSelected=!0)}))}},Wo=(n(336),Ke(Go,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("transition",{attrs:{name:"folder"}},[n("div",{staticClass:"folder-item-wrapper"},[n("div",{staticClass:"folder-item",class:{"is-selected":t.isSelected},style:t.indent,on:{click:t.getFolder}},[n("chevron-right-icon",{staticClass:"icon-arrow",class:{"is-opened":t.isVisible,"is-visible":0!==t.nodes.folders.length},attrs:{size:"17"},on:{click:function(e){return e.stopPropagation(),t.showTree(e)}}}),t._v(" "),n("folder-icon",{staticClass:"icon",attrs:{size:"17"}}),t._v(" "),n("span",{staticClass:"label"},[t._v(t._s(t.nodes.name))])],1),t._v(" "),t._l(t.nodes.folders,(function(e){return t.isVisible?n("TreeMenuNavigator",{key:e.unique_id,attrs:{depth:t.depth+1,nodes:e}}):t._e()}))],2)])}),[],!1,null,"4284144a",null).exports);function Ko(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function Yo(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Zo={name:"FilesView",components:{UpgradeSidebarBanner:Ho,TreeMenuNavigator:Wo,ContentFileView:Mo,ContentSidebar:$r,UploadCloudIcon:fa,ContentGroup:Er,FolderIcon:Vn,HomeIcon:Hn,XIcon:ga},computed:function(t){for(var e=1;e95?n("ContentGroup",[n("UpgradeSidebarBanner")],1):t._e(),t._v(" "),n("ContentGroup",{attrs:{title:t.$t("sidebar.locations_title")}},[n("div",{staticClass:"menu-list-wrapper vertical"},[n("a",{staticClass:"menu-list-item link",class:{"is-active":t.$isThisLocation(["base"])},on:{click:t.goHome}},[n("div",{staticClass:"icon"},[n("home-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("sidebar.home"))+"\n ")])]),t._v(" "),n("a",{staticClass:"menu-list-item link",class:{"is-active":t.$isThisLocation(["latest"])},on:{click:t.getLatest}},[n("div",{staticClass:"icon"},[n("upload-cloud-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("sidebar.latest"))+"\n ")])])])]),t._v(" "),n("ContentGroup",{staticClass:"navigator",attrs:{title:t.$t("sidebar.navigator_title")}},[0==t.tree.length?n("span",{staticClass:"empty-note navigator"},[t._v("\n "+t._s(t.$t("sidebar.folders_empty"))+"\n ")]):t._e(),t._v(" "),t._l(t.tree,(function(t){return n("TreeMenuNavigator",{key:t.unique_id,staticClass:"folder-tree",attrs:{depth:0,nodes:t}})}))],2),t._v(" "),n("ContentGroup",{attrs:{title:t.$t("sidebar.favourites")}},[n("div",{staticClass:"menu-list-wrapper vertical favourites",class:{"is-dragenter":t.area},on:{dragover:function(e){return e.preventDefault(),t.dragEnter(e)},dragleave:t.dragLeave,drop:function(e){return t.dragFinish(e)}}},[n("transition-group",{staticClass:"menu-list",attrs:{tag:"div",name:"folder-item"}},[0==t.favourites.length?n("span",{key:0,staticClass:"empty-note favourites"},[t._v("\n "+t._s(t.$t("sidebar.favourites_empty"))+"\n ")]):t._e(),t._v(" "),t._l(t.favourites,(function(e){return n("a",{key:e.unique_id,staticClass:"menu-list-item",class:{"is-current":e&&t.currentFolder&&t.currentFolder.unique_id===e.unique_id},on:{click:function(n){return n.stopPropagation(),t.openFolder(e)}}},[n("div",[n("folder-icon",{staticClass:"folder-icon",attrs:{size:"17"}}),t._v(" "),n("span",{staticClass:"label"},[t._v(t._s(e.name))])],1),t._v(" "),n("x-icon",{staticClass:"delete-icon",attrs:{size:"17"},on:{click:function(n){return n.stopPropagation(),t.removeFavourite(e)}}})],1)}))],2)],1)])],1),t._v(" "),n("ContentFileView")],1):t._e()}),[],!1,null,"09665f59",null).exports),Xo=Ke({name:"FilesView",components:{ContentFileView:Mo,ContentSidebar:$r,ContentGroup:Er,LinkIcon:Yn,UsersIcon:ba},methods:{getShared:function(){this.$store.dispatch("getShared",[{back:!1,init:!1}])},getParticipantUploads:function(){this.$store.dispatch("getParticipantUploads")}},mounted:function(){this.getShared()}},(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{attrs:{id:"viewport"}},[n("ContentSidebar",[n("ContentGroup",{attrs:{title:t.$t("sidebar.locations_title")}},[n("div",{staticClass:"menu-list-wrapper vertical"},[n("li",{staticClass:"menu-list-item link",class:{"is-active":t.$isThisLocation(["shared"])},on:{click:function(e){return t.getShared()}}},[n("div",{staticClass:"icon"},[n("link-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("sidebar.my_shared"))+"\n ")])]),t._v(" "),n("li",{staticClass:"menu-list-item link",class:{"is-active":t.$isThisLocation(["participant_uploads"])},on:{click:function(e){return t.getParticipantUploads()}}},[n("div",{staticClass:"icon"},[n("users-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("sidebar.participant_uploads"))+"\n ")])])])])],1),t._v(" "),n("ContentFileView")],1)}),[],!1,null,"fd8b19c0",null).exports;function Qo(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function ts(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var es={name:"PlanPricingTables",components:{HardDriveIcon:qn,ButtonBase:Li},data:function(){return{plans:void 0}},computed:function(t){for(var e=1;et.user.data.attributes.storage_capacity})),t.$emit("load",!1)}))}},ns=(n(340),Ke(es,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.plans?n("div",{staticClass:"plans-wrapper"},t._l(t.plans,(function(e,a){return n("article",{key:a,staticClass:"plan"},[n("div",{staticClass:"plan-wrapper"},[n("header",{staticClass:"plan-header"},[n("div",{staticClass:"icon"},[n("hard-drive-icon",{attrs:{size:"26"}})],1),t._v(" "),n("h1",{staticClass:"title"},[t._v(t._s(e.data.attributes.name))]),t._v(" "),n("h2",{staticClass:"description"},[t._v(t._s(e.data.attributes.description))])]),t._v(" "),n("section",{staticClass:"plan-features"},[n("b",{staticClass:"storage-size"},[t._v(t._s(e.data.attributes.capacity_formatted))]),t._v(" "),n("span",{staticClass:"storage-description"},[t._v(t._s(t.$t("page_pricing_tables.storage_capacity")))])]),t._v(" "),n("footer",{staticClass:"plan-footer"},[n("b",{staticClass:"price"},[t._v("\n "+t._s(e.data.attributes.price)+"/"+t._s(t.$t("global.monthly_ac"))+"\n "),e.data.attributes.tax_rates.length>0?n("small",{staticClass:"vat-disclaimer"},[t._v(t._s(t.$t("page_pricing_tables.vat_excluded")))]):t._e()]),t._v(" "),n("ButtonBase",{staticClass:"sign-in-button",attrs:{type:"submit","button-style":"secondary"},nativeOn:{click:function(n){return t.selectPlan(e)}}},[t._v("\n "+t._s(t.$t("global.get_it"))+"\n ")])],1)])])})),0):t._e()}),[],!1,null,"8b2ebeb2",null).exports),as={name:"UpgradePlan",components:{PlanPricingTables:ns,MobileHeader:Lr,PageHeader:Mr,CloudIcon:$n,Spinner:ki},data:function(){return{isLoading:!0}},methods:{onLoadPricingTables:function(t){this.isLoading=t},onSelectTable:function(t){this.$store.commit("STORE_REQUESTED_PLAN",t)}},beforeMount:function(){var t=document.createElement("script");t.setAttribute("src","https://js.stripe.com/v3/"),document.head.appendChild(t)},mounted:function(){this.$store.dispatch("getAppData")}},is=(n(342),Ke(as,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"single-page"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:!t.isLoading,expression:"! isLoading"}],staticClass:"large-width center-page",attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("div",{staticClass:"content-page"},[n("div",{staticClass:"plan-title"},[n("cloud-icon",{staticClass:"title-icon",attrs:{size:"42"}}),t._v(" "),n("h1",[t._v(t._s(t.$t("page_pricing_tables.title")))]),t._v(" "),n("h2",[t._v(t._s(t.$t("page_pricing_tables.description")))])],1),t._v(" "),n("PlanPricingTables",{on:{load:t.onLoadPricingTables,"selected-plan":t.onSelectTable}})],1)],1),t._v(" "),t.isLoading?n("div",{attrs:{id:"loader"}},[n("Spinner")],1):t._e()])}),[],!1,null,"67317b10",null).exports);function rs(t,e,n,a,i,r,o){try{var s=t[r](o),l=s.value}catch(t){return void n(t)}s.done?e(l):Promise.resolve(l).then(a,i)}function os(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function ss(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var ls=void 0,ds=void 0,ps={name:"UpgradePlan",components:{ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,PlanPricingTables:ns,CreditCardIcon:En,MobileHeader:Lr,SelectInput:oo,ButtonBase:Li,PageHeader:Mr,ColorLabel:Vr,FormLabel:Kr,required:nn,Spinner:ki,InfoBox:Nr},computed:function(t){for(var e=1;e0?n("router-link",{attrs:{to:{name:"PaymentMethods"}}},[t._v("\n "+t._s(t.$t("page_upgrade_account.change_payment.change_payment"))+"\n ")]):t._e(),t._v(" "),t.PaymentMethods.data.length>0?n("span",[t._v("\n "+t._s(t.$t("global.or"))+"\n ")]):t._e(),t._v(" "),n("a",{on:{click:t.payByNewCardForm}},[t._v("\n "+t._s(t.$t("page_upgrade_account.change_payment.pay_by_new_card"))+"\n ")])],1),t._v(" "),t.isError?n("div",{staticClass:"card-error-message"},[n("span",[t._v(t._s(t.errorMessage))]),t._v(" "),n("span",{staticClass:"link",on:{click:t.payByNewCardForm}},[t._v("\n "+t._s(t.$t("page_upgrade_account.errors.pay_by_another_card"))+"\n ")]),t._v(" "),n("span",[t._v("\n "+t._s(t.$t("global.or"))+"\n ")]),t._v(" "),n("router-link",{staticClass:"link",attrs:{to:{name:"PaymentMethods"}}},[t._v("\n "+t._s(t.$t("page_upgrade_account.change_payment.change_payment"))+"\n ")])],1):t._e()]):t._e()],1),t._v(" "),t.billing?n("div",{staticClass:"billing"},[n("FormLabel",[t._v(t._s(t.$t("page_upgrade_account.section_billing")))]),t._v(" "),n("ValidationObserver",{ref:"order",staticClass:"form block-form",attrs:{tag:"form"},scopedSlots:t._u([{key:"default",fn:function(e){e.invalid;return[n("div",{staticClass:"form block-form"},[n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("user_settings.name"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",rules:"required",name:"billing_name"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billing.billing_name,expression:"billing.billing_name"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("user_settings.name_plac"),type:"text"},domProps:{value:t.billing.billing_name},on:{input:function(e){e.target.composing||t.$set(t.billing,"billing_name",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("user_settings.address"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",rules:"required",name:"billing_address"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billing.billing_address,expression:"billing.billing_address"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("user_settings.address_plac"),type:"text"},domProps:{value:t.billing.billing_address},on:{input:function(e){e.target.composing||t.$set(t.billing,"billing_address",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"wrapper-inline"},[n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("user_settings.city"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",rules:"required",name:"billing_city"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billing.billing_city,expression:"billing.billing_city"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("user_settings.city_plac"),type:"text"},domProps:{value:t.billing.billing_city},on:{input:function(e){e.target.composing||t.$set(t.billing,"billing_city",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("user_settings.postal_code"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",rules:"required",name:"billing_postal_code"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billing.billing_postal_code,expression:"billing.billing_postal_code"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("user_settings.postal_code_plac"),type:"text"},domProps:{value:t.billing.billing_postal_code},on:{input:function(e){e.target.composing||t.$set(t.billing,"billing_postal_code",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1)]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("user_settings.country"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",rules:"required",name:"billing_country"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("SelectInput",{attrs:{default:t.billing.billing_country,options:t.countries,placeholder:t.$t("user_settings.country_plac"),isError:a[0]},model:{value:t.billing.billing_country,callback:function(e){t.$set(t.billing,"billing_country",e)},expression:"billing.billing_country"}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("user_settings.state"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",rules:"required",name:"billing_state"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billing.billing_state,expression:"billing.billing_state"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("user_settings.state_plac"),type:"text"},domProps:{value:t.billing.billing_state},on:{input:function(e){e.target.composing||t.$set(t.billing,"billing_state",e.target.value)}}}),t._v(" "),n("small",{staticClass:"input-help"},[t._v("\n State, county, province, or region.\n ")]),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("user_settings.phone_number"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",rules:"required",name:"billing_phone_number"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billing.billing_phone_number,expression:"billing.billing_phone_number"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("user_settings.phone_number_plac"),type:"text"},domProps:{value:t.billing.billing_phone_number},on:{input:function(e){e.target.composing||t.$set(t.billing,"billing_phone_number",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1)])]}}],null,!1,2994122159)})],1):t._e()]),t._v(" "),n("div",{staticClass:"summary"},[n("FormLabel",[t._v(t._s(t.$t("page_upgrade_account.section_summary")))]),t._v(" "),t.requestedPlan?n("div",{staticClass:"summary-list",class:{"is-error":t.isError}},[n("div",{staticClass:"row"},[n("div",{staticClass:"cell"},[n("b",[t._v(t._s(t.requestedPlan.data.attributes.name))]),t._v(" "),n("small",[t._v(t._s(t.$t("page_upgrade_account.summary.period")))])]),t._v(" "),n("div",{staticClass:"cell"},[n("b",[t._v(t._s(t.requestedPlan.data.attributes.price))])])]),t._v(" "),t.taxRates?n("div",{staticClass:"row"},[n("div",{staticClass:"cell"},[n("b",[t._v(t._s(t.$t("page_upgrade_account.summary.vat"))+" - ("+t._s(t.taxRates.jurisdiction)+" "+t._s(t.taxRates.percentage)+"%)")])]),t._v(" "),n("div",{staticClass:"cell"},[n("b",[t._v(t._s(t.taxRates.plan_price_formatted))])])]):t._e(),t._v(" "),t.taxRates?t._e():n("div",{staticClass:"row"},[n("div",{staticClass:"cell"},[n("b",[t._v(t._s(t.$t("global.total")))])]),t._v(" "),n("div",{staticClass:"cell"},[n("b",[t._v(t._s(t.requestedPlan.data.attributes.price))])])]),t._v(" "),t.taxRates?n("div",{staticClass:"row"},[n("div",{staticClass:"cell"},[n("b",[t._v(t._s(t.$t("page_upgrade_account.summary.total_with_vat")))])]),t._v(" "),n("div",{staticClass:"cell"},[n("b",[t._v(t._s(t.taxRates.plan_price_formatted))])])]):t._e(),t._v(" "),n("ButtonBase",{staticClass:"next-submit",attrs:{disabled:t.isSubmitted,loading:t.isSubmitted,type:"submit","button-style":"theme-solid"},nativeOn:{click:function(e){return t.submitOrder(e)}}},[t._v("\n "+t._s(t.$t("page_upgrade_account.summary.submit_button"))+"\n ")]),t._v(" "),t.isError?n("p",{staticClass:"error-message"},[t._v(t._s(t.errorMessage))]):t._e(),t._v(" "),n("small",{staticClass:"disclaimer"},[t._v("\n "+t._s(t.$t("page_upgrade_account.summary.submit_disclaimer",{app:t.config.app_name}))+"\n ")])],1):t._e()],1)])])],1),t._v(" "),t.isLoading?n("div",{attrs:{id:"loader"}},[n("Spinner")],1):t._e()])}),[],!1,null,"05cec4db",null).exports),us={name:"MenuBar",components:{BoxIcon:kn,MonitorIcon:ta,ChevronRightIcon:On,UploadCloudIcon:fa,CreditCardIcon:En,HardDriveIcon:qn,DatabaseIcon:jn,FileTextIcon:Fn,SettingsIcon:sa,Trash2Icon:pa,CloudIcon:$n,PowerIcon:ia,UsersIcon:ba,ShareIcon:la,LockIcon:Jn,UserIcon:va},props:["navigation"]},fs=(n(346),Ke(us,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("ul",{staticClass:"link-group"},t._l(t.navigation,(function(e,a){return e.isVisible?n("router-link",{key:a,staticClass:"link-item",class:e.icon,attrs:{to:{name:e.routeName}},nativeOn:{click:function(n){return t.$emit("menu",e.icon)}}},[n("div",{staticClass:"menu-icon"},["hard-drive"===e.icon?n("hard-drive-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"share"===e.icon?n("share-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"trash"===e.icon?n("trash2-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"power"===e.icon?n("power-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"settings"===e.icon?n("settings-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"latest"===e.icon?n("upload-cloud-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"user"===e.icon?n("user-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"users"===e.icon?n("users-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"lock"===e.icon?n("lock-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"file-text"===e.icon?n("file-text-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"database"===e.icon?n("database-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"credit-card"===e.icon?n("credit-card-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"cloud"===e.icon?n("cloud-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"monitor"===e.icon?n("monitor-icon",{attrs:{size:"17"}}):t._e(),t._v(" "),"box"===e.icon?n("box-icon",{attrs:{size:"17"}}):t._e()],1),t._v(" "),n("b",{staticClass:"menu-link"},[n("span",[t._v(t._s(e.title))]),t._v(" "),n("chevron-right-icon",{staticClass:"arrow-right",attrs:{size:"15"}})],1)]):t._e()})),1)}),[],!1,null,"732ad081",null).exports),ms={name:"AdminMobileMenu",components:{MenuItemList:fs,MobileHeader:Lr},data:function(){return{AdminNavigation:[{icon:"box",title:this.$t("admin_menu.dashboard"),routeName:"Dashboard",isVisible:!0},{icon:"users",title:this.$t("admin_menu.users"),routeName:"Users",isVisible:!0},{icon:"settings",title:this.$t("admin_menu.settings"),routeName:"AppOthers",isVisible:!0}],SassNavigation:[{icon:"database",title:this.$t("admin_menu.plans"),routeName:"Plans",isVisible:!0},{icon:"file-text",title:this.$t("admin_menu.invoices"),routeName:"Invoices",isVisible:!0},{icon:"monitor",title:this.$t("admin_menu.pages"),routeName:"Pages",isVisible:!0}]}}},vs=(n(348),Ke(ms,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"single-page"}},[n("div",{attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("div",{staticClass:"content-page"},[n("nav",{staticClass:"mobile-navigation"},[n("b",{staticClass:"mobile-menu-label"},[t._v(t._s(t.$t("global.admin")))]),t._v(" "),n("MenuItemList",{attrs:{navigation:t.AdminNavigation}}),t._v(" "),n("b",{staticClass:"mobile-menu-label"},[t._v(t._s(t.$t("global.saas")))]),t._v(" "),n("MenuItemList",{attrs:{navigation:t.SassNavigation}})],1)])],1)])}),[],!1,null,"ca3ed3b6",null).exports),bs={name:"UserProfileMobileMenu",components:{MenuItemList:fs,MobileHeader:Lr},data:function(){return{ProfileNavigation:[{icon:"user",title:this.$t("menu.profile"),routeName:"Profile",isVisible:!0},{icon:"hard-drive",title:this.$t("menu.storage"),routeName:"Storage",isVisible:!0},{icon:"lock",title:this.$t("menu.password"),routeName:"Password",isVisible:!0}],SubscriptionNavigation:[{icon:"cloud",title:this.$t("menu.subscription"),routeName:"Subscription",isVisible:!0},{icon:"credit-card",title:this.$t("menu.payment_cards"),routeName:"PaymentMethods",isVisible:!0},{icon:"file-text",title:this.$t("menu.invoices"),routeName:"Invoice",isVisible:!0}]}}},hs=(n(350),Ke(bs,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"single-page"}},[n("div",{attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("div",{staticClass:"content-page"},[n("nav",{staticClass:"mobile-navigation"},[n("b",{staticClass:"mobile-menu-label"},[t._v(t._s(t.$t("global.menu")))]),t._v(" "),n("MenuItemList",{attrs:{navigation:t.ProfileNavigation}}),t._v(" "),n("b",{staticClass:"mobile-menu-label"},[t._v(t._s(t.$t("global.subscription")))]),t._v(" "),n("MenuItemList",{attrs:{navigation:t.SubscriptionNavigation}})],1)])],1)])}),[],!1,null,"e2f621f6",null).exports);function gs(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function ys(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var _s={name:"Settings",computed:function(t){for(var e=1;e0?n("div",{attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("PageHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("div",{staticClass:"content-page"},[n("DatatableWrapper",{staticClass:"table",attrs:{paginator:!0,columns:t.columns,data:t.invoices},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.row;return[n("tr",[n("td",[n("a",{staticClass:"cell-item",attrs:{href:t.$getInvoiceLink(a.data.attributes.customer,a.data.id),target:"_blank"}},[t._v("\n "+t._s(a.data.attributes.order)+"\n ")])]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.total)+"\n ")])]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.bag.description)+"\n ")])]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.created_at_formatted)+"\n ")])]),t._v(" "),n("td",[a.relationships?n("router-link",{attrs:{to:{name:"UserInvoices",params:{id:a.relationships.user.data.id}}}},[n("DatatableCellImage",{attrs:{"image-size":"small",image:a.relationships.user.data.attributes.avatar,title:a.relationships.user.data.attributes.name}})],1):n("span",{staticClass:"cell-item"},[t._v("\n -\n ")])],1),t._v(" "),n("td",[n("div",{staticClass:"action-icons"},[n("a",{attrs:{href:t.$getInvoiceLink(a.data.attributes.customer,a.data.id),target:"_blank"}},[n("external-link-icon",{staticClass:"icon",attrs:{size:"15"}})],1)])])])]}}],null,!1,2814171842)})],1)],1):t._e(),t._v(" "),!t.isLoading&&0===t.invoices.length&&t.config.stripe_public_key?n("EmptyPageContent",{attrs:{icon:"file-text",title:t.$t("admin_page_invoices.empty.title"),description:t.$t("admin_page_invoices.empty.description")}}):t._e(),t._v(" "),t.config.stripe_public_key?t._e():n("EmptyPageContent",{attrs:{icon:"settings",title:t.$t("activation.stripe.title"),description:t.$t("activation.stripe.description")}},[n("router-link",{attrs:{to:{name:"AppPayments"}}},[n("ButtonBase",{attrs:{"button-style":"theme"}},[t._v(t._s(t.$t("activation.stripe.button")))])],1)],1),t._v(" "),t.isLoading?n("div",{attrs:{id:"loader"}},[n("Spinner")],1):t._e()],1)}),[],!1,null,"827f9224",null).exports),Is={name:"WidgetWrapper",props:["icon","title"],components:{ChevronRightIcon:On,HardDriveIcon:qn,StarIcon:da,UsersIcon:ba}},As=(n(360),Ke(Is,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"widget"},[n("div",{staticClass:"widget-content"},[n("div",{staticClass:"headline"},[n("div",{staticClass:"icon"},["users"===t.icon?n("users-icon",{attrs:{size:"19"}}):t._e(),t._v(" "),"star"===t.icon?n("star-icon",{attrs:{size:"19"}}):t._e(),t._v(" "),"hard-drive"===t.icon?n("hard-drive-icon",{attrs:{size:"19"}}):t._e()],1),t._v(" "),n("b",{staticClass:"title"},[t._v(t._s(t.title))])]),t._v(" "),t._t("default")],2)])}),[],!1,null,"0c299a3c",null).exports),Es={name:"WidgetLatestRegistrations",props:["icon","title"],components:{DatatableCellImage:ks,DatatableWrapper:bo,WidgetWrapper:As,Trash2Icon:pa,ColorLabel:Vr,Edit2Icon:Tn},data:function(){return{isLoading:!1,users:void 0,columns:[{label:this.$t("admin_page_user.table.name"),field:"data.attributes.name",sortable:!0},{label:this.$t("admin_page_user.table.role"),field:"data.attributes.role",sortable:!0},{label:this.$t("admin_page_user.table.storage_used"),field:"relationships.storage.data.attributes.used",sortable:!0},{label:this.$t("admin_page_user.table.created_at"),field:"data.attributes.created_at_formatted",sortable:!0},{label:this.$t("admin_page_user.table.action"),field:"data.action",sortable:!1}]}},methods:{getRoleColor:function(t){switch(t){case"admin":return"purple";case"user":return"yellow"}}},created:function(){var t=this;sn.a.get("/api/dashboard/new-users").then((function(e){t.users=e.data.data,t.isLoading=!1}))}},js=(n(362),Ke(Es,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("WidgetWrapper",{attrs:{icon:t.icon,title:t.title}},[t.users?n("DatatableWrapper",{staticClass:"table table-users",attrs:{paginator:!1,columns:t.columns,data:t.users},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.row;return[n("tr",[n("td",{staticStyle:{width:"300px"}},[n("router-link",{attrs:{to:{name:"UserDetail",params:{id:a.data.id}}}},[n("DatatableCellImage",{attrs:{image:a.data.attributes.avatar,title:a.data.attributes.name,description:a.data.attributes.email}})],1)],1),t._v(" "),n("td",[n("ColorLabel",{attrs:{color:t.getRoleColor(a.data.attributes.role)}},[t._v("\n "+t._s(a.data.attributes.role)+"\n ")])],1),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.relationships.storage.data.attributes.used_formatted)+"\n ")])]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.created_at_formatted)+"\n ")])]),t._v(" "),n("td",[n("div",{staticClass:"action-icons"},[n("router-link",{attrs:{to:{name:"UserDetail",params:{id:a.data.id}}}},[n("edit-2-icon",{staticClass:"icon icon-edit",attrs:{size:"15"}})],1),t._v(" "),n("router-link",{attrs:{to:{name:"UserDelete",params:{id:a.data.id}}}},[n("trash2-icon",{staticClass:"icon icon-trash",attrs:{size:"15"}})],1)],1)])])]}}],null,!1,4044936208)}):t._e()],1)}),[],!1,null,"a4b6f66e",null).exports),Ds={name:"WidgetTotals",props:["icon","title","value","linkRoute","linkName"],components:{ChevronRightIcon:On,WidgetWrapper:As,HardDriveIcon:qn,StarIcon:da,UsersIcon:ba}};n(364);function Ts(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function Ls(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Bs={name:"Dashboard",components:{WidgetLatestRegistrations:js,MobileActionButton:Ya,EmptyPageContent:zs,DatatableWrapper:bo,WidgetTotals:Ke(Ds,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("WidgetWrapper",{attrs:{icon:t.icon,title:t.title}},[n("div",{staticClass:"widget-value"},[n("span",[t._v(t._s(t.value))])]),t._v(" "),n("router-link",{staticClass:"footer-link",attrs:{to:{name:t.linkRoute}}},[n("span",{staticClass:"content"},[t._v(t._s(t.linkName))]),t._v(" "),n("chevron-right-icon",{attrs:{size:"16"}})],1)],1)}),[],!1,null,"26c186ae",null).exports,CreditCardIcon:En,SectionTitle:no,MobileHeader:Lr,SwitchInput:$o,PageHeader:Mr,ButtonBase:Li,ColorLabel:Vr,InfoBox:Nr,Spinner:ki},computed:function(t){for(var e=1;e0?n("div",{attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("PageHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("div",{staticClass:"content-page"},[n("DatatableWrapper",{staticClass:"table table-users",attrs:{paginator:!1,columns:t.columns,data:t.pages},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.row;return[n("tr",[n("td",{staticClass:"name",staticStyle:{"min-width":"200px"}},[n("router-link",{staticClass:"cell-item",attrs:{to:{name:"PageEdit",params:{slug:a.data.attributes.slug}},tag:"div"}},[n("span",[t._v(t._s(a.data.attributes.title))])])],1),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.slug)+"\n ")])]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[n("SwitchInput",{staticClass:"switch",attrs:{state:a.data.attributes.visibility},on:{input:function(e){return t.changeStatus(e,a.data.attributes.slug)}}})],1)]),t._v(" "),n("td",[n("div",{staticClass:"action-icons"},[n("router-link",{attrs:{to:{name:"PageEdit",params:{slug:a.data.attributes.slug}}}},[n("edit-2-icon",{staticClass:"icon icon-edit",attrs:{size:"15"}})],1)],1)])])]}}],null,!1,4217981628)})],1)],1):t._e(),t._v(" "),t.isLoading?n("div",{attrs:{id:"loader"}},[n("Spinner")],1):t._e()])}),[],!1,null,"aab3f91e",null).exports),Hs={name:"PageEdit",components:{ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,FormLabel:Kr,SectionTitle:no,MobileHeader:Lr,SwitchInput:$o,PageHeader:Mr,ButtonBase:Li,required:nn,Spinner:ki},data:function(){return{isLoading:!0,page:void 0}},methods:{changeStatus:function(t){this.$updateText("/pages/"+this.$route.params.slug,"visibility",t)}},created:function(){var t=this;sn.a.get("/api/pages/"+this.$route.params.slug).then((function(e){t.page=e.data,t.isLoading=!1}))}},Gs=(n(372),Ke(Hs,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"single-page"}},[!t.isLoading&&t.page?n("div",{attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("PageHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("div",{staticClass:"content-page"},[n("ValidationObserver",{ref:"personalInformation",staticClass:"form block-form form-fixed-width",attrs:{tag:"form"},scopedSlots:t._u([{key:"default",fn:function(e){e.invalid;return[n("FormLabel",[t._v("\n "+t._s(t.page.data.attributes.title)+"\n ")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("div",{staticClass:"input-wrapper"},[n("div",{staticClass:"inline-wrapper"},[n("div",{staticClass:"switch-label"},[n("label",{staticClass:"input-label"},[t._v(t._s(t.$t("admin_pages.form.visibility"))+":")]),t._v(" "),n("small",{staticClass:"input-help"},[t._v(t._s(t.$t("admin_pages.form.visibility_help")))])]),t._v(" "),n("SwitchInput",{staticClass:"switch",attrs:{state:t.page.data.attributes.visibility},on:{input:t.changeStatus}})],1)])]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_pages.form.title"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Name",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.page.data.attributes.title,expression:"page.data.attributes.title"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_pages.form.title_plac"),type:"text"},domProps:{value:t.page.data.attributes.title},on:{input:[function(e){e.target.composing||t.$set(t.page.data.attributes,"title",e.target.value)},function(e){return t.$updateText("/pages/"+t.$route.params.slug,"title",t.page.data.attributes.title)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_pages.form.slug"))+":")]),t._v(" "),n("div",{staticClass:"input-wrapper"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.page.data.attributes.slug,expression:"page.data.attributes.slug"}],attrs:{type:"text",disabled:""},domProps:{value:t.page.data.attributes.slug},on:{input:function(e){e.target.composing||t.$set(t.page.data.attributes,"slug",e.target.value)}}})])]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_pages.form.content"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Name",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.page.data.attributes.content,expression:"page.data.attributes.content"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_pages.form.content_plac"),rows:"18"},domProps:{value:t.page.data.attributes.content},on:{input:[function(e){e.target.composing||t.$set(t.page.data.attributes,"content",e.target.value)},function(e){return t.$updateText("/pages/"+t.$route.params.slug,"content",t.page.data.attributes.content)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1)]}}],null,!1,3800545431)})],1)],1):t._e(),t._v(" "),t.isLoading?n("div",{attrs:{id:"loader"}},[n("Spinner")],1):t._e()])}),[],!1,null,"392a47b2",null).exports),Ws={name:"ImageInput",props:["image","error"],components:{ImageIcon:{name:"ImageIcon",props:{size:{type:String,default:"24",validator:function(t){return!isNaN(t)||t.length>=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-image"},e.data]),[t("rect",{attrs:{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}}),t("circle",{attrs:{cx:"8.5",cy:"8.5",r:"1.5"}}),t("polyline",{attrs:{points:"21 15 16 10 5 21"}})])}}},data:function(){return{imagePreview:void 0}},computed:{isData:function(){return void 0!==this.imagePreview&&""!==this.imagePreview}},methods:{showImagePreview:function(t){var e=this,n=t.target.files[0].name,a=n.substring(n.lastIndexOf(".")+1).toLowerCase();if(["png","jpg","jpeg","svg"].includes(a)){var i=t.target.files[0],r=new FileReader;r.onload=function(){return e.imagePreview=r.result},r.readAsDataURL(i),this.$emit("input",t.target.files[0])}else alert(this.$t("validation_errors.wrong_image"))}},created:function(){this.image&&(this.imagePreview=this.image)}},Ks=(n(374),Ke(Ws,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"dropzone",class:{"is-error":t.error}},[n("input",{ref:"file",staticClass:"dummy",attrs:{type:"file"},on:{change:function(e){return t.showImagePreview(e)}}}),t._v(" "),t.imagePreview?n("img",{ref:"image",staticClass:"image-preview",attrs:{src:t.imagePreview}}):t._e(),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:!t.isData,expression:"! isData"}],staticClass:"dropzone-message"},[n("image-icon",{staticClass:"icon-upload",attrs:{size:"28"}}),t._v(" "),n("span",{staticClass:"dropzone-title"},[t._v("\n "+t._s(t.$t("input_image.title"))+"\n ")]),t._v(" "),n("span",{staticClass:"dropzone-description"},[t._v("\n "+t._s(t.$t("input_image.supported"))+"\n ")])],1)])}),[],!1,null,"24846626",null).exports),Ys={name:"SetupBox",props:["title","description","theme"]},Zs=(n(376),Ke(Ys,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"setup-box",class:t.theme},[n("b",{staticClass:"title"},[t._v(t._s(t.title))]),t._v(" "),n("p",{staticClass:"description"},[t._v(t._s(t.description))]),t._v(" "),t._t("default")],2)}),[],!1,null,"664a78dc",null).exports);function Js(t,e,n,a,i,r,o){try{var s=t[r](o),l=s.value}catch(t){return void n(t)}s.done?e(l):Promise.resolve(l).then(a,i)}var Xs={name:"AppAppearance",components:{ValidationObserver:Ze.ValidationObserver,ValidationProvider:Ze.ValidationProvider,StorageItemDetail:to,PageTabGroup:Zr,SelectInput:oo,ImageInput:Ks,ButtonBase:Li,FormLabel:Kr,SetupBox:Zs,required:nn,PageTab:Xr,InfoBox:Nr},data:function(){return{isLoading:!1,isSendingRequest:!1,encryptionList:[{label:"TLS",value:"tls"},{label:"SSL",value:"ssl"}],mail:{driver:"",host:"",port:"",username:"",password:"",encryption:""}}},methods:{EmailSetupSubmit:function(){var t,e=this;return(t=Ge.a.mark((function t(){return Ge.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.$refs.EmailSetup.validate();case 2:if(t.sent){t.next=5;break}return t.abrupt("return");case 5:e.isSendingRequest=!0,sn.a.put("/api/settings/email",e.mail).then((function(){rn.$emit("toaster",{type:"success",message:e.$t("toaster.email_set")})})).catch((function(){rn.$emit("alert:open",{title:e.$t("popup_error.title"),message:e.$t("popup_error.message")})})).finally((function(){e.isSendingRequest=!1}));case 7:case"end":return t.stop()}}),t)})),function(){var e=this,n=arguments;return new Promise((function(a,i){var r=t.apply(e,n);function o(t){Js(r,a,i,o,s,"next",t)}function s(t){Js(r,a,i,o,s,"throw",t)}o(void 0)}))})()}}},Qs=(n(378),Ke(Xs,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",{staticClass:"form-fixed-width",attrs:{"is-loading":t.isLoading}},[n("PageTabGroup",[n("ValidationObserver",{ref:"EmailSetup",staticClass:"form block-form",attrs:{tag:"form"},on:{submit:function(e){return e.preventDefault(),t.EmailSetupSubmit(e)}},scopedSlots:t._u([{key:"default",fn:function(e){e.invalid;return[n("FormLabel",[t._v(t._s(t.$t("admin_settings.email.section_email")))]),t._v(" "),n("InfoBox",[n("p",{domProps:{innerHTML:t._s(t.$t("admin_settings.email.email_disclaimer"))}})]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.email.driver"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Mail Driver",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.mail.driver,expression:"mail.driver"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.email.driver_plac"),type:"text"},domProps:{value:t.mail.driver},on:{input:function(e){e.target.composing||t.$set(t.mail,"driver",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.email.host"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Mail Host",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.mail.host,expression:"mail.host"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.email.host_plac"),type:"text"},domProps:{value:t.mail.host},on:{input:function(e){e.target.composing||t.$set(t.mail,"host",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.email.port"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Mail Port",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.mail.port,expression:"mail.port"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.email.port_plac"),type:"text"},domProps:{value:t.mail.port},on:{input:function(e){e.target.composing||t.$set(t.mail,"port",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.email.username"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Mail Username",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.mail.username,expression:"mail.username"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.email.username_plac"),type:"text"},domProps:{value:t.mail.username},on:{input:function(e){e.target.composing||t.$set(t.mail,"username",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.email.password"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Mail Password",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.mail.password,expression:"mail.password"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.email.password_plac"),type:"text"},domProps:{value:t.mail.password},on:{input:function(e){e.target.composing||t.$set(t.mail,"password",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.email.encryption"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Mail Encryption",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("SelectInput",{attrs:{options:t.encryptionList,placeholder:t.$t("admin_settings.email.encryption_plac"),isError:a[0]},model:{value:t.mail.encryption,callback:function(e){t.$set(t.mail,"encryption",e)},expression:"mail.encryption"}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("ButtonBase",{staticClass:"submit-button",attrs:{loading:t.isSendingRequest,disabled:t.isSendingRequest,type:"submit","button-style":"theme"}},[t._v("\n "+t._s(t.$t("admin_settings.email.save_button"))+"\n ")])]}}])})],1)],1)}),[],!1,null,"7e367779",null).exports),tl={name:"AppIndex",components:{ValidationObserver:Ze.ValidationObserver,ValidationProvider:Ze.ValidationProvider,StorageItemDetail:to,PageTabGroup:Zr,SwitchInput:$o,SelectInput:oo,ImageInput:Ks,ButtonBase:Li,FormLabel:Kr,SetupBox:Zs,required:nn,PageTab:Xr,InfoBox:Nr},data:function(){return{isLoading:!0,section_features:1,section_feature_boxes:1,section_pricing_content:1,section_get_started:1,header_title:"",header_description:"",features_title:"",features_description:"",feature_title_1:"",feature_description_1:"",feature_title_2:"",feature_description_2:"",feature_title_3:"",feature_description_3:"",pricing_title:"",pricing_description:"",get_started_title:"",get_started_description:"",footer_content:""}},mounted:function(){var t=this;sn.a.get("/api/settings",{params:{column:"footer_content|get_started_description|get_started_title|pricing_description|pricing_title|feature_description_3|feature_title_3|feature_description_2|feature_title_2|feature_description_1|feature_title_1|features_description|features_title|header_description|header_title|section_get_started|section_pricing_content|section_feature_boxes|section_features"}}).then((function(e){t.section_features=parseInt(e.data.section_features),t.section_feature_boxes=parseInt(e.data.section_feature_boxes),t.section_pricing_content=parseInt(e.data.section_pricing_content),t.section_get_started=parseInt(e.data.section_get_started),t.header_title=e.data.header_title,t.header_description=e.data.header_description,t.features_title=e.data.features_title,t.features_description=e.data.features_description,t.feature_title_1=e.data.feature_title_1,t.feature_description_1=e.data.feature_description_1,t.feature_title_2=e.data.feature_title_2,t.feature_description_2=e.data.feature_description_2,t.feature_title_3=e.data.feature_title_3,t.feature_description_3=e.data.feature_description_3,t.pricing_title=e.data.pricing_title,t.pricing_description=e.data.pricing_description,t.get_started_title=e.data.get_started_title,t.get_started_description=e.data.get_started_description,t.footer_content=e.data.footer_content})).finally((function(){t.isLoading=!1}))}},el=(n(380),Ke(tl,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",{staticClass:"form-fixed-width",attrs:{"is-loading":t.isLoading}},[n("PageTabGroup",[n("div",{staticClass:"form block-form"},[n("div",[n("FormLabel",[t._v("Header Title")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("img",{staticClass:"page-image",attrs:{src:"/assets/images/admin/main-header.jpg",alt:"Main Header"}})]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Title:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"App Title",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.header_title,expression:"header_title"}],class:{"is-error":a[0]},attrs:{type:"text"},domProps:{value:t.header_title},on:{input:[function(e){e.target.composing||(t.header_title=e.target.value)},function(e){return t.$updateText("/settings","header_title",t.header_title)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Description:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"App Description",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.header_description,expression:"header_description"}],class:{"is-error":a[0]},attrs:{rows:"2"},domProps:{value:t.header_description},on:{input:[function(e){e.target.composing||(t.header_description=e.target.value)},function(e){return t.$updateText("/settings","header_description",t.header_description)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1)],1),t._v(" "),n("div",[n("FormLabel",{staticClass:"mt-70"},[t._v("Features Title")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("div",{staticClass:"input-wrapper"},[n("div",{staticClass:"inline-wrapper"},[n("div",{staticClass:"switch-label"},[n("label",{staticClass:"input-label"},[t._v("\n Show section:\n ")])]),t._v(" "),n("SwitchInput",{staticClass:"switch",attrs:{state:t.section_features},on:{input:function(e){return t.$updateText("/settings","section_features",t.section_features)}},model:{value:t.section_features,callback:function(e){t.section_features=e},expression:"section_features"}})],1)])]),t._v(" "),t.section_features?n("div",[n("div",{staticClass:"block-wrapper"},[n("img",{staticClass:"page-image",attrs:{src:"/assets/images/admin/main-features.jpg",alt:"Main Features"}})]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Title:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"App Title",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.features_title,expression:"features_title"}],class:{"is-error":a[0]},attrs:{type:"text"},domProps:{value:t.features_title},on:{input:[function(e){e.target.composing||(t.features_title=e.target.value)},function(e){return t.$updateText("/settings","features_title",t.features_title)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,2650938929)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Description:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"App Description",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.features_description,expression:"features_description"}],class:{"is-error":a[0]},attrs:{rows:"2"},domProps:{value:t.features_description},on:{input:[function(e){e.target.composing||(t.features_description=e.target.value)},function(e){return t.$updateText("/settings","features_description",t.features_description)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,1897302499)})],1)]):t._e()],1),t._v(" "),n("div",[n("FormLabel",{staticClass:"mt-70"},[t._v("Feature Boxes")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("div",{staticClass:"input-wrapper"},[n("div",{staticClass:"inline-wrapper"},[n("div",{staticClass:"switch-label"},[n("label",{staticClass:"input-label"},[t._v("\n Show section:\n ")])]),t._v(" "),n("SwitchInput",{staticClass:"switch",attrs:{state:t.section_feature_boxes},on:{input:function(e){return t.$updateText("/settings","section_feature_boxes",t.section_feature_boxes)}},model:{value:t.section_feature_boxes,callback:function(e){t.section_feature_boxes=e},expression:"section_feature_boxes"}})],1)])]),t._v(" "),t.section_feature_boxes?n("div",[n("div",{staticClass:"block-wrapper"},[n("img",{staticClass:"page-image",attrs:{src:"/assets/images/admin/feature-boxes.jpg",alt:"Main Features"}})]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("First Box Title:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Feature Title 1",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.feature_title_1,expression:"feature_title_1"}],class:{"is-error":a[0]},attrs:{type:"text"},domProps:{value:t.feature_title_1},on:{input:[function(e){e.target.composing||(t.feature_title_1=e.target.value)},function(e){return t.$updateText("/settings","feature_title_1",t.feature_title_1)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,2100902737)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("First Box Description:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Feature Description 1",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.feature_description_1,expression:"feature_description_1"}],class:{"is-error":a[0]},attrs:{rows:"2"},domProps:{value:t.feature_description_1},on:{input:[function(e){e.target.composing||(t.feature_description_1=e.target.value)},function(e){return t.$updateText("/settings","feature_description_1",t.feature_description_1)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,1467532035)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Second Box Title:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Feature Title 2",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.feature_title_2,expression:"feature_title_2"}],class:{"is-error":a[0]},attrs:{type:"text"},domProps:{value:t.feature_title_2},on:{input:[function(e){e.target.composing||(t.feature_title_2=e.target.value)},function(e){return t.$updateText("/settings","feature_title_2",t.feature_title_2)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,2285693041)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Second Box Description:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Feature Description 2",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.feature_description_2,expression:"feature_description_2"}],class:{"is-error":a[0]},attrs:{rows:"2"},domProps:{value:t.feature_description_2},on:{input:[function(e){e.target.composing||(t.feature_description_2=e.target.value)},function(e){return t.$updateText("/settings","feature_description_2",t.feature_description_2)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,955937059)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Third Box Title:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Feature Title 3",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.feature_title_3,expression:"feature_title_3"}],class:{"is-error":a[0]},attrs:{type:"text"},domProps:{value:t.feature_title_3},on:{input:[function(e){e.target.composing||(t.feature_title_3=e.target.value)},function(e){return t.$updateText("/settings","feature_title_3",t.feature_title_3)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,4115698321)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Third Box Description:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Feature Description 3",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.feature_description_3,expression:"feature_description_3"}],class:{"is-error":a[0]},attrs:{rows:"2"},domProps:{value:t.feature_description_3},on:{input:[function(e){e.target.composing||(t.feature_description_3=e.target.value)},function(e){return t.$updateText("/settings","feature_description_3",t.feature_description_3)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,359394499)})],1)]):t._e()],1),t._v(" "),n("div",[n("FormLabel",{staticClass:"mt-70"},[t._v("Pricing Content")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("div",{staticClass:"input-wrapper"},[n("div",{staticClass:"inline-wrapper"},[n("div",{staticClass:"switch-label"},[n("label",{staticClass:"input-label"},[t._v("\n Show section:\n ")])]),t._v(" "),n("SwitchInput",{staticClass:"switch",attrs:{state:t.section_pricing_content},on:{input:function(e){return t.$updateText("/settings","section_pricing_content",t.section_pricing_content)}},model:{value:t.section_pricing_content,callback:function(e){t.section_pricing_content=e},expression:"section_pricing_content"}})],1)])]),t._v(" "),t.section_pricing_content?n("div",[n("div",{staticClass:"block-wrapper"},[n("img",{staticClass:"page-image",attrs:{src:"/assets/images/admin/pricing-content.jpg",alt:"Main Features"}})]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Title:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"App Title",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.pricing_title,expression:"pricing_title"}],class:{"is-error":a[0]},attrs:{type:"text"},domProps:{value:t.pricing_title},on:{input:[function(e){e.target.composing||(t.pricing_title=e.target.value)},function(e){return t.$updateText("/settings","pricing_title",t.pricing_title)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,2028137105)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Description:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"App Description",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.pricing_description,expression:"pricing_description"}],class:{"is-error":a[0]},attrs:{rows:"2"},domProps:{value:t.pricing_description},on:{input:[function(e){e.target.composing||(t.pricing_description=e.target.value)},function(e){return t.$updateText("/settings","pricing_description",t.pricing_description)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,3622577539)})],1)]):t._e()],1),t._v(" "),n("div",[n("FormLabel",{staticClass:"mt-70"},[t._v("Get Started Content")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("div",{staticClass:"input-wrapper"},[n("div",{staticClass:"inline-wrapper"},[n("div",{staticClass:"switch-label"},[n("label",{staticClass:"input-label"},[t._v("\n Show section:\n ")])]),t._v(" "),n("SwitchInput",{staticClass:"switch",attrs:{state:t.section_get_started},on:{input:function(e){return t.$updateText("/settings","section_get_started",t.section_get_started)}},model:{value:t.section_get_started,callback:function(e){t.section_get_started=e},expression:"section_get_started"}})],1)])]),t._v(" "),t.section_get_started?n("div",[n("div",{staticClass:"block-wrapper"},[n("img",{staticClass:"page-image",attrs:{src:"/assets/images/admin/get-started-content.jpg",alt:"Main Features"}})]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Title:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"App Title",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.get_started_title,expression:"get_started_title"}],class:{"is-error":a[0]},attrs:{type:"text"},domProps:{value:t.get_started_title},on:{input:[function(e){e.target.composing||(t.get_started_title=e.target.value)},function(e){return t.$updateText("/settings","get_started_title",t.get_started_title)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,559497873)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Description:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"App Description",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.get_started_description,expression:"get_started_description"}],class:{"is-error":a[0]},attrs:{rows:"2"},domProps:{value:t.get_started_description},on:{input:[function(e){e.target.composing||(t.get_started_description=e.target.value)},function(e){return t.$updateText("/settings","get_started_description",t.get_started_description)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,2618926915)})],1)]):t._e()],1),t._v(" "),n("div",[n("FormLabel",{staticClass:"mt-70"},[t._v("Footer")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Footer content:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"App Title",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.footer_content,expression:"footer_content"}],class:{"is-error":a[0]},attrs:{type:"text"},domProps:{value:t.footer_content},on:{input:[function(e){e.target.composing||(t.footer_content=e.target.value)},function(e){return t.$updateText("/settings","footer_content",t.footer_content)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1)],1)])])],1)}),[],!1,null,"0374226a",null).exports),nl={name:"AppOthers",components:{ValidationObserver:Ze.ValidationObserver,ValidationProvider:Ze.ValidationProvider,StorageItemDetail:to,PageTabGroup:Zr,SwitchInput:$o,SelectInput:oo,ImageInput:Ks,ButtonBase:Li,FormLabel:Kr,SetupBox:Zs,required:nn,PageTab:Xr,InfoBox:Nr},data:function(){return{isLoading:!0,app:{contactMail:"",googleAnalytics:"",defaultStorage:"",userRegistration:1,storageLimitation:1}}},mounted:function(){var t=this;sn.a.get("/api/settings",{params:{column:"contact_email|google_analytics|storage_default|registration|storage_limitation"}}).then((function(e){t.isLoading=!1,t.app.contactMail=e.data.contact_email,t.app.googleAnalytics=e.data.google_analytics,t.app.defaultStorage=e.data.storage_default,t.app.userRegistration=parseInt(e.data.registration),t.app.storageLimitation=parseInt(e.data.storage_limitation)}))}},al=(n(382),Ke(nl,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",{staticClass:"form-fixed-width",attrs:{"is-loading":t.isLoading}},[n("PageTabGroup",[n("div",{staticClass:"form block-form"},[n("FormLabel",[t._v("\n "+t._s(t.$t("admin_settings.others.section_user"))+"\n ")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("div",{staticClass:"input-wrapper"},[n("div",{staticClass:"inline-wrapper"},[n("div",{staticClass:"switch-label"},[n("label",{staticClass:"input-label"},[t._v("\n "+t._s(t.$t("admin_settings.others.storage_limit"))+":\n ")]),t._v(" "),n("small",{staticClass:"input-help",domProps:{innerHTML:t._s(t.$t("admin_settings.others.storage_limit_help"))}})]),t._v(" "),n("SwitchInput",{staticClass:"switch",attrs:{state:t.app.storageLimitation},on:{input:function(e){return t.$updateText("/settings","storage_limitation",t.app.storageLimitation)}},model:{value:t.app.storageLimitation,callback:function(e){t.$set(t.app,"storageLimitation",e)},expression:"app.storageLimitation"}})],1)])]),t._v(" "),t.app.storageLimitation?n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.others.default_storage"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Default Storage Space",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.app.defaultStorage,expression:"app.defaultStorage"}],class:{"is-error":a[0]},attrs:{min:"1",max:"999999999",placeholder:t.$t("admin_settings.others.default_storage_plac"),type:"number"},domProps:{value:t.app.defaultStorage},on:{input:[function(e){e.target.composing||t.$set(t.app,"defaultStorage",e.target.value)},function(e){return t.$updateText("/settings","storage_default",t.app.defaultStorage)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!1,1344268535)})],1):t._e(),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("div",{staticClass:"input-wrapper"},[n("div",{staticClass:"inline-wrapper"},[n("div",{staticClass:"switch-label"},[n("label",{staticClass:"input-label"},[t._v("\n "+t._s(t.$t("admin_settings.others.allow_registration"))+":\n ")]),t._v(" "),n("small",{staticClass:"input-help",domProps:{innerHTML:t._s(t.$t("admin_settings.others.allow_registration_help"))}})]),t._v(" "),n("SwitchInput",{staticClass:"switch",attrs:{state:t.app.userRegistration},on:{input:function(e){return t.$updateText("/settings","registration",t.app.userRegistration)}},model:{value:t.app.userRegistration,callback:function(e){t.$set(t.app,"userRegistration",e)},expression:"app.userRegistration"}})],1)])]),t._v(" "),n("FormLabel",{staticClass:"mt-70"},[t._v(t._s(t.$t("admin_settings.others.section_others")))]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.others.contact_email"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Contact Email",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.app.contactMail,expression:"app.contactMail"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.others.contact_email_plac"),type:"email"},domProps:{value:t.app.contactMail},on:{input:[function(e){e.target.composing||t.$set(t.app,"contactMail",e.target.value)},function(e){return t.$updateText("/settings","contact_email",t.app.contactMail)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.others.google_analytics"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Google Analytics Code"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.app.googleAnalytics,expression:"app.googleAnalytics"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.others.google_analytics_plac"),type:"text"},domProps:{value:t.app.googleAnalytics},on:{input:[function(e){e.target.composing||t.$set(t.app,"googleAnalytics",e.target.value)},function(e){return t.$updateText("/settings","google_analytics",t.app.googleAnalytics)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1)],1)])],1)}),[],!1,null,"059ef42e",null).exports),il={name:"AppAppearance",components:{ValidationObserver:Ze.ValidationObserver,ValidationProvider:Ze.ValidationProvider,StorageItemDetail:to,PageTabGroup:Zr,SelectInput:oo,ImageInput:Ks,ButtonBase:Li,FormLabel:Kr,SetupBox:Zs,required:nn,PageTab:Xr,InfoBox:Nr},data:function(){return{isLoading:!0,countries:[{label:"Afghanistan",value:"AF"},{label:"Åland Islands",value:"AX"},{label:"Albania",value:"AL"},{label:"Algeria",value:"DZ"},{label:"American Samoa",value:"AS"},{label:"AndorrA",value:"AD"},{label:"Angola",value:"AO"},{label:"Anguilla",value:"AI"},{label:"Antarctica",value:"AQ"},{label:"Antigua and Barbuda",value:"AG"},{label:"Argentina",value:"AR"},{label:"Armenia",value:"AM"},{label:"Aruba",value:"AW"},{label:"Australia",value:"AU"},{label:"Austria",value:"AT"},{label:"Azerbaijan",value:"AZ"},{label:"Bahamas",value:"BS"},{label:"Bahrain",value:"BH"},{label:"Bangladesh",value:"BD"},{label:"Barbados",value:"BB"},{label:"Belarus",value:"BY"},{label:"Belgium",value:"BE"},{label:"Belize",value:"BZ"},{label:"Benin",value:"BJ"},{label:"Bermuda",value:"BM"},{label:"Bhutan",value:"BT"},{label:"Bolivia",value:"BO"},{label:"Bosnia and Herzegovina",value:"BA"},{label:"Botswana",value:"BW"},{label:"Bouvet Island",value:"BV"},{label:"Brazil",value:"BR"},{label:"British Indian Ocean Territory",value:"IO"},{label:"Brunei Darussalam",value:"BN"},{label:"Bulgaria",value:"BG"},{label:"Burkina Faso",value:"BF"},{label:"Burundi",value:"BI"},{label:"Cambodia",value:"KH"},{label:"Cameroon",value:"CM"},{label:"Canada",value:"CA"},{label:"Cape Verde",value:"CV"},{label:"Cayman Islands",value:"KY"},{label:"Central African Republic",value:"CF"},{label:"Chad",value:"TD"},{label:"Chile",value:"CL"},{label:"China",value:"CN"},{label:"Christmas Island",value:"CX"},{label:"Cocos (Keeling) Islands",value:"CC"},{label:"Colombia",value:"CO"},{label:"Comoros",value:"KM"},{label:"Congo",value:"CG"},{label:"Congo, The Democratic Republic of the",value:"CD"},{label:"Cook Islands",value:"CK"},{label:"Costa Rica",value:"CR"},{label:"Cote D'Ivoire",value:"CI"},{label:"Croatia",value:"HR"},{label:"Cuba",value:"CU"},{label:"Cyprus",value:"CY"},{label:"Czech Republic",value:"CZ"},{label:"Denmark",value:"DK"},{label:"Djibouti",value:"DJ"},{label:"Dominica",value:"DM"},{label:"Dominican Republic",value:"DO"},{label:"Ecuador",value:"EC"},{label:"Egypt",value:"EG"},{label:"El Salvador",value:"SV"},{label:"Equatorial Guinea",value:"GQ"},{label:"Eritrea",value:"ER"},{label:"Estonia",value:"EE"},{label:"Ethiopia",value:"ET"},{label:"Falkland Islands (Malvinas)",value:"FK"},{label:"Faroe Islands",value:"FO"},{label:"Fiji",value:"FJ"},{label:"Finland",value:"FI"},{label:"France",value:"FR"},{label:"French Guiana",value:"GF"},{label:"French Polynesia",value:"PF"},{label:"French Southern Territories",value:"TF"},{label:"Gabon",value:"GA"},{label:"Gambia",value:"GM"},{label:"Georgia",value:"GE"},{label:"Germany",value:"DE"},{label:"Ghana",value:"GH"},{label:"Gibraltar",value:"GI"},{label:"Greece",value:"GR"},{label:"Greenland",value:"GL"},{label:"Grenada",value:"GD"},{label:"Guadeloupe",value:"GP"},{label:"Guam",value:"GU"},{label:"Guatemala",value:"GT"},{label:"Guernsey",value:"GG"},{label:"Guinea",value:"GN"},{label:"Guinea-Bissau",value:"GW"},{label:"Guyana",value:"GY"},{label:"Haiti",value:"HT"},{label:"Heard Island and Mcdonald Islands",value:"HM"},{label:"Holy See (Vatican City State)",value:"VA"},{label:"Honduras",value:"HN"},{label:"Hong Kong",value:"HK"},{label:"Hungary",value:"HU"},{label:"Iceland",value:"IS"},{label:"India",value:"IN"},{label:"Indonesia",value:"ID"},{label:"Iran, Islamic Republic Of",value:"IR"},{label:"Iraq",value:"IQ"},{label:"Ireland",value:"IE"},{label:"Isle of Man",value:"IM"},{label:"Israel",value:"IL"},{label:"Italy",value:"IT"},{label:"Jamaica",value:"JM"},{label:"Japan",value:"JP"},{label:"Jersey",value:"JE"},{label:"Jordan",value:"JO"},{label:"Kazakhstan",value:"KZ"},{label:"Kenya",value:"KE"},{label:"Kiribati",value:"KI"},{label:"Korea, Democratic People'S Republic of",value:"KP"},{label:"Korea, Republic of",value:"KR"},{label:"Kuwait",value:"KW"},{label:"Kyrgyzstan",value:"KG"},{label:"Lao People'S Democratic Republic",value:"LA"},{label:"Latvia",value:"LV"},{label:"Lebanon",value:"LB"},{label:"Lesotho",value:"LS"},{label:"Liberia",value:"LR"},{label:"Libyan Arab Jamahiriya",value:"LY"},{label:"Liechtenstein",value:"LI"},{label:"Lithuania",value:"LT"},{label:"Luxembourg",value:"LU"},{label:"Macao",value:"MO"},{label:"Macedonia, The Former Yugoslav Republic of",value:"MK"},{label:"Madagascar",value:"MG"},{label:"Malawi",value:"MW"},{label:"Malaysia",value:"MY"},{label:"Maldives",value:"MV"},{label:"Mali",value:"ML"},{label:"Malta",value:"MT"},{label:"Marshall Islands",value:"MH"},{label:"Martinique",value:"MQ"},{label:"Mauritania",value:"MR"},{label:"Mauritius",value:"MU"},{label:"Mayotte",value:"YT"},{label:"Mexico",value:"MX"},{label:"Micronesia, Federated States of",value:"FM"},{label:"Moldova, Republic of",value:"MD"},{label:"Monaco",value:"MC"},{label:"Mongolia",value:"MN"},{label:"Montserrat",value:"MS"},{label:"Morocco",value:"MA"},{label:"Mozambique",value:"MZ"},{label:"Myanmar",value:"MM"},{label:"Namibia",value:"NA"},{label:"Nauru",value:"NR"},{label:"Nepal",value:"NP"},{label:"Netherlands",value:"NL"},{label:"Netherlands Antilles",value:"AN"},{label:"New Caledonia",value:"NC"},{label:"New Zealand",value:"NZ"},{label:"Nicaragua",value:"NI"},{label:"Niger",value:"NE"},{label:"Nigeria",value:"NG"},{label:"Niue",value:"NU"},{label:"Norfolk Island",value:"NF"},{label:"Northern Mariana Islands",value:"MP"},{label:"Norway",value:"NO"},{label:"Oman",value:"OM"},{label:"Pakistan",value:"PK"},{label:"Palau",value:"PW"},{label:"Palestinian Territory, Occupied",value:"PS"},{label:"Panama",value:"PA"},{label:"Papua New Guinea",value:"PG"},{label:"Paraguay",value:"PY"},{label:"Peru",value:"PE"},{label:"Philippines",value:"PH"},{label:"Pitcairn",value:"PN"},{label:"Poland",value:"PL"},{label:"Portugal",value:"PT"},{label:"Puerto Rico",value:"PR"},{label:"Qatar",value:"QA"},{label:"Reunion",value:"RE"},{label:"Romania",value:"RO"},{label:"Russian Federation",value:"RU"},{label:"RWANDA",value:"RW"},{label:"Saint Helena",value:"SH"},{label:"Saint Kitts and Nevis",value:"KN"},{label:"Saint Lucia",value:"LC"},{label:"Saint Pierre and Miquelon",value:"PM"},{label:"Saint Vincent and the Grenadines",value:"VC"},{label:"Samoa",value:"WS"},{label:"San Marino",value:"SM"},{label:"Sao Tome and Principe",value:"ST"},{label:"Saudi Arabia",value:"SA"},{label:"Senegal",value:"SN"},{label:"Serbia and Montenegro",value:"CS"},{label:"Seychelles",value:"SC"},{label:"Sierra Leone",value:"SL"},{label:"Singapore",value:"SG"},{label:"Slovakia",value:"SK"},{label:"Slovenia",value:"SI"},{label:"Solomon Islands",value:"SB"},{label:"Somalia",value:"SO"},{label:"South Africa",value:"ZA"},{label:"South Georgia and the South Sandwich Islands",value:"GS"},{label:"Spain",value:"ES"},{label:"Sri Lanka",value:"LK"},{label:"Sudan",value:"SD"},{label:"Suriname",value:"SR"},{label:"Svalbard and Jan Mayen",value:"SJ"},{label:"Swaziland",value:"SZ"},{label:"Sweden",value:"SE"},{label:"Switzerland",value:"CH"},{label:"Syrian Arab Republic",value:"SY"},{label:"Taiwan, Province of China",value:"TW"},{label:"Tajikistan",value:"TJ"},{label:"Tanzania, United Republic of",value:"TZ"},{label:"Thailand",value:"TH"},{label:"Timor-Leste",value:"TL"},{label:"Togo",value:"TG"},{label:"Tokelau",value:"TK"},{label:"Tonga",value:"TO"},{label:"Trinidad and Tobago",value:"TT"},{label:"Tunisia",value:"TN"},{label:"Turkey",value:"TR"},{label:"Turkmenistan",value:"TM"},{label:"Turks and Caicos Islands",value:"TC"},{label:"Tuvalu",value:"TV"},{label:"Uganda",value:"UG"},{label:"Ukraine",value:"UA"},{label:"United Arab Emirates",value:"AE"},{label:"United Kingdom",value:"GB"},{label:"United States",value:"US"},{label:"United States Minor Outlying Islands",value:"UM"},{label:"Uruguay",value:"UY"},{label:"Uzbekistan",value:"UZ"},{label:"Vanuatu",value:"VU"},{label:"Venezuela",value:"VE"},{label:"Viet Nam",value:"VN"},{label:"Virgin Islands, British",value:"VG"},{label:"Virgin Islands, U.S.",value:"VI"},{label:"Wallis and Futuna",value:"WF"},{label:"Western Sahara",value:"EH"},{label:"Yemen",value:"YE"},{label:"Zambia",value:"ZM"},{label:"Zimbabwe",value:"ZW"}],billingInformation:{billing_phone_number:"",billing_postal_code:"",billing_vat_number:"",billing_address:"",billing_country:"",billing_state:"",billing_city:"",billing_name:""}}},mounted:function(){var t=this;sn.a.get("/api/settings",{params:{column:"billing_phone_number|billing_postal_code|billing_vat_number|billing_address|billing_country|billing_state|billing_city|billing_name"}}).then((function(e){t.isLoading=!1,t.billingInformation.billing_phone_number=e.data.billing_phone_number,t.billingInformation.billing_postal_code=e.data.billing_postal_code,t.billingInformation.billing_vat_number=e.data.billing_vat_number,t.billingInformation.billing_address=e.data.billing_address,t.billingInformation.billing_country=e.data.billing_country,t.billingInformation.billing_state=e.data.billing_state,t.billingInformation.billing_city=e.data.billing_city,t.billingInformation.billing_name=e.data.billing_name}))}},rl=(n(384),Ke(il,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",{staticClass:"form-fixed-width",attrs:{"is-loading":t.isLoading}},[n("PageTabGroup",[n("div",{staticClass:"form block-form"},[n("FormLabel",[t._v(t._s(t.$t("admin_settings.billings.section_company")))]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.billings.company_name"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Billing Name",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billingInformation.billing_name,expression:"billingInformation.billing_name"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.billings.company_name_plac"),type:"text"},domProps:{value:t.billingInformation.billing_name},on:{input:[function(e){e.target.composing||t.$set(t.billingInformation,"billing_name",e.target.value)},function(e){return t.$updateText("/settings","billing_name",t.billingInformation.billing_name)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.billings.vat"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Billing Vat Number",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billingInformation.billing_vat_number,expression:"billingInformation.billing_vat_number"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.billings.vat_plac"),type:"text"},domProps:{value:t.billingInformation.billing_vat_number},on:{input:[function(e){e.target.composing||t.$set(t.billingInformation,"billing_vat_number",e.target.value)},function(e){return t.$updateText("/settings","billing_vat_number",t.billingInformation.billing_vat_number)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1),t._v(" "),n("FormLabel",{staticClass:"mt-70"},[t._v(t._s(t.$t("admin_settings.billings.section_billing")))]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.billings.country"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Billing Country",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("SelectInput",{attrs:{default:t.billingInformation.billing_country,options:t.countries,placeholder:t.$t("admin_settings.billings.country_plac"),isError:a[0]},on:{input:function(e){return t.$updateText("/settings","billing_country",t.billingInformation.billing_country)}},model:{value:t.billingInformation.billing_country,callback:function(e){t.$set(t.billingInformation,"billing_country",e)},expression:"billingInformation.billing_country"}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.billings.address"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Billing Address",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billingInformation.billing_address,expression:"billingInformation.billing_address"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.billings.address_plac"),type:"text"},domProps:{value:t.billingInformation.billing_address},on:{input:[function(e){e.target.composing||t.$set(t.billingInformation,"billing_address",e.target.value)},function(e){return t.$updateText("/settings","billing_address",t.billingInformation.billing_address)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1),t._v(" "),n("div",{staticClass:"wrapper-inline"},[n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.billings.city"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Billing City",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billingInformation.billing_city,expression:"billingInformation.billing_city"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.billings.city_plac"),type:"text"},domProps:{value:t.billingInformation.billing_city},on:{input:[function(e){e.target.composing||t.$set(t.billingInformation,"billing_city",e.target.value)},function(e){return t.$updateText("/settings","billing_city",t.billingInformation.billing_city)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.billings.postal_code"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Billing Postal Code",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billingInformation.billing_postal_code,expression:"billingInformation.billing_postal_code"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.billings.postal_code_plac"),type:"text"},domProps:{value:t.billingInformation.billing_postal_code},on:{input:[function(e){e.target.composing||t.$set(t.billingInformation,"billing_postal_code",e.target.value)},function(e){return t.$updateText("/settings","billing_postal_code",t.billingInformation.billing_postal_code)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1)]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.billings.state"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Billing State",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billingInformation.billing_state,expression:"billingInformation.billing_state"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.billings.state_plac"),type:"text"},domProps:{value:t.billingInformation.billing_state},on:{input:[function(e){e.target.composing||t.$set(t.billingInformation,"billing_state",e.target.value)},function(e){return t.$updateText("/settings","billing_state",t.billingInformation.billing_state)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_settings.billings.phone_number"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Billing Phone Number"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.billingInformation.billing_phone_number,expression:"billingInformation.billing_phone_number"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_settings.billings.phone_number_plac"),type:"text"},domProps:{value:t.billingInformation.billing_phone_number},on:{input:[function(e){e.target.composing||t.$set(t.billingInformation,"billing_phone_number",e.target.value)},function(e){return t.$updateText("/settings","billing_phone_number",t.billingInformation.billing_phone_number)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}])})],1)],1)])],1)}),[],!1,null,"4f681c92",null).exports);function ol(t,e,n,a,i,r,o){try{var s=t[r](o),l=s.value}catch(t){return void n(t)}s.done?e(l):Promise.resolve(l).then(a,i)}function sl(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function ll(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var dl={name:"AppPayments",components:{ValidationObserver:Ze.ValidationObserver,ValidationProvider:Ze.ValidationProvider,StorageItemDetail:to,PageTabGroup:Zr,SwitchInput:$o,SelectInput:oo,ImageInput:Ks,ButtonBase:Li,FormLabel:Kr,SetupBox:Zs,required:nn,PageTab:Xr,InfoBox:Nr},computed:function(t){for(var e=1;e0?n("div",{attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("PageHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("div",{staticClass:"content-page"},[n("div",{staticClass:"table-tools"},[n("div",{staticClass:"buttons"},[n("router-link",{attrs:{to:{name:"PlanCreate"}}},[n("MobileActionButton",{attrs:{icon:"plus"}},[t._v("\n "+t._s(t.$t("admin_page_plans.create_plan_button"))+"\n ")])],1)],1),t._v(" "),n("div",{staticClass:"searching"})]),t._v(" "),n("DatatableWrapper",{staticClass:"table table-users",attrs:{paginator:!1,columns:t.columns,data:t.plans},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.row;return[n("tr",[n("td",{staticStyle:{"max-width":"80px"}},[n("span",{staticClass:"cell-item"},[n("SwitchInput",{staticClass:"switch",attrs:{state:a.data.attributes.status},on:{input:function(e){return t.changeStatus(e,a.data.id)}}})],1)]),t._v(" "),n("td",{staticClass:"name",staticStyle:{"min-width":"120px"}},[n("router-link",{staticClass:"cell-item",attrs:{to:{name:"PlanSettings",params:{id:a.data.id}},tag:"div"}},[n("span",[t._v(t._s(a.data.attributes.name))])])],1),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.subscribers)+"\n ")])]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.price_formatted)+"\n ")])]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.capacity_formatted)+"\n ")])]),t._v(" "),n("td",[n("div",{staticClass:"action-icons"},[n("router-link",{attrs:{to:{name:"PlanSettings",params:{id:a.data.id}}}},[n("edit-2-icon",{staticClass:"icon icon-edit",attrs:{size:"15"}})],1),t._v(" "),n("router-link",{attrs:{to:{name:"PlanDelete",params:{id:a.data.id}}}},[n("trash2-icon",{staticClass:"icon icon-trash",attrs:{size:"15"}})],1)],1)])])]}}],null,!1,3279855567)})],1)],1):t._e(),t._v(" "),!t.isLoading&&0===t.plans.length&&t.config.stripe_public_key?n("EmptyPageContent",{attrs:{icon:"file",title:t.$t("admin_page_plans.empty.title"),description:t.$t("admin_page_plans.empty.description")}},[n("router-link",{attrs:{to:{name:"PlanCreate"},tag:"p"}},[n("ButtonBase",{attrs:{"button-style":"theme"}},[t._v(t._s(t.$t("admin_page_plans.empty.button")))])],1)],1):t._e(),t._v(" "),t.config.stripe_public_key?t._e():n("EmptyPageContent",{attrs:{icon:"settings",title:t.$t("activation.stripe.title"),description:t.$t("activation.stripe.description")}},[n("router-link",{attrs:{to:{name:"AppPayments"}}},[n("ButtonBase",{attrs:{"button-style":"theme"}},[t._v(t._s(t.$t("activation.stripe.button")))])],1)],1),t._v(" "),t.isLoading?n("div",{attrs:{id:"loader"}},[n("Spinner")],1):t._e()],1)}),[],!1,null,"0da90200",null).exports),hl={name:"Plan",components:{UsersIcon:ba,Trash2Icon:pa,SettingsIcon:sa,SectionTitle:no,MobileHeader:Lr,PageHeader:Mr,Spinner:ki},data:function(){return{isLoading:!0,plan:void 0}},created:function(){var t=this;sn.a.get("/api/plans/"+this.$route.params.id).then((function(e){t.plan=e.data.data,t.isLoading=!1}))}},gl=(n(392),Ke(hl,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"single-page"}},[t.isLoading?t._e():n("div",{attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("PageHeader",{attrs:{"can-back":!0,title:t.$router.currentRoute.meta.title}}),t._v(" "),n("div",{staticClass:"content-page"},[n("div",{staticClass:"menu-list-wrapper horizontal"},[n("router-link",{staticClass:"menu-list-item link",attrs:{replace:"",to:{name:"PlanSettings",params:{id:t.plan.id}}}},[n("div",{staticClass:"icon"},[n("settings-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("admin_page_plans.tabs.settings"))+"\n ")])]),t._v(" "),n("router-link",{staticClass:"menu-list-item link",attrs:{replace:"",to:{name:"PlanSubscribers",params:{id:t.plan.id}}}},[n("div",{staticClass:"icon"},[n("users-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("admin_page_plans.tabs.subscribers"))+"\n ")])]),t._v(" "),n("router-link",{staticClass:"menu-list-item link",attrs:{replace:"",to:{name:"PlanDelete",params:{id:t.plan.id}}}},[n("div",{staticClass:"icon"},[n("trash2-icon",{attrs:{size:"17"}})],1),t._v(" "),n("div",{staticClass:"label"},[t._v("\n "+t._s(t.$t("admin_page_plans.tabs.delete"))+"\n ")])])],1),t._v(" "),n("router-view",{attrs:{plan:t.plan}})],1)],1),t._v(" "),t.isLoading?n("div",{attrs:{id:"loader"}},[n("Spinner")],1):t._e()])}),[],!1,null,"17590cf9",null).exports);function yl(t,e,n,a,i,r,o){try{var s=t[r](o),l=s.value}catch(t){return void n(t)}s.done?e(l):Promise.resolve(l).then(a,i)}var _l={name:"PlanCreate",components:{ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,SectionTitle:no,MobileHeader:Lr,SelectInput:oo,ButtonBase:Li,ImageInput:Ks,PageHeader:Mr,FormLabel:Kr,required:nn,InfoBox:Nr},data:function(){return{isLoading:!1,errorMessage:"",isError:!1,plan:{name:"",price:"",capacity:"",description:""}}},methods:{createPlan:function(){var t,e=this;return(t=Ge.a.mark((function t(){return Ge.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.$refs.createPlan.validate();case 2:if(t.sent){t.next=5;break}return t.abrupt("return");case 5:e.isLoading=!0,sn.a.post("/api/plans/store",{attributes:e.plan}).then((function(t){rn.$emit("toaster",{type:"success",message:e.$t("toaster.plan_created")}),e.$router.push({name:"PlanSettings",params:{id:t.data.data.id}})})).catch((function(t){422==t.response.status&&t.response.data.errors.storage_capacity&&e.$refs.createPlan.setErrors({"storage capacity":e.$t("errors.capacity_digit")}),500==t.response.status&&(e.isError=!0,e.errorMessage=t.response.data.message)})).finally((function(){e.isLoading=!1}));case 7:case"end":return t.stop()}}),t)})),function(){var e=this,n=arguments;return new Promise((function(a,i){var r=t.apply(e,n);function o(t){yl(r,a,i,o,s,"next",t)}function s(t){yl(r,a,i,o,s,"throw",t)}o(void 0)}))})()}}},xl=(n(394),Ke(_l,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"single-page"}},[n("div",{staticClass:"small-width",attrs:{id:"page-content"}},[n("MobileHeader",{attrs:{title:t.$router.currentRoute.meta.title}}),t._v(" "),n("PageHeader",{attrs:{"can-back":!0,title:t.$router.currentRoute.meta.title}}),t._v(" "),n("div",{staticClass:"content-page"},[n("ValidationObserver",{ref:"createPlan",staticClass:"form block-form form-fixed-width",attrs:{tag:"form"},on:{submit:function(e){return e.preventDefault(),t.createPlan(e)}},scopedSlots:t._u([{key:"default",fn:function(e){e.invalid;return[n("div",{staticClass:"form-group"},[n("FormLabel",[t._v("\n "+t._s(t.$t("admin_page_plans.form.title_details"))+"\n ")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_page_plans.form.name"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Name",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.plan.name,expression:"plan.name"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_page_plans.form.name_plac"),type:"text"},domProps:{value:t.plan.name},on:{input:function(e){e.target.composing||t.$set(t.plan,"name",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_page_plans.form.description"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Description"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.plan.description,expression:"plan.description"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_page_plans.form.description_plac")},domProps:{value:t.plan.description},on:{input:function(e){e.target.composing||t.$set(t.plan,"description",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("FormLabel",[t._v("\n "+t._s(t.$t("admin_page_plans.form.title_pricing"))+"\n ")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_page_plans.form.price"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Plan price",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.plan.price,expression:"plan.price"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_page_plans.form.price_plac"),type:"number",step:"0.01",min:"1",max:"99999"},domProps:{value:t.plan.price},on:{input:function(e){e.target.composing||t.$set(t.plan,"price",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_page_plans.form.storage"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Storage capacity",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.plan.capacity,expression:"plan.capacity"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_page_plans.form.storage_plac"),type:"number",min:"1",max:"999999999"},domProps:{value:t.plan.capacity},on:{input:function(e){e.target.composing||t.$set(t.plan,"capacity",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)}),t._v(" "),n("small",{staticClass:"input-help"},[t._v("\n "+t._s(t.$t("admin_page_plans.form.storage_helper"))+"\n ")])],1)],1),t._v(" "),t.isError?n("div",{staticClass:"form-group"},[n("InfoBox",{staticStyle:{"margin-top":"40px"},attrs:{type:"error"}},[n("p",[t._v(t._s(t.errorMessage))])])],1):t._e(),t._v(" "),n("div",{staticClass:"form-group"},[n("ButtonBase",{attrs:{disabled:t.isLoading,loading:t.isLoading,"button-style":"theme",type:"submit"}},[t._v("\n "+t._s(t.$t("admin_page_plans.create_plan_button"))+"\n ")])],1)]}}])})],1)],1)])}),[],!1,null,"adc2cef8",null).exports);function wl(t,e,n,a,i,r,o){try{var s=t[r](o),l=s.value}catch(t){return void n(t)}s.done?e(l):Promise.resolve(l).then(a,i)}var kl={name:"PlanDelete",props:["plan"],components:{ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,PageTabGroup:Zr,ButtonBase:Li,FormLabel:Kr,SetupBox:Zs,required:nn,InfoBox:Nr,PageTab:Xr},data:function(){return{isSendingRequest:!1,isLoading:!1,planName:""}},methods:{deletePlan:function(){var t,e=this;return(t=Ge.a.mark((function t(){return Ge.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.$refs.deletePlan.validate();case 2:if(t.sent){t.next=5;break}return t.abrupt("return");case 5:e.isSendingRequest=!0,sn.a.delete(e.$store.getters.api+"/plans/"+e.$route.params.id,{data:{name:e.planName}}).then((function(){e.isSendingRequest=!1,rn.$emit("success:open",{emoji:"👍",title:e.$t("popup_deleted_plan.title"),message:e.$t("popup_deleted_plan.message")}),e.$router.push({name:"Plans"})})).catch((function(){e.isSendingRequest=!1,rn.$emit("alert:open",{title:e.$t("popup_error.title"),message:e.$t("popup_error.message")})}));case 7:case"end":return t.stop()}}),t)})),function(){var e=this,n=arguments;return new Promise((function(a,i){var r=t.apply(e,n);function o(t){wl(r,a,i,o,s,"next",t)}function s(t){wl(r,a,i,o,s,"throw",t)}o(void 0)}))})()}}},Cl=(n(396),Ke(kl,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",{staticClass:"form-fixed-width"},[n("PageTabGroup",[n("FormLabel",[t._v("\n "+t._s(t.$t("admin_page_plans.form.title_delete"))+"\n ")]),t._v(" "),n("InfoBox",[n("p",[t._v(t._s(t.$t("admin_page_plans.disclaimer_delete_plan")))])]),t._v(" "),n("ValidationObserver",{ref:"deletePlan",staticClass:"form block-form",attrs:{tag:"form"},on:{submit:function(e){return e.preventDefault(),t.deletePlan(e)}},scopedSlots:t._u([{key:"default",fn:function(e){e.invalid;return[n("ValidationProvider",{staticClass:"block-wrapper",attrs:{tag:"div",mode:"passive",name:"Plan name",rules:"required|is:"+t.plan.attributes.name},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("label",[t._v(t._s(t.$t("admin_page_user.label_delete_user",{user:t.plan.attributes.name}))+":")]),t._v(" "),n("div",{staticClass:"single-line-form"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.planName,expression:"planName"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_page_plans.form.name_delete_plac"),type:"text"},domProps:{value:t.planName},on:{input:function(e){e.target.composing||(t.planName=e.target.value)}}}),t._v(" "),n("ButtonBase",{staticClass:"submit-button",attrs:{loading:t.isSendingRequest,disabled:t.isSendingRequest,type:"submit","button-style":"danger"}},[t._v("\n "+t._s(t.$t("admin_page_plans.delete_plan_button"))+"\n ")])],1),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})]}}])})],1)],1)}),[],!1,null,"3f9382aa",null).exports),zl={name:"PlanSettings",props:["plan"],components:{ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,StorageItemDetail:to,PageTabGroup:Zr,SwitchInput:$o,SelectInput:oo,ButtonBase:Li,FormLabel:Kr,SetupBox:Zs,required:nn,InfoBox:Nr,PageTab:Xr},data:function(){return{isLoading:!1,isSendingRequest:!1}},methods:{changeStatus:function(t){this.$updateText("/plans/"+this.$route.params.id+"/update","is_active",t)}}},Pl=(n(398),Ke(zl,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",[n("ValidationObserver",{ref:"personalInformation",staticClass:"form block-form form-fixed-width",attrs:{tag:"form"},scopedSlots:t._u([{key:"default",fn:function(e){e.invalid;return[n("PageTabGroup",[n("FormLabel",[t._v("\n "+t._s(t.$t("admin_page_plans.form.title_details"))+"\n ")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("div",{staticClass:"input-wrapper"},[n("div",{staticClass:"inline-wrapper"},[n("div",{staticClass:"switch-label"},[n("label",{staticClass:"input-label"},[t._v(t._s(t.$t("admin_page_plans.form.status"))+":")]),t._v(" "),n("small",{staticClass:"input-help"},[t._v(t._s(t.$t("admin_page_plans.form.status_help")))])]),t._v(" "),n("SwitchInput",{staticClass:"switch",attrs:{state:t.plan.attributes.status},on:{input:t.changeStatus}})],1)])]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_page_plans.form.name"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Name",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.plan.attributes.name,expression:"plan.attributes.name"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_page_plans.form.name_plac"),type:"text"},domProps:{value:t.plan.attributes.name},on:{input:[function(e){e.target.composing||t.$set(t.plan.attributes,"name",e.target.value)},function(e){return t.$updateText("/plans/"+t.$route.params.id+"/update","name",t.plan.attributes.name)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_page_plans.form.description"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Description"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.plan.attributes.description,expression:"plan.attributes.description"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_page_plans.form.description_plac")},domProps:{value:t.plan.attributes.description},on:{input:[function(e){e.target.composing||t.$set(t.plan.attributes,"description",e.target.value)},function(e){return t.$updateText("/plans/"+t.$route.params.id+"/update","description",t.plan.attributes.description)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v(t._s(t.$t("admin_page_plans.form.storage"))+":")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Storage capacity",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.plan.attributes.capacity,expression:"plan.attributes.capacity"}],class:{"is-error":a[0]},attrs:{placeholder:t.$t("admin_page_plans.form.storage_plac"),type:"number",min:"1",max:"999999999"},domProps:{value:t.plan.attributes.capacity},on:{input:[function(e){e.target.composing||t.$set(t.plan.attributes,"capacity",e.target.value)},function(e){return t.$updateText("/plans/"+t.$route.params.id+"/update","capacity",t.plan.attributes.capacity)}]}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)}),t._v(" "),n("small",{staticClass:"input-help"},[t._v("\n "+t._s(t.$t("admin_page_plans.form.storage_helper"))+"\n ")])],1),t._v(" "),n("InfoBox",[n("p",[t._v(t._s(t.$t("admin_page_plans.disclaimer_edit_price")))])])],1)]}}])})],1)}),[],!1,null,"3614d452",null).exports),Ol={name:"PlanSubscribers",components:{DatatableCellImage:ks,DownloadCloudIcon:Dn,DatatableWrapper:bo,PageTabGroup:Zr,Trash2Icon:pa,Edit2Icon:Tn,PageTab:Xr,InfoBox:Nr},data:function(){return{subscribers:void 0,isLoading:!1,columns:[{label:this.$t("admin_page_user.table.name"),field:"data.attributes.name",sortable:!0},{label:this.$t("admin_page_user.table.storage_used"),field:"data.relationships.storage.data.attributes.used",sortable:!0},{label:this.$t("admin_page_user.table.action"),sortable:!1}]}},created:function(){var t=this;sn.a.get("/api/plans/"+this.$route.params.id+"/subscribers").then((function(e){t.subscribers=e.data.data,t.isLoading=!1}))}},Sl=(n(400),Ke(Ol,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",{attrs:{"is-loading":t.isLoading}},[t.subscribers&&t.subscribers.length>0?n("PageTabGroup",[n("DatatableWrapper",{staticClass:"table",attrs:{paginator:!0,columns:t.columns,data:t.subscribers},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.row;return[n("tr",[n("td",[n("router-link",{attrs:{to:{name:"UserDetail",params:{id:a.data.id}}}},[n("DatatableCellImage",{attrs:{"image-size":"small",image:a.data.attributes.avatar,title:a.data.attributes.name}})],1)],1),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.relationships.storage.data.attributes.used)+"%\n ")])]),t._v(" "),n("td",[n("div",{staticClass:"action-icons"},[n("router-link",{attrs:{to:{name:"UserDetail",params:{id:a.data.id}}}},[n("edit-2-icon",{staticClass:"icon icon-edit",attrs:{size:"15"}})],1),t._v(" "),n("router-link",{attrs:{to:{name:"UserDelete",params:{id:a.data.id}}}},[n("trash2-icon",{staticClass:"icon icon-trash",attrs:{size:"15"}})],1)],1)])])]}}],null,!1,195435782)})],1):n("InfoBox",[n("p",[t._v(t._s(t.$t("admin_page_plans.subscribers.empty")))])])],1)}),[],!1,null,"0441d4a5",null).exports);function $l(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function Il(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Al={name:"Profile",components:{DatatableCellImage:ks,MobileActionButton:Ya,DatatableWrapper:bo,SectionTitle:no,MobileHeader:Lr,Trash2Icon:pa,PageHeader:Mr,ButtonBase:Li,ColorLabel:Vr,Edit2Icon:Tn,Spinner:ki},computed:function(t){for(var e=1;e0?n("PageTabGroup",[n("DatatableWrapper",{staticClass:"table",attrs:{paginator:!0,columns:t.columns,data:t.invoices},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.row;return[n("tr",[n("td",[n("a",{staticClass:"cell-item",attrs:{href:t.$getInvoiceLink(a.data.attributes.customer,a.data.id),target:"_blank"}},[t._v("\n "+t._s(a.data.attributes.order)+"\n ")])]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.total)+"\n ")])]),t._v(" "),n("td",[a.data.attributes.invoice_subscriptions[0].description?n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.invoice_subscriptions[0].description)+"\n ")]):t._e()]),t._v(" "),n("td",[n("span",{staticClass:"cell-item"},[t._v("\n "+t._s(a.data.attributes.created_at_formatted)+"\n ")])]),t._v(" "),n("td",[n("div",{staticClass:"action-icons"},[n("a",{attrs:{href:t.$getInvoiceLink(a.data.attributes.customer,a.data.id),target:"_blank"}},[n("external-link-icon",{staticClass:"icon",attrs:{size:"15"}})],1)])])])]}}],null,!1,1081543407)})],1):n("InfoBox",[n("p",[t._v(t._s(t.$t("admin_page_user.invoices.empty")))])])],1)}),[],!1,null,"210f4d1b",null).exports),rd={name:"UserSubscription",components:{ExternalLinkIcon:Ln,DatatableWrapper:bo,ListInfoItem:si,PageTabGroup:Zr,ButtonBase:Li,FormLabel:Kr,ListInfo:di,InfoBox:Nr,PageTab:Xr},computed:{status:function(){return this.subscription.attributes.incomplete?this.$t("global.incomplete"):this.subscription.attributes.canceled?this.$t("global.canceled"):this.subscription.attributes.active?this.$t("global.active"):void 0}},data:function(){return{subscription:void 0,isLoading:!0}},created:function(){var t=this;sn.a.get("/api/users/"+this.$route.params.id+"/subscription").then((function(e){t.subscription=e.data.data,t.isLoading=!1})).catch((function(e){404==e.response.status&&(t.isLoading=!1)}))}},od=(n(418),Ke(rd,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("PageTab",{staticClass:"form-fixed-width",attrs:{"is-loading":t.isLoading}},[t.subscription?n("PageTabGroup",[n("FormLabel",[t._v("\n "+t._s(t.$t("user_subscription.title"))+"\n ")]),t._v(" "),t.subscription.attributes.canceled?t._e():n("div",{staticClass:"state active"},[n("ListInfo",{staticClass:"list-info"},[n("ListInfoItem",{staticClass:"list-item",attrs:{title:t.$t("user_subscription.plan"),content:t.subscription.attributes.name+" - "+t.subscription.attributes.capacity_formatted}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item",attrs:{title:t.$t("user_subscription.billed"),content:t.$t("admin_page_user.subscription.interval_mo")}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item",attrs:{title:t.$t("user_subscription.status"),content:t.status}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item capitalize",attrs:{title:t.$t("user_subscription.created_at"),content:t.subscription.attributes.created_at}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item capitalize",attrs:{title:t.$t("user_subscription.renews_at"),content:t.subscription.attributes.ends_at}})],1)],1),t._v(" "),t.subscription.attributes.canceled?n("div",{staticClass:"state canceled"},[n("ListInfo",{staticClass:"list-info"},[n("ListInfoItem",{staticClass:"list-item",attrs:{title:t.$t("user_subscription.plan"),content:t.subscription.attributes.name+" - "+t.subscription.attributes.capacity_formatted}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item",attrs:{title:t.$t("user_subscription.status"),content:t.status}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item capitalize",attrs:{title:t.$t("user_subscription.canceled_at"),content:t.subscription.attributes.canceled_at}}),t._v(" "),n("ListInfoItem",{staticClass:"list-item capitalize",attrs:{title:t.$t("user_subscription.ends_at"),content:t.subscription.attributes.ends_at}})],1)],1):t._e()],1):t._e(),t._v(" "),t.subscription?t._e():n("PageTabGroup",[n("InfoBox",[n("p",[t._v(t._s(t.$t("admin_page_user.subscription.empty")))])])],1)],1)}),[],!1,null,"3792ea4e",null).exports);function sd(t,e,n,a,i,r,o){try{var s=t[r](o),l=s.value}catch(t){return void n(t)}s.done?e(l):Promise.resolve(l).then(a,i)}function ld(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function dd(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var pd={name:"EnvironmentSetup",components:{AuthContentWrapper:Ye,ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,SettingsIcon:sa,SelectInput:oo,SwitchInput:$o,AuthContent:Je,ImageInput:Ks,AuthButton:Qe,FormLabel:Kr,required:nn,InfoBox:Nr},computed:function(t){for(var e=1;e Developers -> Webhooks -> Add Endpoint")]),t._v(". In Endpoint URL\n please copy and paste url bellow. Make sure, this url is your public domain, not localhost. In events section, please click on "),n("b",[t._v("receive all events")]),t._v(".\n That's all.")])]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Endpoint URL:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Webhook URL",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{attrs:{type:"text",disabled:""},domProps:{value:t.stripeWebhookEndpoint}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Webhook Secret:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Webhook Secret",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:t.stripeCredentials.webhookSecret,expression:"stripeCredentials.webhookSecret"}],class:{"is-error":a[0]},attrs:{placeholder:"Type your stripe webhook secret",type:"text"},domProps:{value:t.stripeCredentials.webhookSecret},on:{input:function(e){e.target.composing||t.$set(t.stripeCredentials,"webhookSecret",e.target.value)}}}),t._v(" "),a[0]?n("span",{staticClass:"error-message"},[t._v(t._s(a[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),t.isError?n("InfoBox",{staticStyle:{"margin-bottom":"-20px"},attrs:{type:"error"}},[n("p",[t._v(t._s(t.errorMessage))])]):t._e(),t._v(" "),n("div",{staticClass:"submit-wrapper"},[n("AuthButton",{attrs:{icon:"chevron-right",text:t.submitButtonText,loading:t.isLoading,disabled:t.isLoading}})],1)]}}])})],1)],1)}),[],!1,null,"138d7087",null).exports);function Md(t,e,n,a,i,r,o){try{var s=t[r](o),l=s.value}catch(t){return void n(t)}s.done?e(l):Promise.resolve(l).then(a,i)}var Rd={name:"subscriptionPlans",components:{AuthContentWrapper:Ye,ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,SettingsIcon:sa,SelectInput:oo,AuthContent:Je,ButtonBase:Li,AuthButton:Qe,FormLabel:Kr,required:nn,InfoBox:Nr,XIcon:ga},computed:{submitButtonText:function(){return this.isLoading?"Creating Subscription Stripe Plans":"Save and Go Next"}},data:function(){return{isLoading:!1,isError:!1,errorMessage:"",subscriptionPlans:[{id:1,type:"plan",attributes:{name:"",description:"",price:"",capacity:""}}]}},methods:{subscriptionPlansSubmit:function(){var t,e=this;return(t=Ge.a.mark((function t(){return Ge.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.$refs.subscriptionPlans.validate();case 2:if(t.sent){t.next=5;break}return t.abrupt("return");case 5:e.isLoading=!0,e.isError=!1,sn.a.post("/api/setup/stripe-plans",{plans:e.subscriptionPlans}).then((function(){e.$router.push({name:"EnvironmentSetup"})})).catch((function(t){(t.response.status=500)&&(e.isError=!0,e.errorMessage=t.response.data.message)})).finally((function(){e.isLoading=!1}));case 8:case"end":return t.stop()}}),t)})),function(){var e=this,n=arguments;return new Promise((function(a,i){var r=t.apply(e,n);function o(t){Md(r,a,i,o,s,"next",t)}function s(t){Md(r,a,i,o,s,"throw",t)}o(void 0)}))})()},addRow:function(){this.subscriptionPlans.push({id:Math.floor(1e7*Math.random()),type:"plans",attributes:{name:"",description:"",price:"",capacity:""}})},removeRow:function(t){this.subscriptionPlans=this.subscriptionPlans.filter((function(e){return e.id!==t.id}))}},created:function(){this.$scrollTop()}},Vd=(n(436),Ke(Rd,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("AuthContentWrapper",{ref:"auth"},[n("AuthContent",{attrs:{name:"database-credentials",visible:!0}},[n("div",{staticClass:"content-headline"},[n("settings-icon",{staticClass:"title-icon",attrs:{size:"40"}}),t._v(" "),n("h1",[t._v("Setup Wizard")]),t._v(" "),n("h2",[t._v("Set up plans for your customers.")])],1),t._v(" "),n("ValidationObserver",{ref:"subscriptionPlans",staticClass:"form block-form",attrs:{tag:"form"},on:{submit:function(e){return e.preventDefault(),t.subscriptionPlansSubmit(e)}},scopedSlots:t._u([{key:"default",fn:function(e){e.invalid;return[n("FormLabel",[t._v("Create your plans")]),t._v(" "),n("InfoBox",[n("p",[t._v("Your plans will be "),n("b",[t._v("sorted automatically")]),t._v(" in ascent order by plan price. All plans is automatically created as monthly plans.")])]),t._v(" "),n("div",{staticClass:"duplicator"},[t._l(t.subscriptionPlans,(function(e,a){return n("div",{key:a++,staticClass:"plan-item duplicator-item"},[1!==a?n("x-icon",{staticClass:"delete-item",attrs:{size:"22"},on:{click:function(n){return t.removeRow(e)}}}):t._e(),t._v(" "),n("b",{staticClass:"duplicator-title"},[t._v(t._s(a)+". Plan")]),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Name:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Name",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(a){var i=a.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:e.attributes.name,expression:"plan.attributes.name"}],class:{"is-error":i[0]},attrs:{placeholder:"Type your plan name",type:"text"},domProps:{value:e.attributes.name},on:{input:function(n){n.target.composing||t.$set(e.attributes,"name",n.target.value)}}}),t._v(" "),i[0]?n("span",{staticClass:"error-message"},[t._v(t._s(i[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Description (optional):")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Description"},scopedSlots:t._u([{key:"default",fn:function(a){var i=a.errors;return[n("textarea",{directives:[{name:"model",rawName:"v-model",value:e.attributes.description,expression:"plan.attributes.description"}],class:{"is-error":i[0]},attrs:{placeholder:"Type your plan description"},domProps:{value:e.attributes.description},on:{input:function(n){n.target.composing||t.$set(e.attributes,"description",n.target.value)}}}),t._v(" "),i[0]?n("span",{staticClass:"error-message"},[t._v(t._s(i[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Price:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Price",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(a){var i=a.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:e.attributes.price,expression:"plan.attributes.price"}],class:{"is-error":i[0]},attrs:{placeholder:"Type your plan price",type:"number",step:"0.01",min:"1",max:"99999"},domProps:{value:e.attributes.price},on:{input:function(n){n.target.composing||t.$set(e.attributes,"price",n.target.value)}}}),t._v(" "),i[0]?n("span",{staticClass:"error-message"},[t._v(t._s(i[0]))]):t._e()]}}],null,!0)})],1),t._v(" "),n("div",{staticClass:"block-wrapper"},[n("label",[t._v("Storage Capacity:")]),t._v(" "),n("ValidationProvider",{staticClass:"input-wrapper",attrs:{tag:"div",mode:"passive",name:"Storage Capacity",rules:"required"},scopedSlots:t._u([{key:"default",fn:function(a){var i=a.errors;return[n("input",{directives:[{name:"model",rawName:"v-model",value:e.attributes.capacity,expression:"plan.attributes.capacity"}],class:{"is-error":i[0]},attrs:{min:"1",max:"999999999",placeholder:"Type storage capacity in GB",type:"number"},domProps:{value:e.attributes.capacity},on:{input:function(n){n.target.composing||t.$set(e.attributes,"capacity",n.target.value)}}}),t._v(" "),i[0]?n("span",{staticClass:"error-message"},[t._v(t._s(i[0]))]):t._e()]}}],null,!0)})],1)],1)})),t._v(" "),n("ButtonBase",{staticClass:"duplicator-add-button",attrs:{"button-style":"theme-solid"},nativeOn:{click:function(e){return t.addRow(e)}}},[t._v("Add New Plan\n ")])],2),t._v(" "),t.isError?n("InfoBox",{staticStyle:{"margin-top":"40px"},attrs:{type:"error"}},[n("p",[t._v(t._s(t.errorMessage))])]):t._e(),t._v(" "),n("div",{staticClass:"submit-wrapper"},[n("AuthButton",{attrs:{icon:"chevron-right",text:t.submitButtonText,loading:t.isLoading,disabled:t.isLoading}})],1)]}}])})],1)],1)}),[],!1,null,"392fd7e4",null).exports),Ud={name:"SubscriptionService",components:{AuthContentWrapper:Ye,ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,ChevronRightIcon:On,SettingsIcon:sa,AuthContent:Je,AuthButton:Qe,required:nn},data:function(){return{isLoading:!1}},created:function(){this.$scrollTop()}},qd=(n(438),Ke(Ud,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("AuthContentWrapper",{ref:"auth"},[n("AuthContent",{attrs:{name:"subscription-service",visible:!0}},[n("div",{staticClass:"content-headline"},[n("settings-icon",{staticClass:"title-icon",attrs:{size:"40"}}),t._v(" "),n("h1",[t._v("Setup Wizard")]),t._v(" "),n("h2",[t._v("You can charge users for storage space by monthly billing plans. Please, select your charging service or skip this step if you don't want charge users:")])],1),t._v(" "),n("div",{staticClass:"services"},[n("router-link",{staticClass:"service-card",attrs:{to:{name:"StripeCredentials"},tag:"div"}},[n("img",{staticClass:"service-logo",attrs:{src:"/assets/icons/stripe-service.svg",alt:"Stripe"}}),t._v(" "),n("div",{staticClass:"service-content"},[n("b",{staticClass:"service-title"},[t._v("Charging with Stripe")]),t._v(" "),n("p",{staticClass:"service-description"},[t._v("You can create custom storage plans and charge your users with monthly subscription.")])]),t._v(" "),n("router-link",{staticClass:"service-link",attrs:{to:{name:"StripeCredentials"}}},[n("span",[t._v("Set Up Billing and Plans With Stripe")]),t._v(" "),n("chevron-right-icon",{staticClass:"icon",attrs:{size:"22"}})],1)],1)],1),t._v(" "),n("p",{staticClass:"additional-link"},[n("router-link",{attrs:{to:{name:"EnvironmentSetup"}}},[n("AuthButton",{staticClass:"skip-subscription-setup",attrs:{icon:"chevron-right",text:"I will set up Stripe later"}})],1)],1)])],1)}),[],!1,null,"2c28719a",null).exports),Hd={name:"InstallationDisclaimer",components:{AuthContentWrapper:Ye,ValidationProvider:Ze.ValidationProvider,ValidationObserver:Ze.ValidationObserver,SettingsIcon:sa,SelectInput:oo,AuthContent:Je,AuthButton:Qe,FormLabel:Kr,required:nn,Spinner:ki,InfoBox:Nr},data:function(){return{isLoading:!0,isError:!1,isExtended:void 0}},created:function(){var t=this;sn.a.post("/api/setup/purchase-code",{purchaseCode:localStorage.getItem("purchase_code")}).then((function(e){t.$scrollTop(),t.isLoading=!1,"b6896a44017217c36f4a6fdc56699728"===e.data?(t.isExtended=!0,localStorage.setItem("license","Extended")):(t.isExtended=!1,localStorage.setItem("license","Regular"))})).catch((function(e){t.isLoading=!1,400==e.response.status&&t.$router.push({name:"PurchaseCode"})}))}},Gd=(n(440),Ke(Hd,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("AuthContentWrapper",{ref:"auth"},[n("AuthContent",{attrs:{name:"database-credentials",visible:!0}},[n("div",{staticClass:"content-headline"},[n("settings-icon",{staticClass:"title-icon",attrs:{size:"40"}}),t._v(" "),n("h1",[t._v("Setup Wizard")]),t._v(" "),n("h2",[t._v("Database was installed successfully. Let's set up application, Make sure you have these informations before continue:")])],1),t._v(" "),t.isLoading?n("div",{attrs:{id:"loader"}},[n("Spinner")],1):t._e(),t._v(" "),t.isLoading?t._e():n("div",{staticClass:"form block-form"},[n("InfoBox",[t.isExtended?n("ul",{staticClass:"information-list",staticStyle:{"margin-top":"0"}},[n("li",[t._v("\n 1. Stripe API Credentials\n ")]),t._v(" "),n("li",[t._v("\n 2. Billing details for Stripe Subscription Service\n ")]),t._v(" "),n("li",[t._v("\n 3. You will create your subscription plans\n ")]),t._v(" "),n("li",[t._v("\n 4. Email Account Credentials for sending emails to your users\n ")]),t._v(" "),n("li",[t._v("\n 5. If you use external storage service, then you will need set your API credentials\n ")]),t._v(" "),n("li",[t._v("\n 6. Some general settings for VueFileManager like Google Analytics, logo, favicon and application name\n ")]),t._v(" "),n("li",[t._v("\n 7. You will create admin account\n ")])]):n("ul",{staticClass:"information-list",staticStyle:{"margin-top":"0"}},[n("li",[t._v("\n 1. Email Account Credentials for sending emails to your users\n ")]),t._v(" "),n("li",[t._v("\n 2. If you use external storage service, then you will need set your API credentials\n ")]),t._v(" "),n("li",[t._v("\n 3. Some general settings for VueFileManager like Google Analytics, logo, favicon and application name\n ")]),t._v(" "),n("li",[t._v("\n 4. You will create admin account\n ")])])]),t._v(" "),t.isExtended?n("router-link",{staticClass:"submit-wrapper",attrs:{to:{name:"SubscriptionService"},tag:"div"}},[n("AuthButton",{attrs:{icon:"chevron-right",text:"I Get It! Let's Set Up Application",loading:t.isLoading,disabled:t.isLoading}})],1):t._e(),t._v(" "),t.isExtended?t._e():n("router-link",{staticClass:"submit-wrapper",attrs:{to:{name:"EnvironmentSetup"},tag:"div"}},[n("AuthButton",{attrs:{icon:"chevron-right",text:"I Get It! Let's Set Up Application",loading:t.isLoading,disabled:t.isLoading}})],1)],1)])],1)}),[],!1,null,"e0a4915e",null).exports),Wd={name:"IndexPageTile",props:["title","description","type"]},Kd=(n(442),Ke(Wd,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"page-title left",class:t.type},[n("h1",{staticClass:"title",domProps:{innerHTML:t._s(t.title)}}),t._v(" "),t.description?n("h2",{staticClass:"description"},[t._v("\n "+t._s(t.description)+"\n ")]):t._e()])}),[],!1,null,"6e4c7e26",null).exports);function Yd(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function Zd(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Jd={name:"IndexPageFooter",computed:function(t){for(var e=1;e0?n("small",{staticClass:"vat-disclaimer"},[t._v(t._s(t.$t("page_pricing_tables.vat_excluded")))]):t._e()])])])])})),0):t._e()}),[],!1,null,"77a81720",null).exports,AuthButton:Qe,CloudIcon:$n},computed:function(t){for(var e=1;e=2&&!isNaN(t.slice(0,t.length-1))&&"x"===t.slice(-1)}}},functional:!0,render:function(t,e){var n="x"===e.props.size.slice(-1)?e.props.size.slice(0,e.props.size.length-1)+"em":parseInt(e.props.size)+"px",a=e.data.attrs||{};return a.width=a.width||n,a.height=a.height||n,e.data.attrs=a,t("svg",wn()([{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},class:"feather feather-hard-drive"},e.data]),[t("line",{attrs:{x1:"22",y1:"12",x2:"2",y2:"12"}}),t("path",{attrs:{d:"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}}),t("line",{attrs:{x1:"6",y1:"16",x2:"6",y2:"16"}}),t("line",{attrs:{x1:"10",y1:"16",x2:"10",y2:"16"}})])}},AuthButton:Qe},computed:function(t){for(var e=1;e95}})},Xp=(n(472),Ke(Jp,(function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"user-avatar",class:this.size},[this.isIncompletePayment||this.isNearlyFullStorageCapacity?e("span",{staticClass:"notification"}):this._e(),this._v(" "),e("img",{attrs:{src:this.user.data.attributes.avatar,alt:this.user.data.attributes.name}})])}),[],!1,null,"6e170a1a",null).exports);function Qp(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function tc(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var ec={name:"UserMobileNavigation",components:{MenuItemList:fs,UserHeadline:Kp,UserAvatar:Xp},computed:function(t){for(var e=1;et.length)&&(e=t.length);for(var n=0,a=new Array(e);nt.length)&&(e=t.length);for(var n=0,a=new Array(e);nt.length)&&(e=t.length);for(var n=0,a=new Array(e);n1&&void 0!==arguments[1]?arguments[1]:void 0;e?t.commit("FILE_INFO_TOGGLE",e):t.state.fileInfoPanelVisible?t.commit("FILE_INFO_TOGGLE",!1):t.commit("FILE_INFO_TOGGLE",!0)}},mutations:{INIT:function(t,e){t.config=e.config,t.authorized=e.authCookie,t.homeDirectory=e.rootDirectory},SET_SAAS:function(t,e){t.config.isSaaS=e},SET_STRIPE_PUBLIC_KEY:function(t,e){t.config.stripe_public_key=e},FILE_INFO_TOGGLE:function(t,e){t.fileInfoPanelVisible=e,localStorage.setItem("file_info_visibility",e)},SET_AUTHORIZED:function(t,e){t.authorized=e},SET_INDEX_CONTENT:function(t,e){t.index=e},CHANGE_PREVIEW:function(t,e){t.FilePreviewType=e},STORE_REQUESTED_PLAN:function(t,e){t.requestedPlan=e}}};i.a.use(an.a);var Rc=new an.a.Store({modules:{fileFunctions:Ac,fileBrowser:Tc,userAuth:Lc,sharing:Fc,app:Mc}});function Vc(t){return function(t){if(Array.isArray(t))return Uc(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return Uc(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Uc(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Uc(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n=0)){t.next=16;break}return(o=new FormData).append("file",e[r]),o.append("parent_id",i),t.next=13,Rc.dispatch("uploadFiles",o).then((function(){Rc.commit("UPDATE_FILE_COUNT_PROGRESS",{current:a,total:n}),n===a?Rc.commit("UPDATE_FILE_COUNT_PROGRESS",void 0):a++})).catch((function(t){switch(t.response.status){case 423:rn.$emit("alert:open",{emoji:"😬",title:s.$t("popup_exceed_limit.title"),message:s.$t("popup_exceed_limit.message")});break;case 413:rn.$emit("alert:open",{emoji:"😟",title:s.$t("popup_paylod_error.title"),message:s.$t("popup_paylod_error.message")});break;default:rn.$emit("alert:open",{title:s.$t("popup_error.title"),message:s.$t("popup_error.message")})}}));case 13:r--,t.next=7;break;case 16:case"end":return t.stop()}}),t,this)})));return function(e){return t.apply(this,arguments)}}(),t.prototype.$uploadExternalFiles=function(){var t=Hc(Ge.a.mark((function t(e,n){var a,i,r,o,s=this;return Ge.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(0!=e.dataTransfer.items.length){t.next=2;break}return t.abrupt("return");case 2:a=Vc(e.dataTransfer.items).map((function(t){return t.getAsFile()})),i=1,Rc.commit("UPDATE_FILE_COUNT_PROGRESS",{current:i,total:a.length}),r=a.length-1;case 6:if(!(r>=0)){t.next=15;break}return(o=new FormData).append("file",a[r]),o.append("parent_id",n),t.next=12,Rc.dispatch("uploadFiles",o).then((function(){Rc.commit("UPDATE_FILE_COUNT_PROGRESS",{current:i,total:a.length}),Rc.commit("INCREASE_FOLDER_ITEM",n),a.length===i?Rc.commit("UPDATE_FILE_COUNT_PROGRESS",void 0):i++})).catch((function(t){switch(t.response.status){case 423:rn.$emit("alert:open",{emoji:"😬",title:s.$t("popup_exceed_limit.title"),message:s.$t("popup_exceed_limit.message")});break;case 413:rn.$emit("alert:open",{emoji:"😟",title:s.$t("popup_paylod_error.title"),message:s.$t("popup_paylod_error.message")});break;default:rn.$emit("alert:open",{title:s.$t("popup_error.title"),message:s.$t("popup_error.message")})}}));case 12:r--,t.next=6;break;case 15:case"end":return t.stop()}}),t)})));return function(e,n){return t.apply(this,arguments)}}(),t.prototype.$downloadFile=function(t,e){var n=document.createElement("a");n.href=t,n.download=e,document.body.appendChild(n),n.click()},t.prototype.$closePopup=function(){rn.$emit("popup:close")},t.prototype.$isThisRoute=function(t,e){return Object($a.includes)(e,t.name)},t.prototype.$isThisLocation=function(t){var e=Rc.getters.currentFolder&&Rc.getters.currentFolder.location?Rc.getters.currentFolder.location:void 0;return"Object"==typeof t||t instanceof Object?Object($a.includes)(t,e):e===t},t.prototype.$checkPermission=function(t){var e=Rc.getters.permission;return"Object"==typeof t||t instanceof Object?Object($a.includes)(t,e):e===t},t.prototype.$isMobile=function(){return[/Android/i,/webOS/i,/iPhone/i,/iPad/i,/iPod/i,/BlackBerry/i,/Windows Phone/i].some((function(t){return navigator.userAgent.match(t)}))},t.prototype.$isMinimalScale=function(){return"minimal-scale"===Rc.getters.filesViewWidth},t.prototype.$isCompactScale=function(){return"compact-scale"===Rc.getters.filesViewWidth},t.prototype.$isFullScale=function(){return"full-scale"===Rc.getters.filesViewWidth},t.prototype.$isSomethingWrong=function(){rn.$emit("alert:open",{title:this.$t("popup_error.title"),message:this.$t("popup_error.message")})}}},Wc=Gc,Kc=n(10),Yc=n(170),Zc={prefix:"fas",iconName:"bars",icon:[448,512,[],"f0c9","M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"]},Jc={prefix:"fas",iconName:"check",icon:[512,512,[],"f00c","M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"]},Xc={prefix:"fas",iconName:"chevron-down",icon:[448,512,[],"f078","M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"]},Qc={prefix:"fas",iconName:"chevron-left",icon:[320,512,[],"f053","M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"]},tu={prefix:"fas",iconName:"chevron-right",icon:[320,512,[],"f054","M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"]},eu={prefix:"fas",iconName:"download",icon:[512,512,[],"f019","M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"]},nu={prefix:"fas",iconName:"ellipsis-h",icon:[512,512,[],"f141","M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"]},au={prefix:"fas",iconName:"ellipsis-v",icon:[192,512,[],"f142","M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"]},iu={prefix:"fas",iconName:"eye-slash",icon:[640,512,[],"f070","M320 400c-75.85 0-137.25-58.71-142.9-133.11L72.2 185.82c-13.79 17.3-26.48 35.59-36.72 55.59a32.35 32.35 0 0 0 0 29.19C89.71 376.41 197.07 448 320 448c26.91 0 52.87-4 77.89-10.46L346 397.39a144.13 144.13 0 0 1-26 2.61zm313.82 58.1l-110.55-85.44a331.25 331.25 0 0 0 81.25-102.07 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64a308.15 308.15 0 0 0-147.32 37.7L45.46 3.37A16 16 0 0 0 23 6.18L3.37 31.45A16 16 0 0 0 6.18 53.9l588.36 454.73a16 16 0 0 0 22.46-2.81l19.64-25.27a16 16 0 0 0-2.82-22.45zm-183.72-142l-39.3-30.38A94.75 94.75 0 0 0 416 256a94.76 94.76 0 0 0-121.31-92.21A47.65 47.65 0 0 1 304 192a46.64 46.64 0 0 1-1.54 10l-73.61-56.89A142.31 142.31 0 0 1 320 112a143.92 143.92 0 0 1 144 144c0 21.63-5.29 41.79-13.9 60.11z"]},ru={prefix:"fas",iconName:"file",icon:[384,512,[],"f15b","M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"]},ou={prefix:"fas",iconName:"file-audio",icon:[384,512,[],"f1c7","M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"]},su={prefix:"fas",iconName:"file-image",icon:[384,512,[],"f1c5","M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"]},lu={prefix:"fas",iconName:"file-video",icon:[384,512,[],"f1c8","M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"]},du={prefix:"fas",iconName:"folder",icon:[512,512,[],"f07b","M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"]},pu={prefix:"fas",iconName:"folder-plus",icon:[512,512,[],"f65e","M464,128H272L208,64H48A48,48,0,0,0,0,112V400a48,48,0,0,0,48,48H464a48,48,0,0,0,48-48V176A48,48,0,0,0,464,128ZM359.5,296a16,16,0,0,1-16,16h-64v64a16,16,0,0,1-16,16h-16a16,16,0,0,1-16-16V312h-64a16,16,0,0,1-16-16V280a16,16,0,0,1,16-16h64V200a16,16,0,0,1,16-16h16a16,16,0,0,1,16,16v64h64a16,16,0,0,1,16,16Z"]},cu={prefix:"fas",iconName:"hdd",icon:[576,512,[],"f0a0","M576 304v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48zm-48-80a79.557 79.557 0 0 1 30.777 6.165L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L17.223 230.165A79.557 79.557 0 0 1 48 224h480zm-48 96c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm-96 0c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z"]},uu={prefix:"fas",iconName:"home",icon:[576,512,[],"f015","M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z"]},fu={prefix:"fas",iconName:"info",icon:[192,512,[],"f129","M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"]},mu={prefix:"fas",iconName:"link",icon:[512,512,[],"f0c1","M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"]},vu={prefix:"fas",iconName:"lock",icon:[448,512,[],"f023","M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"]},bu={prefix:"fas",iconName:"lock-open",icon:[576,512,[],"f3c1","M423.5 0C339.5.3 272 69.5 272 153.5V224H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48h-48v-71.1c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v80c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-80C576 68 507.5-.3 423.5 0z"]},hu={prefix:"fas",iconName:"pencil-alt",icon:[512,512,[],"f303","M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"]},gu={prefix:"fas",iconName:"search",icon:[512,512,[],"f002","M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"]},yu={prefix:"fas",iconName:"share",icon:[512,512,[],"f064","M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"]},_u={prefix:"fas",iconName:"sort",icon:[320,512,[],"f0dc","M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"]},xu={prefix:"fas",iconName:"sync-alt",icon:[512,512,[],"f2f1","M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"]},wu={prefix:"fas",iconName:"th",icon:[512,512,[],"f00a","M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"]},ku={prefix:"fas",iconName:"th-list",icon:[512,512,[],"f00b","M149.333 216v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-80c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zM125.333 32H24C10.745 32 0 42.745 0 56v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24zm80 448H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm-24-424v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24zm24 264H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24z"]},Cu={prefix:"fas",iconName:"times",icon:[352,512,[],"f00d","M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"]},zu={prefix:"fas",iconName:"trash-alt",icon:[448,512,[],"f2ed","M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"]},Pu={prefix:"fas",iconName:"upload",icon:[512,512,[],"f093","M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"]},Ou={prefix:"fas",iconName:"user",icon:[448,512,[],"f007","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"]},Su={prefix:"fas",iconName:"user-edit",icon:[640,512,[],"f4ff","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"]},$u={prefix:"fas",iconName:"user-friends",icon:[640,512,[],"f500","M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"]};n(172),Kc.c.add(vu,bu,eu,$u,Jc,mu,Su,Ou,ou,lu,cu,xu,yu,uu,iu,Zc,gu,au,Qc,tu,Xc,Pu,zu,pu,wu,ku,fu,du,ru,su,Cu,_u,nu,hu),i.a.component("FontAwesomeIcon",Yc.a),i.a.use(Yt),i.a.use(Wc),i.a.config.productionTip=!1;new i.a({i18n:qe,store:Rc,router:Rp,data:{config:config},render:function(t){return t(Oc)}}).$mount("#app")},function(t,e){}]); \ No newline at end of file diff --git a/public/js/main.js.LICENSE.txt b/public/js/main.js.LICENSE.txt index 8c0104bd..909000a5 100644 --- a/public/js/main.js.LICENSE.txt +++ b/public/js/main.js.LICENSE.txt @@ -5,13 +5,19 @@ */ /*! - * vue-i18n v8.17.4 + * vue-i18n v8.18.2 * (c) 2020 kazuya kawaguchi * Released under the MIT License. */ +/*! + * vuex v3.5.1 + * (c) 2020 Evan You + * @license MIT + */ + /** - * vee-validate v3.3.0 + * vee-validate v3.3.7 * (c) 2020 Abdelrahman Awad * @license MIT */ @@ -24,9 +30,3 @@ * Based on Underscore.js 1.8.3 * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors */ - -/** - * vuex v3.3.0 - * (c) 2020 Evan You - * @license MIT - */ diff --git a/public/sass/invoice.scss b/public/sass/invoice.scss new file mode 100644 index 00000000..a8cbded9 --- /dev/null +++ b/public/sass/invoice.scss @@ -0,0 +1,230 @@ +// Colors +$text: #1c1d1f; +$text-muted: rgba($text, 0.7); +$light_background: #f4f6f6; +$light_mode_border: #F8F8F8; +$theme: #00BC7E; + +@mixin font-size($size) { + font-size:($size/16) + 0em; +} + +@mixin transition($time: 0.3s) { + transition: $time all ease; +} + +@mixin transform($effect) { + -webkit-transform: $effect; + -moz-transform: $effect; + transform: $effect; +} + +* { + outline: 0; + margin: 0; + padding: 0; + font-family: 'Nunito', sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + box-sizing: border-box; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + font-size: 16px; + text-decoration: none; +} + +body { + background: $light_background; +} + +#toolbar-wrapper { + max-width: 800px; + margin: 30px auto; + + .button { + background: white; + margin-right: 15px; + border-radius: 8px; + padding: 7px 10px; + cursor: pointer; + border: none; + @include transition(150ms); + + .icon { + height: 14px; + vertical-align: middle; + + path, line, polyline, rect, circle { + @include transition(150ms); + } + } + + .label { + @include transition(150ms); + @include font-size(14); + font-weight: 700; + color: $text; + } + + &:active { + @include transform(scale(0.95)); + } + + &:hover { + background: rgba($theme, 0.1); + + .icon { + path, line, polyline, rect, circle { + stroke: $theme; + } + } + + .label { + color: $theme; + } + } + } +} + +#invoice-wrapper { + max-width: 800px; + padding: 50px; + margin: 0 auto; + background: white; + border-radius: 8px; +} + +.table { + width: 100%; + + .table-header { + border-bottom: 1px solid $light_mode_border; + + td { + padding-bottom: 10px; + @include font-size(12); + font-weight: 700; + color: $theme; + + &:last-child { + text-align: right; + } + } + } + + .table-body { + td { + @include font-size(16); + font-weight: 700; + + &:last-child { + text-align: right; + } + } + } +} + +.list { + margin-bottom: 20px; + + .list-item { + display: block; + margin-bottom: 5px; + + b { + @include font-size(16); + font-weight: 700; + } + + span { + @include font-size(16); + font-weight: 500; + } + } +} + +.invoice-header { + display: flex; + justify-content: space-between; + align-items: center; + + .logo { + img { + height: 40px; + width: auto; + } + } + + .title { + + h1 { + @include font-size(30); + font-weight: 300; + color: $theme; + } + } +} + +.invoice-subject { + margin-top: 40px; + background: hsla(0, 0%, 98%, 1); + padding: 15px 20px; + border-radius: 10px; + + .list { + margin-bottom: 0; + } +} + +.invoice-partners { + display: flex; + justify-content: space-between; + margin-top: 40px; + + .partner:last-child { + min-width: 250px; + } + + .partner-title { + color: $theme; + @include font-size(22); + font-weight: 300; + margin-bottom: 10px; + } +} + +.invoice-order { + margin-top: 40px; +} + +.invoice-summary { + margin-top: 60px; + text-align: right; + + b { + font-weight: 700; + @include font-size(22); + } +} + +@media print { + #toolbar-wrapper { + display: none; + } + + #invoice-wrapper { + padding: 0; + margin: 0; + } + + .invoice-subject { + padding: 0; + } + + @page { + margin: 0; + } + + body { + margin: 1.6cm; + } +} \ No newline at end of file diff --git a/resources/babel.babel b/resources/babel.babel new file mode 100644 index 00000000..85d1eaed --- /dev/null +++ b/resources/babel.babel @@ -0,0 +1,11569 @@ + + + + vue-json + babel.babel + + + + + + actions + + + create_folder + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + delete + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + move + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + preview + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + share + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + upload + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + activation + + + stripe + + + button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + + + admin_menu + + + dashboard + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + invoices + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + pages + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + plans + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + settings + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + users + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + admin_page_dashboard + + + backer_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + license + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + version + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + w_latest_users + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + w_total_premium + + + link + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + w_total_space + + + link + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + w_total_users + + + link + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + + + admin_page_invoices + + + empty + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + table + + + number + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + payed + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + plan + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + total + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + user + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + + + admin_page_plans + + + create_plan_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + delete_plan_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + disclaimer_delete_plan + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + disclaimer_edit_price + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + empty + + + button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + form + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + description_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + name + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + name_delete_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + name_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + price + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + price_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + status + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + status_help + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage_helper + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title_delete + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title_details + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title_pricing + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + subscribers + + + empty + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + table + + + name + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + price + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + status + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage_capacity + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subscribers + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + tabs + + + delete + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + settings + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subscribers + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + + + admin_page_user + + + change_capacity + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + create_user + + + avatar + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + group_details + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + group_settings + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_conf_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_email + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_name + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + submit + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + delete_user + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + invoices + + + empty + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + label_change_capacity + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_delete_user + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_person_info + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + placeholder_delete_user + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + save_role + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + select_role + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + send_password_link + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subscription + + + empty + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + interval_mo + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + table + + + action + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + created_at + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + name + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + plan + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + role + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage_capacity + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage_used + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + tabs + + + delete + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + detail + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + invoices + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + password + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subscription + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + + + admin_pages + + + form + + + content + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + content_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + slug + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + visibility + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + visibility_help + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + table + + + page + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + slug + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + status + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + + + admin_settings + + + appearance + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + description_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + favicon + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + logo + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + logo_horizontal + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + section_appearance + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + section_general + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + billings + + + address + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + address_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + city + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + city_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + company_name + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + company_name_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + country + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + country_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + phone_number + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + phone_number_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + postal_code + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + postal_code_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + section_billing + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + section_company + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + state + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + state_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + vat + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + vat_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + email + + + driver + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + driver_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + email_disclaimer + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + encryption + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + encryption_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + host + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + host_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + password + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + password_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + port + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + port_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + save_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + section_email + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + username + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + username_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + others + + + allow_registration + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + allow_registration_help + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + contact_email + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + contact_email_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + default_storage + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + default_storage_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + google_analytics + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + google_analytics_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + section_others + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + section_user + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage_limit + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage_limit_help + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + payments + + + allow_payments + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + button_submit + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + button_testing + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + credentials_disclaimer + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + section_payments + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_create_acc + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_create_webhook + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_currency + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_currency_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_pub_key + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_pub_key_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_sec_key + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_sec_key_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_setup + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_webhook_key_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + webhook_url + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + tabs + + + appearance + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + billings + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + email + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + others + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + payments + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + + + alerts + + + error_confirm + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + success_confirm + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + context_menu + + + add_folder + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + add_to_favourites + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + create_folder + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + delete + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + detail + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + download + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + empty_trash + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + log_out + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + move + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + profile_settings + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + remove_from_favourites + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + rename + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + restore + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + share + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + share_edit + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + upload + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + cookie_disclaimer + + + button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + datatable + + + paginate_info + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + empty_page + + + call_to_action + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + errors + + + capacity_digit + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + file_detail + + + author + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + author_participant + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + created_at + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + shared + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + size + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + where + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + folder + + + empty + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + item_counts + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + global + + + active + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + admin + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + cancel + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + canceled + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + confirm_action + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + default + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + free + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + get_it + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + menu + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + monthly_ac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + or + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + premium + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + saas + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subscription + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + total + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + upgrade_plan + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + input_image + + + supported + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + inputs + + + placeholder_search_files + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + item_thumbnail + + + deleted_at + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + original_location + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + locations + + + home + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + shared + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + trash + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + menu + + + admin + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + files + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + invoices + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + latest + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + logout + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + password + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + payment_cards + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + profile + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + settings + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + shared + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subscription + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + trash + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + messages + + + nothing_from_participants + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + nothing_to_preview + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + nothing_was_found + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + notice + + + stripe_activation + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_activation_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_contact_us + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + error_message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + form + + + email + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + email_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + message_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + submit_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + success_message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_create_password + + + button_update + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_confirm_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_email + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_new_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subtitle + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_forgotten_password + + + button_get_link + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + pass_reseted_signin + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + pass_reseted_subtitle + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + pass_reseted_title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + pass_sennded_subtitle + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + pass_sennded_title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + password_remember_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + password_remember_text + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subtitle + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_index + + + get_started_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + menu + + + contact_us + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + log_in + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + pricing + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + sign_in + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + sign_feature_1 + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + sign_feature_2 + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + sign_up_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_login + + + button_next + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + placeholder_email + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + registration_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + registration_text + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subtitle + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_pricing_tables + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + storage_capacity + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_registration + + + agreement + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + button_create_account + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + have_an_account + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_confirm_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_email + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_name + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + placeholder_confirm_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + placeholder_email + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + placeholder_name + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + placeholder_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subtitle + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_shared + + + download_file + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + placeholder_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + submit + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subtitle + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_shared_404 + + + subtitle + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_sign_in + + + button_log_in + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + password_reset_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + password_reset_text + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + placeholder_password + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subtitle + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + page_upgrade_account + + + change_payment + + + change_payment + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + pay_by_new_card + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + you_can + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + desription + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + errors + + + pay_by_another_card + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + section_billing + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + section_card + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + section_summary + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + summary + + + period + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + submit_button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + submit_disclaimer + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_create_folder + + + folder_default_name + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_delete_card + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_deleted_plan + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_deleted_user + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_deleted_user_aborted + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_error + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_exceed_limit + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_move_item + + + cancel + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + submit + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_pass_changed + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_passport_error + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_paylod_error + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_rename + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_set_card + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_share_create + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_share_edit + + + change_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + confirm + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + save + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stop + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_signup_error + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_subscription_cancel + + + button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_subscription_resumed + + + button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + popup_trashed + + + message + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + preview_type + + + grid + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + list + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + profile + + + change_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + profile_info + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + store_pass + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + pronouns + + + of + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + roles + + + admin + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + user + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + routes + + + create_new_password + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + routes_title + + + appearance + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + billings + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + dashboard + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + email + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + invoices + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + others + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + page_edit + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + pages + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + payment_methods + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + payments + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + plan + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + plan_create + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + plan_delete + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + plan_settings + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + pricing_plans + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + profile + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + profile_settings + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + settings + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + settings_mobile + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + settings_password + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + settings_storage + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subscribers + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + subscription + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + upgrade_billing + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + upgrade_plan + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + user_create + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + users_delete + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + users_detail + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + users_list + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + users_password + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + users_storage_usage + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + users_user + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + rows + + + card + + + expiration + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + number + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + status + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + invoice + + + number + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + payed + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + plan + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + total + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + + + shared + + + can_download + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + editor + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + empty_shared + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + visitor + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + shared_form + + + button_done + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + button_generate + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_password_protection + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_permission + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + label_shared_url + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + placeholder_permission + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + sidebar + + + favourites + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + favourites_empty + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + folders_empty + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + home + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + latest + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + locations_title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + my_shared + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + navigator_title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + participant_uploads + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + tools_title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + storage + + + audios + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + documents + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + images + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + others + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + sec_capacity + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + sec_details + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + total_capacity + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + total_used + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + videos + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + toaster + + + account_upgraded + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + card_deleted + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + card_new_add + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + card_set + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + changed_capacity + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + changed_user + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + created_user + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + email_set + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + plan_created + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + sended_password + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + stripe_set + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + types + + + file + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + folder + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + upgrade_banner + + + button + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + uploading + + + progress + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + user_add_card + + + default_description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + default_title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + user_box_delete + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + user_box_password + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + user_box_role + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + user_box_storage + + + description + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + user_invoices + + + empty + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + user_password + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + user_payments + + + add_card + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + card_field_title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + delete_card + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + empty + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + field_loading + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + set_as_default + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + store_card + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + user_settings + + + address + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + address_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + city + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + city_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + country + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + country_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + name + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + name_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + phone_number + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + phone_number_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + postal_code + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + postal_code_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + state + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + state_plac + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title_account + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title_billing + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + user_subscription + + + billed + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + cancel_plan + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + canceled_at + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + created_at + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + empty + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + ends_at + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + plan + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + renews_at + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + resume_plan + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + status + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + title + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + validation_errors + + + incorrect_password + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + wrong_image + false + + + + + + en-US + false + + + sk-SK + false + + + zh-CHS + false + + + + + + + + false + + + en-US + + js/i18n/lang/en.json + + + sk-SK + + js/i18n/lang/sk.json + + + zh-CHS + + js/i18n/lang/cn.json + + + + + js/i18n/lang/en.json + + + js/i18n/lang/sk.json + + + js/i18n/lang/cn.json + + + + true + + $t('%1') + + + + + en-US + + tab + namespaced-json + true + + diff --git a/resources/js/App.vue b/resources/js/App.vue index 8ab80cae..3a645b14 100644 --- a/resources/js/App.vue +++ b/resources/js/App.vue @@ -6,8 +6,12 @@
+ + + + @@ -32,6 +36,8 @@ + +
@@ -40,8 +46,10 @@ diff --git a/resources/js/components/Admin/WidgetTotals.vue b/resources/js/components/Admin/WidgetTotals.vue new file mode 100644 index 00000000..92a660f7 --- /dev/null +++ b/resources/js/components/Admin/WidgetTotals.vue @@ -0,0 +1,83 @@ + + + + + diff --git a/resources/js/components/Admin/WidgetWrapper.vue b/resources/js/components/Admin/WidgetWrapper.vue new file mode 100644 index 00000000..47f1c70c --- /dev/null +++ b/resources/js/components/Admin/WidgetWrapper.vue @@ -0,0 +1,72 @@ + + + + + diff --git a/resources/js/components/FilesView/Alert.vue b/resources/js/components/FilesView/Alert.vue index b0456ab7..349ae843 100644 --- a/resources/js/components/FilesView/Alert.vue +++ b/resources/js/components/FilesView/Alert.vue @@ -61,6 +61,14 @@ if (args.emoji) { this.emoji = args.emoji } + + if (args.buttonStyle) { + this.buttonStyle = args.buttonStyle + } + + if (args.button) { + this.button = args.button + } }) // Show alert @@ -128,6 +136,7 @@ } .popup-content { + .title { @include font-size(22); text-transform: uppercase; @@ -159,11 +168,9 @@ } @media (prefers-color-scheme: dark) { - .popup-wrapper { background: $dark_mode_background; } - .popup-content { .title { color: $dark_mode_text_primary; diff --git a/resources/js/components/FilesView/ButtonBase.vue b/resources/js/components/FilesView/ButtonBase.vue index 6ad3314e..0150a537 100644 --- a/resources/js/components/FilesView/ButtonBase.vue +++ b/resources/js/components/FilesView/ButtonBase.vue @@ -1,16 +1,23 @@ @@ -26,31 +33,78 @@ border-radius: 8px; border: 0; padding: 10px 28px; - display: inline-block; white-space: nowrap; + display: flex; + align-items: center; + justify-content: center; + + .icon { + line-height: 1; + margin-right: 10px; + } &:active { transform: scale(0.95); } &.theme { - color: $theme; background: rgba($theme, .1); + + .content { + color: $theme; + } + + polyline, path { + stroke: $theme; + } + } + + &.theme-solid { + background: $theme; + + .content { + color: white; + } + + polyline, path { + stroke: white; + } } &.danger { - color: $danger; background: rgba($danger, .1); + + .content { + color: $danger; + } + + polyline, path { + stroke: $danger; + } } &.danger-solid { - color: white; background: $danger; + + .content { + color: white; + } + + polyline, path { + stroke: white; + } } &.secondary { - color: $text; background: $light_background; + + .content { + color: $text; + } + + polyline, path { + stroke: $text; + } } } @@ -72,8 +126,15 @@ .button-base { &.secondary { - color: $dark_mode_text_primary; background: $dark_mode_foreground; + + .content { + color: $dark_mode_text_primary; + } + + polyline, path { + stroke: $theme; + } } } } diff --git a/resources/js/components/FilesView/ContextMenu.vue b/resources/js/components/FilesView/ContextMenu.vue index 9a883018..4e71b93e 100644 --- a/resources/js/components/FilesView/ContextMenu.vue +++ b/resources/js/components/FilesView/ContextMenu.vue @@ -274,7 +274,10 @@ EyeIcon, }, computed: { - ...mapGetters(['app']), + ...mapGetters(['user']), + favourites() { + return this.user.relationships.favourites.data.attributes.folders + }, isFolder() { return this.item && this.item.type === 'folder' }, @@ -285,7 +288,7 @@ return this.item && this.item.type === 'image' }, isInFavourites() { - return this.app.favourites.find(el => el.unique_id == this.item.unique_id) + return this.favourites.find(el => el.unique_id == this.item.unique_id) }, }, data() { @@ -312,7 +315,7 @@ }, addToFavourites() { // Check if folder is in favourites and then add/remove from favourites - if (this.app.favourites && !this.app.favourites.find(el => el.unique_id == this.item.unique_id)) { + if (this.favourites && !this.favourites.find(el => el.unique_id == this.item.unique_id)) { this.$store.dispatch('addToFavourites', this.item) } else { this.$store.dispatch('removeFromFavourites', this.item) diff --git a/resources/js/components/FilesView/DesktopToolbar.vue b/resources/js/components/FilesView/DesktopToolbar.vue index fca12745..e6ed0aed 100644 --- a/resources/js/components/FilesView/DesktopToolbar.vue +++ b/resources/js/components/FilesView/DesktopToolbar.vue @@ -27,7 +27,7 @@
-
+
- +
@@ -14,45 +14,38 @@
- {{ fileInfoDetail.name }} + {{ fileInfoDetail.name }} .{{ fileInfoDetail.mimetype }}
-
    + + + - -
  • - {{ $t('file_detail.size') }} - {{ fileInfoDetail.filesize }} -
  • + + - -
  • - {{ $t('file_detail.author') }} - {{ $t('file_detail.author_participant') }} -
  • + + - -
  • - {{ $t('file_detail.created_at') }} - {{ fileInfoDetail.created_at }} -
  • - - -
  • - {{ $t('file_detail.where') }} +
    {{ fileInfoDetail.parent ? fileInfoDetail.parent.name : $t('locations.home') }}
    -
  • - - -
  • - {{ $t('file_detail.shared') }} + +
    {{ sharedInfo }} @@ -60,24 +53,27 @@ -
  • -
+ +
+ + diff --git a/resources/js/components/Index/Components/PricingTables.vue b/resources/js/components/Index/Components/PricingTables.vue new file mode 100644 index 00000000..7f686550 --- /dev/null +++ b/resources/js/components/Index/Components/PricingTables.vue @@ -0,0 +1,207 @@ + + + + + diff --git a/resources/js/components/Index/IndexGetStarted.vue b/resources/js/components/Index/IndexGetStarted.vue new file mode 100644 index 00000000..7ad11f8c --- /dev/null +++ b/resources/js/components/Index/IndexGetStarted.vue @@ -0,0 +1,343 @@ + + + + + diff --git a/resources/js/components/Index/IndexHeroScreenshot.vue b/resources/js/components/Index/IndexHeroScreenshot.vue new file mode 100644 index 00000000..ad289df6 --- /dev/null +++ b/resources/js/components/Index/IndexHeroScreenshot.vue @@ -0,0 +1,226 @@ + + + + + diff --git a/resources/js/components/Index/IndexMainFeatures.vue b/resources/js/components/Index/IndexMainFeatures.vue new file mode 100644 index 00000000..b54c6572 --- /dev/null +++ b/resources/js/components/Index/IndexMainFeatures.vue @@ -0,0 +1,192 @@ + + + + + diff --git a/resources/js/components/Index/IndexNavigation.vue b/resources/js/components/Index/IndexNavigation.vue new file mode 100644 index 00000000..80521268 --- /dev/null +++ b/resources/js/components/Index/IndexNavigation.vue @@ -0,0 +1,133 @@ + + + + + diff --git a/resources/js/components/Index/IndexPageFooter.vue b/resources/js/components/Index/IndexPageFooter.vue new file mode 100644 index 00000000..ad6f1fb2 --- /dev/null +++ b/resources/js/components/Index/IndexPageFooter.vue @@ -0,0 +1,118 @@ + + + + + diff --git a/resources/js/components/Index/IndexPageHeader.vue b/resources/js/components/Index/IndexPageHeader.vue new file mode 100644 index 00000000..5471a50c --- /dev/null +++ b/resources/js/components/Index/IndexPageHeader.vue @@ -0,0 +1,123 @@ + + + + + diff --git a/resources/js/components/Index/IndexPricingTables.vue b/resources/js/components/Index/IndexPricingTables.vue new file mode 100644 index 00000000..87fa8d2d --- /dev/null +++ b/resources/js/components/Index/IndexPricingTables.vue @@ -0,0 +1,177 @@ + + + + + diff --git a/resources/js/components/Mobile/MenuItemList.vue b/resources/js/components/Mobile/MenuItemList.vue index 87925fdc..6cd68bcc 100644 --- a/resources/js/components/Mobile/MenuItemList.vue +++ b/resources/js/components/Mobile/MenuItemList.vue @@ -11,6 +11,12 @@ + + + + + +
{{ link.title }} @@ -24,24 +30,36 @@ import { ChevronRightIcon, UploadCloudIcon, + CreditCardIcon, HardDriveIcon, + FileTextIcon, SettingsIcon, + DatabaseIcon, + MonitorIcon, Trash2Icon, + CloudIcon, PowerIcon, ShareIcon, UsersIcon, UserIcon, LockIcon, + BoxIcon, } from 'vue-feather-icons' export default { name: 'MenuBar', components: { + BoxIcon, + MonitorIcon, ChevronRightIcon, UploadCloudIcon, + CreditCardIcon, HardDriveIcon, + DatabaseIcon, + FileTextIcon, SettingsIcon, Trash2Icon, + CloudIcon, PowerIcon, UsersIcon, ShareIcon, @@ -68,7 +86,7 @@ .menu-icon { - path, line, polyline, rect, circle { + path, line, polyline, rect, circle, ellipse { stroke: $red; } } @@ -87,7 +105,7 @@ vertical-align: middle; } - path, line, polyline, rect, circle { + path, line, polyline, rect, circle, ellipse { stroke: $text; } } @@ -110,7 +128,7 @@ .menu-icon { - path, line, polyline, rect, circle { + path, line, polyline, rect, circle, ellipse { stroke: $dark_mode_text_primary; } } diff --git a/resources/js/components/Others/ColorLabel.vue b/resources/js/components/Others/ColorLabel.vue index b3698fff..7a5e5d04 100644 --- a/resources/js/components/Others/ColorLabel.vue +++ b/resources/js/components/Others/ColorLabel.vue @@ -32,6 +32,16 @@ color: $yellow; background: rgba($yellow, 0.1); } + + &.green { + color: $theme; + background: rgba($theme, 0.1); + } + + &.red { + color: $danger; + background: rgba($danger, 0.1); + } } @media only screen and (max-width: 1024px) { diff --git a/resources/js/components/Others/CookieDisclaimer.vue b/resources/js/components/Others/CookieDisclaimer.vue new file mode 100644 index 00000000..a082cb54 --- /dev/null +++ b/resources/js/components/Others/CookieDisclaimer.vue @@ -0,0 +1,108 @@ + + + + + diff --git a/resources/js/components/Others/EmptyPageContent.vue b/resources/js/components/Others/EmptyPageContent.vue new file mode 100644 index 00000000..895d4529 --- /dev/null +++ b/resources/js/components/Others/EmptyPageContent.vue @@ -0,0 +1,74 @@ + + + + + diff --git a/resources/js/components/Others/Forms/FormLabel.vue b/resources/js/components/Others/Forms/FormLabel.vue new file mode 100644 index 00000000..ce1c3980 --- /dev/null +++ b/resources/js/components/Others/Forms/FormLabel.vue @@ -0,0 +1,53 @@ + + + + + diff --git a/resources/js/components/Others/Forms/ImageInput.vue b/resources/js/components/Others/Forms/ImageInput.vue index 25da4331..46bb995f 100644 --- a/resources/js/components/Others/Forms/ImageInput.vue +++ b/resources/js/components/Others/Forms/ImageInput.vue @@ -14,7 +14,7 @@ />
- + {{ $t('input_image.title') }} @@ -26,7 +26,7 @@ + + diff --git a/resources/js/components/Others/Forms/SelectInput.vue b/resources/js/components/Others/Forms/SelectInput.vue index a1b851f5..7709510a 100644 --- a/resources/js/components/Others/Forms/SelectInput.vue +++ b/resources/js/components/Others/Forms/SelectInput.vue @@ -88,7 +88,8 @@ } .input-options { - background: $light_mode_input_background; + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12); + background: white; border-radius: 8px; position: absolute; overflow: hidden; @@ -96,16 +97,17 @@ left: 0; right: 0; z-index: 9; + max-height: 295px; + overflow-y: auto; .option-item { padding: 13px 20px; display: block; - border-bottom: 1px solid #EBEBEB; cursor: pointer; &:hover { color: $theme; - background: rgba($theme, .1); + background: $light_background; } &:last-child { @@ -115,9 +117,10 @@ } .input-area { - border: 1px solid #ebebeb; + border: 1px solid transparent; justify-content: space-between; - background: $light_mode_input_background; + box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12); + //background: $light_mode_input_background; @include transition(150ms); align-items: center; border-radius: 8px; @@ -198,8 +201,18 @@ border-bottom: none; &:hover { - color: $theme; background: rgba($theme, .1); + + .option-value { + color: $theme; + } + + .option-icon { + + path, circle { + stroke: $theme; + } + } } &:last-child { diff --git a/resources/js/components/Others/Forms/SetupBox.vue b/resources/js/components/Others/Forms/SetupBox.vue index 0a9cbefa..9876b569 100644 --- a/resources/js/components/Others/Forms/SetupBox.vue +++ b/resources/js/components/Others/Forms/SetupBox.vue @@ -20,11 +20,13 @@ .setup-box { padding: 20px; border-radius: 8px; + margin-bottom: 30px; .title { - @include font-size(19); - margin-bottom: 15px; + @include font-size(21); + margin-bottom: 5px; display: block; + font-weight: 700; } .description { diff --git a/resources/js/components/Others/Layout/PageTab.vue b/resources/js/components/Others/Layout/PageTab.vue new file mode 100644 index 00000000..e41f9a5d --- /dev/null +++ b/resources/js/components/Others/Layout/PageTab.vue @@ -0,0 +1,25 @@ + + + + + \ No newline at end of file diff --git a/resources/js/components/Others/Layout/PageTabGroup.vue b/resources/js/components/Others/Layout/PageTabGroup.vue new file mode 100644 index 00000000..597a5643 --- /dev/null +++ b/resources/js/components/Others/Layout/PageTabGroup.vue @@ -0,0 +1,20 @@ + + + + + diff --git a/resources/js/components/Others/ListInfo.vue b/resources/js/components/Others/ListInfo.vue new file mode 100644 index 00000000..aa37200d --- /dev/null +++ b/resources/js/components/Others/ListInfo.vue @@ -0,0 +1,16 @@ + + + + + diff --git a/resources/js/components/Others/ListInfoItem.vue b/resources/js/components/Others/ListInfoItem.vue new file mode 100644 index 00000000..9994a96d --- /dev/null +++ b/resources/js/components/Others/ListInfoItem.vue @@ -0,0 +1,63 @@ + + + + + diff --git a/resources/js/components/Others/MobileNavigation.vue b/resources/js/components/Others/MobileNavigation.vue index 486365c5..ab8d3d8c 100644 --- a/resources/js/components/Others/MobileNavigation.vue +++ b/resources/js/components/Others/MobileNavigation.vue @@ -1,5 +1,5 @@ + + diff --git a/resources/js/components/Others/Tables/DatatableWrapper.vue b/resources/js/components/Others/Tables/DatatableWrapper.vue index 162b3cff..d64237bc 100644 --- a/resources/js/components/Others/Tables/DatatableWrapper.vue +++ b/resources/js/components/Others/Tables/DatatableWrapper.vue @@ -3,16 +3,17 @@ - + @@ -178,7 +179,7 @@ tr { width: 100%; - td { + td, th { &:first-child { padding-left: 15px; } @@ -194,11 +195,12 @@ margin-bottom: 10px; tr { - td { + td, th { padding: 12px; + text-align: left; span { - color: #AFAFAF; + color: $theme; font-weight: 700; @include font-size(12); white-space: nowrap; @@ -238,12 +240,13 @@ .table-body { tr { border-radius: 8px; + //border-bottom: 1px solid #f5f5f5; &:hover { background: $light_background; } - td { + td, th { padding: 12px; &:last-child { @@ -257,8 +260,9 @@ span, a.page-link { @include font-size(15); font-weight: 700; - padding: 10px 0; + padding: 10px 35px 10px 0; display: block; + white-space: nowrap; } } } @@ -351,7 +355,7 @@ .table-header { tr { - td { + td, th { span { color: $theme; @@ -361,7 +365,7 @@ } .table-body { - tr { + tr, th { &:hover { background: $dark_mode_foreground; } diff --git a/resources/js/components/Others/ThumbnailItem.vue b/resources/js/components/Others/ThumbnailItem.vue index 917c76da..96d04c05 100644 --- a/resources/js/components/Others/ThumbnailItem.vue +++ b/resources/js/components/Others/ThumbnailItem.vue @@ -162,11 +162,8 @@ } @media (prefers-color-scheme: dark) { - .file-item { - .icon-item .file-icon { - path { fill: $dark_mode_foreground; stroke: #2F3C54; @@ -174,7 +171,6 @@ } .item-name { - .name { color: $dark_mode_text_primary; } @@ -190,9 +186,7 @@ @media (max-width: 690px) and (prefers-color-scheme: dark) { .file-item { - .icon-item .file-icon { - path { fill: $dark_mode_foreground; } diff --git a/resources/js/components/Others/TreeMenu.vue b/resources/js/components/Others/TreeMenu.vue index 99b2881b..7eb0649e 100644 --- a/resources/js/components/Others/TreeMenu.vue +++ b/resources/js/components/Others/TreeMenu.vue @@ -1,6 +1,6 @@ @@ -21,7 +21,7 @@ export default { name: 'TreeMenu', props: [ - 'nodes', 'depth' + 'nodes', 'depth', 'disabledById' ], components: { ChevronRightIcon, @@ -38,6 +38,7 @@ return { isVisible: false, isSelected: false, + isInactive: false } }, methods: { @@ -49,16 +50,18 @@ this.isVisible = ! this.isVisible } }, - created() { + mounted() { // Show first location - if (this.depth == 1) this.isVisible = true + if (this.depth == 1) + this.isVisible = true // Select clicked folder events.$on('pick-folder', node => { this.isSelected = false - if (this.nodes.unique_id == node.unique_id) this.isSelected = true + if (this.nodes.unique_id == node.unique_id) + this.isSelected = true }) // Select clicked folder @@ -76,6 +79,11 @@ @import '@assets/vue-file-manager/_variables'; @import '@assets/vue-file-manager/_mixins'; + .is-inactive { + opacity: 0.5; + pointer-events: none; + } + .folder-item { user-select: none; display: block; diff --git a/resources/js/components/Others/UpgradeSIdebarBanner.vue b/resources/js/components/Others/UpgradeSIdebarBanner.vue new file mode 100644 index 00000000..f7a321b3 --- /dev/null +++ b/resources/js/components/Others/UpgradeSIdebarBanner.vue @@ -0,0 +1,100 @@ + + + + + diff --git a/resources/js/components/Others/UserAvatar.vue b/resources/js/components/Others/UserAvatar.vue index f75c3a2d..329a8b5a 100644 --- a/resources/js/components/Others/UserAvatar.vue +++ b/resources/js/components/Others/UserAvatar.vue @@ -1,6 +1,7 @@ @@ -13,7 +14,13 @@ 'size' ], computed: { - ...mapGetters(['app']), + ...mapGetters(['user', 'config']), + isIncompletePayment() { + return this.user.data.attributes.incomplete_payment + }, + isNearlyFullStorageCapacity() { + return this.config.storageLimit && this.user.relationships.storage.data.attributes.used > 95 + } }, } @@ -24,6 +31,22 @@ .user-avatar { line-height: 0; + position: relative; + width: 40px; + margin: 0 auto; + + .notification { + width: 12px; + height: 12px; + display: block; + position: absolute; + bottom: -5px; + right: -4px; + border-radius: 10px; + z-index: 2; + background: $red; + border: 2px solid $light_background; + } img { border-radius: 6px; @@ -32,6 +55,8 @@ } &.large { + margin: 0; + width: 54px; img { border-radius: 9px; @@ -42,6 +67,11 @@ } @media (prefers-color-scheme: dark) { + .user-avatar { + .notification { + border-color: $dark_mode_foreground; + } + } } diff --git a/resources/js/components/Others/UserImageInput.vue b/resources/js/components/Others/UserImageInput.vue index 5359852a..d5f207fb 100644 --- a/resources/js/components/Others/UserImageInput.vue +++ b/resources/js/components/Others/UserImageInput.vue @@ -13,6 +13,12 @@ class="image-preview" v-if="imagePreview" /> + @@ -74,7 +80,7 @@ left: 0; right: 0; bottom: 0; - z-index: 1; + z-index: 2; width: 100%; cursor: pointer; } @@ -84,6 +90,12 @@ height: 62px; object-fit: cover; border-radius: 8px; + z-index: 1; + position: relative; + } + + .blurred { + @include blurred-image; } } diff --git a/resources/js/components/Others/Vignette.vue b/resources/js/components/Others/Vignette.vue index 146632ba..b87d80c8 100644 --- a/resources/js/components/Others/Vignette.vue +++ b/resources/js/components/Others/Vignette.vue @@ -29,6 +29,7 @@ events.$on('popup:open', () => this.isVisibleVignette = true) events.$on('alert:open', () => this.isVisibleVignette = true) events.$on('success:open', () => this.isVisibleVignette = true) + events.$on('confirm:open', () => this.isVisibleVignette = true) } } diff --git a/resources/js/components/Sidebar/ContentSidebar.vue b/resources/js/components/Sidebar/ContentSidebar.vue index 1c68c3c3..7eddfd7f 100644 --- a/resources/js/components/Sidebar/ContentSidebar.vue +++ b/resources/js/components/Sidebar/ContentSidebar.vue @@ -15,7 +15,8 @@ @import '@assets/vue-file-manager/_mixins'; .content-sidebar { - background: linear-gradient(0deg, rgba(246, 245, 241, 0.4) 0%, rgba(243, 244, 246, 0.4) 100%); + //background: linear-gradient(0deg, rgba(246, 245, 241, 0.4) 0%, rgba(243, 244, 246, 0.4) 100%); + background: rgba($light_background, 0.6); user-select: none; padding-top: 25px; overflow-y: auto; diff --git a/resources/js/components/Sidebar/MenuBar.vue b/resources/js/components/Sidebar/MenuBar.vue index 462319dc..72c59586 100644 --- a/resources/js/components/Sidebar/MenuBar.vue +++ b/resources/js/components/Sidebar/MenuBar.vue @@ -1,5 +1,5 @@
{{ column.label }} -